From 26dcfc7ae2c529aa7be57b04486b441bead7cd4d Mon Sep 17 00:00:00 2001 From: Greta Doci Date: Mon, 14 Oct 2019 14:43:37 +0200 Subject: [PATCH] add SettingsInputText compontents Signed-off-by: Greta Doci --- .../SettingsInputText/SettingsInputText.vue | 201 ++++++++++++++++++ src/components/SettingsInputText/index.js | 24 +++ 2 files changed, 225 insertions(+) create mode 100644 src/components/SettingsInputText/SettingsInputText.vue create mode 100644 src/components/SettingsInputText/index.js diff --git a/src/components/SettingsInputText/SettingsInputText.vue b/src/components/SettingsInputText/SettingsInputText.vue new file mode 100644 index 0000000000..44db904e40 --- /dev/null +++ b/src/components/SettingsInputText/SettingsInputText.vue @@ -0,0 +1,201 @@ + + + + + + + diff --git a/src/components/SettingsInputText/index.js b/src/components/SettingsInputText/index.js new file mode 100644 index 0000000000..9593ea37e0 --- /dev/null +++ b/src/components/SettingsInputText/index.js @@ -0,0 +1,24 @@ +/** + * @copyright Copyright (c) 2019 Greta Doci + * + * @author Greta Doci + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ +import SettingsInputText from './SettingsInputText' + +export default SettingsInputText