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]