@rxap/schematic-angular 16.2.0-dev.43 → 16.2.0-dev.45
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 +16 -0
- package/README.md +1 -1
- package/package.json +8 -8
- package/src/lib/data-grid-item.js +9 -2
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/schema.json +65 -23
- package/src/schematics/accordion/accordion-component/index.d.ts +2 -1
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/schema.json +65 -23
- package/src/schematics/accordion/accordion-item-component/schema.json +65 -23
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +65 -23
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +65 -23
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +65 -23
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +65 -23
- package/src/schematics/data-grid-component/schema.json +65 -23
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +65 -23
- package/src/schematics/form/control/select-form-control/schema.json +65 -23
- package/src/schematics/form/control/table-select-form-control/schema.json +65 -23
- package/src/schematics/form/form-array/schema.json +65 -23
- package/src/schematics/form/form-component/schema.json +65 -23
- package/src/schematics/form/form-control/schema.json +65 -23
- package/src/schematics/form/form-definition/schema.json +65 -23
- package/src/schematics/form/form-group/schema.json +65 -23
- package/src/schematics/table/action/form-table-action/schema.json +65 -23
- package/src/schematics/table/header-button/form-table-header-button/schema.json +65 -23
- package/src/schematics/table/table-component/schema.json +65 -23
- package/src/schematics/table/tree-table-component/schema.json +65 -23
- package/src/schematics/upstream.schema.json +62 -23
|
@@ -1576,38 +1576,80 @@
|
|
|
1576
1576
|
"type": "string"
|
|
1577
1577
|
},
|
|
1578
1578
|
"mapper": {
|
|
1579
|
-
"
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
"
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1579
|
+
"oneOf": [
|
|
1580
|
+
{
|
|
1581
|
+
"type": "object",
|
|
1582
|
+
"properties": {
|
|
1583
|
+
"kind": {
|
|
1584
|
+
"type": "string",
|
|
1585
|
+
"const": "paged"
|
|
1586
|
+
},
|
|
1587
|
+
"pageIndex": {
|
|
1588
|
+
"type": "string"
|
|
1589
|
+
},
|
|
1590
|
+
"pageSize": {
|
|
1591
|
+
"type": "string"
|
|
1592
|
+
},
|
|
1593
|
+
"sortBy": {
|
|
1594
|
+
"type": "string"
|
|
1595
|
+
},
|
|
1596
|
+
"sortDirection": {
|
|
1597
|
+
"type": "string"
|
|
1598
|
+
},
|
|
1599
|
+
"list": {
|
|
1600
|
+
"type": "string"
|
|
1601
|
+
},
|
|
1602
|
+
"total": {
|
|
1603
|
+
"type": "string"
|
|
1604
|
+
},
|
|
1605
|
+
"filter": {
|
|
1606
|
+
"type": "object",
|
|
1607
|
+
"properties": {
|
|
1608
|
+
"eq": {
|
|
1609
|
+
"type": "string"
|
|
1610
|
+
},
|
|
1611
|
+
"join": {
|
|
1612
|
+
"type": "string"
|
|
1613
|
+
}
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1598
1617
|
},
|
|
1599
|
-
|
|
1618
|
+
{
|
|
1600
1619
|
"type": "object",
|
|
1601
1620
|
"properties": {
|
|
1602
|
-
"
|
|
1621
|
+
"kind": {
|
|
1622
|
+
"type": "string",
|
|
1623
|
+
"const": "options"
|
|
1624
|
+
},
|
|
1625
|
+
"toFunction": {
|
|
1626
|
+
"type": "string",
|
|
1627
|
+
"enum": [
|
|
1628
|
+
"ToOptions",
|
|
1629
|
+
"ToOptionsFromObject"
|
|
1630
|
+
]
|
|
1631
|
+
},
|
|
1632
|
+
"toValue": {
|
|
1603
1633
|
"type": "string"
|
|
1604
1634
|
},
|
|
1605
|
-
"
|
|
1635
|
+
"toDisplay": {
|
|
1636
|
+
"type": "string"
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
"type": "object",
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"kind": {
|
|
1644
|
+
"type": "string",
|
|
1645
|
+
"const": "resolve"
|
|
1646
|
+
},
|
|
1647
|
+
"value": {
|
|
1606
1648
|
"type": "string"
|
|
1607
1649
|
}
|
|
1608
1650
|
}
|
|
1609
1651
|
}
|
|
1610
|
-
|
|
1652
|
+
]
|
|
1611
1653
|
}
|
|
1612
1654
|
},
|
|
1613
1655
|
"required": [
|
|
@@ -1138,38 +1138,80 @@
|
|
|
1138
1138
|
"type": "string"
|
|
1139
1139
|
},
|
|
1140
1140
|
"mapper": {
|
|
1141
|
-
"
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
"
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1141
|
+
"oneOf": [
|
|
1142
|
+
{
|
|
1143
|
+
"type": "object",
|
|
1144
|
+
"properties": {
|
|
1145
|
+
"kind": {
|
|
1146
|
+
"type": "string",
|
|
1147
|
+
"const": "paged"
|
|
1148
|
+
},
|
|
1149
|
+
"pageIndex": {
|
|
1150
|
+
"type": "string"
|
|
1151
|
+
},
|
|
1152
|
+
"pageSize": {
|
|
1153
|
+
"type": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"sortBy": {
|
|
1156
|
+
"type": "string"
|
|
1157
|
+
},
|
|
1158
|
+
"sortDirection": {
|
|
1159
|
+
"type": "string"
|
|
1160
|
+
},
|
|
1161
|
+
"list": {
|
|
1162
|
+
"type": "string"
|
|
1163
|
+
},
|
|
1164
|
+
"total": {
|
|
1165
|
+
"type": "string"
|
|
1166
|
+
},
|
|
1167
|
+
"filter": {
|
|
1168
|
+
"type": "object",
|
|
1169
|
+
"properties": {
|
|
1170
|
+
"eq": {
|
|
1171
|
+
"type": "string"
|
|
1172
|
+
},
|
|
1173
|
+
"join": {
|
|
1174
|
+
"type": "string"
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1160
1179
|
},
|
|
1161
|
-
|
|
1180
|
+
{
|
|
1162
1181
|
"type": "object",
|
|
1163
1182
|
"properties": {
|
|
1164
|
-
"
|
|
1183
|
+
"kind": {
|
|
1184
|
+
"type": "string",
|
|
1185
|
+
"const": "options"
|
|
1186
|
+
},
|
|
1187
|
+
"toFunction": {
|
|
1188
|
+
"type": "string",
|
|
1189
|
+
"enum": [
|
|
1190
|
+
"ToOptions",
|
|
1191
|
+
"ToOptionsFromObject"
|
|
1192
|
+
]
|
|
1193
|
+
},
|
|
1194
|
+
"toValue": {
|
|
1165
1195
|
"type": "string"
|
|
1166
1196
|
},
|
|
1167
|
-
"
|
|
1197
|
+
"toDisplay": {
|
|
1198
|
+
"type": "string"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"type": "object",
|
|
1204
|
+
"properties": {
|
|
1205
|
+
"kind": {
|
|
1206
|
+
"type": "string",
|
|
1207
|
+
"const": "resolve"
|
|
1208
|
+
},
|
|
1209
|
+
"value": {
|
|
1168
1210
|
"type": "string"
|
|
1169
1211
|
}
|
|
1170
1212
|
}
|
|
1171
1213
|
}
|
|
1172
|
-
|
|
1214
|
+
]
|
|
1173
1215
|
}
|
|
1174
1216
|
},
|
|
1175
1217
|
"required": [
|
|
@@ -1127,38 +1127,80 @@
|
|
|
1127
1127
|
"type": "string"
|
|
1128
1128
|
},
|
|
1129
1129
|
"mapper": {
|
|
1130
|
-
"
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
"
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1130
|
+
"oneOf": [
|
|
1131
|
+
{
|
|
1132
|
+
"type": "object",
|
|
1133
|
+
"properties": {
|
|
1134
|
+
"kind": {
|
|
1135
|
+
"type": "string",
|
|
1136
|
+
"const": "paged"
|
|
1137
|
+
},
|
|
1138
|
+
"pageIndex": {
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"pageSize": {
|
|
1142
|
+
"type": "string"
|
|
1143
|
+
},
|
|
1144
|
+
"sortBy": {
|
|
1145
|
+
"type": "string"
|
|
1146
|
+
},
|
|
1147
|
+
"sortDirection": {
|
|
1148
|
+
"type": "string"
|
|
1149
|
+
},
|
|
1150
|
+
"list": {
|
|
1151
|
+
"type": "string"
|
|
1152
|
+
},
|
|
1153
|
+
"total": {
|
|
1154
|
+
"type": "string"
|
|
1155
|
+
},
|
|
1156
|
+
"filter": {
|
|
1157
|
+
"type": "object",
|
|
1158
|
+
"properties": {
|
|
1159
|
+
"eq": {
|
|
1160
|
+
"type": "string"
|
|
1161
|
+
},
|
|
1162
|
+
"join": {
|
|
1163
|
+
"type": "string"
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
}
|
|
1149
1168
|
},
|
|
1150
|
-
|
|
1169
|
+
{
|
|
1151
1170
|
"type": "object",
|
|
1152
1171
|
"properties": {
|
|
1153
|
-
"
|
|
1172
|
+
"kind": {
|
|
1173
|
+
"type": "string",
|
|
1174
|
+
"const": "options"
|
|
1175
|
+
},
|
|
1176
|
+
"toFunction": {
|
|
1177
|
+
"type": "string",
|
|
1178
|
+
"enum": [
|
|
1179
|
+
"ToOptions",
|
|
1180
|
+
"ToOptionsFromObject"
|
|
1181
|
+
]
|
|
1182
|
+
},
|
|
1183
|
+
"toValue": {
|
|
1154
1184
|
"type": "string"
|
|
1155
1185
|
},
|
|
1156
|
-
"
|
|
1186
|
+
"toDisplay": {
|
|
1187
|
+
"type": "string"
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"type": "object",
|
|
1193
|
+
"properties": {
|
|
1194
|
+
"kind": {
|
|
1195
|
+
"type": "string",
|
|
1196
|
+
"const": "resolve"
|
|
1197
|
+
},
|
|
1198
|
+
"value": {
|
|
1157
1199
|
"type": "string"
|
|
1158
1200
|
}
|
|
1159
1201
|
}
|
|
1160
1202
|
}
|
|
1161
|
-
|
|
1203
|
+
]
|
|
1162
1204
|
}
|
|
1163
1205
|
},
|
|
1164
1206
|
"required": [
|
|
@@ -1011,38 +1011,80 @@
|
|
|
1011
1011
|
"type": "string"
|
|
1012
1012
|
},
|
|
1013
1013
|
"mapper": {
|
|
1014
|
-
"
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
"
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1014
|
+
"oneOf": [
|
|
1015
|
+
{
|
|
1016
|
+
"type": "object",
|
|
1017
|
+
"properties": {
|
|
1018
|
+
"kind": {
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"const": "paged"
|
|
1021
|
+
},
|
|
1022
|
+
"pageIndex": {
|
|
1023
|
+
"type": "string"
|
|
1024
|
+
},
|
|
1025
|
+
"pageSize": {
|
|
1026
|
+
"type": "string"
|
|
1027
|
+
},
|
|
1028
|
+
"sortBy": {
|
|
1029
|
+
"type": "string"
|
|
1030
|
+
},
|
|
1031
|
+
"sortDirection": {
|
|
1032
|
+
"type": "string"
|
|
1033
|
+
},
|
|
1034
|
+
"list": {
|
|
1035
|
+
"type": "string"
|
|
1036
|
+
},
|
|
1037
|
+
"total": {
|
|
1038
|
+
"type": "string"
|
|
1039
|
+
},
|
|
1040
|
+
"filter": {
|
|
1041
|
+
"type": "object",
|
|
1042
|
+
"properties": {
|
|
1043
|
+
"eq": {
|
|
1044
|
+
"type": "string"
|
|
1045
|
+
},
|
|
1046
|
+
"join": {
|
|
1047
|
+
"type": "string"
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1033
1052
|
},
|
|
1034
|
-
|
|
1053
|
+
{
|
|
1035
1054
|
"type": "object",
|
|
1036
1055
|
"properties": {
|
|
1037
|
-
"
|
|
1056
|
+
"kind": {
|
|
1057
|
+
"type": "string",
|
|
1058
|
+
"const": "options"
|
|
1059
|
+
},
|
|
1060
|
+
"toFunction": {
|
|
1061
|
+
"type": "string",
|
|
1062
|
+
"enum": [
|
|
1063
|
+
"ToOptions",
|
|
1064
|
+
"ToOptionsFromObject"
|
|
1065
|
+
]
|
|
1066
|
+
},
|
|
1067
|
+
"toValue": {
|
|
1038
1068
|
"type": "string"
|
|
1039
1069
|
},
|
|
1040
|
-
"
|
|
1070
|
+
"toDisplay": {
|
|
1071
|
+
"type": "string"
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"type": "object",
|
|
1077
|
+
"properties": {
|
|
1078
|
+
"kind": {
|
|
1079
|
+
"type": "string",
|
|
1080
|
+
"const": "resolve"
|
|
1081
|
+
},
|
|
1082
|
+
"value": {
|
|
1041
1083
|
"type": "string"
|
|
1042
1084
|
}
|
|
1043
1085
|
}
|
|
1044
1086
|
}
|
|
1045
|
-
|
|
1087
|
+
]
|
|
1046
1088
|
}
|
|
1047
1089
|
},
|
|
1048
1090
|
"required": [
|
|
@@ -417,38 +417,80 @@
|
|
|
417
417
|
"type": "string"
|
|
418
418
|
},
|
|
419
419
|
"mapper": {
|
|
420
|
-
"
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
"
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
420
|
+
"oneOf": [
|
|
421
|
+
{
|
|
422
|
+
"type": "object",
|
|
423
|
+
"properties": {
|
|
424
|
+
"kind": {
|
|
425
|
+
"type": "string",
|
|
426
|
+
"const": "paged"
|
|
427
|
+
},
|
|
428
|
+
"pageIndex": {
|
|
429
|
+
"type": "string"
|
|
430
|
+
},
|
|
431
|
+
"pageSize": {
|
|
432
|
+
"type": "string"
|
|
433
|
+
},
|
|
434
|
+
"sortBy": {
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"sortDirection": {
|
|
438
|
+
"type": "string"
|
|
439
|
+
},
|
|
440
|
+
"list": {
|
|
441
|
+
"type": "string"
|
|
442
|
+
},
|
|
443
|
+
"total": {
|
|
444
|
+
"type": "string"
|
|
445
|
+
},
|
|
446
|
+
"filter": {
|
|
447
|
+
"type": "object",
|
|
448
|
+
"properties": {
|
|
449
|
+
"eq": {
|
|
450
|
+
"type": "string"
|
|
451
|
+
},
|
|
452
|
+
"join": {
|
|
453
|
+
"type": "string"
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
}
|
|
439
458
|
},
|
|
440
|
-
|
|
459
|
+
{
|
|
441
460
|
"type": "object",
|
|
442
461
|
"properties": {
|
|
443
|
-
"
|
|
462
|
+
"kind": {
|
|
463
|
+
"type": "string",
|
|
464
|
+
"const": "options"
|
|
465
|
+
},
|
|
466
|
+
"toFunction": {
|
|
467
|
+
"type": "string",
|
|
468
|
+
"enum": [
|
|
469
|
+
"ToOptions",
|
|
470
|
+
"ToOptionsFromObject"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
"toValue": {
|
|
444
474
|
"type": "string"
|
|
445
475
|
},
|
|
446
|
-
"
|
|
476
|
+
"toDisplay": {
|
|
477
|
+
"type": "string"
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"type": "object",
|
|
483
|
+
"properties": {
|
|
484
|
+
"kind": {
|
|
485
|
+
"type": "string",
|
|
486
|
+
"const": "resolve"
|
|
487
|
+
},
|
|
488
|
+
"value": {
|
|
447
489
|
"type": "string"
|
|
448
490
|
}
|
|
449
491
|
}
|
|
450
492
|
}
|
|
451
|
-
|
|
493
|
+
]
|
|
452
494
|
}
|
|
453
495
|
},
|
|
454
496
|
"required": [
|
|
@@ -395,38 +395,80 @@
|
|
|
395
395
|
"type": "string"
|
|
396
396
|
},
|
|
397
397
|
"mapper": {
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
"
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
398
|
+
"oneOf": [
|
|
399
|
+
{
|
|
400
|
+
"type": "object",
|
|
401
|
+
"properties": {
|
|
402
|
+
"kind": {
|
|
403
|
+
"type": "string",
|
|
404
|
+
"const": "paged"
|
|
405
|
+
},
|
|
406
|
+
"pageIndex": {
|
|
407
|
+
"type": "string"
|
|
408
|
+
},
|
|
409
|
+
"pageSize": {
|
|
410
|
+
"type": "string"
|
|
411
|
+
},
|
|
412
|
+
"sortBy": {
|
|
413
|
+
"type": "string"
|
|
414
|
+
},
|
|
415
|
+
"sortDirection": {
|
|
416
|
+
"type": "string"
|
|
417
|
+
},
|
|
418
|
+
"list": {
|
|
419
|
+
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
"total": {
|
|
422
|
+
"type": "string"
|
|
423
|
+
},
|
|
424
|
+
"filter": {
|
|
425
|
+
"type": "object",
|
|
426
|
+
"properties": {
|
|
427
|
+
"eq": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
},
|
|
430
|
+
"join": {
|
|
431
|
+
"type": "string"
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
417
436
|
},
|
|
418
|
-
|
|
437
|
+
{
|
|
419
438
|
"type": "object",
|
|
420
439
|
"properties": {
|
|
421
|
-
"
|
|
440
|
+
"kind": {
|
|
441
|
+
"type": "string",
|
|
442
|
+
"const": "options"
|
|
443
|
+
},
|
|
444
|
+
"toFunction": {
|
|
445
|
+
"type": "string",
|
|
446
|
+
"enum": [
|
|
447
|
+
"ToOptions",
|
|
448
|
+
"ToOptionsFromObject"
|
|
449
|
+
]
|
|
450
|
+
},
|
|
451
|
+
"toValue": {
|
|
422
452
|
"type": "string"
|
|
423
453
|
},
|
|
424
|
-
"
|
|
454
|
+
"toDisplay": {
|
|
455
|
+
"type": "string"
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"type": "object",
|
|
461
|
+
"properties": {
|
|
462
|
+
"kind": {
|
|
463
|
+
"type": "string",
|
|
464
|
+
"const": "resolve"
|
|
465
|
+
},
|
|
466
|
+
"value": {
|
|
425
467
|
"type": "string"
|
|
426
468
|
}
|
|
427
469
|
}
|
|
428
470
|
}
|
|
429
|
-
|
|
471
|
+
]
|
|
430
472
|
}
|
|
431
473
|
},
|
|
432
474
|
"required": [
|