@lingxiteam/theme-utils 0.2.15 → 0.3.0
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.
- package/dist/config/Button.d.ts +6 -0
- package/dist/config/Button.js +10 -4
- package/dist/config/Card.d.ts +4 -0
- package/dist/config/Card.js +7 -3
- package/dist/config/Checkbox.d.ts +2 -0
- package/dist/config/Checkbox.js +4 -2
- package/dist/config/CheckboxGroup.d.ts +2 -0
- package/dist/config/CheckboxGroup.js +4 -2
- package/dist/config/Collapse.d.ts +6 -0
- package/dist/config/Collapse.js +10 -4
- package/dist/config/Container.d.ts +6 -0
- package/dist/config/Container.js +8 -2
- package/dist/config/DatePicker.d.ts +13 -11
- package/dist/config/DatePicker.js +15 -13
- package/dist/config/Description.d.ts +8 -0
- package/dist/config/Description.js +11 -3
- package/dist/config/Form.d.ts +7 -0
- package/dist/config/Form.js +11 -4
- package/dist/config/Radio.d.ts +2 -0
- package/dist/config/Radio.js +4 -2
- package/dist/config/Table.d.ts +8 -0
- package/dist/config/Table.js +13 -5
- package/dist/config/Tabs.d.ts +33 -43
- package/dist/config/Tabs.js +657 -25
- package/dist/config/Tree.d.ts +7 -0
- package/dist/config/Tree.js +12 -5
- package/dist/lx-mobile.js +16 -13
- package/package.json +1 -1
package/dist/config/Tabs.js
CHANGED
|
@@ -22,7 +22,8 @@ export var Tabs = {
|
|
|
22
22
|
activeRadius: {
|
|
23
23
|
type: 'px',
|
|
24
24
|
label: '选中项边框圆角',
|
|
25
|
-
groupsName: '边框'
|
|
25
|
+
groupsName: '边框',
|
|
26
|
+
followTheme: '@border-radius-base'
|
|
26
27
|
},
|
|
27
28
|
paddingValue: {
|
|
28
29
|
type: 'marginInput',
|
|
@@ -116,7 +117,8 @@ export var Tabs = {
|
|
|
116
117
|
borderRadius: {
|
|
117
118
|
type: 'px',
|
|
118
119
|
label: '边框圆角',
|
|
119
|
-
groupsName: '边框'
|
|
120
|
+
groupsName: '边框',
|
|
121
|
+
followTheme: '@border-radius-base'
|
|
120
122
|
},
|
|
121
123
|
bodyColor: {
|
|
122
124
|
type: 'color',
|
|
@@ -144,11 +146,456 @@ export var Tabs = {
|
|
|
144
146
|
activeFontWeight: '300'
|
|
145
147
|
}],
|
|
146
148
|
followThemes: {
|
|
147
|
-
'@primary-color': ['activeFColor', 'activeBgColor']
|
|
149
|
+
'@primary-color': ['activeFColor', 'activeBgColor'],
|
|
150
|
+
'@border-radius-base': []
|
|
148
151
|
},
|
|
149
|
-
tpl: ".ued-tabs-wrap {\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;\n
|
|
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 ",
|
|
150
153
|
components: [{
|
|
151
|
-
id: '
|
|
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',
|
|
152
599
|
label: '标签页',
|
|
153
600
|
compName: 'Tabs',
|
|
154
601
|
type: 'Tabs',
|
|
@@ -157,13 +604,12 @@ export var Tabs = {
|
|
|
157
604
|
props: {
|
|
158
605
|
name: '标签页',
|
|
159
606
|
basicStatus: 1,
|
|
160
|
-
type: '
|
|
607
|
+
type: 'card',
|
|
161
608
|
animated: false,
|
|
162
609
|
defaultActiveKey: '1',
|
|
163
610
|
tabBarGutter: '4px',
|
|
164
611
|
tabPosition: 'top',
|
|
165
|
-
size: 'default'
|
|
166
|
-
className: 'fdddd'
|
|
612
|
+
size: 'default'
|
|
167
613
|
},
|
|
168
614
|
style: {
|
|
169
615
|
width: '100%',
|
|
@@ -182,7 +628,7 @@ export var Tabs = {
|
|
|
182
628
|
setEvents: [],
|
|
183
629
|
isLabelDropBoxChild: false,
|
|
184
630
|
components: [{
|
|
185
|
-
id: '
|
|
631
|
+
id: 'TabPane_526344',
|
|
186
632
|
label: '标签子面板',
|
|
187
633
|
compName: 'TabPane',
|
|
188
634
|
type: 'TabPane',
|
|
@@ -195,7 +641,7 @@ export var Tabs = {
|
|
|
195
641
|
key: '1'
|
|
196
642
|
},
|
|
197
643
|
style: {
|
|
198
|
-
|
|
644
|
+
height: 80
|
|
199
645
|
},
|
|
200
646
|
isContainer: true,
|
|
201
647
|
isBusiObjContainer: false,
|
|
@@ -209,9 +655,9 @@ export var Tabs = {
|
|
|
209
655
|
setEvents: [],
|
|
210
656
|
isLabelDropBoxChild: false,
|
|
211
657
|
components: [],
|
|
212
|
-
path: ['
|
|
658
|
+
path: ['057343', 'View_057343_1', 'Tabs_5075684']
|
|
213
659
|
}, {
|
|
214
|
-
id: '
|
|
660
|
+
id: 'TabPane_696377',
|
|
215
661
|
label: '标签子面板',
|
|
216
662
|
compName: 'TabPane',
|
|
217
663
|
type: 'TabPane',
|
|
@@ -224,7 +670,7 @@ export var Tabs = {
|
|
|
224
670
|
key: '2'
|
|
225
671
|
},
|
|
226
672
|
style: {
|
|
227
|
-
|
|
673
|
+
height: 80
|
|
228
674
|
},
|
|
229
675
|
isContainer: true,
|
|
230
676
|
isBusiObjContainer: false,
|
|
@@ -238,11 +684,11 @@ export var Tabs = {
|
|
|
238
684
|
setEvents: [],
|
|
239
685
|
isLabelDropBoxChild: false,
|
|
240
686
|
components: [],
|
|
241
|
-
path: ['
|
|
687
|
+
path: ['057343', 'View_057343_1', 'Tabs_5075684']
|
|
242
688
|
}],
|
|
243
|
-
path: ['
|
|
689
|
+
path: ['057343', 'View_057343_1']
|
|
244
690
|
}, {
|
|
245
|
-
id: '
|
|
691
|
+
id: 'Tabs_803186',
|
|
246
692
|
label: '标签页',
|
|
247
693
|
compName: 'Tabs',
|
|
248
694
|
type: 'Tabs',
|
|
@@ -255,7 +701,193 @@ export var Tabs = {
|
|
|
255
701
|
animated: false,
|
|
256
702
|
defaultActiveKey: '1',
|
|
257
703
|
tabBarGutter: '4px',
|
|
258
|
-
tabPosition: '
|
|
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',
|
|
259
891
|
size: 'default'
|
|
260
892
|
},
|
|
261
893
|
style: {
|
|
@@ -275,7 +907,7 @@ export var Tabs = {
|
|
|
275
907
|
setEvents: [],
|
|
276
908
|
isLabelDropBoxChild: false,
|
|
277
909
|
components: [{
|
|
278
|
-
id: '
|
|
910
|
+
id: 'TabPane_85666',
|
|
279
911
|
label: '标签子面板',
|
|
280
912
|
compName: 'TabPane',
|
|
281
913
|
type: 'TabPane',
|
|
@@ -283,12 +915,12 @@ export var Tabs = {
|
|
|
283
915
|
compLib: 'comm',
|
|
284
916
|
props: {
|
|
285
917
|
name: '标签子面板',
|
|
286
|
-
basicStatus:
|
|
918
|
+
basicStatus: 1,
|
|
287
919
|
tab: '标题1',
|
|
288
920
|
key: '1'
|
|
289
921
|
},
|
|
290
922
|
style: {
|
|
291
|
-
|
|
923
|
+
height: 80
|
|
292
924
|
},
|
|
293
925
|
isContainer: true,
|
|
294
926
|
isBusiObjContainer: false,
|
|
@@ -302,9 +934,9 @@ export var Tabs = {
|
|
|
302
934
|
setEvents: [],
|
|
303
935
|
isLabelDropBoxChild: false,
|
|
304
936
|
components: [],
|
|
305
|
-
path: ['
|
|
937
|
+
path: ['057343', 'View_057343_1', 'Tabs_758167']
|
|
306
938
|
}, {
|
|
307
|
-
id: '
|
|
939
|
+
id: 'TabPane_576443',
|
|
308
940
|
label: '标签子面板',
|
|
309
941
|
compName: 'TabPane',
|
|
310
942
|
type: 'TabPane',
|
|
@@ -317,7 +949,7 @@ export var Tabs = {
|
|
|
317
949
|
key: '2'
|
|
318
950
|
},
|
|
319
951
|
style: {
|
|
320
|
-
|
|
952
|
+
height: 80
|
|
321
953
|
},
|
|
322
954
|
isContainer: true,
|
|
323
955
|
isBusiObjContainer: false,
|
|
@@ -331,8 +963,8 @@ export var Tabs = {
|
|
|
331
963
|
setEvents: [],
|
|
332
964
|
isLabelDropBoxChild: false,
|
|
333
965
|
components: [],
|
|
334
|
-
path: ['
|
|
966
|
+
path: ['057343', 'View_057343_1', 'Tabs_758167']
|
|
335
967
|
}],
|
|
336
|
-
path: ['
|
|
968
|
+
path: ['057343', 'View_057343_1']
|
|
337
969
|
}]
|
|
338
970
|
};
|