@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,173 @@
1
+ export declare const Tag: {
2
+ type: string;
3
+ variable: {
4
+ backgroundColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ fontSize: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ paddingValue: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ };
19
+ marginValue: {
20
+ type: string;
21
+ label: string;
22
+ groupsName: string;
23
+ };
24
+ borderRadius: {
25
+ type: string;
26
+ label: string;
27
+ groupsName: string;
28
+ };
29
+ closeColor: {
30
+ type: string;
31
+ label: string;
32
+ groupsName: string;
33
+ };
34
+ closeSize: {
35
+ type: string;
36
+ label: string;
37
+ groupsName: string;
38
+ };
39
+ };
40
+ groupsName: string;
41
+ icon: string;
42
+ title: string;
43
+ defaultValue: {
44
+ backgroundColor: string;
45
+ paddingValue: string;
46
+ marginValue: string;
47
+ borderRadius: string;
48
+ fontSize: string;
49
+ closeColor: string;
50
+ closeSize: string;
51
+ }[];
52
+ tpl: string;
53
+ components: ({
54
+ id: string;
55
+ label: string;
56
+ compName: string;
57
+ type: string;
58
+ compType: number;
59
+ compLib: string;
60
+ props: {
61
+ name: string;
62
+ basicStatus: number;
63
+ title: string;
64
+ closable: boolean;
65
+ tagType: {
66
+ name: string;
67
+ key: string;
68
+ classname?: undefined;
69
+ };
70
+ };
71
+ style: {
72
+ minHeight: string;
73
+ textAlign?: undefined;
74
+ display?: undefined;
75
+ flexDirection?: undefined;
76
+ padding?: undefined;
77
+ width?: undefined;
78
+ backgroundColor?: undefined;
79
+ height?: undefined;
80
+ };
81
+ isContainer: boolean;
82
+ isBusiObjContainer: boolean;
83
+ cmdgroup: string[];
84
+ platform: string;
85
+ icon: string;
86
+ description: string;
87
+ image: string;
88
+ groupsName: string;
89
+ setEvents: never[];
90
+ isLabelDropBoxChild: boolean;
91
+ components: never[];
92
+ path: string[];
93
+ engineApi?: undefined;
94
+ } | {
95
+ id: string;
96
+ label: string;
97
+ compName: string;
98
+ type: string;
99
+ compType: number;
100
+ compLib: string;
101
+ props: {
102
+ name: string;
103
+ basicStatus: number;
104
+ title?: undefined;
105
+ closable?: undefined;
106
+ tagType?: undefined;
107
+ };
108
+ style: {
109
+ textAlign: string;
110
+ display: string;
111
+ flexDirection: string;
112
+ padding: string;
113
+ width: string;
114
+ backgroundColor: string;
115
+ height: string;
116
+ minHeight?: undefined;
117
+ };
118
+ isContainer: boolean;
119
+ isBusiObjContainer: boolean;
120
+ cmdgroup: string[];
121
+ platform: string;
122
+ icon: string;
123
+ description: string;
124
+ image: string;
125
+ groupsName: string;
126
+ engineApi: string[];
127
+ setEvents: never[];
128
+ isLabelDropBoxChild: boolean;
129
+ components: never[];
130
+ path: string[];
131
+ } | {
132
+ id: string;
133
+ label: string;
134
+ compName: string;
135
+ type: string;
136
+ compType: number;
137
+ compLib: string;
138
+ props: {
139
+ name: string;
140
+ basicStatus: number;
141
+ title: string;
142
+ closable: boolean;
143
+ tagType: {
144
+ name: string;
145
+ key: string;
146
+ classname: string;
147
+ };
148
+ };
149
+ style: {
150
+ minHeight: string;
151
+ textAlign?: undefined;
152
+ display?: undefined;
153
+ flexDirection?: undefined;
154
+ padding?: undefined;
155
+ width?: undefined;
156
+ backgroundColor?: undefined;
157
+ height?: undefined;
158
+ };
159
+ isContainer: boolean;
160
+ isBusiObjContainer: boolean;
161
+ cmdgroup: string[];
162
+ platform: string;
163
+ icon: string;
164
+ description: string;
165
+ image: string;
166
+ groupsName: string;
167
+ setEvents: never[];
168
+ isLabelDropBoxChild: boolean;
169
+ components: never[];
170
+ path: string[];
171
+ engineApi?: undefined;
172
+ })[];
173
+ };
@@ -0,0 +1,548 @@
1
+ export var Tag = {
2
+ type: 'Tag',
3
+ variable: {
4
+ backgroundColor: {
5
+ type: 'color',
6
+ label: '填充颜色',
7
+ groupsName: '背景'
8
+ },
9
+ fontSize: {
10
+ type: 'px',
11
+ label: '文本尺寸',
12
+ groupsName: '文字'
13
+ },
14
+ paddingValue: {
15
+ type: 'marginInput',
16
+ label: '内边距',
17
+ groupsName: '布局'
18
+ },
19
+ marginValue: {
20
+ type: 'marginInput',
21
+ label: '外边距',
22
+ groupsName: '布局'
23
+ },
24
+ borderRadius: {
25
+ type: 'px',
26
+ label: '圆角',
27
+ groupsName: '边框'
28
+ },
29
+ closeColor: {
30
+ type: 'color',
31
+ label: '关闭图标颜色',
32
+ groupsName: '其他'
33
+ },
34
+ closeSize: {
35
+ type: 'px',
36
+ label: '关闭图标尺寸',
37
+ groupsName: '其他'
38
+ }
39
+ },
40
+ groupsName: '数据展示',
41
+ icon: 'icon-ico-comp-tag',
42
+ title: '标签',
43
+ defaultValue: [{
44
+ backgroundColor: 'rgba(0,0,0,0)',
45
+ paddingValue: '0 7px 0 7px',
46
+ marginValue: '0 0 0 0',
47
+ borderRadius: '11px',
48
+ fontSize: '12px',
49
+ closeColor: 'rgba(0,0,0,.45)',
50
+ closeSize: '10px'
51
+ }],
52
+ tpl: ".pcfactory-tag {\n background: backgroundColor;\n padding: paddingValue;\n margin: marginValue;\n border-radius: borderRadius;\n font-size: fontSize;\n }\n .pcfactory-tag .pcfactory-tag-close-icon { \n color: closeColor;\n > svg{\n width: closeSize;\n height: closeSize;\n }\n }",
53
+ components: [{
54
+ id: 'Tag_6939955',
55
+ label: '标签',
56
+ compName: 'Tag',
57
+ type: 'Tag',
58
+ compType: 3,
59
+ compLib: 'antd',
60
+ props: {
61
+ name: '标签',
62
+ basicStatus: 1,
63
+ title: 'tag',
64
+ closable: true,
65
+ tagType: {
66
+ name: 'tag',
67
+ key: '1'
68
+ }
69
+ },
70
+ style: {
71
+ minHeight: '10px'
72
+ },
73
+ isContainer: false,
74
+ isBusiObjContainer: false,
75
+ cmdgroup: ['basic'],
76
+ platform: 'pc',
77
+ icon: 'Tag',
78
+ description: '',
79
+ image: '',
80
+ groupsName: '数据展示',
81
+ setEvents: [],
82
+ isLabelDropBoxChild: false,
83
+ components: [],
84
+ path: ['3602564', 'View_3602564_1']
85
+ }, {
86
+ id: 'View_519882',
87
+ label: '普通容器',
88
+ compName: 'View',
89
+ type: 'View',
90
+ compType: 0,
91
+ compLib: 'custom',
92
+ props: {
93
+ name: '普通容器1',
94
+ basicStatus: 1
95
+ },
96
+ style: {
97
+ textAlign: 'left',
98
+ display: 'block',
99
+ flexDirection: 'column',
100
+ padding: '0px 0px 0px 0px',
101
+ width: '100%',
102
+ backgroundColor: '#FFFFFF',
103
+ height: '10px'
104
+ },
105
+ isContainer: true,
106
+ isBusiObjContainer: false,
107
+ cmdgroup: ['basic'],
108
+ platform: 'pc',
109
+ icon: 'View',
110
+ description: '',
111
+ image: '',
112
+ groupsName: '布局',
113
+ engineApi: ['service.downloadFileByFileCode'],
114
+ setEvents: [],
115
+ isLabelDropBoxChild: false,
116
+ components: [],
117
+ path: ['998509']
118
+ }, {
119
+ id: 'Tag_099399',
120
+ label: '标签',
121
+ compName: 'Tag',
122
+ type: 'Tag',
123
+ compType: 3,
124
+ compLib: 'antd',
125
+ props: {
126
+ name: '标签',
127
+ basicStatus: 1,
128
+ title: 'tag',
129
+ closable: true,
130
+ tagType: {
131
+ name: '蓝色描边标签',
132
+ key: '2',
133
+ classname: 'ued-tag-blue'
134
+ }
135
+ },
136
+ style: {
137
+ minHeight: '10px'
138
+ },
139
+ isContainer: false,
140
+ isBusiObjContainer: false,
141
+ cmdgroup: ['basic'],
142
+ platform: 'pc',
143
+ icon: 'Tag',
144
+ description: '',
145
+ image: '',
146
+ groupsName: '数据展示',
147
+ setEvents: [],
148
+ isLabelDropBoxChild: false,
149
+ components: [],
150
+ path: ['3602564', 'View_3602564_1']
151
+ }, {
152
+ id: 'View_519882',
153
+ label: '普通容器',
154
+ compName: 'View',
155
+ type: 'View',
156
+ compType: 0,
157
+ compLib: 'custom',
158
+ props: {
159
+ name: '普通容器1',
160
+ basicStatus: 1
161
+ },
162
+ style: {
163
+ textAlign: 'left',
164
+ display: 'block',
165
+ flexDirection: 'column',
166
+ padding: '0px 0px 0px 0px',
167
+ width: '100%',
168
+ backgroundColor: '#FFFFFF',
169
+ height: '10px'
170
+ },
171
+ isContainer: true,
172
+ isBusiObjContainer: false,
173
+ cmdgroup: ['basic'],
174
+ platform: 'pc',
175
+ icon: 'View',
176
+ description: '',
177
+ image: '',
178
+ groupsName: '布局',
179
+ engineApi: ['service.downloadFileByFileCode'],
180
+ setEvents: [],
181
+ isLabelDropBoxChild: false,
182
+ components: [],
183
+ path: ['998509']
184
+ }, {
185
+ id: 'Tag_22958',
186
+ label: '标签',
187
+ compName: 'Tag',
188
+ type: 'Tag',
189
+ compType: 3,
190
+ compLib: 'antd',
191
+ props: {
192
+ name: '标签',
193
+ basicStatus: 1,
194
+ title: 'tag',
195
+ closable: true,
196
+ tagType: {
197
+ name: '紫色描边标签',
198
+ key: '3',
199
+ classname: 'ued-tag-purple'
200
+ }
201
+ },
202
+ style: {
203
+ minHeight: '10px'
204
+ },
205
+ isContainer: false,
206
+ isBusiObjContainer: false,
207
+ cmdgroup: ['basic'],
208
+ platform: 'pc',
209
+ icon: 'Tag',
210
+ description: '',
211
+ image: '',
212
+ groupsName: '数据展示',
213
+ setEvents: [],
214
+ isLabelDropBoxChild: false,
215
+ components: [],
216
+ path: ['3602564', 'View_3602564_1']
217
+ }, {
218
+ id: 'View_519882',
219
+ label: '普通容器',
220
+ compName: 'View',
221
+ type: 'View',
222
+ compType: 0,
223
+ compLib: 'custom',
224
+ props: {
225
+ name: '普通容器1',
226
+ basicStatus: 1
227
+ },
228
+ style: {
229
+ textAlign: 'left',
230
+ display: 'block',
231
+ flexDirection: 'column',
232
+ padding: '0px 0px 0px 0px',
233
+ width: '100%',
234
+ backgroundColor: '#FFFFFF',
235
+ height: '10px'
236
+ },
237
+ isContainer: true,
238
+ isBusiObjContainer: false,
239
+ cmdgroup: ['basic'],
240
+ platform: 'pc',
241
+ icon: 'View',
242
+ description: '',
243
+ image: '',
244
+ groupsName: '布局',
245
+ engineApi: ['service.downloadFileByFileCode'],
246
+ setEvents: [],
247
+ isLabelDropBoxChild: false,
248
+ components: [],
249
+ path: ['998509']
250
+ }, {
251
+ id: 'Tag_799551',
252
+ label: '标签',
253
+ compName: 'Tag',
254
+ type: 'Tag',
255
+ compType: 3,
256
+ compLib: 'antd',
257
+ props: {
258
+ name: '标签',
259
+ basicStatus: 1,
260
+ title: 'tag',
261
+ closable: true,
262
+ tagType: {
263
+ name: '绿色描边标签',
264
+ key: '4',
265
+ classname: 'ued-tag-green'
266
+ }
267
+ },
268
+ style: {
269
+ minHeight: '10px'
270
+ },
271
+ isContainer: false,
272
+ isBusiObjContainer: false,
273
+ cmdgroup: ['basic'],
274
+ platform: 'pc',
275
+ icon: 'Tag',
276
+ description: '',
277
+ image: '',
278
+ groupsName: '数据展示',
279
+ setEvents: [],
280
+ isLabelDropBoxChild: false,
281
+ components: [],
282
+ path: ['3602564', 'View_3602564_1']
283
+ }, {
284
+ id: 'View_519882',
285
+ label: '普通容器',
286
+ compName: 'View',
287
+ type: 'View',
288
+ compType: 0,
289
+ compLib: 'custom',
290
+ props: {
291
+ name: '普通容器1',
292
+ basicStatus: 1
293
+ },
294
+ style: {
295
+ textAlign: 'left',
296
+ display: 'block',
297
+ flexDirection: 'column',
298
+ padding: '0px 0px 0px 0px',
299
+ width: '100%',
300
+ backgroundColor: '#FFFFFF',
301
+ height: '10px'
302
+ },
303
+ isContainer: true,
304
+ isBusiObjContainer: false,
305
+ cmdgroup: ['basic'],
306
+ platform: 'pc',
307
+ icon: 'View',
308
+ description: '',
309
+ image: '',
310
+ groupsName: '布局',
311
+ engineApi: ['service.downloadFileByFileCode'],
312
+ setEvents: [],
313
+ isLabelDropBoxChild: false,
314
+ components: [],
315
+ path: ['998509']
316
+ }, {
317
+ id: 'Tag_10752956',
318
+ label: '标签',
319
+ compName: 'Tag',
320
+ type: 'Tag',
321
+ compType: 3,
322
+ compLib: 'antd',
323
+ props: {
324
+ name: '标签',
325
+ basicStatus: 1,
326
+ title: 'tag',
327
+ closable: true,
328
+ tagType: {
329
+ name: '红色描边标签',
330
+ key: '5',
331
+ classname: 'ued-tag-red'
332
+ }
333
+ },
334
+ style: {
335
+ minHeight: '10px'
336
+ },
337
+ isContainer: false,
338
+ isBusiObjContainer: false,
339
+ cmdgroup: ['basic'],
340
+ platform: 'pc',
341
+ icon: 'Tag',
342
+ description: '',
343
+ image: '',
344
+ groupsName: '数据展示',
345
+ setEvents: [],
346
+ isLabelDropBoxChild: false,
347
+ components: [],
348
+ path: ['3602564', 'View_3602564_1']
349
+ }, {
350
+ id: 'View_519882',
351
+ label: '普通容器',
352
+ compName: 'View',
353
+ type: 'View',
354
+ compType: 0,
355
+ compLib: 'custom',
356
+ props: {
357
+ name: '普通容器1',
358
+ basicStatus: 1
359
+ },
360
+ style: {
361
+ textAlign: 'left',
362
+ display: 'block',
363
+ flexDirection: 'column',
364
+ padding: '0px 0px 0px 0px',
365
+ width: '100%',
366
+ backgroundColor: '#FFFFFF',
367
+ height: '10px'
368
+ },
369
+ isContainer: true,
370
+ isBusiObjContainer: false,
371
+ cmdgroup: ['basic'],
372
+ platform: 'pc',
373
+ icon: 'View',
374
+ description: '',
375
+ image: '',
376
+ groupsName: '布局',
377
+ engineApi: ['service.downloadFileByFileCode'],
378
+ setEvents: [],
379
+ isLabelDropBoxChild: false,
380
+ components: [],
381
+ path: ['998509']
382
+ }, {
383
+ id: 'Tag_3207935',
384
+ label: '标签',
385
+ compName: 'Tag',
386
+ type: 'Tag',
387
+ compType: 3,
388
+ compLib: 'antd',
389
+ props: {
390
+ name: '标签',
391
+ basicStatus: 1,
392
+ title: 'tag',
393
+ closable: true,
394
+ tagType: {
395
+ name: '橙色描边标签',
396
+ key: '6',
397
+ classname: 'ued-tag-orange'
398
+ }
399
+ },
400
+ style: {
401
+ minHeight: '10px'
402
+ },
403
+ isContainer: false,
404
+ isBusiObjContainer: false,
405
+ cmdgroup: ['basic'],
406
+ platform: 'pc',
407
+ icon: 'Tag',
408
+ description: '',
409
+ image: '',
410
+ groupsName: '数据展示',
411
+ setEvents: [],
412
+ isLabelDropBoxChild: false,
413
+ components: [],
414
+ path: ['3602564', 'View_3602564_1']
415
+ }, {
416
+ id: 'View_519882',
417
+ label: '普通容器',
418
+ compName: 'View',
419
+ type: 'View',
420
+ compType: 0,
421
+ compLib: 'custom',
422
+ props: {
423
+ name: '普通容器1',
424
+ basicStatus: 1
425
+ },
426
+ style: {
427
+ textAlign: 'left',
428
+ display: 'block',
429
+ flexDirection: 'column',
430
+ padding: '0px 0px 0px 0px',
431
+ width: '100%',
432
+ backgroundColor: '#FFFFFF',
433
+ height: '10px'
434
+ },
435
+ isContainer: true,
436
+ isBusiObjContainer: false,
437
+ cmdgroup: ['basic'],
438
+ platform: 'pc',
439
+ icon: 'View',
440
+ description: '',
441
+ image: '',
442
+ groupsName: '布局',
443
+ engineApi: ['service.downloadFileByFileCode'],
444
+ setEvents: [],
445
+ isLabelDropBoxChild: false,
446
+ components: [],
447
+ path: ['998509']
448
+ }, {
449
+ id: 'Tag_905984',
450
+ label: '标签',
451
+ compName: 'Tag',
452
+ type: 'Tag',
453
+ compType: 3,
454
+ compLib: 'antd',
455
+ props: {
456
+ name: '标签',
457
+ basicStatus: 1,
458
+ title: 'tag',
459
+ closable: true,
460
+ tagType: {
461
+ name: '金色描边标签',
462
+ key: '7',
463
+ classname: 'ued-tag-gold'
464
+ }
465
+ },
466
+ style: {
467
+ minHeight: '10px'
468
+ },
469
+ isContainer: false,
470
+ isBusiObjContainer: false,
471
+ cmdgroup: ['basic'],
472
+ platform: 'pc',
473
+ icon: 'Tag',
474
+ description: '',
475
+ image: '',
476
+ groupsName: '数据展示',
477
+ setEvents: [],
478
+ isLabelDropBoxChild: false,
479
+ components: [],
480
+ path: ['3602564', 'View_3602564_1']
481
+ }, {
482
+ id: 'View_519882',
483
+ label: '普通容器',
484
+ compName: 'View',
485
+ type: 'View',
486
+ compType: 0,
487
+ compLib: 'custom',
488
+ props: {
489
+ name: '普通容器1',
490
+ basicStatus: 1
491
+ },
492
+ style: {
493
+ textAlign: 'left',
494
+ display: 'block',
495
+ flexDirection: 'column',
496
+ padding: '0px 0px 0px 0px',
497
+ width: '100%',
498
+ backgroundColor: '#FFFFFF',
499
+ height: '10px'
500
+ },
501
+ isContainer: true,
502
+ isBusiObjContainer: false,
503
+ cmdgroup: ['basic'],
504
+ platform: 'pc',
505
+ icon: 'View',
506
+ description: '',
507
+ image: '',
508
+ groupsName: '布局',
509
+ engineApi: ['service.downloadFileByFileCode'],
510
+ setEvents: [],
511
+ isLabelDropBoxChild: false,
512
+ components: [],
513
+ path: ['998509']
514
+ }, {
515
+ id: 'Tag_0175',
516
+ label: '标签',
517
+ compName: 'Tag',
518
+ type: 'Tag',
519
+ compType: 3,
520
+ compLib: 'antd',
521
+ props: {
522
+ name: '标签',
523
+ basicStatus: 1,
524
+ title: 'tag',
525
+ closable: true,
526
+ tagType: {
527
+ name: '青色描边标签',
528
+ key: '8',
529
+ classname: 'ued-tag-cyan'
530
+ }
531
+ },
532
+ style: {
533
+ minHeight: '10px'
534
+ },
535
+ isContainer: false,
536
+ isBusiObjContainer: false,
537
+ cmdgroup: ['basic'],
538
+ platform: 'pc',
539
+ icon: 'Tag',
540
+ description: '',
541
+ image: '',
542
+ groupsName: '数据展示',
543
+ setEvents: [],
544
+ isLabelDropBoxChild: false,
545
+ components: [],
546
+ path: ['3602564', 'View_3602564_1']
547
+ }]
548
+ };