@rxap/schematic-angular 16.2.0-dev.53 → 16.2.0-dev.54
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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +4 -4
- package/src/lib/table/column/boolean-table-column.d.ts +8 -0
- package/src/lib/table/column/boolean-table-column.js +10 -0
- package/src/lib/table/column/boolean-table-column.js.map +1 -0
- package/src/lib/table/column/custom-table-column.d.ts +11 -0
- package/src/lib/table/column/custom-table-column.js +11 -0
- package/src/lib/table/column/custom-table-column.js.map +1 -0
- package/src/lib/table/column/date-table-column.js +1 -1
- package/src/lib/table/column/date-table-column.js.map +1 -1
- package/src/lib/table/table-column-kind.d.ts +1 -0
- package/src/lib/table/table-column-kind.js +1 -0
- package/src/lib/table/table-column-kind.js.map +1 -1
- package/src/lib/table/table-column.js +6 -0
- package/src/lib/table/table-column.js.map +1 -1
- package/src/schema.json +118 -25
- package/src/schematics/accordion/accordion-component/schema.json +118 -25
- package/src/schematics/accordion/accordion-item-component/schema.json +118 -25
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +46 -13
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +118 -25
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +94 -18
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +94 -18
- package/src/schematics/autocomplete-table-select-form-control.schema.json +2 -1
- package/src/schematics/boolean-table-column.schema.json +2 -1
- package/src/schematics/checkbox-form-control.schema.json +2 -1
- package/src/schematics/component-table-column.schema.json +2 -1
- package/src/schematics/copy-to-clipboard-table-column.schema.json +2 -1
- package/src/schematics/custom-table-column.schema.json +27 -0
- package/src/schematics/data-grid-accordion-item.schema.json +2 -1
- package/src/schematics/data-grid-component/schema.json +42 -12
- package/src/schematics/date-table-column.schema.json +2 -1
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +4 -1
- package/src/schematics/form/control/input-form-control/schema.json +4 -1
- package/src/schematics/form/control/select-form-control/schema.json +4 -1
- package/src/schematics/form/control/table-select-form-control/schema.json +4 -1
- package/src/schematics/form/form-array/schema.json +42 -12
- package/src/schematics/form/form-component/schema.json +42 -12
- package/src/schematics/form/form-control/schema.json +30 -8
- package/src/schematics/form/form-definition/schema.json +42 -12
- package/src/schematics/form/form-group/schema.json +42 -12
- package/src/schematics/form-array.schema.json +4 -2
- package/src/schematics/form-control.schema.json +2 -1
- package/src/schematics/form-group.schema.json +4 -2
- package/src/schematics/icon-table-column.schema.json +2 -1
- package/src/schematics/input-form-control.schema.json +2 -1
- package/src/schematics/link-table-column.schema.json +2 -1
- package/src/schematics/select-form-control.schema.json +2 -1
- package/src/schematics/slide-toggle-form-control.schema.json +2 -1
- package/src/schematics/spinner-table-column.schema.json +2 -1
- package/src/schematics/switch-accordion-item.schema.json +2 -1
- package/src/schematics/table/action/form-table-action/schema.json +42 -12
- package/src/schematics/table/header-button/form-table-header-button/schema.json +42 -12
- package/src/schematics/table/table-component/schema.json +90 -17
- package/src/schematics/table/templates/custom-table-column.hbs +23 -0
- package/src/schematics/table/tree-table-component/schema.json +90 -17
- package/src/schematics/table-accordion-item.schema.json +2 -1
- package/src/schematics/table-column.schema.json +8 -1
- package/src/schematics/table-select-form-control.schema.json +2 -1
- package/src/schematics/textarea-form-control.schema.json +2 -1
- package/src/schematics/tree-table-accordion-item.schema.json +2 -1
- package/src/schematics/tree-table-column.schema.json +2 -1
- package/src/template.schema.json +3 -0
|
@@ -226,7 +226,10 @@
|
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
|
-
}
|
|
229
|
+
},
|
|
230
|
+
"required": [
|
|
231
|
+
"kind"
|
|
232
|
+
]
|
|
230
233
|
}
|
|
231
234
|
]
|
|
232
235
|
},
|
|
@@ -370,7 +373,10 @@
|
|
|
370
373
|
"after"
|
|
371
374
|
]
|
|
372
375
|
}
|
|
373
|
-
}
|
|
376
|
+
},
|
|
377
|
+
"required": [
|
|
378
|
+
"kind"
|
|
379
|
+
]
|
|
374
380
|
}
|
|
375
381
|
]
|
|
376
382
|
},
|
|
@@ -428,7 +434,10 @@
|
|
|
428
434
|
"type": "string",
|
|
429
435
|
"const": "array"
|
|
430
436
|
}
|
|
431
|
-
}
|
|
437
|
+
},
|
|
438
|
+
"required": [
|
|
439
|
+
"role"
|
|
440
|
+
]
|
|
432
441
|
},
|
|
433
442
|
{
|
|
434
443
|
"oneOf": [
|
|
@@ -442,7 +451,8 @@
|
|
|
442
451
|
"properties": {
|
|
443
452
|
"kind": {
|
|
444
453
|
"type": "string",
|
|
445
|
-
"const": "default"
|
|
454
|
+
"const": "default",
|
|
455
|
+
"default": "default"
|
|
446
456
|
}
|
|
447
457
|
}
|
|
448
458
|
}
|
|
@@ -511,7 +521,8 @@
|
|
|
511
521
|
"properties": {
|
|
512
522
|
"kind": {
|
|
513
523
|
"type": "string",
|
|
514
|
-
"const": "default"
|
|
524
|
+
"const": "default",
|
|
525
|
+
"default": "default"
|
|
515
526
|
}
|
|
516
527
|
}
|
|
517
528
|
}
|
|
@@ -586,7 +597,10 @@
|
|
|
586
597
|
"type": "string",
|
|
587
598
|
"const": "group"
|
|
588
599
|
}
|
|
589
|
-
}
|
|
600
|
+
},
|
|
601
|
+
"required": [
|
|
602
|
+
"role"
|
|
603
|
+
]
|
|
590
604
|
},
|
|
591
605
|
{
|
|
592
606
|
"oneOf": [
|
|
@@ -600,7 +614,8 @@
|
|
|
600
614
|
"properties": {
|
|
601
615
|
"kind": {
|
|
602
616
|
"type": "string",
|
|
603
|
-
"const": "default"
|
|
617
|
+
"const": "default",
|
|
618
|
+
"default": "default"
|
|
604
619
|
}
|
|
605
620
|
}
|
|
606
621
|
}
|
|
@@ -691,7 +706,10 @@
|
|
|
691
706
|
"placeholder": {
|
|
692
707
|
"type": "string"
|
|
693
708
|
}
|
|
694
|
-
}
|
|
709
|
+
},
|
|
710
|
+
"required": [
|
|
711
|
+
"kind"
|
|
712
|
+
]
|
|
695
713
|
}
|
|
696
714
|
]
|
|
697
715
|
},
|
|
@@ -782,7 +800,10 @@
|
|
|
782
800
|
"type": "boolean",
|
|
783
801
|
"description": "Whether the select form control is multiple mode"
|
|
784
802
|
}
|
|
785
|
-
}
|
|
803
|
+
},
|
|
804
|
+
"required": [
|
|
805
|
+
"kind"
|
|
806
|
+
]
|
|
786
807
|
}
|
|
787
808
|
]
|
|
788
809
|
},
|
|
@@ -805,7 +826,10 @@
|
|
|
805
826
|
"after"
|
|
806
827
|
]
|
|
807
828
|
}
|
|
808
|
-
}
|
|
829
|
+
},
|
|
830
|
+
"required": [
|
|
831
|
+
"kind"
|
|
832
|
+
]
|
|
809
833
|
}
|
|
810
834
|
]
|
|
811
835
|
},
|
|
@@ -888,7 +912,10 @@
|
|
|
888
912
|
"identifier": {
|
|
889
913
|
"$ref": "#/definitions/accordionIdentifier"
|
|
890
914
|
}
|
|
891
|
-
}
|
|
915
|
+
},
|
|
916
|
+
"required": [
|
|
917
|
+
"kind"
|
|
918
|
+
]
|
|
892
919
|
}
|
|
893
920
|
]
|
|
894
921
|
},
|
|
@@ -921,7 +948,10 @@
|
|
|
921
948
|
}
|
|
922
949
|
}
|
|
923
950
|
}
|
|
924
|
-
}
|
|
951
|
+
},
|
|
952
|
+
"required": [
|
|
953
|
+
"kind"
|
|
954
|
+
]
|
|
925
955
|
}
|
|
926
956
|
]
|
|
927
957
|
},
|
|
@@ -239,7 +239,10 @@
|
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
}
|
|
242
|
+
},
|
|
243
|
+
"required": [
|
|
244
|
+
"kind"
|
|
245
|
+
]
|
|
243
246
|
}
|
|
244
247
|
]
|
|
245
248
|
},
|
|
@@ -316,7 +319,10 @@
|
|
|
316
319
|
"after"
|
|
317
320
|
]
|
|
318
321
|
}
|
|
319
|
-
}
|
|
322
|
+
},
|
|
323
|
+
"required": [
|
|
324
|
+
"kind"
|
|
325
|
+
]
|
|
320
326
|
}
|
|
321
327
|
]
|
|
322
328
|
},
|
|
@@ -376,7 +382,8 @@
|
|
|
376
382
|
"properties": {
|
|
377
383
|
"kind": {
|
|
378
384
|
"type": "string",
|
|
379
|
-
"const": "default"
|
|
385
|
+
"const": "default",
|
|
386
|
+
"default": "default"
|
|
380
387
|
}
|
|
381
388
|
}
|
|
382
389
|
}
|
|
@@ -508,7 +515,10 @@
|
|
|
508
515
|
"placeholder": {
|
|
509
516
|
"type": "string"
|
|
510
517
|
}
|
|
511
|
-
}
|
|
518
|
+
},
|
|
519
|
+
"required": [
|
|
520
|
+
"kind"
|
|
521
|
+
]
|
|
512
522
|
}
|
|
513
523
|
]
|
|
514
524
|
},
|
|
@@ -599,7 +609,10 @@
|
|
|
599
609
|
"type": "boolean",
|
|
600
610
|
"description": "Whether the select form control is multiple mode"
|
|
601
611
|
}
|
|
602
|
-
}
|
|
612
|
+
},
|
|
613
|
+
"required": [
|
|
614
|
+
"kind"
|
|
615
|
+
]
|
|
603
616
|
}
|
|
604
617
|
]
|
|
605
618
|
},
|
|
@@ -622,7 +635,10 @@
|
|
|
622
635
|
"after"
|
|
623
636
|
]
|
|
624
637
|
}
|
|
625
|
-
}
|
|
638
|
+
},
|
|
639
|
+
"required": [
|
|
640
|
+
"kind"
|
|
641
|
+
]
|
|
626
642
|
}
|
|
627
643
|
]
|
|
628
644
|
},
|
|
@@ -705,7 +721,10 @@
|
|
|
705
721
|
"identifier": {
|
|
706
722
|
"$ref": "#/definitions/accordionIdentifier"
|
|
707
723
|
}
|
|
708
|
-
}
|
|
724
|
+
},
|
|
725
|
+
"required": [
|
|
726
|
+
"kind"
|
|
727
|
+
]
|
|
709
728
|
}
|
|
710
729
|
]
|
|
711
730
|
},
|
|
@@ -738,7 +757,10 @@
|
|
|
738
757
|
}
|
|
739
758
|
}
|
|
740
759
|
}
|
|
741
|
-
}
|
|
760
|
+
},
|
|
761
|
+
"required": [
|
|
762
|
+
"kind"
|
|
763
|
+
]
|
|
742
764
|
}
|
|
743
765
|
]
|
|
744
766
|
},
|
|
@@ -236,7 +236,10 @@
|
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
|
-
}
|
|
239
|
+
},
|
|
240
|
+
"required": [
|
|
241
|
+
"kind"
|
|
242
|
+
]
|
|
240
243
|
}
|
|
241
244
|
]
|
|
242
245
|
},
|
|
@@ -380,7 +383,10 @@
|
|
|
380
383
|
"after"
|
|
381
384
|
]
|
|
382
385
|
}
|
|
383
|
-
}
|
|
386
|
+
},
|
|
387
|
+
"required": [
|
|
388
|
+
"kind"
|
|
389
|
+
]
|
|
384
390
|
}
|
|
385
391
|
]
|
|
386
392
|
},
|
|
@@ -438,7 +444,10 @@
|
|
|
438
444
|
"type": "string",
|
|
439
445
|
"const": "array"
|
|
440
446
|
}
|
|
441
|
-
}
|
|
447
|
+
},
|
|
448
|
+
"required": [
|
|
449
|
+
"role"
|
|
450
|
+
]
|
|
442
451
|
},
|
|
443
452
|
{
|
|
444
453
|
"oneOf": [
|
|
@@ -452,7 +461,8 @@
|
|
|
452
461
|
"properties": {
|
|
453
462
|
"kind": {
|
|
454
463
|
"type": "string",
|
|
455
|
-
"const": "default"
|
|
464
|
+
"const": "default",
|
|
465
|
+
"default": "default"
|
|
456
466
|
}
|
|
457
467
|
}
|
|
458
468
|
}
|
|
@@ -486,7 +496,8 @@
|
|
|
486
496
|
"properties": {
|
|
487
497
|
"kind": {
|
|
488
498
|
"type": "string",
|
|
489
|
-
"const": "default"
|
|
499
|
+
"const": "default",
|
|
500
|
+
"default": "default"
|
|
490
501
|
}
|
|
491
502
|
}
|
|
492
503
|
}
|
|
@@ -561,7 +572,10 @@
|
|
|
561
572
|
"type": "string",
|
|
562
573
|
"const": "group"
|
|
563
574
|
}
|
|
564
|
-
}
|
|
575
|
+
},
|
|
576
|
+
"required": [
|
|
577
|
+
"role"
|
|
578
|
+
]
|
|
565
579
|
},
|
|
566
580
|
{
|
|
567
581
|
"oneOf": [
|
|
@@ -575,7 +589,8 @@
|
|
|
575
589
|
"properties": {
|
|
576
590
|
"kind": {
|
|
577
591
|
"type": "string",
|
|
578
|
-
"const": "default"
|
|
592
|
+
"const": "default",
|
|
593
|
+
"default": "default"
|
|
579
594
|
}
|
|
580
595
|
}
|
|
581
596
|
}
|
|
@@ -666,7 +681,10 @@
|
|
|
666
681
|
"placeholder": {
|
|
667
682
|
"type": "string"
|
|
668
683
|
}
|
|
669
|
-
}
|
|
684
|
+
},
|
|
685
|
+
"required": [
|
|
686
|
+
"kind"
|
|
687
|
+
]
|
|
670
688
|
}
|
|
671
689
|
]
|
|
672
690
|
},
|
|
@@ -757,7 +775,10 @@
|
|
|
757
775
|
"type": "boolean",
|
|
758
776
|
"description": "Whether the select form control is multiple mode"
|
|
759
777
|
}
|
|
760
|
-
}
|
|
778
|
+
},
|
|
779
|
+
"required": [
|
|
780
|
+
"kind"
|
|
781
|
+
]
|
|
761
782
|
}
|
|
762
783
|
]
|
|
763
784
|
},
|
|
@@ -780,7 +801,10 @@
|
|
|
780
801
|
"after"
|
|
781
802
|
]
|
|
782
803
|
}
|
|
783
|
-
}
|
|
804
|
+
},
|
|
805
|
+
"required": [
|
|
806
|
+
"kind"
|
|
807
|
+
]
|
|
784
808
|
}
|
|
785
809
|
]
|
|
786
810
|
},
|
|
@@ -863,7 +887,10 @@
|
|
|
863
887
|
"identifier": {
|
|
864
888
|
"$ref": "#/definitions/accordionIdentifier"
|
|
865
889
|
}
|
|
866
|
-
}
|
|
890
|
+
},
|
|
891
|
+
"required": [
|
|
892
|
+
"kind"
|
|
893
|
+
]
|
|
867
894
|
}
|
|
868
895
|
]
|
|
869
896
|
},
|
|
@@ -896,7 +923,10 @@
|
|
|
896
923
|
}
|
|
897
924
|
}
|
|
898
925
|
}
|
|
899
|
-
}
|
|
926
|
+
},
|
|
927
|
+
"required": [
|
|
928
|
+
"kind"
|
|
929
|
+
]
|
|
900
930
|
}
|
|
901
931
|
]
|
|
902
932
|
},
|
|
@@ -239,7 +239,10 @@
|
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
}
|
|
242
|
+
},
|
|
243
|
+
"required": [
|
|
244
|
+
"kind"
|
|
245
|
+
]
|
|
243
246
|
}
|
|
244
247
|
]
|
|
245
248
|
},
|
|
@@ -383,7 +386,10 @@
|
|
|
383
386
|
"after"
|
|
384
387
|
]
|
|
385
388
|
}
|
|
386
|
-
}
|
|
389
|
+
},
|
|
390
|
+
"required": [
|
|
391
|
+
"kind"
|
|
392
|
+
]
|
|
387
393
|
}
|
|
388
394
|
]
|
|
389
395
|
},
|
|
@@ -441,7 +447,10 @@
|
|
|
441
447
|
"type": "string",
|
|
442
448
|
"const": "array"
|
|
443
449
|
}
|
|
444
|
-
}
|
|
450
|
+
},
|
|
451
|
+
"required": [
|
|
452
|
+
"role"
|
|
453
|
+
]
|
|
445
454
|
},
|
|
446
455
|
{
|
|
447
456
|
"oneOf": [
|
|
@@ -455,7 +464,8 @@
|
|
|
455
464
|
"properties": {
|
|
456
465
|
"kind": {
|
|
457
466
|
"type": "string",
|
|
458
|
-
"const": "default"
|
|
467
|
+
"const": "default",
|
|
468
|
+
"default": "default"
|
|
459
469
|
}
|
|
460
470
|
}
|
|
461
471
|
}
|
|
@@ -489,7 +499,8 @@
|
|
|
489
499
|
"properties": {
|
|
490
500
|
"kind": {
|
|
491
501
|
"type": "string",
|
|
492
|
-
"const": "default"
|
|
502
|
+
"const": "default",
|
|
503
|
+
"default": "default"
|
|
493
504
|
}
|
|
494
505
|
}
|
|
495
506
|
}
|
|
@@ -549,7 +560,10 @@
|
|
|
549
560
|
"type": "string",
|
|
550
561
|
"const": "group"
|
|
551
562
|
}
|
|
552
|
-
}
|
|
563
|
+
},
|
|
564
|
+
"required": [
|
|
565
|
+
"role"
|
|
566
|
+
]
|
|
553
567
|
},
|
|
554
568
|
{
|
|
555
569
|
"oneOf": [
|
|
@@ -563,7 +577,8 @@
|
|
|
563
577
|
"properties": {
|
|
564
578
|
"kind": {
|
|
565
579
|
"type": "string",
|
|
566
|
-
"const": "default"
|
|
580
|
+
"const": "default",
|
|
581
|
+
"default": "default"
|
|
567
582
|
}
|
|
568
583
|
}
|
|
569
584
|
}
|
|
@@ -654,7 +669,10 @@
|
|
|
654
669
|
"placeholder": {
|
|
655
670
|
"type": "string"
|
|
656
671
|
}
|
|
657
|
-
}
|
|
672
|
+
},
|
|
673
|
+
"required": [
|
|
674
|
+
"kind"
|
|
675
|
+
]
|
|
658
676
|
}
|
|
659
677
|
]
|
|
660
678
|
},
|
|
@@ -745,7 +763,10 @@
|
|
|
745
763
|
"type": "boolean",
|
|
746
764
|
"description": "Whether the select form control is multiple mode"
|
|
747
765
|
}
|
|
748
|
-
}
|
|
766
|
+
},
|
|
767
|
+
"required": [
|
|
768
|
+
"kind"
|
|
769
|
+
]
|
|
749
770
|
}
|
|
750
771
|
]
|
|
751
772
|
},
|
|
@@ -768,7 +789,10 @@
|
|
|
768
789
|
"after"
|
|
769
790
|
]
|
|
770
791
|
}
|
|
771
|
-
}
|
|
792
|
+
},
|
|
793
|
+
"required": [
|
|
794
|
+
"kind"
|
|
795
|
+
]
|
|
772
796
|
}
|
|
773
797
|
]
|
|
774
798
|
},
|
|
@@ -851,7 +875,10 @@
|
|
|
851
875
|
"identifier": {
|
|
852
876
|
"$ref": "#/definitions/accordionIdentifier"
|
|
853
877
|
}
|
|
854
|
-
}
|
|
878
|
+
},
|
|
879
|
+
"required": [
|
|
880
|
+
"kind"
|
|
881
|
+
]
|
|
855
882
|
}
|
|
856
883
|
]
|
|
857
884
|
},
|
|
@@ -884,7 +911,10 @@
|
|
|
884
911
|
}
|
|
885
912
|
}
|
|
886
913
|
}
|
|
887
|
-
}
|
|
914
|
+
},
|
|
915
|
+
"required": [
|
|
916
|
+
"kind"
|
|
917
|
+
]
|
|
888
918
|
}
|
|
889
919
|
]
|
|
890
920
|
},
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"type": "string",
|
|
10
10
|
"const": "array"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
|
+
"required": [ "role" ]
|
|
13
14
|
},
|
|
14
15
|
{
|
|
15
16
|
"oneOf": [
|
|
@@ -23,7 +24,8 @@
|
|
|
23
24
|
"properties": {
|
|
24
25
|
"kind": {
|
|
25
26
|
"type": "string",
|
|
26
|
-
"const": "default"
|
|
27
|
+
"const": "default",
|
|
28
|
+
"default": "default"
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
}
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"type": "string",
|
|
10
10
|
"const": "group"
|
|
11
11
|
}
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
|
+
"required": [ "role" ]
|
|
13
14
|
},
|
|
14
15
|
{
|
|
15
16
|
"oneOf": [
|
|
@@ -23,7 +24,8 @@
|
|
|
23
24
|
"properties": {
|
|
24
25
|
"kind": {
|
|
25
26
|
"type": "string",
|
|
26
|
-
"const": "default"
|
|
27
|
+
"const": "default",
|
|
28
|
+
"default": "default"
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
}
|