@lingxiteam/theme-utils 0.5.3 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. package/dist/config/Button.d.ts +113 -0
  2. package/dist/config/Button.js +277 -0
  3. package/dist/config/Card.d.ts +144 -0
  4. package/dist/config/Card.js +162 -0
  5. package/dist/config/Cascader.d.ts +196 -0
  6. package/dist/config/Cascader.js +225 -0
  7. package/dist/config/Checkbox.d.ts +162 -0
  8. package/dist/config/Checkbox.js +178 -0
  9. package/dist/config/CheckboxGroup.d.ts +184 -0
  10. package/dist/config/CheckboxGroup.js +192 -0
  11. package/dist/config/Collapse.d.ts +186 -0
  12. package/dist/config/Collapse.js +330 -0
  13. package/dist/config/Container.d.ts +275 -0
  14. package/dist/config/Container.js +301 -0
  15. package/dist/config/DatePicker.d.ts +179 -0
  16. package/dist/config/DatePicker.js +179 -0
  17. package/dist/config/Description.d.ts +106 -0
  18. package/dist/config/Description.js +126 -0
  19. package/dist/config/Divider.d.ts +61 -0
  20. package/dist/config/Divider.js +61 -0
  21. package/dist/config/Form.d.ts +3071 -0
  22. package/dist/config/Form.js +1358 -0
  23. package/dist/config/Icon.d.ts +55 -0
  24. package/dist/config/Icon.js +55 -0
  25. package/dist/config/Input.d.ts +159 -0
  26. package/dist/config/Input.js +159 -0
  27. package/dist/config/InputNumber.d.ts +154 -0
  28. package/dist/config/InputNumber.js +154 -0
  29. package/dist/config/Link.d.ts +128 -0
  30. package/dist/config/Link.js +120 -0
  31. package/dist/config/MultipleSelect.d.ts +167 -0
  32. package/dist/config/MultipleSelect.js +175 -0
  33. package/dist/config/Radio.d.ts +239 -0
  34. package/dist/config/Radio.js +261 -0
  35. package/dist/config/RangePicker.d.ts +182 -0
  36. package/dist/config/RangePicker.js +182 -0
  37. package/dist/config/Select.d.ts +190 -0
  38. package/dist/config/Select.js +198 -0
  39. package/dist/config/StdUpload.d.ts +197 -0
  40. package/dist/config/StdUpload.js +211 -0
  41. package/dist/config/Switch.d.ts +141 -0
  42. package/dist/config/Switch.js +151 -0
  43. package/dist/config/Table.d.ts +482 -0
  44. package/dist/config/Table.js +560 -0
  45. package/dist/config/Tabs.d.ts +230 -0
  46. package/dist/config/Tabs.js +970 -0
  47. package/dist/config/Tag.d.ts +173 -0
  48. package/dist/config/Tag.js +548 -0
  49. package/dist/config/Text.d.ts +34 -0
  50. package/dist/config/Text.js +34 -0
  51. package/dist/config/TextArea.d.ts +151 -0
  52. package/dist/config/TextArea.js +151 -0
  53. package/dist/config/TimePicker.d.ts +180 -0
  54. package/dist/config/TimePicker.js +180 -0
  55. package/dist/config/Tree.d.ts +151 -0
  56. package/dist/config/Tree.js +195 -0
  57. package/dist/config/TreeSelect.d.ts +197 -0
  58. package/dist/config/TreeSelect.js +213 -0
  59. package/dist/css.d.ts +6 -0
  60. package/dist/css.js +126 -0
  61. package/dist/demo.d.ts +5 -0
  62. package/dist/demo.js +79 -0
  63. package/dist/h5config/Accordion.d.ts +410 -0
  64. package/dist/h5config/Accordion.js +548 -0
  65. package/dist/h5config/Button.d.ts +142 -0
  66. package/dist/h5config/Button.js +253 -0
  67. package/dist/h5config/Card.d.ts +275 -0
  68. package/dist/h5config/Card.js +535 -0
  69. package/dist/h5config/DAddressPicker.d.ts +188 -0
  70. package/dist/h5config/DAddressPicker.js +230 -0
  71. package/dist/h5config/DCheckbox.d.ts +202 -0
  72. package/dist/h5config/DCheckbox.js +248 -0
  73. package/dist/h5config/DForm.d.ts +1597 -0
  74. package/dist/h5config/DForm.js +932 -0
  75. package/dist/h5config/DMultiplePicker.d.ts +189 -0
  76. package/dist/h5config/DMultiplePicker.js +235 -0
  77. package/dist/h5config/DformDate.d.ts +191 -0
  78. package/dist/h5config/DformDate.js +233 -0
  79. package/dist/h5config/DformFile.d.ts +277 -0
  80. package/dist/h5config/DformFile.js +292 -0
  81. package/dist/h5config/DformImagePicker.d.ts +138 -0
  82. package/dist/h5config/DformImagePicker.js +156 -0
  83. package/dist/h5config/DformInput.d.ts +189 -0
  84. package/dist/h5config/DformInput.js +231 -0
  85. package/dist/h5config/DformInputNumber.d.ts +173 -0
  86. package/dist/h5config/DformInputNumber.js +215 -0
  87. package/dist/h5config/DformPicker.d.ts +190 -0
  88. package/dist/h5config/DformPicker.js +236 -0
  89. package/dist/h5config/DformRadio.d.ts +210 -0
  90. package/dist/h5config/DformRadio.js +256 -0
  91. package/dist/h5config/DformRangePicker.d.ts +195 -0
  92. package/dist/h5config/DformRangePicker.js +237 -0
  93. package/dist/h5config/DformSelect.d.ts +198 -0
  94. package/dist/h5config/DformSelect.js +262 -0
  95. package/dist/h5config/DformSwitch.d.ts +145 -0
  96. package/dist/h5config/DformSwitch.js +163 -0
  97. package/dist/h5config/DformTextArea.d.ts +184 -0
  98. package/dist/h5config/DformTextArea.js +226 -0
  99. package/dist/h5config/Divider.d.ts +53 -0
  100. package/dist/h5config/Divider.js +90 -0
  101. package/dist/h5config/FilterItems.d.ts +154 -0
  102. package/dist/h5config/FilterItems.js +204 -0
  103. package/dist/h5config/Grid.d.ts +235 -0
  104. package/dist/h5config/Grid.js +278 -0
  105. package/dist/h5config/Icon.d.ts +54 -0
  106. package/dist/h5config/Icon.js +54 -0
  107. package/dist/h5config/Link.d.ts +51 -0
  108. package/dist/h5config/Link.js +51 -0
  109. package/dist/h5config/LoadMore.d.ts +527 -0
  110. package/dist/h5config/LoadMore.js +940 -0
  111. package/dist/h5config/NoticeBarPlus.d.ts +111 -0
  112. package/dist/h5config/NoticeBarPlus.js +141 -0
  113. package/dist/h5config/SearchView.d.ts +135 -0
  114. package/dist/h5config/SearchView.js +177 -0
  115. package/dist/h5config/StaticTabs.d.ts +121 -0
  116. package/dist/h5config/StaticTabs.js +180 -0
  117. package/dist/h5config/Table.d.ts +197 -0
  118. package/dist/h5config/Table.js +589 -0
  119. package/dist/index.d.ts +4 -0
  120. package/dist/index.js +4 -0
  121. package/dist/lx-mobile.d.ts +23 -0
  122. package/dist/lx-mobile.js +174 -0
  123. package/dist/lx.d.ts +24 -0
  124. package/dist/lx.js +139 -0
  125. package/dist/utils.d.ts +12 -0
  126. package/dist/utils.js +67 -0
  127. package/package.json +1 -1
@@ -0,0 +1,210 @@
1
+ export declare const DformRadio: {
2
+ type: string;
3
+ variable: {
4
+ selectBgColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ followTheme: string;
9
+ };
10
+ itemBgColor: {
11
+ type: string;
12
+ label: string;
13
+ groupsName: string;
14
+ };
15
+ labelTextColor: {
16
+ type: string;
17
+ label: string;
18
+ groupsName: string;
19
+ desc: string;
20
+ canEdit: boolean;
21
+ extendsKey: string;
22
+ };
23
+ labelFontSize: {
24
+ type: string;
25
+ label: string;
26
+ groupsName: string;
27
+ desc: string;
28
+ canEdit: boolean;
29
+ extendsKey: string;
30
+ };
31
+ labelLineHeight: {
32
+ type: string;
33
+ label: string;
34
+ groupsName: string;
35
+ desc: string;
36
+ canEdit: boolean;
37
+ extendsKey: string;
38
+ };
39
+ labelFontWeight: {
40
+ type: string;
41
+ label: string;
42
+ groupsName: string;
43
+ options: {
44
+ title: string;
45
+ value: string;
46
+ }[];
47
+ desc: string;
48
+ canEdit: boolean;
49
+ extendsKey: string;
50
+ };
51
+ textColor: {
52
+ type: string;
53
+ label: string;
54
+ groupsName: string;
55
+ desc: string;
56
+ canEdit: boolean;
57
+ extendsKey: string;
58
+ };
59
+ fontSize: {
60
+ type: string;
61
+ label: string;
62
+ groupsName: string;
63
+ desc: string;
64
+ canEdit: boolean;
65
+ extendsKey: string;
66
+ };
67
+ lineHeight: {
68
+ type: string;
69
+ label: string;
70
+ groupsName: string;
71
+ desc: string;
72
+ canEdit: boolean;
73
+ extendsKey: string;
74
+ };
75
+ fontWeight: {
76
+ type: string;
77
+ label: string;
78
+ groupsName: string;
79
+ options: {
80
+ title: string;
81
+ value: string;
82
+ }[];
83
+ desc: string;
84
+ canEdit: boolean;
85
+ extendsKey: string;
86
+ };
87
+ headTextAlign: {
88
+ type: string;
89
+ label: string;
90
+ groupsName: string;
91
+ desc: string;
92
+ canEdit: boolean;
93
+ extendsKey: string;
94
+ options: {
95
+ title: string;
96
+ value: string;
97
+ }[];
98
+ };
99
+ paddingValue: {
100
+ type: string;
101
+ label: string;
102
+ groupsName: string;
103
+ desc: string;
104
+ canEdit: boolean;
105
+ extendsKey: string;
106
+ };
107
+ itemBorderRadius: {
108
+ type: string;
109
+ label: string;
110
+ groupsName: string;
111
+ followTheme: string;
112
+ };
113
+ selectBorderRadius: {
114
+ type: string;
115
+ label: string;
116
+ groupsName: string;
117
+ followTheme: string;
118
+ };
119
+ };
120
+ groupsName: string;
121
+ icon: string;
122
+ title: string;
123
+ defaultValue: {
124
+ selectBorderRadius: string;
125
+ selectBgColor: string;
126
+ itemBorderRadius: string;
127
+ itemBgColor: string;
128
+ }[];
129
+ followThemes: {
130
+ '@brand-primary': string[];
131
+ '@border-color-base': string[];
132
+ };
133
+ tpl: string;
134
+ components: {
135
+ id: string;
136
+ label: string;
137
+ compName: string;
138
+ type: string;
139
+ compType: number;
140
+ compLib: string;
141
+ props: {
142
+ name: string;
143
+ formCode: string;
144
+ autoLineFeed: boolean;
145
+ failScroll: boolean;
146
+ errorFlag: boolean;
147
+ hiddenBorder: string;
148
+ itemHasStar: boolean;
149
+ };
150
+ style: {
151
+ width: string;
152
+ };
153
+ isContainer: boolean;
154
+ isBusiObjContainer: boolean;
155
+ cmdgroup: string[];
156
+ platform: string;
157
+ setEvents: never[];
158
+ description: string;
159
+ image: string;
160
+ groupsName: string;
161
+ icon: string;
162
+ isLabelDropBoxChild: boolean;
163
+ components: {
164
+ id: string;
165
+ label: string;
166
+ compName: string;
167
+ type: string;
168
+ compType: number;
169
+ compLib: string;
170
+ props: {
171
+ name: string;
172
+ positionType: string;
173
+ titleIcon: string;
174
+ radioType: string;
175
+ radioPosition: string;
176
+ selectedType: string;
177
+ chunk: number;
178
+ title: string;
179
+ defaultValue: string;
180
+ dformType: string;
181
+ status: string;
182
+ options: {
183
+ id: string;
184
+ label: string;
185
+ value: string;
186
+ }[];
187
+ fieldProps: string;
188
+ };
189
+ style: {};
190
+ isContainer: boolean;
191
+ isBusiObjContainer: boolean;
192
+ cmdgroup: string[];
193
+ platform: string;
194
+ fieldProps: {
195
+ trigger: string;
196
+ valuePropName: string;
197
+ };
198
+ engineApi: string[];
199
+ setEvents: never[];
200
+ description: string;
201
+ image: string;
202
+ groupsName: string;
203
+ isAppChildForm: boolean;
204
+ isLabelDropBoxChild: boolean;
205
+ components: never[];
206
+ path: string[];
207
+ }[];
208
+ path: string[];
209
+ }[];
210
+ };
@@ -0,0 +1,256 @@
1
+ export var DformRadio = {
2
+ type: 'DformRadio',
3
+ variable: {
4
+ selectBgColor: {
5
+ type: 'color',
6
+ label: '选中填充颜色',
7
+ groupsName: '背景',
8
+ followTheme: '@brand-primary'
9
+ },
10
+ itemBgColor: {
11
+ type: 'color',
12
+ label: '默认填充颜色',
13
+ groupsName: '背景'
14
+ },
15
+ labelTextColor: {
16
+ type: 'color',
17
+ label: '标题颜色',
18
+ groupsName: '标题',
19
+ desc: '继承自表单,此处不可编辑',
20
+ canEdit: false,
21
+ extendsKey: 'DForm'
22
+ },
23
+ labelFontSize: {
24
+ type: 'px',
25
+ label: '标题尺寸',
26
+ groupsName: '标题',
27
+ desc: '继承自表单,此处不可编辑',
28
+ canEdit: false,
29
+ extendsKey: 'DForm'
30
+ },
31
+ labelLineHeight: {
32
+ type: 'px',
33
+ label: '标题行高',
34
+ groupsName: '标题',
35
+ desc: '继承自表单,此处不可编辑',
36
+ canEdit: false,
37
+ extendsKey: 'DForm'
38
+ },
39
+ labelFontWeight: {
40
+ type: 'select',
41
+ label: '标题字重',
42
+ groupsName: '标题',
43
+ options: [{
44
+ title: '100',
45
+ value: '100'
46
+ }, {
47
+ title: '200',
48
+ value: '200'
49
+ }, {
50
+ title: '300',
51
+ value: '300'
52
+ }, {
53
+ title: '400',
54
+ value: '400'
55
+ }, {
56
+ title: '500',
57
+ value: '500'
58
+ }, {
59
+ title: '600',
60
+ value: '600'
61
+ }, {
62
+ title: '700',
63
+ value: '700'
64
+ }],
65
+ desc: '继承自表单,此处不可编辑',
66
+ canEdit: false,
67
+ extendsKey: 'DForm'
68
+ },
69
+ textColor: {
70
+ type: 'color',
71
+ label: '文本颜色',
72
+ groupsName: '文字',
73
+ desc: '继承自表单,此处不可编辑',
74
+ canEdit: false,
75
+ extendsKey: 'DForm'
76
+ },
77
+ fontSize: {
78
+ type: 'px',
79
+ label: '文本尺寸',
80
+ groupsName: '文字',
81
+ desc: '继承自表单,此处不可编辑',
82
+ canEdit: false,
83
+ extendsKey: 'DForm'
84
+ },
85
+ lineHeight: {
86
+ type: 'px',
87
+ label: '文本行高',
88
+ groupsName: '文字',
89
+ desc: '继承自表单,此处不可编辑',
90
+ canEdit: false,
91
+ extendsKey: 'DForm'
92
+ },
93
+ fontWeight: {
94
+ type: 'select',
95
+ label: '文本字重',
96
+ groupsName: '文字',
97
+ options: [{
98
+ title: '100',
99
+ value: '100'
100
+ }, {
101
+ title: '200',
102
+ value: '200'
103
+ }, {
104
+ title: '300',
105
+ value: '300'
106
+ }, {
107
+ title: '400',
108
+ value: '400'
109
+ }, {
110
+ title: '500',
111
+ value: '500'
112
+ }, {
113
+ title: '600',
114
+ value: '600'
115
+ }, {
116
+ title: '700',
117
+ value: '700'
118
+ }],
119
+ desc: '继承自表单,此处不可编辑',
120
+ canEdit: false,
121
+ extendsKey: 'DForm'
122
+ },
123
+ headTextAlign: {
124
+ type: 'select',
125
+ label: '对齐方式',
126
+ groupsName: '文字',
127
+ desc: '继承自表单,此处不可编辑',
128
+ canEdit: false,
129
+ extendsKey: 'DForm',
130
+ options: [{
131
+ title: '左',
132
+ value: 'left'
133
+ }, {
134
+ title: '中',
135
+ value: 'center'
136
+ }, {
137
+ title: '右',
138
+ value: 'right'
139
+ }]
140
+ },
141
+ paddingValue: {
142
+ type: 'marginInput',
143
+ label: '内边距',
144
+ groupsName: '布局',
145
+ desc: '继承自表单,此处不可编辑',
146
+ canEdit: false,
147
+ extendsKey: 'DForm'
148
+ },
149
+ itemBorderRadius: {
150
+ type: 'color',
151
+ label: '默认边框颜色',
152
+ groupsName: '边框',
153
+ followTheme: '@border-color-base'
154
+ },
155
+ selectBorderRadius: {
156
+ type: 'color',
157
+ label: '选中边框颜色',
158
+ groupsName: '边框',
159
+ followTheme: '@brand-primary'
160
+ }
161
+ },
162
+ groupsName: '表单',
163
+ icon: 'icon-ico-comp-app-DformRadio',
164
+ title: '单选框',
165
+ defaultValue: [{
166
+ selectBorderRadius: '#108ee9',
167
+ selectBgColor: '#108ee9',
168
+ itemBorderRadius: '#e5e5e5',
169
+ itemBgColor: 'rgba(0,0,0,0)'
170
+ }],
171
+ followThemes: {
172
+ '@brand-primary': ['selectBorderRadius', 'selectBgColor'],
173
+ '@border-color-base': ['itemBorderRadius']
174
+ },
175
+ tpl: "\n .lingxiteam-dform-radio-button{\n background-color: itemBgColor;\n border-color: itemBorderRadius;\n }\n .lingxiteam-dform-radio-checked{\n border-color: selectBorderRadius;\n }\n .lingxiteam-dform-radio-inner-button{\n background-color: selectBgColor;\n }\n ",
176
+ components: [{
177
+ id: 'DForm_333712',
178
+ label: '表单',
179
+ compName: 'DForm',
180
+ type: 'DForm',
181
+ compType: 2,
182
+ compLib: '@/components',
183
+ props: {
184
+ name: '表单',
185
+ formCode: 'DForm_333712',
186
+ autoLineFeed: true,
187
+ failScroll: true,
188
+ errorFlag: true,
189
+ hiddenBorder: '0',
190
+ itemHasStar: true
191
+ },
192
+ style: {
193
+ width: 'auto'
194
+ },
195
+ isContainer: true,
196
+ isBusiObjContainer: true,
197
+ cmdgroup: ['basic'],
198
+ platform: 'h5',
199
+ setEvents: [],
200
+ description: '',
201
+ image: '',
202
+ groupsName: '容器',
203
+ icon: 'DForm',
204
+ isLabelDropBoxChild: false,
205
+ components: [{
206
+ id: 'DformRadio_71564',
207
+ label: '单选框',
208
+ compName: 'DformRadio',
209
+ type: 'DformRadio',
210
+ compType: 2,
211
+ compLib: '@/components',
212
+ props: {
213
+ name: '单选框',
214
+ positionType: 'horizontal',
215
+ titleIcon: 'none',
216
+ radioType: 'horizontal',
217
+ radioPosition: 'left',
218
+ selectedType: 'roundDot',
219
+ chunk: 2,
220
+ title: '单选框',
221
+ defaultValue: 'man',
222
+ dformType: 'DformRadio',
223
+ status: '1',
224
+ options: [{
225
+ id: '1',
226
+ label: '男',
227
+ value: 'man'
228
+ }, {
229
+ id: '2',
230
+ label: '女',
231
+ value: 'woman'
232
+ }],
233
+ fieldProps: 'bvfc'
234
+ },
235
+ style: {},
236
+ isContainer: false,
237
+ isBusiObjContainer: false,
238
+ cmdgroup: ['basic'],
239
+ platform: 'h5',
240
+ fieldProps: {
241
+ trigger: 'onChange',
242
+ valuePropName: 'defaultValue'
243
+ },
244
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
245
+ setEvents: [],
246
+ description: '',
247
+ image: '',
248
+ groupsName: '表单',
249
+ isAppChildForm: true,
250
+ isLabelDropBoxChild: false,
251
+ components: [],
252
+ path: ['769713', 'View_769713_1', 'DForm_458695']
253
+ }],
254
+ path: ['769713', 'View_769713_1']
255
+ }]
256
+ };
@@ -0,0 +1,195 @@
1
+ export declare const DformRangePicker: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelFontSize: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelLineHeight: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ labelFontWeight: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ options: {
33
+ title: string;
34
+ value: string;
35
+ }[];
36
+ desc: string;
37
+ canEdit: boolean;
38
+ extendsKey: string;
39
+ };
40
+ textColor: {
41
+ type: string;
42
+ label: string;
43
+ groupsName: string;
44
+ desc: string;
45
+ canEdit: boolean;
46
+ extendsKey: string;
47
+ };
48
+ fontSize: {
49
+ type: string;
50
+ label: string;
51
+ groupsName: string;
52
+ desc: string;
53
+ canEdit: boolean;
54
+ extendsKey: string;
55
+ };
56
+ lineHeight: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ desc: string;
61
+ canEdit: boolean;
62
+ extendsKey: string;
63
+ };
64
+ fontWeight: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ options: {
69
+ title: string;
70
+ value: string;
71
+ }[];
72
+ desc: string;
73
+ canEdit: boolean;
74
+ extendsKey: string;
75
+ };
76
+ headTextAlign: {
77
+ type: string;
78
+ label: string;
79
+ groupsName: string;
80
+ desc: string;
81
+ canEdit: boolean;
82
+ extendsKey: string;
83
+ options: {
84
+ title: string;
85
+ value: string;
86
+ }[];
87
+ };
88
+ iconLineColor: {
89
+ type: string;
90
+ label: string;
91
+ groupsName: string;
92
+ followTheme: string;
93
+ };
94
+ iconColor: {
95
+ type: string;
96
+ label: string;
97
+ groupsName: string;
98
+ desc: string;
99
+ canEdit: boolean;
100
+ extendsKey: string;
101
+ };
102
+ iconSize: {
103
+ type: string;
104
+ label: string;
105
+ groupsName: string;
106
+ desc: string;
107
+ canEdit: boolean;
108
+ extendsKey: string;
109
+ };
110
+ };
111
+ groupsName: string;
112
+ icon: string;
113
+ title: string;
114
+ defaultValue: {
115
+ iconLineColor: string;
116
+ }[];
117
+ followThemes: {
118
+ '@border-color-base': never[];
119
+ };
120
+ tpl: string;
121
+ components: {
122
+ id: string;
123
+ label: string;
124
+ compName: string;
125
+ type: string;
126
+ compType: number;
127
+ compLib: string;
128
+ props: {
129
+ name: string;
130
+ formCode: string;
131
+ autoLineFeed: boolean;
132
+ failScroll: boolean;
133
+ errorFlag: boolean;
134
+ hiddenBorder: string;
135
+ itemHasStar: boolean;
136
+ };
137
+ style: {
138
+ width: string;
139
+ };
140
+ isContainer: boolean;
141
+ isBusiObjContainer: boolean;
142
+ cmdgroup: string[];
143
+ platform: string;
144
+ setEvents: never[];
145
+ description: string;
146
+ image: string;
147
+ groupsName: string;
148
+ icon: string;
149
+ isLabelDropBoxChild: boolean;
150
+ components: {
151
+ id: string;
152
+ label: string;
153
+ compName: string;
154
+ type: string;
155
+ compType: number;
156
+ compLib: string;
157
+ props: {
158
+ name: string;
159
+ separatorStr: string;
160
+ positionType: string;
161
+ hasTitleIcon: string;
162
+ title: string;
163
+ dformType: string;
164
+ status: string;
165
+ selectType: string;
166
+ optionsLayout: string;
167
+ formatter: string;
168
+ modeType: string;
169
+ inputContent: string;
170
+ fieldProps: string;
171
+ };
172
+ style: {
173
+ inputContent: string;
174
+ };
175
+ isContainer: boolean;
176
+ isBusiObjContainer: boolean;
177
+ cmdgroup: string[];
178
+ platform: string;
179
+ setEvents: never[];
180
+ description: string;
181
+ image: string;
182
+ groupsName: string;
183
+ fieldProps: {
184
+ trigger: string;
185
+ valuePropName: string;
186
+ };
187
+ engineApi: string[];
188
+ isAppChildForm: boolean;
189
+ isLabelDropBoxChild: boolean;
190
+ components: never[];
191
+ path: string[];
192
+ }[];
193
+ path: string[];
194
+ }[];
195
+ };