@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,970 @@
1
+ export var Tabs = {
2
+ type: 'Tabs',
3
+ hasPrefixClass: true,
4
+ variable: {
5
+ headBgColor: {
6
+ type: 'color',
7
+ label: '头部填充颜色',
8
+ groupsName: '背景'
9
+ },
10
+ bodyColor: {
11
+ type: 'color',
12
+ label: '内容填充颜色',
13
+ groupsName: '背景'
14
+ },
15
+ activeBgColor: {
16
+ type: 'color',
17
+ label: '选中项填充颜色',
18
+ groupsName: '背景',
19
+ followTheme: '@primary-color'
20
+ },
21
+ textColor: {
22
+ type: 'color',
23
+ label: '标题颜色',
24
+ groupsName: '标题'
25
+ },
26
+ activeTextColor: {
27
+ type: 'color',
28
+ label: '选中标题颜色',
29
+ groupsName: '标题'
30
+ },
31
+ fontSize: {
32
+ type: 'px',
33
+ label: '标题尺寸',
34
+ groupsName: '标题'
35
+ },
36
+ lineHeight: {
37
+ type: 'px',
38
+ label: '标题行高',
39
+ groupsName: '标题'
40
+ },
41
+ fontWeight: {
42
+ type: 'select',
43
+ label: '标题字重',
44
+ groupsName: '标题',
45
+ options: [{
46
+ title: '100',
47
+ value: '100'
48
+ }, {
49
+ title: '200',
50
+ value: '200'
51
+ }, {
52
+ title: '300',
53
+ value: '300'
54
+ }, {
55
+ title: '400',
56
+ value: '400'
57
+ }, {
58
+ title: '500',
59
+ value: '500'
60
+ }, {
61
+ title: '600',
62
+ value: '600'
63
+ }, {
64
+ title: '700',
65
+ value: '700'
66
+ }]
67
+ },
68
+ activeFontWeight: {
69
+ type: 'select',
70
+ label: '选中标题字重',
71
+ groupsName: '标题',
72
+ options: [{
73
+ title: '100',
74
+ value: '100'
75
+ }, {
76
+ title: '200',
77
+ value: '200'
78
+ }, {
79
+ title: '300',
80
+ value: '300'
81
+ }, {
82
+ title: '400',
83
+ value: '400'
84
+ }, {
85
+ title: '500',
86
+ value: '500'
87
+ }, {
88
+ title: '600',
89
+ value: '600'
90
+ }, {
91
+ title: '700',
92
+ value: '700'
93
+ }]
94
+ },
95
+ // borderColor: {
96
+ // type: 'color',
97
+ // label: '边框颜色',
98
+ // groupsName: '边框',
99
+ // },
100
+ paddingValue: {
101
+ type: 'marginInput',
102
+ label: '选中项内边距',
103
+ groupsName: '布局'
104
+ },
105
+ marginValue: {
106
+ type: 'px',
107
+ label: '选项间距',
108
+ groupsName: '布局'
109
+ },
110
+ borderRadius: {
111
+ type: 'px',
112
+ label: '圆角',
113
+ groupsName: '边框',
114
+ followTheme: '@border-radius-base'
115
+ },
116
+ activeRadius: {
117
+ type: 'px',
118
+ label: '选项圆角',
119
+ groupsName: '边框',
120
+ followTheme: '@border-radius-base'
121
+ },
122
+ activeFColor: {
123
+ type: 'color',
124
+ label: '分割线颜色',
125
+ groupsName: '其他',
126
+ followTheme: '@primary-color'
127
+ }
128
+ },
129
+ groupsName: '容器',
130
+ icon: 'icon-ico-comp-tabs',
131
+ title: '标签页',
132
+ defaultValue: [{
133
+ headBgColor: '#F6F9FF',
134
+ activeBgColor: '#47e',
135
+ activeFColor: '#47e',
136
+ bodyColor: '#fff',
137
+ activeRadius: '8px',
138
+ borderRadius: '0px',
139
+ paddingValue: '8px 20px 8px 20px',
140
+ marginValue: '0px',
141
+ textColor: 'rgba(94, 94, 94, 0.75)',
142
+ activeTextColor: '#FFFFFF',
143
+ lineHeight: '24px',
144
+ fontSize: '16px',
145
+ fontWeight: '300',
146
+ activeFontWeight: '300'
147
+ }],
148
+ followThemes: {
149
+ '@primary-color': ['activeFColor', 'activeBgColor'],
150
+ '@border-radius-base': []
151
+ },
152
+ tpl: ".ued-tabs-wrap {\n .pcfactory-tabs-card.pcfactory-tabs-bottom .pcfactory-tabs-tab.pcfactory-tabs-tab-active {\n border-top: 1px solid activeBgColor !important;\n background-color: activeBgColor !important;\n }\n .pcfactory-tabs {\n border-radius: borderRadius !important;\n }\n .ued-tabs-tabpane-content{\n background-color: bodyColor;\n }\n .pcfactory-tabs-nav .pcfactory-tabs-nav-wrap{\n background: headBgColor;\n }\n .pcfactory-tabs-nav .pcfactory-tabs-tab .pcfactory-tabs-tab-btn{\n color: textColor;\n line-height: lineHeight;\n font-size: fontSize;\n font-weight: fontWeight;\n }\n .pcfactory-tabs-top .pcfactory-tabs-nav .pcfactory-tabs-tab-active{\n background: activeBgColor;\n border-top-left-radius: activeRadius;\n border-top-right-radius: activeRadius;\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n }\n .pcfactory-tabs-left .pcfactory-tabs-nav .pcfactory-tabs-tab-active{\n background: activeBgColor;\n border-top-left-radius: activeRadius;\n border-bottom-left-radius: activeRadius;\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .pcfactory-tabs-bottom .pcfactory-tabs-nav .pcfactory-tabs-tab-active{\n background: activeBgColor;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-left-radius: activeRadius;\n border-bottom-right-radius: activeRadius;\n }\n .pcfactory-tabs-right .pcfactory-tabs-nav .pcfactory-tabs-tab-active{\n background: activeBgColor;\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: activeRadius;\n border-top-right-radius: activeRadius;\n }\n .pcfactory-tabs-nav .pcfactory-tabs-tab-active:hover{\n background: activeBgColor !important;\n }\n .pcfactory-tabs-top .pcfactory-tabs-tab:hover{\n color: activeBgColor;\n background: rgba(92,140,252,0.1);\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: activeRadius;\n border-top-right-radius: activeRadius;\n }\n .pcfactory-tabs-left .pcfactory-tabs-tab:hover{\n color: activeBgColor;\n background: rgba(92,140,252,0.1);\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: activeRadius;\n border-bottom-left-radius: activeRadius;\n }\n .pcfactory-tabs-bottom .pcfactory-tabs-tab:hover{\n color: activeBgColor;\n background: rgba(92,140,252,0.1);\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-left-radius: activeRadius;\n border-bottom-right-radius: activeRadius;\n }\n .pcfactory-tabs-right .pcfactory-tabs-tab:hover{\n color: activeBgColor;\n background: rgba(92,140,252,0.1);\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n border-top-right-radius: activeRadius;\n border-bottom-right-radius: activeRadius;\n }\n .pcfactory-tabs-card.pcfactory-tabs-bottom .pcfactory-tabs-tab{\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-left-radius: activeRadius;\n border-bottom-right-radius: activeRadius;\n}\n.pcfactory-tabs-card.pcfactory-tabs-left .pcfactory-tabs-tab{\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: activeRadius;\n border-bottom-left-radius: activeRadius;\n}\n.pcfactory-tabs-card.pcfactory-tabs-right .pcfactory-tabs-tab{\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n border-top-right-radius: activeRadius;\n border-bottom-right-radius: activeRadius;\n}\n.pcfactory-tabs-card.pcfactory-tabs-top .pcfactory-tabs-tab{\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0;\n border-top-left-radius: activeRadius;\n border-top-right-radius: activeRadius;\n}\n.pcfactory-tabs-card .pcfactory-tabs-nav .pcfactory-tabs-tab .pcfactory-tabs-tab-btn:hover{\n color: activeBgColor;\n}\n .pcfactory-tabs-tab.pcfactory-tabs-tab-active .pcfactory-tabs-tab-btn{\n color: activeTextColor;\n font-weight: activeFontWeight;\n }\n .pcfactory-tabs-nav .pcfactory-tabs-tab{\n margin-right: marginValue;\n padding: paddingValue;\n }\n .pcfactory-tabs.pcfactory-tabs-card .pcfactory-tabs-tab {\n margin-right: marginValue;\n background: #fff;\n border: 1px solid #f0f0f0;\n transform: translateY(1px);\n}\n\n .pcfactory-tabs-top > .pcfactory-tabs-nav::before, .pcfactory-tabs-bottom > .pcfactory-tabs-nav::before, .pcfactory-tabs-card.pcfactory-tabs-top > div > .pcfactory-tabs-nav::before, .pcfactory-tabs-card.pcfactory-tabs-bottom > div > .pcfactory-tabs-nav::before{\n border-bottom: 2px solid activeFColor !important;\n z-index: 1;\n}\n .pcfactory-tabs.pcfactory-tabs-card .pcfactory-tabs-tab-active{\n background: activeBgColor !important;\n }\n }\n ",
153
+ components: [{
154
+ id: 'Text_1726476',
155
+ label: '文本',
156
+ compName: 'Text',
157
+ type: 'Text',
158
+ compType: 1,
159
+ compLib: 'custom',
160
+ props: {
161
+ name: '基础式',
162
+ basicStatus: 1,
163
+ content: '基础式',
164
+ textType: 'h1',
165
+ showHtml: false
166
+ },
167
+ style: {
168
+ textAlign: 'left',
169
+ fontSize: 32,
170
+ lineHeight: '24px',
171
+ color: '#1c242e',
172
+ backgroundColor: 'rgba(255, 255, 255,0)',
173
+ padding: '0px 0px 0px 0px',
174
+ margin: '24px 24px 24px 24px'
175
+ },
176
+ isContainer: false,
177
+ isBusiObjContainer: false,
178
+ cmdgroup: ['basic'],
179
+ platform: 'pc',
180
+ icon: 'Text',
181
+ isInlineBlock: true,
182
+ setEvents: [],
183
+ description: '',
184
+ image: '',
185
+ groupsName: '通用',
186
+ isLabelDropBoxChild: false,
187
+ components: [],
188
+ path: ['057343', 'View_057343_1']
189
+ }, {
190
+ id: 'Tabs_5075684',
191
+ label: '标签页',
192
+ compName: 'Tabs',
193
+ type: 'Tabs',
194
+ compType: 0,
195
+ compLib: 'comm',
196
+ props: {
197
+ name: '标签页',
198
+ basicStatus: 1,
199
+ type: 'line',
200
+ animated: false,
201
+ defaultActiveKey: '1',
202
+ tabBarGutter: '4px',
203
+ tabPosition: 'top',
204
+ size: 'default'
205
+ },
206
+ style: {
207
+ width: '100%',
208
+ margin: '0 0 16px 0',
209
+ padding: '20px 20px 20px 20px'
210
+ },
211
+ isContainer: true,
212
+ isBusiObjContainer: false,
213
+ cmdgroup: ['basic'],
214
+ platform: 'pc',
215
+ icon: 'Tabs',
216
+ description: '',
217
+ image: '',
218
+ groupsName: '容器',
219
+ onlyChildren: ['TabPane'],
220
+ setEvents: [],
221
+ isLabelDropBoxChild: false,
222
+ components: [{
223
+ id: 'TabPane_526344',
224
+ label: '标签子面板',
225
+ compName: 'TabPane',
226
+ type: 'TabPane',
227
+ compType: 0,
228
+ compLib: 'comm',
229
+ props: {
230
+ name: '标签子面板',
231
+ basicStatus: 1,
232
+ tab: '标题1',
233
+ key: '1'
234
+ },
235
+ style: {
236
+ height: 80
237
+ },
238
+ isContainer: true,
239
+ isBusiObjContainer: false,
240
+ cmdgroup: ['basic'],
241
+ platform: 'pc',
242
+ icon: 'TabPane',
243
+ description: '',
244
+ image: '',
245
+ groupsName: '容器',
246
+ onlyRoot: ['Tabs'],
247
+ setEvents: [],
248
+ isLabelDropBoxChild: false,
249
+ components: [],
250
+ path: ['057343', 'View_057343_1', 'Tabs_5075684']
251
+ }, {
252
+ id: 'TabPane_696377',
253
+ label: '标签子面板',
254
+ compName: 'TabPane',
255
+ type: 'TabPane',
256
+ compType: 0,
257
+ compLib: 'comm',
258
+ props: {
259
+ name: '标签子面板',
260
+ basicStatus: 1,
261
+ tab: '标题2',
262
+ key: '2'
263
+ },
264
+ style: {
265
+ height: 80
266
+ },
267
+ isContainer: true,
268
+ isBusiObjContainer: false,
269
+ cmdgroup: ['basic'],
270
+ platform: 'pc',
271
+ icon: 'TabPane',
272
+ description: '',
273
+ image: '',
274
+ groupsName: '容器',
275
+ onlyRoot: ['Tabs'],
276
+ setEvents: [],
277
+ isLabelDropBoxChild: false,
278
+ components: [],
279
+ path: ['057343', 'View_057343_1', 'Tabs_5075684']
280
+ }],
281
+ path: ['057343', 'View_057343_1']
282
+ }, {
283
+ id: 'Tabs_803186',
284
+ label: '标签页',
285
+ compName: 'Tabs',
286
+ type: 'Tabs',
287
+ compType: 0,
288
+ compLib: 'comm',
289
+ props: {
290
+ name: '标签页',
291
+ basicStatus: 1,
292
+ type: 'line',
293
+ animated: false,
294
+ defaultActiveKey: '1',
295
+ tabBarGutter: '4px',
296
+ tabPosition: 'bottom',
297
+ size: 'default'
298
+ },
299
+ style: {
300
+ width: '100%',
301
+ margin: '0 0 16px 0',
302
+ padding: '20px 20px 20px 20px'
303
+ },
304
+ isContainer: true,
305
+ isBusiObjContainer: false,
306
+ cmdgroup: ['basic'],
307
+ platform: 'pc',
308
+ icon: 'Tabs',
309
+ description: '',
310
+ image: '',
311
+ groupsName: '容器',
312
+ onlyChildren: ['TabPane'],
313
+ setEvents: [],
314
+ isLabelDropBoxChild: false,
315
+ components: [{
316
+ id: 'TabPane_3542895',
317
+ label: '标签子面板',
318
+ compName: 'TabPane',
319
+ type: 'TabPane',
320
+ compType: 0,
321
+ compLib: 'comm',
322
+ props: {
323
+ name: '标签子面板',
324
+ basicStatus: 1,
325
+ tab: '标题1',
326
+ key: '1'
327
+ },
328
+ style: {
329
+ height: 80
330
+ },
331
+ isContainer: true,
332
+ isBusiObjContainer: false,
333
+ cmdgroup: ['basic'],
334
+ platform: 'pc',
335
+ icon: 'TabPane',
336
+ description: '',
337
+ image: '',
338
+ groupsName: '容器',
339
+ onlyRoot: ['Tabs'],
340
+ setEvents: [],
341
+ isLabelDropBoxChild: false,
342
+ components: [],
343
+ path: ['057343', 'View_057343_1', 'Tabs_803186']
344
+ }, {
345
+ id: 'TabPane_682926',
346
+ label: '标签子面板',
347
+ compName: 'TabPane',
348
+ type: 'TabPane',
349
+ compType: 0,
350
+ compLib: 'comm',
351
+ props: {
352
+ name: '标签子面板',
353
+ basicStatus: 1,
354
+ tab: '标题2',
355
+ key: '2'
356
+ },
357
+ style: {
358
+ height: 80
359
+ },
360
+ isContainer: true,
361
+ isBusiObjContainer: false,
362
+ cmdgroup: ['basic'],
363
+ platform: 'pc',
364
+ icon: 'TabPane',
365
+ description: '',
366
+ image: '',
367
+ groupsName: '容器',
368
+ onlyRoot: ['Tabs'],
369
+ setEvents: [],
370
+ isLabelDropBoxChild: false,
371
+ components: [],
372
+ path: ['057343', 'View_057343_1', 'Tabs_803186']
373
+ }],
374
+ path: ['057343', 'View_057343_1']
375
+ }, {
376
+ id: 'Tabs_35703',
377
+ label: '标签页',
378
+ compName: 'Tabs',
379
+ type: 'Tabs',
380
+ compType: 0,
381
+ compLib: 'comm',
382
+ props: {
383
+ name: '标签页',
384
+ basicStatus: 1,
385
+ type: 'line',
386
+ animated: false,
387
+ defaultActiveKey: '1',
388
+ tabBarGutter: '4px',
389
+ tabPosition: 'left',
390
+ size: 'default'
391
+ },
392
+ style: {
393
+ width: '100%',
394
+ margin: '0 0 16px 0',
395
+ padding: '20px 20px 20px 20px'
396
+ },
397
+ isContainer: true,
398
+ isBusiObjContainer: false,
399
+ cmdgroup: ['basic'],
400
+ platform: 'pc',
401
+ icon: 'Tabs',
402
+ description: '',
403
+ image: '',
404
+ groupsName: '容器',
405
+ onlyChildren: ['TabPane'],
406
+ setEvents: [],
407
+ isLabelDropBoxChild: false,
408
+ components: [{
409
+ id: 'TabPane_083081',
410
+ label: '标签子面板',
411
+ compName: 'TabPane',
412
+ type: 'TabPane',
413
+ compType: 0,
414
+ compLib: 'comm',
415
+ props: {
416
+ name: '标签子面板',
417
+ basicStatus: 1,
418
+ tab: '标题1',
419
+ key: '1'
420
+ },
421
+ style: {
422
+ height: 80
423
+ },
424
+ isContainer: true,
425
+ isBusiObjContainer: false,
426
+ cmdgroup: ['basic'],
427
+ platform: 'pc',
428
+ icon: 'TabPane',
429
+ description: '',
430
+ image: '',
431
+ groupsName: '容器',
432
+ onlyRoot: ['Tabs'],
433
+ setEvents: [],
434
+ isLabelDropBoxChild: false,
435
+ components: [],
436
+ path: ['057343', 'View_057343_1', 'Tabs_35703']
437
+ }, {
438
+ id: 'TabPane_5671683',
439
+ label: '标签子面板',
440
+ compName: 'TabPane',
441
+ type: 'TabPane',
442
+ compType: 0,
443
+ compLib: 'comm',
444
+ props: {
445
+ name: '标签子面板',
446
+ basicStatus: 1,
447
+ tab: '标题2',
448
+ key: '2'
449
+ },
450
+ style: {
451
+ height: 80
452
+ },
453
+ isContainer: true,
454
+ isBusiObjContainer: false,
455
+ cmdgroup: ['basic'],
456
+ platform: 'pc',
457
+ icon: 'TabPane',
458
+ description: '',
459
+ image: '',
460
+ groupsName: '容器',
461
+ onlyRoot: ['Tabs'],
462
+ setEvents: [],
463
+ isLabelDropBoxChild: false,
464
+ components: [],
465
+ path: ['057343', 'View_057343_1', 'Tabs_35703']
466
+ }],
467
+ path: ['057343', 'View_057343_1']
468
+ }, {
469
+ id: 'Tabs_758167',
470
+ label: '标签页',
471
+ compName: 'Tabs',
472
+ type: 'Tabs',
473
+ compType: 0,
474
+ compLib: 'comm',
475
+ props: {
476
+ name: '标签页',
477
+ basicStatus: 1,
478
+ type: 'line',
479
+ animated: false,
480
+ defaultActiveKey: '1',
481
+ tabBarGutter: '4px',
482
+ tabPosition: 'right',
483
+ size: 'default'
484
+ },
485
+ style: {
486
+ width: '100%',
487
+ margin: '0 0 16px 0',
488
+ padding: '20px 20px 20px 20px'
489
+ },
490
+ isContainer: true,
491
+ isBusiObjContainer: false,
492
+ cmdgroup: ['basic'],
493
+ platform: 'pc',
494
+ icon: 'Tabs',
495
+ description: '',
496
+ image: '',
497
+ groupsName: '容器',
498
+ onlyChildren: ['TabPane'],
499
+ setEvents: [],
500
+ isLabelDropBoxChild: false,
501
+ components: [{
502
+ id: 'TabPane_85666',
503
+ label: '标签子面板',
504
+ compName: 'TabPane',
505
+ type: 'TabPane',
506
+ compType: 0,
507
+ compLib: 'comm',
508
+ props: {
509
+ name: '标签子面板',
510
+ basicStatus: 1,
511
+ tab: '标题1',
512
+ key: '1'
513
+ },
514
+ style: {
515
+ height: 80
516
+ },
517
+ isContainer: true,
518
+ isBusiObjContainer: false,
519
+ cmdgroup: ['basic'],
520
+ platform: 'pc',
521
+ icon: 'TabPane',
522
+ description: '',
523
+ image: '',
524
+ groupsName: '容器',
525
+ onlyRoot: ['Tabs'],
526
+ setEvents: [],
527
+ isLabelDropBoxChild: false,
528
+ components: [],
529
+ path: ['057343', 'View_057343_1', 'Tabs_758167']
530
+ }, {
531
+ id: 'TabPane_576443',
532
+ label: '标签子面板',
533
+ compName: 'TabPane',
534
+ type: 'TabPane',
535
+ compType: 0,
536
+ compLib: 'comm',
537
+ props: {
538
+ name: '标签子面板',
539
+ basicStatus: 1,
540
+ tab: '标题2',
541
+ key: '2'
542
+ },
543
+ style: {
544
+ height: 80
545
+ },
546
+ isContainer: true,
547
+ isBusiObjContainer: false,
548
+ cmdgroup: ['basic'],
549
+ platform: 'pc',
550
+ icon: 'TabPane',
551
+ description: '',
552
+ image: '',
553
+ groupsName: '容器',
554
+ onlyRoot: ['Tabs'],
555
+ setEvents: [],
556
+ isLabelDropBoxChild: false,
557
+ components: [],
558
+ path: ['057343', 'View_057343_1', 'Tabs_758167']
559
+ }],
560
+ path: ['057343', 'View_057343_1']
561
+ }, {
562
+ id: 'Text_1726476',
563
+ label: '文本',
564
+ compName: 'Text',
565
+ type: 'Text',
566
+ compType: 1,
567
+ compLib: 'custom',
568
+ props: {
569
+ name: '卡片式',
570
+ basicStatus: 1,
571
+ content: '卡片式',
572
+ textType: 'h1',
573
+ showHtml: false
574
+ },
575
+ style: {
576
+ textAlign: 'left',
577
+ fontSize: 32,
578
+ lineHeight: '24px',
579
+ color: '#1c242e',
580
+ backgroundColor: 'rgba(255, 255, 255,0)',
581
+ padding: '0px 0px 0px 0px',
582
+ margin: '24px 24px 24px 24px'
583
+ },
584
+ isContainer: false,
585
+ isBusiObjContainer: false,
586
+ cmdgroup: ['basic'],
587
+ platform: 'pc',
588
+ icon: 'Text',
589
+ isInlineBlock: true,
590
+ setEvents: [],
591
+ description: '',
592
+ image: '',
593
+ groupsName: '通用',
594
+ isLabelDropBoxChild: false,
595
+ components: [],
596
+ path: ['057343', 'View_057343_1']
597
+ }, {
598
+ id: 'Tabs_5075684',
599
+ label: '标签页',
600
+ compName: 'Tabs',
601
+ type: 'Tabs',
602
+ compType: 0,
603
+ compLib: 'comm',
604
+ props: {
605
+ name: '标签页',
606
+ basicStatus: 1,
607
+ type: 'card',
608
+ animated: false,
609
+ defaultActiveKey: '1',
610
+ tabBarGutter: '4px',
611
+ tabPosition: 'top',
612
+ size: 'default'
613
+ },
614
+ style: {
615
+ width: '100%',
616
+ margin: '0 0 16px 0',
617
+ padding: '20px 20px 20px 20px'
618
+ },
619
+ isContainer: true,
620
+ isBusiObjContainer: false,
621
+ cmdgroup: ['basic'],
622
+ platform: 'pc',
623
+ icon: 'Tabs',
624
+ description: '',
625
+ image: '',
626
+ groupsName: '容器',
627
+ onlyChildren: ['TabPane'],
628
+ setEvents: [],
629
+ isLabelDropBoxChild: false,
630
+ components: [{
631
+ id: 'TabPane_526344',
632
+ label: '标签子面板',
633
+ compName: 'TabPane',
634
+ type: 'TabPane',
635
+ compType: 0,
636
+ compLib: 'comm',
637
+ props: {
638
+ name: '标签子面板',
639
+ basicStatus: 1,
640
+ tab: '标题1',
641
+ key: '1'
642
+ },
643
+ style: {
644
+ height: 80
645
+ },
646
+ isContainer: true,
647
+ isBusiObjContainer: false,
648
+ cmdgroup: ['basic'],
649
+ platform: 'pc',
650
+ icon: 'TabPane',
651
+ description: '',
652
+ image: '',
653
+ groupsName: '容器',
654
+ onlyRoot: ['Tabs'],
655
+ setEvents: [],
656
+ isLabelDropBoxChild: false,
657
+ components: [],
658
+ path: ['057343', 'View_057343_1', 'Tabs_5075684']
659
+ }, {
660
+ id: 'TabPane_696377',
661
+ label: '标签子面板',
662
+ compName: 'TabPane',
663
+ type: 'TabPane',
664
+ compType: 0,
665
+ compLib: 'comm',
666
+ props: {
667
+ name: '标签子面板',
668
+ basicStatus: 1,
669
+ tab: '标题2',
670
+ key: '2'
671
+ },
672
+ style: {
673
+ height: 80
674
+ },
675
+ isContainer: true,
676
+ isBusiObjContainer: false,
677
+ cmdgroup: ['basic'],
678
+ platform: 'pc',
679
+ icon: 'TabPane',
680
+ description: '',
681
+ image: '',
682
+ groupsName: '容器',
683
+ onlyRoot: ['Tabs'],
684
+ setEvents: [],
685
+ isLabelDropBoxChild: false,
686
+ components: [],
687
+ path: ['057343', 'View_057343_1', 'Tabs_5075684']
688
+ }],
689
+ path: ['057343', 'View_057343_1']
690
+ }, {
691
+ id: 'Tabs_803186',
692
+ label: '标签页',
693
+ compName: 'Tabs',
694
+ type: 'Tabs',
695
+ compType: 0,
696
+ compLib: 'comm',
697
+ props: {
698
+ name: '标签页',
699
+ basicStatus: 1,
700
+ type: 'card',
701
+ animated: false,
702
+ defaultActiveKey: '1',
703
+ tabBarGutter: '4px',
704
+ tabPosition: 'bottom',
705
+ size: 'default'
706
+ },
707
+ style: {
708
+ width: '100%',
709
+ margin: '0 0 16px 0',
710
+ padding: '20px 20px 20px 20px'
711
+ },
712
+ isContainer: true,
713
+ isBusiObjContainer: false,
714
+ cmdgroup: ['basic'],
715
+ platform: 'pc',
716
+ icon: 'Tabs',
717
+ description: '',
718
+ image: '',
719
+ groupsName: '容器',
720
+ onlyChildren: ['TabPane'],
721
+ setEvents: [],
722
+ isLabelDropBoxChild: false,
723
+ components: [{
724
+ id: 'TabPane_3542895',
725
+ label: '标签子面板',
726
+ compName: 'TabPane',
727
+ type: 'TabPane',
728
+ compType: 0,
729
+ compLib: 'comm',
730
+ props: {
731
+ name: '标签子面板',
732
+ basicStatus: 1,
733
+ tab: '标题1',
734
+ key: '1'
735
+ },
736
+ style: {
737
+ height: 80
738
+ },
739
+ isContainer: true,
740
+ isBusiObjContainer: false,
741
+ cmdgroup: ['basic'],
742
+ platform: 'pc',
743
+ icon: 'TabPane',
744
+ description: '',
745
+ image: '',
746
+ groupsName: '容器',
747
+ onlyRoot: ['Tabs'],
748
+ setEvents: [],
749
+ isLabelDropBoxChild: false,
750
+ components: [],
751
+ path: ['057343', 'View_057343_1', 'Tabs_803186']
752
+ }, {
753
+ id: 'TabPane_682926',
754
+ label: '标签子面板',
755
+ compName: 'TabPane',
756
+ type: 'TabPane',
757
+ compType: 0,
758
+ compLib: 'comm',
759
+ props: {
760
+ name: '标签子面板',
761
+ basicStatus: 1,
762
+ tab: '标题2',
763
+ key: '2'
764
+ },
765
+ style: {
766
+ height: 80
767
+ },
768
+ isContainer: true,
769
+ isBusiObjContainer: false,
770
+ cmdgroup: ['basic'],
771
+ platform: 'pc',
772
+ icon: 'TabPane',
773
+ description: '',
774
+ image: '',
775
+ groupsName: '容器',
776
+ onlyRoot: ['Tabs'],
777
+ setEvents: [],
778
+ isLabelDropBoxChild: false,
779
+ components: [],
780
+ path: ['057343', 'View_057343_1', 'Tabs_803186']
781
+ }],
782
+ path: ['057343', 'View_057343_1']
783
+ }, {
784
+ id: 'Tabs_35703',
785
+ label: '标签页',
786
+ compName: 'Tabs',
787
+ type: 'Tabs',
788
+ compType: 0,
789
+ compLib: 'comm',
790
+ props: {
791
+ name: '标签页',
792
+ basicStatus: 1,
793
+ type: 'card',
794
+ animated: false,
795
+ defaultActiveKey: '1',
796
+ tabBarGutter: '4px',
797
+ tabPosition: 'left',
798
+ size: 'default'
799
+ },
800
+ style: {
801
+ width: '100%',
802
+ margin: '0 0 16px 0',
803
+ padding: '20px 20px 20px 20px'
804
+ },
805
+ isContainer: true,
806
+ isBusiObjContainer: false,
807
+ cmdgroup: ['basic'],
808
+ platform: 'pc',
809
+ icon: 'Tabs',
810
+ description: '',
811
+ image: '',
812
+ groupsName: '容器',
813
+ onlyChildren: ['TabPane'],
814
+ setEvents: [],
815
+ isLabelDropBoxChild: false,
816
+ components: [{
817
+ id: 'TabPane_083081',
818
+ label: '标签子面板',
819
+ compName: 'TabPane',
820
+ type: 'TabPane',
821
+ compType: 0,
822
+ compLib: 'comm',
823
+ props: {
824
+ name: '标签子面板',
825
+ basicStatus: 1,
826
+ tab: '标题1',
827
+ key: '1'
828
+ },
829
+ style: {
830
+ height: 80
831
+ },
832
+ isContainer: true,
833
+ isBusiObjContainer: false,
834
+ cmdgroup: ['basic'],
835
+ platform: 'pc',
836
+ icon: 'TabPane',
837
+ description: '',
838
+ image: '',
839
+ groupsName: '容器',
840
+ onlyRoot: ['Tabs'],
841
+ setEvents: [],
842
+ isLabelDropBoxChild: false,
843
+ components: [],
844
+ path: ['057343', 'View_057343_1', 'Tabs_35703']
845
+ }, {
846
+ id: 'TabPane_5671683',
847
+ label: '标签子面板',
848
+ compName: 'TabPane',
849
+ type: 'TabPane',
850
+ compType: 0,
851
+ compLib: 'comm',
852
+ props: {
853
+ name: '标签子面板',
854
+ basicStatus: 1,
855
+ tab: '标题2',
856
+ key: '2'
857
+ },
858
+ style: {
859
+ height: 80
860
+ },
861
+ isContainer: true,
862
+ isBusiObjContainer: false,
863
+ cmdgroup: ['basic'],
864
+ platform: 'pc',
865
+ icon: 'TabPane',
866
+ description: '',
867
+ image: '',
868
+ groupsName: '容器',
869
+ onlyRoot: ['Tabs'],
870
+ setEvents: [],
871
+ isLabelDropBoxChild: false,
872
+ components: [],
873
+ path: ['057343', 'View_057343_1', 'Tabs_35703']
874
+ }],
875
+ path: ['057343', 'View_057343_1']
876
+ }, {
877
+ id: 'Tabs_758167',
878
+ label: '标签页',
879
+ compName: 'Tabs',
880
+ type: 'Tabs',
881
+ compType: 0,
882
+ compLib: 'comm',
883
+ props: {
884
+ name: '标签页',
885
+ basicStatus: 1,
886
+ type: 'card',
887
+ animated: false,
888
+ defaultActiveKey: '1',
889
+ tabBarGutter: '4px',
890
+ tabPosition: 'right',
891
+ size: 'default'
892
+ },
893
+ style: {
894
+ width: '100%',
895
+ margin: '0 0 16px 0',
896
+ padding: '20px 20px 20px 20px'
897
+ },
898
+ isContainer: true,
899
+ isBusiObjContainer: false,
900
+ cmdgroup: ['basic'],
901
+ platform: 'pc',
902
+ icon: 'Tabs',
903
+ description: '',
904
+ image: '',
905
+ groupsName: '容器',
906
+ onlyChildren: ['TabPane'],
907
+ setEvents: [],
908
+ isLabelDropBoxChild: false,
909
+ components: [{
910
+ id: 'TabPane_85666',
911
+ label: '标签子面板',
912
+ compName: 'TabPane',
913
+ type: 'TabPane',
914
+ compType: 0,
915
+ compLib: 'comm',
916
+ props: {
917
+ name: '标签子面板',
918
+ basicStatus: 1,
919
+ tab: '标题1',
920
+ key: '1'
921
+ },
922
+ style: {
923
+ height: 80
924
+ },
925
+ isContainer: true,
926
+ isBusiObjContainer: false,
927
+ cmdgroup: ['basic'],
928
+ platform: 'pc',
929
+ icon: 'TabPane',
930
+ description: '',
931
+ image: '',
932
+ groupsName: '容器',
933
+ onlyRoot: ['Tabs'],
934
+ setEvents: [],
935
+ isLabelDropBoxChild: false,
936
+ components: [],
937
+ path: ['057343', 'View_057343_1', 'Tabs_758167']
938
+ }, {
939
+ id: 'TabPane_576443',
940
+ label: '标签子面板',
941
+ compName: 'TabPane',
942
+ type: 'TabPane',
943
+ compType: 0,
944
+ compLib: 'comm',
945
+ props: {
946
+ name: '标签子面板',
947
+ basicStatus: 1,
948
+ tab: '标题2',
949
+ key: '2'
950
+ },
951
+ style: {
952
+ height: 80
953
+ },
954
+ isContainer: true,
955
+ isBusiObjContainer: false,
956
+ cmdgroup: ['basic'],
957
+ platform: 'pc',
958
+ icon: 'TabPane',
959
+ description: '',
960
+ image: '',
961
+ groupsName: '容器',
962
+ onlyRoot: ['Tabs'],
963
+ setEvents: [],
964
+ isLabelDropBoxChild: false,
965
+ components: [],
966
+ path: ['057343', 'View_057343_1', 'Tabs_758167']
967
+ }],
968
+ path: ['057343', 'View_057343_1']
969
+ }]
970
+ };