mirror of
https://gitee.com/dromara/go-view.git
synced 2025-02-24 16:22:57 +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',
|
BORDER = 'Borders',
|
||||||
DECORATE = 'Decorates',
|
DECORATE = 'Decorates',
|
||||||
THREE = 'Three',
|
THREE = 'Three',
|
||||||
INPUTS = 'Inputs',
|
|
||||||
MORE = 'Mores'
|
MORE = 'Mores'
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -10,7 +9,5 @@ export enum ChatCategoryEnumName {
|
|||||||
BORDER = '边框',
|
BORDER = '边框',
|
||||||
DECORATE = '装饰',
|
DECORATE = '装饰',
|
||||||
THREE = '三维',
|
THREE = '三维',
|
||||||
// 控件 => 数据录入
|
|
||||||
INPUTS = '控件',
|
|
||||||
MORE = '更多'
|
MORE = '更多'
|
||||||
}
|
}
|
@ -1,7 +1,6 @@
|
|||||||
import Borders from './Borders'
|
import Borders from './Borders'
|
||||||
import Decorates from './Decorates'
|
import Decorates from './Decorates'
|
||||||
import Three from './Three'
|
import Three from './Three'
|
||||||
import Inputs from './Inputs'
|
|
||||||
import Mores from './Mores'
|
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: '时间选择器',
|
title: '时间选择器',
|
||||||
category: ChatCategoryEnum.INPUTS,
|
category: ChatCategoryEnum.INPUTS,
|
||||||
categoryName: ChatCategoryEnumName.INPUTS,
|
categoryName: ChatCategoryEnumName.INPUTS,
|
||||||
package: PackagesCategoryEnum.DECORATES,
|
package: PackagesCategoryEnum.INFORMATIONS,
|
||||||
chartFrame: ChartFrameEnum.COMMON,
|
chartFrame: ChartFrameEnum.COMMON,
|
||||||
image: 'inputs_date.png'
|
image: 'inputs_date.png'
|
||||||
}
|
}
|
@ -1,11 +1,14 @@
|
|||||||
export enum ChatCategoryEnum {
|
export enum ChatCategoryEnum {
|
||||||
TEXT = 'Texts',
|
TEXT = 'Texts',
|
||||||
TITLE = 'Titles',
|
TITLE = 'Titles',
|
||||||
|
INPUTS = 'Inputs',
|
||||||
MORE = 'Mores'
|
MORE = 'Mores'
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum ChatCategoryEnumName {
|
export enum ChatCategoryEnumName {
|
||||||
TEXT = '文本',
|
TEXT = '文本',
|
||||||
TITLE = '标题',
|
TITLE = '标题',
|
||||||
|
// 控件 => 数据录入
|
||||||
|
INPUTS = '控件',
|
||||||
MORE = '更多'
|
MORE = '更多'
|
||||||
}
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import Texts from './Texts'
|
import Texts from './Texts'
|
||||||
|
import Inputs from './Inputs'
|
||||||
import Mores from './Mores'
|
import Mores from './Mores'
|
||||||
|
|
||||||
export const InformationList = [...Texts, ...Mores]
|
export const InformationList = [...Texts, ...Inputs, ...Mores]
|
||||||
|
Loading…
Reference in New Issue
Block a user