@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,197 @@
1
+ export declare const DMultiplePicker: {
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
+ valueType: string;
157
+ titleIcon: string;
158
+ postfix: string;
159
+ postfixIconPosition: string;
160
+ title: string;
161
+ dformType: string;
162
+ positionType: string;
163
+ status: string;
164
+ options: {
165
+ label: string;
166
+ value: string;
167
+ id: string;
168
+ }[];
169
+ icon: {
170
+ isIconFont: boolean;
171
+ theme: string;
172
+ type: string;
173
+ };
174
+ fieldProps: string;
175
+ };
176
+ style: {};
177
+ isContainer: boolean;
178
+ isBusiObjContainer: boolean;
179
+ cmdgroup: string[];
180
+ platform: string;
181
+ fieldProps: {
182
+ trigger: string;
183
+ valuePropName: string;
184
+ };
185
+ engineApi: string[];
186
+ setEvents: never[];
187
+ description: string;
188
+ image: string;
189
+ groupsName: string;
190
+ isAppChildForm: boolean;
191
+ isLabelDropBoxChild: boolean;
192
+ components: never[];
193
+ path: string[];
194
+ }[];
195
+ path: string[];
196
+ }[];
197
+ };
@@ -0,0 +1,231 @@
1
+ export var DMultiplePicker = {
2
+ type: 'DMultiplePicker',
3
+ variable: {
4
+ iconColor: {
5
+ type: 'color',
6
+ label: '后缀图标颜色',
7
+ groupsName: '图标',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'DForm'
11
+ },
12
+ iconSize: {
13
+ type: 'px',
14
+ label: '后缀图标尺寸',
15
+ groupsName: '图标',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'DForm'
19
+ },
20
+ labelTextColor: {
21
+ type: 'color',
22
+ label: '标签文本颜色',
23
+ groupsName: '标签',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'DForm'
27
+ },
28
+ labelLineHeight: {
29
+ type: 'px',
30
+ label: '标签文本行高',
31
+ groupsName: '标签',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'DForm'
35
+ },
36
+ labelFontSize: {
37
+ type: 'px',
38
+ label: '标签文本尺寸',
39
+ groupsName: '标签',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'DForm'
43
+ },
44
+ labelFontWeight: {
45
+ type: 'select',
46
+ label: '标签文本字重',
47
+ groupsName: '标签',
48
+ options: [{
49
+ title: '100',
50
+ value: '100'
51
+ }, {
52
+ title: '200',
53
+ value: '200'
54
+ }, {
55
+ title: '300',
56
+ value: '300'
57
+ }, {
58
+ title: '400',
59
+ value: '400'
60
+ }, {
61
+ title: '500',
62
+ value: '500'
63
+ }],
64
+ desc: '继承自表单,此处不可编辑',
65
+ canEdit: false,
66
+ extendsKey: 'DForm'
67
+ },
68
+ textColor: {
69
+ type: 'color',
70
+ label: '文本颜色',
71
+ groupsName: '组件',
72
+ desc: '继承自表单,此处不可编辑',
73
+ canEdit: false,
74
+ extendsKey: 'DForm'
75
+ },
76
+ fontSize: {
77
+ type: 'px',
78
+ label: '文本尺寸',
79
+ groupsName: '组件',
80
+ desc: '继承自表单,此处不可编辑',
81
+ canEdit: false,
82
+ extendsKey: 'DForm'
83
+ },
84
+ lineHeight: {
85
+ type: 'px',
86
+ label: '文本行高',
87
+ groupsName: '组件',
88
+ desc: '继承自表单,此处不可编辑',
89
+ canEdit: false,
90
+ extendsKey: 'DForm'
91
+ },
92
+ fontWeight: {
93
+ type: 'select',
94
+ label: '文本字重',
95
+ groupsName: '组件',
96
+ options: [{
97
+ title: '100',
98
+ value: '100'
99
+ }, {
100
+ title: '200',
101
+ value: '200'
102
+ }, {
103
+ title: '300',
104
+ value: '300'
105
+ }, {
106
+ title: '400',
107
+ value: '400'
108
+ }, {
109
+ title: '500',
110
+ value: '500'
111
+ }],
112
+ desc: '继承自表单,此处不可编辑',
113
+ canEdit: false,
114
+ extendsKey: 'DForm'
115
+ },
116
+ paddingValue: {
117
+ type: 'marginInput',
118
+ label: '内边距',
119
+ groupsName: '组件',
120
+ desc: '继承自表单,此处不可编辑',
121
+ canEdit: false,
122
+ extendsKey: 'DForm'
123
+ },
124
+ headTextAlign: {
125
+ type: 'select',
126
+ label: '文字对齐方式',
127
+ groupsName: '组件',
128
+ desc: '继承自表单,此处不可编辑',
129
+ canEdit: false,
130
+ extendsKey: 'DForm',
131
+ options: [{
132
+ title: 'left',
133
+ value: 'left'
134
+ }, {
135
+ title: 'center',
136
+ value: 'center'
137
+ }, {
138
+ title: 'right',
139
+ value: 'right'
140
+ }]
141
+ }
142
+ },
143
+ groupsName: '表单',
144
+ icon: 'icon-ico-comp-app-DMultiplePicker',
145
+ title: '多项选择',
146
+ defaultValue: [{}],
147
+ tpl: "",
148
+ components: [{
149
+ id: 'DForm_333712',
150
+ label: '表单',
151
+ compName: 'DForm',
152
+ type: 'DForm',
153
+ compType: 2,
154
+ compLib: '@/components',
155
+ props: {
156
+ name: '表单',
157
+ formCode: 'DForm_333712',
158
+ autoLineFeed: true,
159
+ failScroll: true,
160
+ errorFlag: true,
161
+ hiddenBorder: '0',
162
+ itemHasStar: true
163
+ },
164
+ style: {
165
+ width: 'auto'
166
+ },
167
+ isContainer: true,
168
+ isBusiObjContainer: true,
169
+ cmdgroup: ['basic'],
170
+ platform: 'h5',
171
+ setEvents: [],
172
+ description: '',
173
+ image: '',
174
+ groupsName: '容器',
175
+ icon: 'DForm',
176
+ isLabelDropBoxChild: false,
177
+ components: [{
178
+ id: 'DMultiplePicker_919181',
179
+ label: '多项选择',
180
+ compName: 'DMultiplePicker',
181
+ type: 'DMultiplePicker',
182
+ compType: 2,
183
+ compLib: '@/components',
184
+ props: {
185
+ name: '多项选择',
186
+ valueType: 'ellipsis',
187
+ titleIcon: 'none',
188
+ postfix: '',
189
+ postfixIconPosition: 'before',
190
+ title: '多项选择',
191
+ dformType: 'DMultiplePicker',
192
+ positionType: 'horizontal',
193
+ status: '1',
194
+ options: [{
195
+ label: '选项1',
196
+ value: 'options1',
197
+ id: 'options1'
198
+ }, {
199
+ label: '选项2',
200
+ value: 'options2',
201
+ id: 'options2'
202
+ }],
203
+ icon: {
204
+ isIconFont: false,
205
+ theme: 'outlined',
206
+ type: 'right'
207
+ },
208
+ fieldProps: 'fecss'
209
+ },
210
+ style: {},
211
+ isContainer: false,
212
+ isBusiObjContainer: false,
213
+ cmdgroup: ['basic'],
214
+ platform: 'h5',
215
+ fieldProps: {
216
+ trigger: 'onChange',
217
+ valuePropName: 'defaultValue'
218
+ },
219
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
220
+ setEvents: [],
221
+ description: '',
222
+ image: '',
223
+ groupsName: '表单',
224
+ isAppChildForm: true,
225
+ isLabelDropBoxChild: false,
226
+ components: [],
227
+ path: ['769713', 'View_769713_1', 'DForm_458695']
228
+ }],
229
+ path: ['769713', 'View_769713_1']
230
+ }]
231
+ };
@@ -0,0 +1,199 @@
1
+ export declare const DformDate: {
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
+ title: string;
160
+ dformType: string;
161
+ positionType: string;
162
+ status: string;
163
+ modeType: string;
164
+ chooseType: string;
165
+ replaceName: {
166
+ 年: string;
167
+ 月: string;
168
+ 日: string;
169
+ };
170
+ icon: {
171
+ isIconFont: boolean;
172
+ theme: string;
173
+ type: string;
174
+ };
175
+ formatter: string;
176
+ fieldProps: string;
177
+ };
178
+ style: {};
179
+ isContainer: boolean;
180
+ isBusiObjContainer: boolean;
181
+ cmdgroup: string[];
182
+ platform: string;
183
+ fieldProps: {
184
+ trigger: string;
185
+ valuePropName: string;
186
+ };
187
+ engineApi: string[];
188
+ setEvents: never[];
189
+ description: string;
190
+ image: string;
191
+ groupsName: string;
192
+ isAppChildForm: boolean;
193
+ isLabelDropBoxChild: boolean;
194
+ components: never[];
195
+ path: string[];
196
+ }[];
197
+ path: string[];
198
+ }[];
199
+ };