mirror of
https://gitee.com/dromara/go-view.git
synced 2024-11-30 02:38:30 +08:00
chore: 移动控件分类
This commit is contained in:
parent
b2594d2f66
commit
63db4f8c87
3
src/packages/components/Decorates/index.d.ts
vendored
3
src/packages/components/Decorates/index.d.ts
vendored
@ -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 = '更多'
|
||||
}
|
@ -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]
|
||||
|
@ -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'
|
||||
}
|
@ -1,11 +1,14 @@
|
||||
export enum ChatCategoryEnum {
|
||||
TEXT = 'Texts',
|
||||
TITLE = 'Titles',
|
||||
INPUTS = 'Inputs',
|
||||
MORE = 'Mores'
|
||||
}
|
||||
|
||||
export enum ChatCategoryEnumName {
|
||||
TEXT = '文本',
|
||||
TITLE = '标题',
|
||||
// 控件 => 数据录入
|
||||
INPUTS = '控件',
|
||||
MORE = '更多'
|
||||
}
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user