@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
|
@@ -1106,38 +1106,80 @@
|
|
|
1106
1106
|
"type": "string"
|
|
1107
1107
|
},
|
|
1108
1108
|
"mapper": {
|
|
1109
|
-
"
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
"
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1109
|
+
"oneOf": [
|
|
1110
|
+
{
|
|
1111
|
+
"type": "object",
|
|
1112
|
+
"properties": {
|
|
1113
|
+
"kind": {
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"const": "paged"
|
|
1116
|
+
},
|
|
1117
|
+
"pageIndex": {
|
|
1118
|
+
"type": "string"
|
|
1119
|
+
},
|
|
1120
|
+
"pageSize": {
|
|
1121
|
+
"type": "string"
|
|
1122
|
+
},
|
|
1123
|
+
"sortBy": {
|
|
1124
|
+
"type": "string"
|
|
1125
|
+
},
|
|
1126
|
+
"sortDirection": {
|
|
1127
|
+
"type": "string"
|
|
1128
|
+
},
|
|
1129
|
+
"list": {
|
|
1130
|
+
"type": "string"
|
|
1131
|
+
},
|
|
1132
|
+
"total": {
|
|
1133
|
+
"type": "string"
|
|
1134
|
+
},
|
|
1135
|
+
"filter": {
|
|
1136
|
+
"type": "object",
|
|
1137
|
+
"properties": {
|
|
1138
|
+
"eq": {
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"join": {
|
|
1142
|
+
"type": "string"
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1128
1147
|
},
|
|
1129
|
-
|
|
1148
|
+
{
|
|
1130
1149
|
"type": "object",
|
|
1131
1150
|
"properties": {
|
|
1132
|
-
"
|
|
1151
|
+
"kind": {
|
|
1152
|
+
"type": "string",
|
|
1153
|
+
"const": "options"
|
|
1154
|
+
},
|
|
1155
|
+
"toFunction": {
|
|
1156
|
+
"type": "string",
|
|
1157
|
+
"enum": [
|
|
1158
|
+
"ToOptions",
|
|
1159
|
+
"ToOptionsFromObject"
|
|
1160
|
+
]
|
|
1161
|
+
},
|
|
1162
|
+
"toValue": {
|
|
1133
1163
|
"type": "string"
|
|
1134
1164
|
},
|
|
1135
|
-
"
|
|
1165
|
+
"toDisplay": {
|
|
1166
|
+
"type": "string"
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"type": "object",
|
|
1172
|
+
"properties": {
|
|
1173
|
+
"kind": {
|
|
1174
|
+
"type": "string",
|
|
1175
|
+
"const": "resolve"
|
|
1176
|
+
},
|
|
1177
|
+
"value": {
|
|
1136
1178
|
"type": "string"
|
|
1137
1179
|
}
|
|
1138
1180
|
}
|
|
1139
1181
|
}
|
|
1140
|
-
|
|
1182
|
+
]
|
|
1141
1183
|
}
|
|
1142
1184
|
},
|
|
1143
1185
|
"required": [
|
|
@@ -1014,38 +1014,80 @@
|
|
|
1014
1014
|
"type": "string"
|
|
1015
1015
|
},
|
|
1016
1016
|
"mapper": {
|
|
1017
|
-
"
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
"
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1017
|
+
"oneOf": [
|
|
1018
|
+
{
|
|
1019
|
+
"type": "object",
|
|
1020
|
+
"properties": {
|
|
1021
|
+
"kind": {
|
|
1022
|
+
"type": "string",
|
|
1023
|
+
"const": "paged"
|
|
1024
|
+
},
|
|
1025
|
+
"pageIndex": {
|
|
1026
|
+
"type": "string"
|
|
1027
|
+
},
|
|
1028
|
+
"pageSize": {
|
|
1029
|
+
"type": "string"
|
|
1030
|
+
},
|
|
1031
|
+
"sortBy": {
|
|
1032
|
+
"type": "string"
|
|
1033
|
+
},
|
|
1034
|
+
"sortDirection": {
|
|
1035
|
+
"type": "string"
|
|
1036
|
+
},
|
|
1037
|
+
"list": {
|
|
1038
|
+
"type": "string"
|
|
1039
|
+
},
|
|
1040
|
+
"total": {
|
|
1041
|
+
"type": "string"
|
|
1042
|
+
},
|
|
1043
|
+
"filter": {
|
|
1044
|
+
"type": "object",
|
|
1045
|
+
"properties": {
|
|
1046
|
+
"eq": {
|
|
1047
|
+
"type": "string"
|
|
1048
|
+
},
|
|
1049
|
+
"join": {
|
|
1050
|
+
"type": "string"
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1036
1055
|
},
|
|
1037
|
-
|
|
1056
|
+
{
|
|
1038
1057
|
"type": "object",
|
|
1039
1058
|
"properties": {
|
|
1040
|
-
"
|
|
1059
|
+
"kind": {
|
|
1060
|
+
"type": "string",
|
|
1061
|
+
"const": "options"
|
|
1062
|
+
},
|
|
1063
|
+
"toFunction": {
|
|
1064
|
+
"type": "string",
|
|
1065
|
+
"enum": [
|
|
1066
|
+
"ToOptions",
|
|
1067
|
+
"ToOptionsFromObject"
|
|
1068
|
+
]
|
|
1069
|
+
},
|
|
1070
|
+
"toValue": {
|
|
1041
1071
|
"type": "string"
|
|
1042
1072
|
},
|
|
1043
|
-
"
|
|
1073
|
+
"toDisplay": {
|
|
1074
|
+
"type": "string"
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"type": "object",
|
|
1080
|
+
"properties": {
|
|
1081
|
+
"kind": {
|
|
1082
|
+
"type": "string",
|
|
1083
|
+
"const": "resolve"
|
|
1084
|
+
},
|
|
1085
|
+
"value": {
|
|
1044
1086
|
"type": "string"
|
|
1045
1087
|
}
|
|
1046
1088
|
}
|
|
1047
1089
|
}
|
|
1048
|
-
|
|
1090
|
+
]
|
|
1049
1091
|
}
|
|
1050
1092
|
},
|
|
1051
1093
|
"required": [
|
|
@@ -1066,38 +1066,80 @@
|
|
|
1066
1066
|
"type": "string"
|
|
1067
1067
|
},
|
|
1068
1068
|
"mapper": {
|
|
1069
|
-
"
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
"
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1069
|
+
"oneOf": [
|
|
1070
|
+
{
|
|
1071
|
+
"type": "object",
|
|
1072
|
+
"properties": {
|
|
1073
|
+
"kind": {
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"const": "paged"
|
|
1076
|
+
},
|
|
1077
|
+
"pageIndex": {
|
|
1078
|
+
"type": "string"
|
|
1079
|
+
},
|
|
1080
|
+
"pageSize": {
|
|
1081
|
+
"type": "string"
|
|
1082
|
+
},
|
|
1083
|
+
"sortBy": {
|
|
1084
|
+
"type": "string"
|
|
1085
|
+
},
|
|
1086
|
+
"sortDirection": {
|
|
1087
|
+
"type": "string"
|
|
1088
|
+
},
|
|
1089
|
+
"list": {
|
|
1090
|
+
"type": "string"
|
|
1091
|
+
},
|
|
1092
|
+
"total": {
|
|
1093
|
+
"type": "string"
|
|
1094
|
+
},
|
|
1095
|
+
"filter": {
|
|
1096
|
+
"type": "object",
|
|
1097
|
+
"properties": {
|
|
1098
|
+
"eq": {
|
|
1099
|
+
"type": "string"
|
|
1100
|
+
},
|
|
1101
|
+
"join": {
|
|
1102
|
+
"type": "string"
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1088
1107
|
},
|
|
1089
|
-
|
|
1108
|
+
{
|
|
1090
1109
|
"type": "object",
|
|
1091
1110
|
"properties": {
|
|
1092
|
-
"
|
|
1111
|
+
"kind": {
|
|
1112
|
+
"type": "string",
|
|
1113
|
+
"const": "options"
|
|
1114
|
+
},
|
|
1115
|
+
"toFunction": {
|
|
1116
|
+
"type": "string",
|
|
1117
|
+
"enum": [
|
|
1118
|
+
"ToOptions",
|
|
1119
|
+
"ToOptionsFromObject"
|
|
1120
|
+
]
|
|
1121
|
+
},
|
|
1122
|
+
"toValue": {
|
|
1093
1123
|
"type": "string"
|
|
1094
1124
|
},
|
|
1095
|
-
"
|
|
1125
|
+
"toDisplay": {
|
|
1126
|
+
"type": "string"
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"type": "object",
|
|
1132
|
+
"properties": {
|
|
1133
|
+
"kind": {
|
|
1134
|
+
"type": "string",
|
|
1135
|
+
"const": "resolve"
|
|
1136
|
+
},
|
|
1137
|
+
"value": {
|
|
1096
1138
|
"type": "string"
|
|
1097
1139
|
}
|
|
1098
1140
|
}
|
|
1099
1141
|
}
|
|
1100
|
-
|
|
1142
|
+
]
|
|
1101
1143
|
}
|
|
1102
1144
|
},
|
|
1103
1145
|
"required": [
|
|
@@ -1055,38 +1055,80 @@
|
|
|
1055
1055
|
"type": "string"
|
|
1056
1056
|
},
|
|
1057
1057
|
"mapper": {
|
|
1058
|
-
"
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
"
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1058
|
+
"oneOf": [
|
|
1059
|
+
{
|
|
1060
|
+
"type": "object",
|
|
1061
|
+
"properties": {
|
|
1062
|
+
"kind": {
|
|
1063
|
+
"type": "string",
|
|
1064
|
+
"const": "paged"
|
|
1065
|
+
},
|
|
1066
|
+
"pageIndex": {
|
|
1067
|
+
"type": "string"
|
|
1068
|
+
},
|
|
1069
|
+
"pageSize": {
|
|
1070
|
+
"type": "string"
|
|
1071
|
+
},
|
|
1072
|
+
"sortBy": {
|
|
1073
|
+
"type": "string"
|
|
1074
|
+
},
|
|
1075
|
+
"sortDirection": {
|
|
1076
|
+
"type": "string"
|
|
1077
|
+
},
|
|
1078
|
+
"list": {
|
|
1079
|
+
"type": "string"
|
|
1080
|
+
},
|
|
1081
|
+
"total": {
|
|
1082
|
+
"type": "string"
|
|
1083
|
+
},
|
|
1084
|
+
"filter": {
|
|
1085
|
+
"type": "object",
|
|
1086
|
+
"properties": {
|
|
1087
|
+
"eq": {
|
|
1088
|
+
"type": "string"
|
|
1089
|
+
},
|
|
1090
|
+
"join": {
|
|
1091
|
+
"type": "string"
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1077
1096
|
},
|
|
1078
|
-
|
|
1097
|
+
{
|
|
1079
1098
|
"type": "object",
|
|
1080
1099
|
"properties": {
|
|
1081
|
-
"
|
|
1100
|
+
"kind": {
|
|
1101
|
+
"type": "string",
|
|
1102
|
+
"const": "options"
|
|
1103
|
+
},
|
|
1104
|
+
"toFunction": {
|
|
1105
|
+
"type": "string",
|
|
1106
|
+
"enum": [
|
|
1107
|
+
"ToOptions",
|
|
1108
|
+
"ToOptionsFromObject"
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
"toValue": {
|
|
1082
1112
|
"type": "string"
|
|
1083
1113
|
},
|
|
1084
|
-
"
|
|
1114
|
+
"toDisplay": {
|
|
1115
|
+
"type": "string"
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"type": "object",
|
|
1121
|
+
"properties": {
|
|
1122
|
+
"kind": {
|
|
1123
|
+
"type": "string",
|
|
1124
|
+
"const": "resolve"
|
|
1125
|
+
},
|
|
1126
|
+
"value": {
|
|
1085
1127
|
"type": "string"
|
|
1086
1128
|
}
|
|
1087
1129
|
}
|
|
1088
1130
|
}
|
|
1089
|
-
|
|
1131
|
+
]
|
|
1090
1132
|
}
|
|
1091
1133
|
},
|
|
1092
1134
|
"required": [
|
|
@@ -16,38 +16,77 @@
|
|
|
16
16
|
"type": "string"
|
|
17
17
|
},
|
|
18
18
|
"mapper": {
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
19
|
+
"oneOf": [
|
|
20
|
+
{
|
|
21
|
+
"type": "object",
|
|
22
|
+
"properties": {
|
|
23
|
+
"kind": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"const": "paged"
|
|
26
|
+
},
|
|
27
|
+
"pageIndex": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"pageSize": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"sortBy": {
|
|
34
|
+
"type": "string"
|
|
35
|
+
},
|
|
36
|
+
"sortDirection": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
},
|
|
39
|
+
"list": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"total": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"filter": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"eq": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"join": {
|
|
52
|
+
"type": "string"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
38
57
|
},
|
|
39
|
-
|
|
58
|
+
{
|
|
40
59
|
"type": "object",
|
|
41
60
|
"properties": {
|
|
42
|
-
"
|
|
61
|
+
"kind": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"const": "options"
|
|
64
|
+
},
|
|
65
|
+
"toFunction": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"enum": ["ToOptions", "ToOptionsFromObject"]
|
|
68
|
+
},
|
|
69
|
+
"toValue": {
|
|
43
70
|
"type": "string"
|
|
44
71
|
},
|
|
45
|
-
"
|
|
72
|
+
"toDisplay": {
|
|
73
|
+
"type": "string"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "object",
|
|
79
|
+
"properties": {
|
|
80
|
+
"kind": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"const": "resolve"
|
|
83
|
+
},
|
|
84
|
+
"value": {
|
|
46
85
|
"type": "string"
|
|
47
86
|
}
|
|
48
87
|
}
|
|
49
88
|
}
|
|
50
|
-
|
|
89
|
+
]
|
|
51
90
|
}
|
|
52
91
|
},
|
|
53
92
|
"required": ["kind", "operationId"]
|