@rxap/schematic-angular 16.2.0-dev.42 → 16.2.0-dev.44

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.
Files changed (56) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +1 -1
  3. package/package.json +6 -6
  4. package/src/lib/data-grid-item.js +5 -4
  5. package/src/lib/data-grid-item.js.map +1 -1
  6. package/src/lib/data-grid-options.js +1 -0
  7. package/src/lib/data-grid-options.js.map +1 -1
  8. package/src/lib/form/abstract-control.d.ts +3 -1
  9. package/src/lib/form/abstract-control.js +12 -1
  10. package/src/lib/form/abstract-control.js.map +1 -1
  11. package/src/lib/form/array/base-form-array.d.ts +1 -1
  12. package/src/lib/form/array/base-form-array.js +2 -1
  13. package/src/lib/form/array/base-form-array.js.map +1 -1
  14. package/src/lib/form/control/base-form-control.d.ts +1 -1
  15. package/src/lib/form/control/checkbox-form-control.d.ts +1 -1
  16. package/src/lib/form/control/form-field-form-control.d.ts +1 -1
  17. package/src/lib/form/control/input-form-control.d.ts +1 -1
  18. package/src/lib/form/control/select-form-control.d.ts +1 -1
  19. package/src/lib/form/control/slide-toggle-form-control.d.ts +1 -1
  20. package/src/lib/form/control/table-select-form-control.d.ts +1 -1
  21. package/src/lib/form/control/textarea-form-control.d.ts +1 -1
  22. package/src/lib/form/group/base-form-group.d.ts +1 -1
  23. package/src/schema.json +83 -24
  24. package/src/schematics/accordion/accordion-component/index.d.ts +2 -1
  25. package/src/schematics/accordion/accordion-component/index.js +3 -3
  26. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  27. package/src/schematics/accordion/accordion-component/schema.json +83 -24
  28. package/src/schematics/accordion/accordion-item-component/index.js +2 -2
  29. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  30. package/src/schematics/accordion/accordion-item-component/schema.json +83 -24
  31. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +77 -23
  32. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +83 -24
  33. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +77 -23
  34. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +83 -24
  35. package/src/schematics/data-grid-component/index.js +3 -1
  36. package/src/schematics/data-grid-component/index.js.map +1 -1
  37. package/src/schematics/data-grid-component/schema.json +77 -23
  38. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +1 -2
  39. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -1
  40. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +77 -23
  41. package/src/schematics/form/control/input-form-control/schema.json +12 -0
  42. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  43. package/src/schematics/form/control/select-form-control/schema.json +77 -23
  44. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  45. package/src/schematics/form/control/table-select-form-control/schema.json +77 -23
  46. package/src/schematics/form/form-array/schema.json +77 -23
  47. package/src/schematics/form/form-component/schema.json +77 -23
  48. package/src/schematics/form/form-control/schema.json +77 -23
  49. package/src/schematics/form/form-definition/schema.json +77 -23
  50. package/src/schematics/form/form-group/schema.json +77 -23
  51. package/src/schematics/property.schema.json +10 -0
  52. package/src/schematics/table/action/form-table-action/schema.json +77 -23
  53. package/src/schematics/table/header-button/form-table-header-button/schema.json +77 -23
  54. package/src/schematics/table/table-component/schema.json +77 -23
  55. package/src/schematics/table/tree-table-component/schema.json +83 -24
  56. package/src/schematics/upstream.schema.json +62 -23
@@ -631,6 +631,18 @@
631
631
  },
632
632
  "isArray": {
633
633
  "type": "boolean"
634
+ },
635
+ "isRequired": {
636
+ "type": "boolean"
637
+ },
638
+ "source": {
639
+ "type": "string"
640
+ },
641
+ "memberList": {
642
+ "type": "array",
643
+ "items": {
644
+ "additionalProperties": true
645
+ }
634
646
  }
635
647
  }
636
648
  }
@@ -1054,38 +1066,80 @@
1054
1066
  "type": "string"
1055
1067
  },
1056
1068
  "mapper": {
1057
- "type": "object",
1058
- "properties": {
1059
- "pageIndex": {
1060
- "type": "string"
1061
- },
1062
- "pageSize": {
1063
- "type": "string"
1064
- },
1065
- "sortBy": {
1066
- "type": "string"
1067
- },
1068
- "sortDirection": {
1069
- "type": "string"
1070
- },
1071
- "list": {
1072
- "type": "string"
1073
- },
1074
- "total": {
1075
- "type": "string"
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
+ }
1076
1107
  },
1077
- "filter": {
1108
+ {
1078
1109
  "type": "object",
1079
1110
  "properties": {
1080
- "eq": {
1111
+ "kind": {
1112
+ "type": "string",
1113
+ "const": "options"
1114
+ },
1115
+ "toFunction": {
1116
+ "type": "string",
1117
+ "enum": [
1118
+ "ToOptions",
1119
+ "ToOptionsFromObject"
1120
+ ]
1121
+ },
1122
+ "toValue": {
1081
1123
  "type": "string"
1082
1124
  },
1083
- "join": {
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": {
1084
1138
  "type": "string"
1085
1139
  }
1086
1140
  }
1087
1141
  }
1088
- }
1142
+ ]
1089
1143
  }
1090
1144
  },
1091
1145
  "required": [
@@ -631,6 +631,18 @@
631
631
  },
632
632
  "isArray": {
633
633
  "type": "boolean"
634
+ },
635
+ "isRequired": {
636
+ "type": "boolean"
637
+ },
638
+ "source": {
639
+ "type": "string"
640
+ },
641
+ "memberList": {
642
+ "type": "array",
643
+ "items": {
644
+ "additionalProperties": true
645
+ }
634
646
  }
635
647
  }
636
648
  }
@@ -985,7 +997,12 @@
985
997
  }
986
998
  }
987
999
  }
988
- ]
1000
+ ],
1001
+ "definitions": {
1002
+ "minimumTable": {
1003
+ "ref": "./minimum-table.schema.json"
1004
+ }
1005
+ }
989
1006
  },
990
1007
  "type": {
991
1008
  "oneOf": [
@@ -1038,38 +1055,80 @@
1038
1055
  "type": "string"
1039
1056
  },
1040
1057
  "mapper": {
1041
- "type": "object",
1042
- "properties": {
1043
- "pageIndex": {
1044
- "type": "string"
1045
- },
1046
- "pageSize": {
1047
- "type": "string"
1048
- },
1049
- "sortBy": {
1050
- "type": "string"
1051
- },
1052
- "sortDirection": {
1053
- "type": "string"
1054
- },
1055
- "list": {
1056
- "type": "string"
1057
- },
1058
- "total": {
1059
- "type": "string"
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
+ }
1060
1096
  },
1061
- "filter": {
1097
+ {
1062
1098
  "type": "object",
1063
1099
  "properties": {
1064
- "eq": {
1100
+ "kind": {
1101
+ "type": "string",
1102
+ "const": "options"
1103
+ },
1104
+ "toFunction": {
1105
+ "type": "string",
1106
+ "enum": [
1107
+ "ToOptions",
1108
+ "ToOptionsFromObject"
1109
+ ]
1110
+ },
1111
+ "toValue": {
1112
+ "type": "string"
1113
+ },
1114
+ "toDisplay": {
1065
1115
  "type": "string"
1116
+ }
1117
+ }
1118
+ },
1119
+ {
1120
+ "type": "object",
1121
+ "properties": {
1122
+ "kind": {
1123
+ "type": "string",
1124
+ "const": "resolve"
1066
1125
  },
1067
- "join": {
1126
+ "value": {
1068
1127
  "type": "string"
1069
1128
  }
1070
1129
  }
1071
1130
  }
1072
- }
1131
+ ]
1073
1132
  }
1074
1133
  },
1075
1134
  "required": [
@@ -16,38 +16,77 @@
16
16
  "type": "string"
17
17
  },
18
18
  "mapper": {
19
- "type": "object",
20
- "properties": {
21
- "pageIndex": {
22
- "type": "string"
23
- },
24
- "pageSize": {
25
- "type": "string"
26
- },
27
- "sortBy": {
28
- "type": "string"
29
- },
30
- "sortDirection": {
31
- "type": "string"
32
- },
33
- "list": {
34
- "type": "string"
35
- },
36
- "total": {
37
- "type": "string"
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
- "filter": {
58
+ {
40
59
  "type": "object",
41
60
  "properties": {
42
- "eq": {
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
- "join": {
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"]