From 63db4f8c8759946f617e27ba7720b6386e9d5ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?= <1262327911@qq.com> Date: Sat, 11 Mar 2023 22:11:57 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=A7=BB=E5=8A=A8=E6=8E=A7=E4=BB=B6?= =?UTF-8?q?=E5=88=86=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/packages/components/Decorates/index.d.ts | 3 --- src/packages/components/Decorates/index.ts | 3 +-- .../{Decorates => Informations}/Inputs/InputsDate/config.ts | 0 .../{Decorates => Informations}/Inputs/InputsDate/config.vue | 0 .../{Decorates => Informations}/Inputs/InputsDate/index.ts | 2 +- .../{Decorates => Informations}/Inputs/InputsDate/index.vue | 0 .../components/{Decorates => Informations}/Inputs/index.ts | 0 src/packages/components/Informations/index.d.ts | 3 +++ src/packages/components/Informations/index.ts | 3 ++- 9 files changed, 7 insertions(+), 7 deletions(-) rename src/packages/components/{Decorates => Informations}/Inputs/InputsDate/config.ts (100%) rename src/packages/components/{Decorates => Informations}/Inputs/InputsDate/config.vue (100%) rename src/packages/components/{Decorates => Informations}/Inputs/InputsDate/index.ts (90%) rename src/packages/components/{Decorates => Informations}/Inputs/InputsDate/index.vue (100%) rename src/packages/components/{Decorates => Informations}/Inputs/index.ts (100%) diff --git a/src/packages/components/Decorates/index.d.ts b/src/packages/components/Decorates/index.d.ts index 8aab63dc..d20047eb 100644 --- a/src/packages/components/Decorates/index.d.ts +++ b/src/packages/components/Decorates/index.d.ts @@ -2,7 +2,6 @@ export enum ChatCategoryEnum { BORDER = 'Borders', DECORATE = 'Decorates', THREE = 'Three', - INPUTS = 'Inputs', MORE = 'Mores' } @@ -10,7 +9,5 @@ export enum ChatCategoryEnumName { BORDER = '边框', DECORATE = '装饰', THREE = '三维', - // 控件 => 数据录入 - INPUTS = '控件', MORE = '更多' } \ No newline at end of file diff --git a/src/packages/components/Decorates/index.ts b/src/packages/components/Decorates/index.ts index 482f58d1..17b64130 100644 --- a/src/packages/components/Decorates/index.ts +++ b/src/packages/components/Decorates/index.ts @@ -1,7 +1,6 @@ import Borders from './Borders' import Decorates from './Decorates' import Three from './Three' -import Inputs from './Inputs' import Mores from './Mores' -export const DecorateList = [...Borders, ...Decorates, ...Three, ...Inputs, ...Mores] +export const DecorateList = [...Borders, ...Decorates, ...Three, ...Mores] diff --git a/src/packages/components/Decorates/Inputs/InputsDate/config.ts b/src/packages/components/Informations/Inputs/InputsDate/config.ts similarity index 100% rename from src/packages/components/Decorates/Inputs/InputsDate/config.ts rename to src/packages/components/Informations/Inputs/InputsDate/config.ts diff --git a/src/packages/components/Decorates/Inputs/InputsDate/config.vue b/src/packages/components/Informations/Inputs/InputsDate/config.vue similarity index 100% rename from src/packages/components/Decorates/Inputs/InputsDate/config.vue rename to src/packages/components/Informations/Inputs/InputsDate/config.vue diff --git a/src/packages/components/Decorates/Inputs/InputsDate/index.ts b/src/packages/components/Informations/Inputs/InputsDate/index.ts similarity index 90% rename from src/packages/components/Decorates/Inputs/InputsDate/index.ts rename to src/packages/components/Informations/Inputs/InputsDate/index.ts index 298042ff..cd983cdd 100644 --- a/src/packages/components/Decorates/Inputs/InputsDate/index.ts +++ b/src/packages/components/Informations/Inputs/InputsDate/index.ts @@ -8,7 +8,7 @@ export const InputsDateConfig: ConfigType = { title: '时间选择器', category: ChatCategoryEnum.INPUTS, categoryName: ChatCategoryEnumName.INPUTS, - package: PackagesCategoryEnum.DECORATES, + package: PackagesCategoryEnum.INFORMATIONS, chartFrame: ChartFrameEnum.COMMON, image: 'inputs_date.png' } diff --git a/src/packages/components/Decorates/Inputs/InputsDate/index.vue b/src/packages/components/Informations/Inputs/InputsDate/index.vue similarity index 100% rename from src/packages/components/Decorates/Inputs/InputsDate/index.vue rename to src/packages/components/Informations/Inputs/InputsDate/index.vue diff --git a/src/packages/components/Decorates/Inputs/index.ts b/src/packages/components/Informations/Inputs/index.ts similarity index 100% rename from src/packages/components/Decorates/Inputs/index.ts rename to src/packages/components/Informations/Inputs/index.ts diff --git a/src/packages/components/Informations/index.d.ts b/src/packages/components/Informations/index.d.ts index f66a7a0b..ce775044 100644 --- a/src/packages/components/Informations/index.d.ts +++ b/src/packages/components/Informations/index.d.ts @@ -1,11 +1,14 @@ export enum ChatCategoryEnum { TEXT = 'Texts', TITLE = 'Titles', + INPUTS = 'Inputs', MORE = 'Mores' } export enum ChatCategoryEnumName { TEXT = '文本', TITLE = '标题', + // 控件 => 数据录入 + INPUTS = '控件', MORE = '更多' } \ No newline at end of file diff --git a/src/packages/components/Informations/index.ts b/src/packages/components/Informations/index.ts index 78f5ae12..f3bb9581 100644 --- a/src/packages/components/Informations/index.ts +++ b/src/packages/components/Informations/index.ts @@ -1,4 +1,5 @@ import Texts from './Texts' +import Inputs from './Inputs' import Mores from './Mores' -export const InformationList = [...Texts, ...Mores] +export const InformationList = [...Texts, ...Inputs, ...Mores]