@dckj-npm/dc-material 0.1.174 → 0.1.175
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/build/lowcode/assets-daily.json +13 -13
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +13 -13
- package/build/lowcode/meta.design.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/lowcode/teletext-list/meta.ts +114 -97
- package/lowcode_es/meta.js +1 -1
- package/lowcode_es/teletext-list/meta.js +94 -77
- package/lowcode_lib/meta.js +1 -1
- package/lowcode_lib/teletext-list/meta.js +94 -77
- package/package.json +2 -2
|
@@ -391,108 +391,125 @@ const TeletextListMeta: IPublicTypeComponentMetadata = {
|
|
|
391
391
|
setter: {
|
|
392
392
|
componentName: 'ArraySetter',
|
|
393
393
|
props: {
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
hasClear: false,
|
|
404
|
-
},
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
name: 'size',
|
|
408
|
-
title: '图标尺寸',
|
|
409
|
-
setter: {
|
|
410
|
-
componentName: 'SelectSetter',
|
|
394
|
+
itemSetter: {
|
|
395
|
+
componentName: 'ObjectSetter',
|
|
396
|
+
props: {
|
|
397
|
+
config: {
|
|
398
|
+
items: [
|
|
399
|
+
{
|
|
400
|
+
name: 'icon',
|
|
401
|
+
title: '图标',
|
|
402
|
+
setter: 'IconSetter',
|
|
411
403
|
props: {
|
|
412
|
-
|
|
413
|
-
{
|
|
414
|
-
label: 'xxs',
|
|
415
|
-
value: 'xxs',
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
label: 'xs',
|
|
419
|
-
value: 'xs',
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
label: 'small',
|
|
423
|
-
value: 'small',
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
label: 'medium',
|
|
427
|
-
value: 'medium',
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
label: 'large',
|
|
431
|
-
value: 'large',
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
label: 'xl',
|
|
435
|
-
value: 'xl',
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
label: 'xxl',
|
|
439
|
-
value: 'xxl',
|
|
440
|
-
},
|
|
441
|
-
{
|
|
442
|
-
label: 'xxxl',
|
|
443
|
-
value: 'xxxl',
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
label: 'inherit',
|
|
447
|
-
value: 'inherit',
|
|
448
|
-
},
|
|
449
|
-
],
|
|
404
|
+
hasClear: false,
|
|
450
405
|
},
|
|
451
406
|
},
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
407
|
+
{
|
|
408
|
+
name: 'size',
|
|
409
|
+
title: '图标尺寸',
|
|
410
|
+
setter: {
|
|
411
|
+
componentName: 'SelectSetter',
|
|
412
|
+
props: {
|
|
413
|
+
options: [
|
|
414
|
+
{
|
|
415
|
+
label: 'xxs',
|
|
416
|
+
value: 'xxs',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
label: 'xs',
|
|
420
|
+
value: 'xs',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
label: 'small',
|
|
424
|
+
value: 'small',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
label: 'medium',
|
|
428
|
+
value: 'medium',
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
label: 'large',
|
|
432
|
+
value: 'large',
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
label: 'xl',
|
|
436
|
+
value: 'xl',
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
label: 'xxl',
|
|
440
|
+
value: 'xxl',
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
label: 'xxxl',
|
|
444
|
+
value: 'xxxl',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
label: 'inherit',
|
|
448
|
+
value: 'inherit',
|
|
449
|
+
},
|
|
450
|
+
],
|
|
451
|
+
},
|
|
482
452
|
},
|
|
453
|
+
defaultValue: 'medium',
|
|
483
454
|
},
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
455
|
+
{
|
|
456
|
+
name: 'position',
|
|
457
|
+
title: '图标位置',
|
|
458
|
+
defaultValue: 'rightTop',
|
|
459
|
+
setter: {
|
|
460
|
+
componentName: 'SelectSetter',
|
|
461
|
+
props: {
|
|
462
|
+
options: [
|
|
463
|
+
{
|
|
464
|
+
label: '左上角',
|
|
465
|
+
value: 'leftTop',
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
label: '左下角',
|
|
469
|
+
value: 'leftBottom',
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
label: '右上角',
|
|
473
|
+
value: 'rightTop',
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
label: '右下角',
|
|
477
|
+
value: 'rightBottom',
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
label: '自定义',
|
|
481
|
+
value: 'customize',
|
|
482
|
+
},
|
|
483
|
+
],
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
name: 'rightOffset',
|
|
489
|
+
title: '右偏移',
|
|
490
|
+
setter: 'NumberSetter',
|
|
491
|
+
defaultValue: 0,
|
|
492
|
+
condition: (target) => {
|
|
493
|
+
return target.getProps().getPropValue('position') === 'customize'
|
|
494
|
+
},
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
name: 'bottomOffset',
|
|
498
|
+
title: '下偏移',
|
|
499
|
+
setter: 'NumberSetter',
|
|
500
|
+
defaultValue: 0,
|
|
501
|
+
condition: (target) => {
|
|
502
|
+
return target.getProps().getPropValue('position') === 'customize'
|
|
503
|
+
},
|
|
504
|
+
},
|
|
505
|
+
],
|
|
506
|
+
},
|
|
507
|
+
},
|
|
508
|
+
initialValue: {
|
|
509
|
+
size: 'medium',
|
|
510
|
+
position: 'rightTop',
|
|
511
|
+
rightOffset: 0,
|
|
512
|
+
bottomOffset: 0,
|
|
496
513
|
},
|
|
497
514
|
},
|
|
498
515
|
},
|
package/lowcode_es/meta.js
CHANGED
|
@@ -99,7 +99,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
99
99
|
packageName = '@dckj-npm/dc-material';
|
|
100
100
|
}
|
|
101
101
|
if (version === void 0) {
|
|
102
|
-
version = '0.1.
|
|
102
|
+
version = '0.1.175';
|
|
103
103
|
}
|
|
104
104
|
if (basicLibraryVersion === void 0) {
|
|
105
105
|
basicLibraryVersion = {
|
|
@@ -345,86 +345,103 @@ var TeletextListMeta = {
|
|
|
345
345
|
setter: {
|
|
346
346
|
componentName: 'ArraySetter',
|
|
347
347
|
props: {
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
hasClear: false
|
|
357
|
-
}
|
|
358
|
-
}, {
|
|
359
|
-
name: 'size',
|
|
360
|
-
title: '图标尺寸',
|
|
361
|
-
setter: {
|
|
362
|
-
componentName: 'SelectSetter',
|
|
348
|
+
itemSetter: {
|
|
349
|
+
componentName: 'ObjectSetter',
|
|
350
|
+
props: {
|
|
351
|
+
config: {
|
|
352
|
+
items: [{
|
|
353
|
+
name: 'icon',
|
|
354
|
+
title: '图标',
|
|
355
|
+
setter: 'IconSetter',
|
|
363
356
|
props: {
|
|
364
|
-
|
|
365
|
-
label: 'xxs',
|
|
366
|
-
value: 'xxs'
|
|
367
|
-
}, {
|
|
368
|
-
label: 'xs',
|
|
369
|
-
value: 'xs'
|
|
370
|
-
}, {
|
|
371
|
-
label: 'small',
|
|
372
|
-
value: 'small'
|
|
373
|
-
}, {
|
|
374
|
-
label: 'medium',
|
|
375
|
-
value: 'medium'
|
|
376
|
-
}, {
|
|
377
|
-
label: 'large',
|
|
378
|
-
value: 'large'
|
|
379
|
-
}, {
|
|
380
|
-
label: 'xl',
|
|
381
|
-
value: 'xl'
|
|
382
|
-
}, {
|
|
383
|
-
label: 'xxl',
|
|
384
|
-
value: 'xxl'
|
|
385
|
-
}, {
|
|
386
|
-
label: 'xxxl',
|
|
387
|
-
value: 'xxxl'
|
|
388
|
-
}, {
|
|
389
|
-
label: 'inherit',
|
|
390
|
-
value: 'inherit'
|
|
391
|
-
}]
|
|
357
|
+
hasClear: false
|
|
392
358
|
}
|
|
393
|
-
},
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
359
|
+
}, {
|
|
360
|
+
name: 'size',
|
|
361
|
+
title: '图标尺寸',
|
|
362
|
+
setter: {
|
|
363
|
+
componentName: 'SelectSetter',
|
|
364
|
+
props: {
|
|
365
|
+
options: [{
|
|
366
|
+
label: 'xxs',
|
|
367
|
+
value: 'xxs'
|
|
368
|
+
}, {
|
|
369
|
+
label: 'xs',
|
|
370
|
+
value: 'xs'
|
|
371
|
+
}, {
|
|
372
|
+
label: 'small',
|
|
373
|
+
value: 'small'
|
|
374
|
+
}, {
|
|
375
|
+
label: 'medium',
|
|
376
|
+
value: 'medium'
|
|
377
|
+
}, {
|
|
378
|
+
label: 'large',
|
|
379
|
+
value: 'large'
|
|
380
|
+
}, {
|
|
381
|
+
label: 'xl',
|
|
382
|
+
value: 'xl'
|
|
383
|
+
}, {
|
|
384
|
+
label: 'xxl',
|
|
385
|
+
value: 'xxl'
|
|
386
|
+
}, {
|
|
387
|
+
label: 'xxxl',
|
|
388
|
+
value: 'xxxl'
|
|
389
|
+
}, {
|
|
390
|
+
label: 'inherit',
|
|
391
|
+
value: 'inherit'
|
|
392
|
+
}]
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
defaultValue: 'medium'
|
|
396
|
+
}, {
|
|
397
|
+
name: 'position',
|
|
398
|
+
title: '图标位置',
|
|
399
|
+
defaultValue: 'rightTop',
|
|
400
|
+
setter: {
|
|
401
|
+
componentName: 'SelectSetter',
|
|
402
|
+
props: {
|
|
403
|
+
options: [{
|
|
404
|
+
label: '左上角',
|
|
405
|
+
value: 'leftTop'
|
|
406
|
+
}, {
|
|
407
|
+
label: '左下角',
|
|
408
|
+
value: 'leftBottom'
|
|
409
|
+
}, {
|
|
410
|
+
label: '右上角',
|
|
411
|
+
value: 'rightTop'
|
|
412
|
+
}, {
|
|
413
|
+
label: '右下角',
|
|
414
|
+
value: 'rightBottom'
|
|
415
|
+
}, {
|
|
416
|
+
label: '自定义',
|
|
417
|
+
value: 'customize'
|
|
418
|
+
}]
|
|
419
|
+
}
|
|
417
420
|
}
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
421
|
+
}, {
|
|
422
|
+
name: 'rightOffset',
|
|
423
|
+
title: '右偏移',
|
|
424
|
+
setter: 'NumberSetter',
|
|
425
|
+
defaultValue: 0,
|
|
426
|
+
condition: function condition(target) {
|
|
427
|
+
return target.getProps().getPropValue('position') === 'customize';
|
|
428
|
+
}
|
|
429
|
+
}, {
|
|
430
|
+
name: 'bottomOffset',
|
|
431
|
+
title: '下偏移',
|
|
432
|
+
setter: 'NumberSetter',
|
|
433
|
+
defaultValue: 0,
|
|
434
|
+
condition: function condition(target) {
|
|
435
|
+
return target.getProps().getPropValue('position') === 'customize';
|
|
436
|
+
}
|
|
437
|
+
}]
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
initialValue: {
|
|
441
|
+
size: 'medium',
|
|
442
|
+
position: 'rightTop',
|
|
443
|
+
rightOffset: 0,
|
|
444
|
+
bottomOffset: 0
|
|
428
445
|
}
|
|
429
446
|
}
|
|
430
447
|
}
|
package/lowcode_lib/meta.js
CHANGED
|
@@ -104,7 +104,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
|
|
|
104
104
|
packageName = '@dckj-npm/dc-material';
|
|
105
105
|
}
|
|
106
106
|
if (version === void 0) {
|
|
107
|
-
version = '0.1.
|
|
107
|
+
version = '0.1.175';
|
|
108
108
|
}
|
|
109
109
|
if (basicLibraryVersion === void 0) {
|
|
110
110
|
basicLibraryVersion = {
|
|
@@ -350,86 +350,103 @@ var TeletextListMeta = {
|
|
|
350
350
|
setter: {
|
|
351
351
|
componentName: 'ArraySetter',
|
|
352
352
|
props: {
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
hasClear: false
|
|
362
|
-
}
|
|
363
|
-
}, {
|
|
364
|
-
name: 'size',
|
|
365
|
-
title: '图标尺寸',
|
|
366
|
-
setter: {
|
|
367
|
-
componentName: 'SelectSetter',
|
|
353
|
+
itemSetter: {
|
|
354
|
+
componentName: 'ObjectSetter',
|
|
355
|
+
props: {
|
|
356
|
+
config: {
|
|
357
|
+
items: [{
|
|
358
|
+
name: 'icon',
|
|
359
|
+
title: '图标',
|
|
360
|
+
setter: 'IconSetter',
|
|
368
361
|
props: {
|
|
369
|
-
|
|
370
|
-
label: 'xxs',
|
|
371
|
-
value: 'xxs'
|
|
372
|
-
}, {
|
|
373
|
-
label: 'xs',
|
|
374
|
-
value: 'xs'
|
|
375
|
-
}, {
|
|
376
|
-
label: 'small',
|
|
377
|
-
value: 'small'
|
|
378
|
-
}, {
|
|
379
|
-
label: 'medium',
|
|
380
|
-
value: 'medium'
|
|
381
|
-
}, {
|
|
382
|
-
label: 'large',
|
|
383
|
-
value: 'large'
|
|
384
|
-
}, {
|
|
385
|
-
label: 'xl',
|
|
386
|
-
value: 'xl'
|
|
387
|
-
}, {
|
|
388
|
-
label: 'xxl',
|
|
389
|
-
value: 'xxl'
|
|
390
|
-
}, {
|
|
391
|
-
label: 'xxxl',
|
|
392
|
-
value: 'xxxl'
|
|
393
|
-
}, {
|
|
394
|
-
label: 'inherit',
|
|
395
|
-
value: 'inherit'
|
|
396
|
-
}]
|
|
362
|
+
hasClear: false
|
|
397
363
|
}
|
|
398
|
-
},
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
364
|
+
}, {
|
|
365
|
+
name: 'size',
|
|
366
|
+
title: '图标尺寸',
|
|
367
|
+
setter: {
|
|
368
|
+
componentName: 'SelectSetter',
|
|
369
|
+
props: {
|
|
370
|
+
options: [{
|
|
371
|
+
label: 'xxs',
|
|
372
|
+
value: 'xxs'
|
|
373
|
+
}, {
|
|
374
|
+
label: 'xs',
|
|
375
|
+
value: 'xs'
|
|
376
|
+
}, {
|
|
377
|
+
label: 'small',
|
|
378
|
+
value: 'small'
|
|
379
|
+
}, {
|
|
380
|
+
label: 'medium',
|
|
381
|
+
value: 'medium'
|
|
382
|
+
}, {
|
|
383
|
+
label: 'large',
|
|
384
|
+
value: 'large'
|
|
385
|
+
}, {
|
|
386
|
+
label: 'xl',
|
|
387
|
+
value: 'xl'
|
|
388
|
+
}, {
|
|
389
|
+
label: 'xxl',
|
|
390
|
+
value: 'xxl'
|
|
391
|
+
}, {
|
|
392
|
+
label: 'xxxl',
|
|
393
|
+
value: 'xxxl'
|
|
394
|
+
}, {
|
|
395
|
+
label: 'inherit',
|
|
396
|
+
value: 'inherit'
|
|
397
|
+
}]
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
defaultValue: 'medium'
|
|
401
|
+
}, {
|
|
402
|
+
name: 'position',
|
|
403
|
+
title: '图标位置',
|
|
404
|
+
defaultValue: 'rightTop',
|
|
405
|
+
setter: {
|
|
406
|
+
componentName: 'SelectSetter',
|
|
407
|
+
props: {
|
|
408
|
+
options: [{
|
|
409
|
+
label: '左上角',
|
|
410
|
+
value: 'leftTop'
|
|
411
|
+
}, {
|
|
412
|
+
label: '左下角',
|
|
413
|
+
value: 'leftBottom'
|
|
414
|
+
}, {
|
|
415
|
+
label: '右上角',
|
|
416
|
+
value: 'rightTop'
|
|
417
|
+
}, {
|
|
418
|
+
label: '右下角',
|
|
419
|
+
value: 'rightBottom'
|
|
420
|
+
}, {
|
|
421
|
+
label: '自定义',
|
|
422
|
+
value: 'customize'
|
|
423
|
+
}]
|
|
424
|
+
}
|
|
422
425
|
}
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
426
|
+
}, {
|
|
427
|
+
name: 'rightOffset',
|
|
428
|
+
title: '右偏移',
|
|
429
|
+
setter: 'NumberSetter',
|
|
430
|
+
defaultValue: 0,
|
|
431
|
+
condition: function condition(target) {
|
|
432
|
+
return target.getProps().getPropValue('position') === 'customize';
|
|
433
|
+
}
|
|
434
|
+
}, {
|
|
435
|
+
name: 'bottomOffset',
|
|
436
|
+
title: '下偏移',
|
|
437
|
+
setter: 'NumberSetter',
|
|
438
|
+
defaultValue: 0,
|
|
439
|
+
condition: function condition(target) {
|
|
440
|
+
return target.getProps().getPropValue('position') === 'customize';
|
|
441
|
+
}
|
|
442
|
+
}]
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
initialValue: {
|
|
446
|
+
size: 'medium',
|
|
447
|
+
position: 'rightTop',
|
|
448
|
+
rightOffset: 0,
|
|
449
|
+
bottomOffset: 0
|
|
433
450
|
}
|
|
434
451
|
}
|
|
435
452
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dckj-npm/dc-material",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.175",
|
|
4
4
|
"description": "dc低代码物料",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
},
|
|
107
107
|
"componentConfig": {
|
|
108
108
|
"isComponentLibrary": true,
|
|
109
|
-
"materialSchema": "https://unpkg.com/@dckj-npm/dc-material@0.1.
|
|
109
|
+
"materialSchema": "https://unpkg.com/@dckj-npm/dc-material@0.1.175/build/lowcode/assets-prod.json"
|
|
110
110
|
},
|
|
111
111
|
"lcMeta": {
|
|
112
112
|
"type": "component"
|