You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
810 B
14 lines
810 B
import type { IMeta } from '@/core/base/IMeta.ts'
|
|
|
|
export default [
|
|
{ field: 'uuid', editor: 'UUID', label: 'uuid', readonly: true, category: 'basic' },
|
|
{ field: 'name', editor: 'TextInput', label: '名称', category: 'basic' },
|
|
{ field: 'dt.label', editor: 'TextInput', label: '标签', category: 'basic' },
|
|
{ editor: 'TransformEditor', category: 'basic' },
|
|
{ field: 'dt.color', editor: 'Color', label: '颜色', category: 'basic' },
|
|
{ editor: '-', category: 'basic' },
|
|
{ field: 'tf', editor: 'InOutCenterEditor', category: 'basic' },
|
|
{ field: 'dt.selectable', editor: 'Switch', label: '可选中', category: 'basic' },
|
|
{ field: 'dt.protected', editor: 'Switch', label: '受保护', category: 'basic' },
|
|
{ field: 'visible', editor: 'Switch', label: '可见', category: 'basic' }
|
|
] as IMeta
|