chore: 移动控件分类

This commit is contained in:
奔跑的面条 2023-03-11 22:11:57 +08:00
parent b2594d2f66
commit 63db4f8c87
9 changed files with 7 additions and 7 deletions

View File

@ -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 = '更多'
}

View File

@ -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]

View File

@ -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'
}

View File

@ -1,11 +1,14 @@
export enum ChatCategoryEnum {
TEXT = 'Texts',
TITLE = 'Titles',
INPUTS = 'Inputs',
MORE = 'Mores'
}
export enum ChatCategoryEnumName {
TEXT = '文本',
TITLE = '标题',
// 控件 => 数据录入
INPUTS = '控件',
MORE = '更多'
}

View File

@ -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]