@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
|
},
|
|
@@ -411,7 +414,10 @@
|
|
|
411
414
|
"after"
|
|
412
415
|
]
|
|
413
416
|
}
|
|
414
|
-
}
|
|
417
|
+
},
|
|
418
|
+
"required": [
|
|
419
|
+
"kind"
|
|
420
|
+
]
|
|
415
421
|
}
|
|
416
422
|
]
|
|
417
423
|
},
|
|
@@ -522,7 +528,10 @@
|
|
|
522
528
|
"type": "string",
|
|
523
529
|
"const": "data-grid"
|
|
524
530
|
}
|
|
525
|
-
}
|
|
531
|
+
},
|
|
532
|
+
"required": [
|
|
533
|
+
"kind"
|
|
534
|
+
]
|
|
526
535
|
},
|
|
527
536
|
{
|
|
528
537
|
"type": "object",
|
|
@@ -585,7 +594,10 @@
|
|
|
585
594
|
"type": "string",
|
|
586
595
|
"const": "array"
|
|
587
596
|
}
|
|
588
|
-
}
|
|
597
|
+
},
|
|
598
|
+
"required": [
|
|
599
|
+
"role"
|
|
600
|
+
]
|
|
589
601
|
},
|
|
590
602
|
{
|
|
591
603
|
"oneOf": [
|
|
@@ -599,7 +611,8 @@
|
|
|
599
611
|
"properties": {
|
|
600
612
|
"kind": {
|
|
601
613
|
"type": "string",
|
|
602
|
-
"const": "default"
|
|
614
|
+
"const": "default",
|
|
615
|
+
"default": "default"
|
|
603
616
|
}
|
|
604
617
|
}
|
|
605
618
|
}
|
|
@@ -633,7 +646,8 @@
|
|
|
633
646
|
"properties": {
|
|
634
647
|
"kind": {
|
|
635
648
|
"type": "string",
|
|
636
|
-
"const": "default"
|
|
649
|
+
"const": "default",
|
|
650
|
+
"default": "default"
|
|
637
651
|
}
|
|
638
652
|
}
|
|
639
653
|
}
|
|
@@ -693,7 +707,10 @@
|
|
|
693
707
|
"type": "string",
|
|
694
708
|
"const": "group"
|
|
695
709
|
}
|
|
696
|
-
}
|
|
710
|
+
},
|
|
711
|
+
"required": [
|
|
712
|
+
"role"
|
|
713
|
+
]
|
|
697
714
|
},
|
|
698
715
|
{
|
|
699
716
|
"oneOf": [
|
|
@@ -707,7 +724,8 @@
|
|
|
707
724
|
"properties": {
|
|
708
725
|
"kind": {
|
|
709
726
|
"type": "string",
|
|
710
|
-
"const": "default"
|
|
727
|
+
"const": "default",
|
|
728
|
+
"default": "default"
|
|
711
729
|
}
|
|
712
730
|
}
|
|
713
731
|
}
|
|
@@ -798,7 +816,10 @@
|
|
|
798
816
|
"placeholder": {
|
|
799
817
|
"type": "string"
|
|
800
818
|
}
|
|
801
|
-
}
|
|
819
|
+
},
|
|
820
|
+
"required": [
|
|
821
|
+
"kind"
|
|
822
|
+
]
|
|
802
823
|
}
|
|
803
824
|
]
|
|
804
825
|
},
|
|
@@ -917,7 +938,10 @@
|
|
|
917
938
|
"type": "boolean",
|
|
918
939
|
"description": "Whether the select form control is multiple mode"
|
|
919
940
|
}
|
|
920
|
-
}
|
|
941
|
+
},
|
|
942
|
+
"required": [
|
|
943
|
+
"kind"
|
|
944
|
+
]
|
|
921
945
|
}
|
|
922
946
|
]
|
|
923
947
|
},
|
|
@@ -940,7 +964,10 @@
|
|
|
940
964
|
"after"
|
|
941
965
|
]
|
|
942
966
|
}
|
|
943
|
-
}
|
|
967
|
+
},
|
|
968
|
+
"required": [
|
|
969
|
+
"kind"
|
|
970
|
+
]
|
|
944
971
|
}
|
|
945
972
|
]
|
|
946
973
|
},
|
|
@@ -1023,7 +1050,10 @@
|
|
|
1023
1050
|
"identifier": {
|
|
1024
1051
|
"$ref": "#/definitions/accordionIdentifier"
|
|
1025
1052
|
}
|
|
1026
|
-
}
|
|
1053
|
+
},
|
|
1054
|
+
"required": [
|
|
1055
|
+
"kind"
|
|
1056
|
+
]
|
|
1027
1057
|
}
|
|
1028
1058
|
]
|
|
1029
1059
|
},
|
|
@@ -1056,7 +1086,10 @@
|
|
|
1056
1086
|
}
|
|
1057
1087
|
}
|
|
1058
1088
|
}
|
|
1059
|
-
}
|
|
1089
|
+
},
|
|
1090
|
+
"required": [
|
|
1091
|
+
"kind"
|
|
1092
|
+
]
|
|
1060
1093
|
}
|
|
1061
1094
|
]
|
|
1062
1095
|
},
|
|
@@ -259,7 +259,10 @@
|
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
|
-
}
|
|
262
|
+
},
|
|
263
|
+
"required": [
|
|
264
|
+
"kind"
|
|
265
|
+
]
|
|
263
266
|
}
|
|
264
267
|
]
|
|
265
268
|
},
|
|
@@ -479,7 +482,10 @@
|
|
|
479
482
|
"type": "string",
|
|
480
483
|
"const": "boolean"
|
|
481
484
|
}
|
|
482
|
-
}
|
|
485
|
+
},
|
|
486
|
+
"required": [
|
|
487
|
+
"kind"
|
|
488
|
+
]
|
|
483
489
|
}
|
|
484
490
|
]
|
|
485
491
|
},
|
|
@@ -525,7 +531,10 @@
|
|
|
525
531
|
"after"
|
|
526
532
|
]
|
|
527
533
|
}
|
|
528
|
-
}
|
|
534
|
+
},
|
|
535
|
+
"required": [
|
|
536
|
+
"kind"
|
|
537
|
+
]
|
|
529
538
|
}
|
|
530
539
|
]
|
|
531
540
|
},
|
|
@@ -541,7 +550,10 @@
|
|
|
541
550
|
"type": "string",
|
|
542
551
|
"const": "component"
|
|
543
552
|
}
|
|
544
|
-
}
|
|
553
|
+
},
|
|
554
|
+
"required": [
|
|
555
|
+
"kind"
|
|
556
|
+
]
|
|
545
557
|
}
|
|
546
558
|
]
|
|
547
559
|
},
|
|
@@ -570,7 +582,10 @@
|
|
|
570
582
|
"type": "string",
|
|
571
583
|
"const": "copy-to-clipboard"
|
|
572
584
|
}
|
|
573
|
-
}
|
|
585
|
+
},
|
|
586
|
+
"required": [
|
|
587
|
+
"kind"
|
|
588
|
+
]
|
|
574
589
|
}
|
|
575
590
|
]
|
|
576
591
|
},
|
|
@@ -606,6 +621,29 @@
|
|
|
606
621
|
}
|
|
607
622
|
]
|
|
608
623
|
},
|
|
624
|
+
"customTableColumn": {
|
|
625
|
+
"allOf": [
|
|
626
|
+
{
|
|
627
|
+
"$ref": "#/definitions/baseTableColumn"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"type": "object",
|
|
631
|
+
"properties": {
|
|
632
|
+
"kind": {
|
|
633
|
+
"type": "string",
|
|
634
|
+
"const": "custom"
|
|
635
|
+
},
|
|
636
|
+
"html": {
|
|
637
|
+
"type": "string"
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"required": [
|
|
641
|
+
"kind",
|
|
642
|
+
"html"
|
|
643
|
+
]
|
|
644
|
+
}
|
|
645
|
+
]
|
|
646
|
+
},
|
|
609
647
|
"dataGrid": {
|
|
610
648
|
"type": "object",
|
|
611
649
|
"properties": {
|
|
@@ -668,7 +706,10 @@
|
|
|
668
706
|
"type": "string",
|
|
669
707
|
"const": "data-grid"
|
|
670
708
|
}
|
|
671
|
-
}
|
|
709
|
+
},
|
|
710
|
+
"required": [
|
|
711
|
+
"kind"
|
|
712
|
+
]
|
|
672
713
|
},
|
|
673
714
|
{
|
|
674
715
|
"type": "object",
|
|
@@ -737,7 +778,10 @@
|
|
|
737
778
|
"format": {
|
|
738
779
|
"type": "string"
|
|
739
780
|
}
|
|
740
|
-
}
|
|
781
|
+
},
|
|
782
|
+
"required": [
|
|
783
|
+
"kind"
|
|
784
|
+
]
|
|
741
785
|
}
|
|
742
786
|
]
|
|
743
787
|
},
|
|
@@ -750,7 +794,10 @@
|
|
|
750
794
|
"type": "string",
|
|
751
795
|
"const": "array"
|
|
752
796
|
}
|
|
753
|
-
}
|
|
797
|
+
},
|
|
798
|
+
"required": [
|
|
799
|
+
"role"
|
|
800
|
+
]
|
|
754
801
|
},
|
|
755
802
|
{
|
|
756
803
|
"oneOf": [
|
|
@@ -764,7 +811,8 @@
|
|
|
764
811
|
"properties": {
|
|
765
812
|
"kind": {
|
|
766
813
|
"type": "string",
|
|
767
|
-
"const": "default"
|
|
814
|
+
"const": "default",
|
|
815
|
+
"default": "default"
|
|
768
816
|
}
|
|
769
817
|
}
|
|
770
818
|
}
|
|
@@ -798,7 +846,8 @@
|
|
|
798
846
|
"properties": {
|
|
799
847
|
"kind": {
|
|
800
848
|
"type": "string",
|
|
801
|
-
"const": "default"
|
|
849
|
+
"const": "default",
|
|
850
|
+
"default": "default"
|
|
802
851
|
}
|
|
803
852
|
}
|
|
804
853
|
}
|
|
@@ -858,7 +907,10 @@
|
|
|
858
907
|
"type": "string",
|
|
859
908
|
"const": "group"
|
|
860
909
|
}
|
|
861
|
-
}
|
|
910
|
+
},
|
|
911
|
+
"required": [
|
|
912
|
+
"role"
|
|
913
|
+
]
|
|
862
914
|
},
|
|
863
915
|
{
|
|
864
916
|
"oneOf": [
|
|
@@ -872,7 +924,8 @@
|
|
|
872
924
|
"properties": {
|
|
873
925
|
"kind": {
|
|
874
926
|
"type": "string",
|
|
875
|
-
"const": "default"
|
|
927
|
+
"const": "default",
|
|
928
|
+
"default": "default"
|
|
876
929
|
}
|
|
877
930
|
}
|
|
878
931
|
}
|
|
@@ -970,7 +1023,10 @@
|
|
|
970
1023
|
"type": "string",
|
|
971
1024
|
"const": "icon"
|
|
972
1025
|
}
|
|
973
|
-
}
|
|
1026
|
+
},
|
|
1027
|
+
"required": [
|
|
1028
|
+
"kind"
|
|
1029
|
+
]
|
|
974
1030
|
}
|
|
975
1031
|
]
|
|
976
1032
|
},
|
|
@@ -1019,7 +1075,10 @@
|
|
|
1019
1075
|
"placeholder": {
|
|
1020
1076
|
"type": "string"
|
|
1021
1077
|
}
|
|
1022
|
-
}
|
|
1078
|
+
},
|
|
1079
|
+
"required": [
|
|
1080
|
+
"kind"
|
|
1081
|
+
]
|
|
1023
1082
|
}
|
|
1024
1083
|
]
|
|
1025
1084
|
},
|
|
@@ -1035,7 +1094,10 @@
|
|
|
1035
1094
|
"type": "string",
|
|
1036
1095
|
"const": "link"
|
|
1037
1096
|
}
|
|
1038
|
-
}
|
|
1097
|
+
},
|
|
1098
|
+
"required": [
|
|
1099
|
+
"kind"
|
|
1100
|
+
]
|
|
1039
1101
|
}
|
|
1040
1102
|
]
|
|
1041
1103
|
},
|
|
@@ -1205,7 +1267,10 @@
|
|
|
1205
1267
|
"type": "boolean",
|
|
1206
1268
|
"description": "Whether the select form control is multiple mode"
|
|
1207
1269
|
}
|
|
1208
|
-
}
|
|
1270
|
+
},
|
|
1271
|
+
"required": [
|
|
1272
|
+
"kind"
|
|
1273
|
+
]
|
|
1209
1274
|
}
|
|
1210
1275
|
]
|
|
1211
1276
|
},
|
|
@@ -1228,7 +1293,10 @@
|
|
|
1228
1293
|
"after"
|
|
1229
1294
|
]
|
|
1230
1295
|
}
|
|
1231
|
-
}
|
|
1296
|
+
},
|
|
1297
|
+
"required": [
|
|
1298
|
+
"kind"
|
|
1299
|
+
]
|
|
1232
1300
|
}
|
|
1233
1301
|
]
|
|
1234
1302
|
},
|
|
@@ -1244,7 +1312,10 @@
|
|
|
1244
1312
|
"type": "string",
|
|
1245
1313
|
"const": "spinner"
|
|
1246
1314
|
}
|
|
1247
|
-
}
|
|
1315
|
+
},
|
|
1316
|
+
"required": [
|
|
1317
|
+
"kind"
|
|
1318
|
+
]
|
|
1248
1319
|
}
|
|
1249
1320
|
]
|
|
1250
1321
|
},
|
|
@@ -1320,7 +1391,10 @@
|
|
|
1320
1391
|
"property"
|
|
1321
1392
|
]
|
|
1322
1393
|
}
|
|
1323
|
-
}
|
|
1394
|
+
},
|
|
1395
|
+
"required": [
|
|
1396
|
+
"kind"
|
|
1397
|
+
]
|
|
1324
1398
|
}
|
|
1325
1399
|
]
|
|
1326
1400
|
},
|
|
@@ -1399,7 +1473,10 @@
|
|
|
1399
1473
|
"table": {
|
|
1400
1474
|
"$ref": "#/definitions/table"
|
|
1401
1475
|
}
|
|
1402
|
-
}
|
|
1476
|
+
},
|
|
1477
|
+
"required": [
|
|
1478
|
+
"kind"
|
|
1479
|
+
]
|
|
1403
1480
|
}
|
|
1404
1481
|
]
|
|
1405
1482
|
},
|
|
@@ -1474,7 +1551,8 @@
|
|
|
1474
1551
|
"properties": {
|
|
1475
1552
|
"kind": {
|
|
1476
1553
|
"type": "string",
|
|
1477
|
-
"const": "default"
|
|
1554
|
+
"const": "default",
|
|
1555
|
+
"default": "default"
|
|
1478
1556
|
}
|
|
1479
1557
|
}
|
|
1480
1558
|
}
|
|
@@ -1483,6 +1561,9 @@
|
|
|
1483
1561
|
{
|
|
1484
1562
|
"$ref": "#/definitions/dateTableColumn"
|
|
1485
1563
|
},
|
|
1564
|
+
{
|
|
1565
|
+
"$ref": "#/definitions/customTableColumn"
|
|
1566
|
+
},
|
|
1486
1567
|
{
|
|
1487
1568
|
"$ref": "#/definitions/linkTableColumn"
|
|
1488
1569
|
},
|
|
@@ -1585,7 +1666,10 @@
|
|
|
1585
1666
|
"identifier": {
|
|
1586
1667
|
"$ref": "#/definitions/accordionIdentifier"
|
|
1587
1668
|
}
|
|
1588
|
-
}
|
|
1669
|
+
},
|
|
1670
|
+
"required": [
|
|
1671
|
+
"kind"
|
|
1672
|
+
]
|
|
1589
1673
|
}
|
|
1590
1674
|
]
|
|
1591
1675
|
},
|
|
@@ -1618,7 +1702,10 @@
|
|
|
1618
1702
|
}
|
|
1619
1703
|
}
|
|
1620
1704
|
}
|
|
1621
|
-
}
|
|
1705
|
+
},
|
|
1706
|
+
"required": [
|
|
1707
|
+
"kind"
|
|
1708
|
+
]
|
|
1622
1709
|
}
|
|
1623
1710
|
]
|
|
1624
1711
|
},
|
|
@@ -1685,7 +1772,10 @@
|
|
|
1685
1772
|
"table": {
|
|
1686
1773
|
"$ref": "#/definitions/treeTable"
|
|
1687
1774
|
}
|
|
1688
|
-
}
|
|
1775
|
+
},
|
|
1776
|
+
"required": [
|
|
1777
|
+
"kind"
|
|
1778
|
+
]
|
|
1689
1779
|
}
|
|
1690
1780
|
]
|
|
1691
1781
|
},
|
|
@@ -1701,7 +1791,10 @@
|
|
|
1701
1791
|
"type": "string",
|
|
1702
1792
|
"const": "tree"
|
|
1703
1793
|
}
|
|
1704
|
-
}
|
|
1794
|
+
},
|
|
1795
|
+
"required": [
|
|
1796
|
+
"kind"
|
|
1797
|
+
]
|
|
1705
1798
|
}
|
|
1706
1799
|
]
|
|
1707
1800
|
},
|
|
@@ -226,7 +226,10 @@
|
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
|
-
}
|
|
229
|
+
},
|
|
230
|
+
"required": [
|
|
231
|
+
"kind"
|
|
232
|
+
]
|
|
230
233
|
}
|
|
231
234
|
]
|
|
232
235
|
},
|
|
@@ -379,7 +382,10 @@
|
|
|
379
382
|
"type": "string",
|
|
380
383
|
"const": "boolean"
|
|
381
384
|
}
|
|
382
|
-
}
|
|
385
|
+
},
|
|
386
|
+
"required": [
|
|
387
|
+
"kind"
|
|
388
|
+
]
|
|
383
389
|
}
|
|
384
390
|
]
|
|
385
391
|
},
|
|
@@ -425,7 +431,10 @@
|
|
|
425
431
|
"after"
|
|
426
432
|
]
|
|
427
433
|
}
|
|
428
|
-
}
|
|
434
|
+
},
|
|
435
|
+
"required": [
|
|
436
|
+
"kind"
|
|
437
|
+
]
|
|
429
438
|
}
|
|
430
439
|
]
|
|
431
440
|
},
|
|
@@ -441,7 +450,10 @@
|
|
|
441
450
|
"type": "string",
|
|
442
451
|
"const": "component"
|
|
443
452
|
}
|
|
444
|
-
}
|
|
453
|
+
},
|
|
454
|
+
"required": [
|
|
455
|
+
"kind"
|
|
456
|
+
]
|
|
445
457
|
}
|
|
446
458
|
]
|
|
447
459
|
},
|
|
@@ -457,7 +469,10 @@
|
|
|
457
469
|
"type": "string",
|
|
458
470
|
"const": "copy-to-clipboard"
|
|
459
471
|
}
|
|
460
|
-
}
|
|
472
|
+
},
|
|
473
|
+
"required": [
|
|
474
|
+
"kind"
|
|
475
|
+
]
|
|
461
476
|
}
|
|
462
477
|
]
|
|
463
478
|
},
|
|
@@ -493,6 +508,29 @@
|
|
|
493
508
|
}
|
|
494
509
|
]
|
|
495
510
|
},
|
|
511
|
+
"customTableColumn": {
|
|
512
|
+
"allOf": [
|
|
513
|
+
{
|
|
514
|
+
"$ref": "#/definitions/baseTableColumn"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"type": "object",
|
|
518
|
+
"properties": {
|
|
519
|
+
"kind": {
|
|
520
|
+
"type": "string",
|
|
521
|
+
"const": "custom"
|
|
522
|
+
},
|
|
523
|
+
"html": {
|
|
524
|
+
"type": "string"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
"required": [
|
|
528
|
+
"kind",
|
|
529
|
+
"html"
|
|
530
|
+
]
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
},
|
|
496
534
|
"dateTableColumn": {
|
|
497
535
|
"allOf": [
|
|
498
536
|
{
|
|
@@ -508,7 +546,10 @@
|
|
|
508
546
|
"format": {
|
|
509
547
|
"type": "string"
|
|
510
548
|
}
|
|
511
|
-
}
|
|
549
|
+
},
|
|
550
|
+
"required": [
|
|
551
|
+
"kind"
|
|
552
|
+
]
|
|
512
553
|
}
|
|
513
554
|
]
|
|
514
555
|
},
|
|
@@ -536,7 +577,8 @@
|
|
|
536
577
|
"properties": {
|
|
537
578
|
"kind": {
|
|
538
579
|
"type": "string",
|
|
539
|
-
"const": "default"
|
|
580
|
+
"const": "default",
|
|
581
|
+
"default": "default"
|
|
540
582
|
}
|
|
541
583
|
}
|
|
542
584
|
}
|
|
@@ -675,7 +717,10 @@
|
|
|
675
717
|
"type": "string",
|
|
676
718
|
"const": "icon"
|
|
677
719
|
}
|
|
678
|
-
}
|
|
720
|
+
},
|
|
721
|
+
"required": [
|
|
722
|
+
"kind"
|
|
723
|
+
]
|
|
679
724
|
}
|
|
680
725
|
]
|
|
681
726
|
},
|
|
@@ -724,7 +769,10 @@
|
|
|
724
769
|
"placeholder": {
|
|
725
770
|
"type": "string"
|
|
726
771
|
}
|
|
727
|
-
}
|
|
772
|
+
},
|
|
773
|
+
"required": [
|
|
774
|
+
"kind"
|
|
775
|
+
]
|
|
728
776
|
}
|
|
729
777
|
]
|
|
730
778
|
},
|
|
@@ -740,7 +788,10 @@
|
|
|
740
788
|
"type": "string",
|
|
741
789
|
"const": "link"
|
|
742
790
|
}
|
|
743
|
-
}
|
|
791
|
+
},
|
|
792
|
+
"required": [
|
|
793
|
+
"kind"
|
|
794
|
+
]
|
|
744
795
|
}
|
|
745
796
|
]
|
|
746
797
|
},
|
|
@@ -910,7 +961,10 @@
|
|
|
910
961
|
"type": "boolean",
|
|
911
962
|
"description": "Whether the select form control is multiple mode"
|
|
912
963
|
}
|
|
913
|
-
}
|
|
964
|
+
},
|
|
965
|
+
"required": [
|
|
966
|
+
"kind"
|
|
967
|
+
]
|
|
914
968
|
}
|
|
915
969
|
]
|
|
916
970
|
},
|
|
@@ -933,7 +987,10 @@
|
|
|
933
987
|
"after"
|
|
934
988
|
]
|
|
935
989
|
}
|
|
936
|
-
}
|
|
990
|
+
},
|
|
991
|
+
"required": [
|
|
992
|
+
"kind"
|
|
993
|
+
]
|
|
937
994
|
}
|
|
938
995
|
]
|
|
939
996
|
},
|
|
@@ -949,7 +1006,10 @@
|
|
|
949
1006
|
"type": "string",
|
|
950
1007
|
"const": "spinner"
|
|
951
1008
|
}
|
|
952
|
-
}
|
|
1009
|
+
},
|
|
1010
|
+
"required": [
|
|
1011
|
+
"kind"
|
|
1012
|
+
]
|
|
953
1013
|
}
|
|
954
1014
|
]
|
|
955
1015
|
},
|
|
@@ -1028,7 +1088,10 @@
|
|
|
1028
1088
|
"table": {
|
|
1029
1089
|
"$ref": "#/definitions/table"
|
|
1030
1090
|
}
|
|
1031
|
-
}
|
|
1091
|
+
},
|
|
1092
|
+
"required": [
|
|
1093
|
+
"kind"
|
|
1094
|
+
]
|
|
1032
1095
|
}
|
|
1033
1096
|
]
|
|
1034
1097
|
},
|
|
@@ -1103,7 +1166,8 @@
|
|
|
1103
1166
|
"properties": {
|
|
1104
1167
|
"kind": {
|
|
1105
1168
|
"type": "string",
|
|
1106
|
-
"const": "default"
|
|
1169
|
+
"const": "default",
|
|
1170
|
+
"default": "default"
|
|
1107
1171
|
}
|
|
1108
1172
|
}
|
|
1109
1173
|
}
|
|
@@ -1112,6 +1176,9 @@
|
|
|
1112
1176
|
{
|
|
1113
1177
|
"$ref": "#/definitions/dateTableColumn"
|
|
1114
1178
|
},
|
|
1179
|
+
{
|
|
1180
|
+
"$ref": "#/definitions/customTableColumn"
|
|
1181
|
+
},
|
|
1115
1182
|
{
|
|
1116
1183
|
"$ref": "#/definitions/linkTableColumn"
|
|
1117
1184
|
},
|
|
@@ -1214,7 +1281,10 @@
|
|
|
1214
1281
|
"identifier": {
|
|
1215
1282
|
"$ref": "#/definitions/accordionIdentifier"
|
|
1216
1283
|
}
|
|
1217
|
-
}
|
|
1284
|
+
},
|
|
1285
|
+
"required": [
|
|
1286
|
+
"kind"
|
|
1287
|
+
]
|
|
1218
1288
|
}
|
|
1219
1289
|
]
|
|
1220
1290
|
},
|
|
@@ -1247,7 +1317,10 @@
|
|
|
1247
1317
|
}
|
|
1248
1318
|
}
|
|
1249
1319
|
}
|
|
1250
|
-
}
|
|
1320
|
+
},
|
|
1321
|
+
"required": [
|
|
1322
|
+
"kind"
|
|
1323
|
+
]
|
|
1251
1324
|
}
|
|
1252
1325
|
]
|
|
1253
1326
|
},
|
|
@@ -1263,7 +1336,10 @@
|
|
|
1263
1336
|
"type": "string",
|
|
1264
1337
|
"const": "tree"
|
|
1265
1338
|
}
|
|
1266
|
-
}
|
|
1339
|
+
},
|
|
1340
|
+
"required": [
|
|
1341
|
+
"kind"
|
|
1342
|
+
]
|
|
1267
1343
|
}
|
|
1268
1344
|
]
|
|
1269
1345
|
},
|