@lingxiteam/theme-utils 0.1.3

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 (128) hide show
  1. package/README.md +83 -0
  2. package/dist/config/Button.d.ts +101 -0
  3. package/dist/config/Button.js +265 -0
  4. package/dist/config/Card.d.ts +137 -0
  5. package/dist/config/Card.js +149 -0
  6. package/dist/config/Cascader.d.ts +179 -0
  7. package/dist/config/Cascader.js +208 -0
  8. package/dist/config/Checkbox.d.ts +161 -0
  9. package/dist/config/Checkbox.js +161 -0
  10. package/dist/config/CheckboxGroup.d.ts +176 -0
  11. package/dist/config/CheckboxGroup.js +184 -0
  12. package/dist/config/Collapse.d.ts +170 -0
  13. package/dist/config/Collapse.js +308 -0
  14. package/dist/config/Container.d.ts +268 -0
  15. package/dist/config/Container.js +288 -0
  16. package/dist/config/DatePicker.d.ts +163 -0
  17. package/dist/config/DatePicker.js +163 -0
  18. package/dist/config/Description.d.ts +97 -0
  19. package/dist/config/Description.js +117 -0
  20. package/dist/config/Divider.d.ts +61 -0
  21. package/dist/config/Divider.js +61 -0
  22. package/dist/config/Form.d.ts +2700 -0
  23. package/dist/config/Form.js +1214 -0
  24. package/dist/config/Icon.d.ts +51 -0
  25. package/dist/config/Icon.js +51 -0
  26. package/dist/config/Input.d.ts +150 -0
  27. package/dist/config/Input.js +150 -0
  28. package/dist/config/InputNumber.d.ts +145 -0
  29. package/dist/config/InputNumber.js +145 -0
  30. package/dist/config/Link.d.ts +123 -0
  31. package/dist/config/Link.js +115 -0
  32. package/dist/config/MultipleSelect.d.ts +158 -0
  33. package/dist/config/MultipleSelect.js +166 -0
  34. package/dist/config/Radio.d.ts +171 -0
  35. package/dist/config/Radio.js +179 -0
  36. package/dist/config/RangePicker.d.ts +165 -0
  37. package/dist/config/RangePicker.js +165 -0
  38. package/dist/config/Select.d.ts +173 -0
  39. package/dist/config/Select.js +181 -0
  40. package/dist/config/StdUpload.d.ts +204 -0
  41. package/dist/config/StdUpload.js +208 -0
  42. package/dist/config/Switch.d.ts +137 -0
  43. package/dist/config/Switch.js +137 -0
  44. package/dist/config/Table.d.ts +398 -0
  45. package/dist/config/Table.js +527 -0
  46. package/dist/config/Tabs.d.ts +170 -0
  47. package/dist/config/Tabs.js +229 -0
  48. package/dist/config/Tag.d.ts +114 -0
  49. package/dist/config/Tag.js +314 -0
  50. package/dist/config/Text.d.ts +30 -0
  51. package/dist/config/Text.js +30 -0
  52. package/dist/config/TextArea.d.ts +142 -0
  53. package/dist/config/TextArea.js +142 -0
  54. package/dist/config/TimePicker.d.ts +164 -0
  55. package/dist/config/TimePicker.js +164 -0
  56. package/dist/config/Tree.d.ts +131 -0
  57. package/dist/config/Tree.js +175 -0
  58. package/dist/config/TreeSelect.d.ts +180 -0
  59. package/dist/config/TreeSelect.js +196 -0
  60. package/dist/css.d.ts +6 -0
  61. package/dist/css.js +121 -0
  62. package/dist/demo.d.ts +5 -0
  63. package/dist/demo.js +79 -0
  64. package/dist/h5config/Accordion.d.ts +338 -0
  65. package/dist/h5config/Accordion.js +445 -0
  66. package/dist/h5config/Button.d.ts +134 -0
  67. package/dist/h5config/Button.js +245 -0
  68. package/dist/h5config/Card.d.ts +268 -0
  69. package/dist/h5config/Card.js +425 -0
  70. package/dist/h5config/DAddressPicker.d.ts +196 -0
  71. package/dist/h5config/DAddressPicker.js +226 -0
  72. package/dist/h5config/DCheckbox.d.ts +203 -0
  73. package/dist/h5config/DCheckbox.js +237 -0
  74. package/dist/h5config/DForm.d.ts +1607 -0
  75. package/dist/h5config/DForm.js +897 -0
  76. package/dist/h5config/DMultiplePicker.d.ts +197 -0
  77. package/dist/h5config/DMultiplePicker.js +231 -0
  78. package/dist/h5config/DformDate.d.ts +199 -0
  79. package/dist/h5config/DformDate.js +229 -0
  80. package/dist/h5config/DformFile.d.ts +186 -0
  81. package/dist/h5config/DformFile.js +198 -0
  82. package/dist/h5config/DformImagePicker.d.ts +138 -0
  83. package/dist/h5config/DformImagePicker.js +150 -0
  84. package/dist/h5config/DformInput.d.ts +188 -0
  85. package/dist/h5config/DformInput.js +218 -0
  86. package/dist/h5config/DformInputNumber.d.ts +173 -0
  87. package/dist/h5config/DformInputNumber.js +203 -0
  88. package/dist/h5config/DformPicker.d.ts +198 -0
  89. package/dist/h5config/DformPicker.js +232 -0
  90. package/dist/h5config/DformRadio.d.ts +203 -0
  91. package/dist/h5config/DformRadio.js +237 -0
  92. package/dist/h5config/DformRangePicker.d.ts +199 -0
  93. package/dist/h5config/DformRangePicker.js +229 -0
  94. package/dist/h5config/DformSelect.d.ts +208 -0
  95. package/dist/h5config/DformSelect.js +260 -0
  96. package/dist/h5config/DformSwitch.d.ts +146 -0
  97. package/dist/h5config/DformSwitch.js +158 -0
  98. package/dist/h5config/DformTextArea.d.ts +184 -0
  99. package/dist/h5config/DformTextArea.js +214 -0
  100. package/dist/h5config/Divider.d.ts +53 -0
  101. package/dist/h5config/Divider.js +90 -0
  102. package/dist/h5config/FilterItems.d.ts +142 -0
  103. package/dist/h5config/FilterItems.js +181 -0
  104. package/dist/h5config/Grid.d.ts +117 -0
  105. package/dist/h5config/Grid.js +154 -0
  106. package/dist/h5config/Icon.d.ts +54 -0
  107. package/dist/h5config/Icon.js +54 -0
  108. package/dist/h5config/Link.d.ts +47 -0
  109. package/dist/h5config/Link.js +47 -0
  110. package/dist/h5config/LoadMore.d.ts +527 -0
  111. package/dist/h5config/LoadMore.js +940 -0
  112. package/dist/h5config/NoticeBarPlus.d.ts +104 -0
  113. package/dist/h5config/NoticeBarPlus.js +129 -0
  114. package/dist/h5config/SearchView.d.ts +128 -0
  115. package/dist/h5config/SearchView.js +163 -0
  116. package/dist/h5config/StaticTabs.d.ts +133 -0
  117. package/dist/h5config/StaticTabs.js +173 -0
  118. package/dist/h5config/Table.d.ts +182 -0
  119. package/dist/h5config/Table.js +566 -0
  120. package/dist/index.d.ts +4 -0
  121. package/dist/index.js +4 -0
  122. package/dist/lx-mobile.d.ts +9 -0
  123. package/dist/lx-mobile.js +153 -0
  124. package/dist/lx.d.ts +6 -0
  125. package/dist/lx.js +112 -0
  126. package/dist/utils.d.ts +12 -0
  127. package/dist/utils.js +65 -0
  128. package/package.json +38 -0
@@ -0,0 +1,199 @@
1
+ export declare const DformRangePicker: {
2
+ type: string;
3
+ variable: {
4
+ iconLineColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ iconColor: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ desc: string;
14
+ canEdit: boolean;
15
+ extendsKey: string;
16
+ };
17
+ iconSize: {
18
+ type: string;
19
+ label: string;
20
+ groupsName: string;
21
+ desc: string;
22
+ canEdit: boolean;
23
+ extendsKey: string;
24
+ };
25
+ labelTextColor: {
26
+ type: string;
27
+ label: string;
28
+ groupsName: string;
29
+ desc: string;
30
+ canEdit: boolean;
31
+ extendsKey: string;
32
+ };
33
+ labelLineHeight: {
34
+ type: string;
35
+ label: string;
36
+ groupsName: string;
37
+ desc: string;
38
+ canEdit: boolean;
39
+ extendsKey: string;
40
+ };
41
+ labelFontSize: {
42
+ type: string;
43
+ label: string;
44
+ groupsName: string;
45
+ desc: string;
46
+ canEdit: boolean;
47
+ extendsKey: string;
48
+ };
49
+ labelFontWeight: {
50
+ type: string;
51
+ label: string;
52
+ groupsName: string;
53
+ options: {
54
+ title: string;
55
+ value: string;
56
+ }[];
57
+ desc: string;
58
+ canEdit: boolean;
59
+ extendsKey: string;
60
+ };
61
+ textColor: {
62
+ type: string;
63
+ label: string;
64
+ groupsName: string;
65
+ desc: string;
66
+ canEdit: boolean;
67
+ extendsKey: string;
68
+ };
69
+ fontSize: {
70
+ type: string;
71
+ label: string;
72
+ groupsName: string;
73
+ desc: string;
74
+ canEdit: boolean;
75
+ extendsKey: string;
76
+ };
77
+ lineHeight: {
78
+ type: string;
79
+ label: string;
80
+ groupsName: string;
81
+ desc: string;
82
+ canEdit: boolean;
83
+ extendsKey: string;
84
+ };
85
+ fontWeight: {
86
+ type: string;
87
+ label: string;
88
+ groupsName: string;
89
+ options: {
90
+ title: string;
91
+ value: string;
92
+ }[];
93
+ desc: string;
94
+ canEdit: boolean;
95
+ extendsKey: string;
96
+ };
97
+ paddingValue: {
98
+ type: string;
99
+ label: string;
100
+ groupsName: string;
101
+ desc: string;
102
+ canEdit: boolean;
103
+ extendsKey: string;
104
+ };
105
+ headTextAlign: {
106
+ type: string;
107
+ label: string;
108
+ groupsName: string;
109
+ desc: string;
110
+ canEdit: boolean;
111
+ extendsKey: string;
112
+ options: {
113
+ title: string;
114
+ value: string;
115
+ }[];
116
+ };
117
+ };
118
+ groupsName: string;
119
+ icon: string;
120
+ title: string;
121
+ defaultValue: {
122
+ iconLineColor: string;
123
+ }[];
124
+ tpl: string;
125
+ components: {
126
+ id: string;
127
+ label: string;
128
+ compName: string;
129
+ type: string;
130
+ compType: number;
131
+ compLib: string;
132
+ props: {
133
+ name: string;
134
+ formCode: string;
135
+ autoLineFeed: boolean;
136
+ failScroll: boolean;
137
+ errorFlag: boolean;
138
+ hiddenBorder: string;
139
+ itemHasStar: boolean;
140
+ };
141
+ style: {
142
+ width: string;
143
+ };
144
+ isContainer: boolean;
145
+ isBusiObjContainer: boolean;
146
+ cmdgroup: string[];
147
+ platform: string;
148
+ setEvents: never[];
149
+ description: string;
150
+ image: string;
151
+ groupsName: string;
152
+ icon: string;
153
+ isLabelDropBoxChild: boolean;
154
+ components: {
155
+ id: string;
156
+ label: string;
157
+ compName: string;
158
+ type: string;
159
+ compType: number;
160
+ compLib: string;
161
+ props: {
162
+ name: string;
163
+ separatorStr: string;
164
+ positionType: string;
165
+ hasTitleIcon: string;
166
+ title: string;
167
+ dformType: string;
168
+ status: string;
169
+ selectType: string;
170
+ optionsLayout: string;
171
+ formatter: string;
172
+ modeType: string;
173
+ inputContent: string;
174
+ fieldProps: string;
175
+ };
176
+ style: {
177
+ inputContent: string;
178
+ };
179
+ isContainer: boolean;
180
+ isBusiObjContainer: boolean;
181
+ cmdgroup: string[];
182
+ platform: string;
183
+ setEvents: never[];
184
+ description: string;
185
+ image: string;
186
+ groupsName: string;
187
+ fieldProps: {
188
+ trigger: string;
189
+ valuePropName: string;
190
+ };
191
+ engineApi: string[];
192
+ isAppChildForm: boolean;
193
+ isLabelDropBoxChild: boolean;
194
+ components: never[];
195
+ path: string[];
196
+ }[];
197
+ path: string[];
198
+ }[];
199
+ };
@@ -0,0 +1,229 @@
1
+ export var DformRangePicker = {
2
+ type: 'DformRangePicker',
3
+ variable: {
4
+ iconLineColor: {
5
+ type: 'color',
6
+ label: '时间分割符颜色',
7
+ groupsName: '图标'
8
+ },
9
+ iconColor: {
10
+ type: 'color',
11
+ label: '后缀图标颜色',
12
+ groupsName: '图标',
13
+ desc: '继承自表单,此处不可编辑',
14
+ canEdit: false,
15
+ extendsKey: 'DForm'
16
+ },
17
+ iconSize: {
18
+ type: 'px',
19
+ label: '后缀图标尺寸',
20
+ groupsName: '图标',
21
+ desc: '继承自表单,此处不可编辑',
22
+ canEdit: false,
23
+ extendsKey: 'DForm'
24
+ },
25
+ labelTextColor: {
26
+ type: 'color',
27
+ label: '标签文本颜色',
28
+ groupsName: '标签',
29
+ desc: '继承自表单,此处不可编辑',
30
+ canEdit: false,
31
+ extendsKey: 'DForm'
32
+ },
33
+ labelLineHeight: {
34
+ type: 'px',
35
+ label: '标签文本行高',
36
+ groupsName: '标签',
37
+ desc: '继承自表单,此处不可编辑',
38
+ canEdit: false,
39
+ extendsKey: 'DForm'
40
+ },
41
+ labelFontSize: {
42
+ type: 'px',
43
+ label: '标签文本尺寸',
44
+ groupsName: '标签',
45
+ desc: '继承自表单,此处不可编辑',
46
+ canEdit: false,
47
+ extendsKey: 'DForm'
48
+ },
49
+ labelFontWeight: {
50
+ type: 'select',
51
+ label: '标签文本字重',
52
+ groupsName: '标签',
53
+ options: [{
54
+ title: '100',
55
+ value: '100'
56
+ }, {
57
+ title: '200',
58
+ value: '200'
59
+ }, {
60
+ title: '300',
61
+ value: '300'
62
+ }, {
63
+ title: '400',
64
+ value: '400'
65
+ }, {
66
+ title: '500',
67
+ value: '500'
68
+ }],
69
+ desc: '继承自表单,此处不可编辑',
70
+ canEdit: false,
71
+ extendsKey: 'DForm'
72
+ },
73
+ textColor: {
74
+ type: 'color',
75
+ label: '文本颜色',
76
+ groupsName: '组件',
77
+ desc: '继承自表单,此处不可编辑',
78
+ canEdit: false,
79
+ extendsKey: 'DForm'
80
+ },
81
+ fontSize: {
82
+ type: 'px',
83
+ label: '文本尺寸',
84
+ groupsName: '组件',
85
+ desc: '继承自表单,此处不可编辑',
86
+ canEdit: false,
87
+ extendsKey: 'DForm'
88
+ },
89
+ lineHeight: {
90
+ type: 'px',
91
+ label: '文本行高',
92
+ groupsName: '组件',
93
+ desc: '继承自表单,此处不可编辑',
94
+ canEdit: false,
95
+ extendsKey: 'DForm'
96
+ },
97
+ fontWeight: {
98
+ type: 'select',
99
+ label: '文本字重',
100
+ groupsName: '组件',
101
+ options: [{
102
+ title: '100',
103
+ value: '100'
104
+ }, {
105
+ title: '200',
106
+ value: '200'
107
+ }, {
108
+ title: '300',
109
+ value: '300'
110
+ }, {
111
+ title: '400',
112
+ value: '400'
113
+ }, {
114
+ title: '500',
115
+ value: '500'
116
+ }],
117
+ desc: '继承自表单,此处不可编辑',
118
+ canEdit: false,
119
+ extendsKey: 'DForm'
120
+ },
121
+ paddingValue: {
122
+ type: 'marginInput',
123
+ label: '内边距',
124
+ groupsName: '组件',
125
+ desc: '继承自表单,此处不可编辑',
126
+ canEdit: false,
127
+ extendsKey: 'DForm'
128
+ },
129
+ headTextAlign: {
130
+ type: 'select',
131
+ label: '文字对齐方式',
132
+ groupsName: '组件',
133
+ desc: '继承自表单,此处不可编辑',
134
+ canEdit: false,
135
+ extendsKey: 'DForm',
136
+ options: [{
137
+ title: 'left',
138
+ value: 'left'
139
+ }, {
140
+ title: 'center',
141
+ value: 'center'
142
+ }, {
143
+ title: 'right',
144
+ value: 'right'
145
+ }]
146
+ }
147
+ },
148
+ groupsName: '表单',
149
+ icon: 'icon-ico-comp-rangepicker',
150
+ title: '时间段选择',
151
+ defaultValue: [{
152
+ iconLineColor: 'rgba(0, 0, 0, 0.45)'
153
+ }],
154
+ tpl: ".lingxiteam-dform-line{\n color: iconLineColor;\n }",
155
+ components: [{
156
+ id: 'DForm_333712',
157
+ label: '表单',
158
+ compName: 'DForm',
159
+ type: 'DForm',
160
+ compType: 2,
161
+ compLib: '@/components',
162
+ props: {
163
+ name: '表单',
164
+ formCode: 'DForm_333712',
165
+ autoLineFeed: true,
166
+ failScroll: true,
167
+ errorFlag: true,
168
+ hiddenBorder: '0',
169
+ itemHasStar: true
170
+ },
171
+ style: {
172
+ width: 'auto'
173
+ },
174
+ isContainer: true,
175
+ isBusiObjContainer: true,
176
+ cmdgroup: ['basic'],
177
+ platform: 'h5',
178
+ setEvents: [],
179
+ description: '',
180
+ image: '',
181
+ groupsName: '容器',
182
+ icon: 'DForm',
183
+ isLabelDropBoxChild: false,
184
+ components: [{
185
+ id: 'DformRangePicker_245198',
186
+ label: '时间段选择',
187
+ compName: 'DformRangePicker',
188
+ type: 'DformRangePicker',
189
+ compType: 2,
190
+ compLib: '@/components',
191
+ props: {
192
+ name: '时间段选择',
193
+ separatorStr: '~',
194
+ positionType: 'horizontal',
195
+ hasTitleIcon: 'none',
196
+ title: '时间段选择',
197
+ dformType: 'DformRangePicker',
198
+ status: '1',
199
+ selectType: 'multiple',
200
+ optionsLayout: 'horizontal',
201
+ formatter: 'YYYY-MM-DD',
202
+ modeType: 'date',
203
+ inputContent: '1',
204
+ fieldProps: 'asdsa'
205
+ },
206
+ style: {
207
+ inputContent: '1'
208
+ },
209
+ isContainer: false,
210
+ isBusiObjContainer: false,
211
+ cmdgroup: ['basic'],
212
+ platform: 'h5',
213
+ setEvents: [],
214
+ description: '',
215
+ image: '',
216
+ groupsName: '表单',
217
+ fieldProps: {
218
+ trigger: 'onChange',
219
+ valuePropName: 'defaultValue'
220
+ },
221
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
222
+ isAppChildForm: true,
223
+ isLabelDropBoxChild: false,
224
+ components: [],
225
+ path: ['769713', 'View_769713_1', 'DForm_458695']
226
+ }],
227
+ path: ['769713', 'View_769713_1']
228
+ }]
229
+ };
@@ -0,0 +1,208 @@
1
+ export declare const DformSelect: {
2
+ type: string;
3
+ variable: {
4
+ iconColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ iconSize: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelTextColor: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ labelLineHeight: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ labelFontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ labelFontWeight: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ options: {
49
+ title: string;
50
+ value: string;
51
+ }[];
52
+ desc: string;
53
+ canEdit: boolean;
54
+ extendsKey: string;
55
+ };
56
+ textColor: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ desc: string;
61
+ canEdit: boolean;
62
+ extendsKey: string;
63
+ };
64
+ fontSize: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ desc: string;
69
+ canEdit: boolean;
70
+ extendsKey: string;
71
+ };
72
+ lineHeight: {
73
+ type: string;
74
+ label: string;
75
+ groupsName: string;
76
+ desc: string;
77
+ canEdit: boolean;
78
+ extendsKey: string;
79
+ };
80
+ fontWeight: {
81
+ type: string;
82
+ label: string;
83
+ groupsName: string;
84
+ options: {
85
+ title: string;
86
+ value: string;
87
+ }[];
88
+ desc: string;
89
+ canEdit: boolean;
90
+ extendsKey: string;
91
+ };
92
+ paddingValue: {
93
+ type: string;
94
+ label: string;
95
+ groupsName: string;
96
+ desc: string;
97
+ canEdit: boolean;
98
+ extendsKey: string;
99
+ };
100
+ headTextAlign: {
101
+ type: string;
102
+ label: string;
103
+ groupsName: string;
104
+ desc: string;
105
+ canEdit: boolean;
106
+ extendsKey: string;
107
+ options: {
108
+ title: string;
109
+ value: string;
110
+ }[];
111
+ };
112
+ };
113
+ groupsName: string;
114
+ icon: string;
115
+ title: string;
116
+ defaultValue: {}[];
117
+ tpl: string;
118
+ components: {
119
+ id: string;
120
+ label: string;
121
+ compName: string;
122
+ type: string;
123
+ compType: number;
124
+ compLib: string;
125
+ props: {
126
+ name: string;
127
+ formCode: string;
128
+ autoLineFeed: boolean;
129
+ failScroll: boolean;
130
+ errorFlag: boolean;
131
+ hiddenBorder: string;
132
+ itemHasStar: boolean;
133
+ };
134
+ style: {
135
+ width: string;
136
+ };
137
+ isContainer: boolean;
138
+ isBusiObjContainer: boolean;
139
+ cmdgroup: string[];
140
+ platform: string;
141
+ setEvents: never[];
142
+ description: string;
143
+ image: string;
144
+ groupsName: string;
145
+ icon: string;
146
+ isLabelDropBoxChild: boolean;
147
+ components: {
148
+ id: string;
149
+ label: string;
150
+ compName: string;
151
+ type: string;
152
+ compType: number;
153
+ compLib: string;
154
+ props: {
155
+ name: string;
156
+ titleIcon: string;
157
+ postfix: string;
158
+ postfixIconPosition: string;
159
+ dformType: string;
160
+ data: never[];
161
+ title: string;
162
+ placeholder: string;
163
+ positionType: string;
164
+ status: string;
165
+ icon: {
166
+ isIconFont: boolean;
167
+ theme: string;
168
+ type: string;
169
+ };
170
+ fieldProps: string;
171
+ options: {
172
+ label: string;
173
+ key: string;
174
+ $$isParent: boolean;
175
+ title: string;
176
+ children: {
177
+ label: string;
178
+ key: string;
179
+ title: string;
180
+ value: string;
181
+ }[];
182
+ value: string;
183
+ }[];
184
+ };
185
+ style: {
186
+ textAlign: string;
187
+ };
188
+ isContainer: boolean;
189
+ isBusiObjContainer: boolean;
190
+ cmdgroup: string[];
191
+ platform: string;
192
+ engineApi: string[];
193
+ setEvents: never[];
194
+ description: string;
195
+ image: string;
196
+ groupsName: string;
197
+ fieldProps: {
198
+ trigger: string;
199
+ valuePropName: string;
200
+ };
201
+ isAppChildForm: boolean;
202
+ isLabelDropBoxChild: boolean;
203
+ components: never[];
204
+ path: string[];
205
+ }[];
206
+ path: string[];
207
+ }[];
208
+ };