@rxap/schematic-angular 16.2.0-dev.23 → 16.2.0-dev.24
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 +9 -0
- package/README.md +1 -1
- package/package.json +10 -10
- package/src/lib/accordion-identifier.d.ts +2 -2
- package/src/lib/accordion-identifier.js +2 -1
- package/src/lib/accordion-identifier.js.map +1 -1
- package/src/lib/data-grid-item.js +5 -3
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/lib/form/control/autocomplete-table-select-form-control.js +11 -1
- package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -1
- package/src/lib/form/control/table-select-form-control.d.ts +3 -0
- package/src/lib/form/control/table-select-form-control.js +11 -1
- package/src/lib/form/control/table-select-form-control.js.map +1 -1
- package/src/lib/minimum-table-options.d.ts +3 -0
- package/src/lib/minimum-table-options.js +7 -0
- package/src/lib/minimum-table-options.js.map +1 -1
- package/src/lib/table/table-filter-column-rule.js +2 -3
- package/src/lib/table/table-filter-column-rule.js.map +1 -1
- package/src/lib/table-column.js +5 -1
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +242 -164
- package/src/schematics/accordion/accordion-component/schema.json +1427 -116
- package/src/schematics/accordion/accordion-item-component/schema.json +1427 -116
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +72 -62
- package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +3 -14
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +1411 -166
- package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +3 -64
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +82 -74
- package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +3 -26
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +82 -74
- package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +3 -26
- package/src/schematics/accordion-identifier.schema.json +1 -2
- package/src/schematics/accordion-item.schema.json +43 -50
- package/src/schematics/autocomplete-table-select-form-control.schema.json +1 -1
- package/src/schematics/base-accordion-item.schema.json +52 -0
- package/src/schematics/data-grid-accordion-item.schema.json +34 -0
- package/src/schematics/data-grid-component/index.js +8 -4
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +6 -7
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +8 -6
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +2 -5
- package/src/schematics/form/control/input-form-control/schema.json +1 -4
- package/src/schematics/form/control/select-form-control/schema.json +1 -4
- package/src/schematics/form/control/table-select-form-control/index.js +8 -6
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/schema.json +21 -4
- package/src/schematics/form/form-array/schema.json +22 -5
- package/src/schematics/form/form-component/schema.json +6 -7
- package/src/schematics/form/form-control/schema.json +22 -5
- package/src/schematics/form/form-definition/schema.json +22 -5
- package/src/schematics/form/form-group/schema.json +22 -5
- package/src/schematics/minimum-table.schema.json +6 -0
- package/src/schematics/property.schema.json +1 -4
- package/src/schematics/switch-accordion-item.schema.json +82 -0
- package/src/schematics/table/action/form-table-action/schema.json +6 -7
- package/src/schematics/table/header-button/form-table-header-button/schema.json +6 -7
- package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +4 -4
- package/src/schematics/table/table-component/index.d.ts +0 -3
- package/src/schematics/table/table-component/index.js +1 -9
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +25 -5
- package/src/schematics/table/templates/default-table-column.hbs +4 -1
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -6
- package/src/schematics/table/tree-table-component/schema.json +25 -5
- package/src/schematics/table-accordion-item.schema.json +41 -0
- package/src/schematics/table-select-form-control.schema.json +6 -0
- package/src/schematics/tree-table-accordion-item.schema.json +41 -0
- package/src/template.schema.json +15 -0
|
@@ -82,6 +82,23 @@
|
|
|
82
82
|
}
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
|
+
"accordionIdentifier": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"property": {
|
|
89
|
+
"$ref": "#/definitions/property"
|
|
90
|
+
},
|
|
91
|
+
"source": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"enum": [
|
|
94
|
+
"route"
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"required": [
|
|
99
|
+
"property"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
85
102
|
"angular": {
|
|
86
103
|
"allOf": [
|
|
87
104
|
{
|
|
@@ -146,7 +163,7 @@
|
|
|
146
163
|
},
|
|
147
164
|
"kind": {
|
|
148
165
|
"type": "string",
|
|
149
|
-
"const": "table-select"
|
|
166
|
+
"const": "autocomplete-table-select"
|
|
150
167
|
},
|
|
151
168
|
"placeholder": {
|
|
152
169
|
"type": "string"
|
|
@@ -560,6 +577,9 @@
|
|
|
560
577
|
},
|
|
561
578
|
"cssClass": {
|
|
562
579
|
"$ref": "#/definitions/cssClass"
|
|
580
|
+
},
|
|
581
|
+
"identifier": {
|
|
582
|
+
"$ref": "#/definitions/accordionIdentifier"
|
|
563
583
|
}
|
|
564
584
|
}
|
|
565
585
|
},
|
|
@@ -608,10 +628,7 @@
|
|
|
608
628
|
"isArray": {
|
|
609
629
|
"type": "boolean"
|
|
610
630
|
}
|
|
611
|
-
}
|
|
612
|
-
"required": [
|
|
613
|
-
"name"
|
|
614
|
-
]
|
|
631
|
+
}
|
|
615
632
|
}
|
|
616
633
|
]
|
|
617
634
|
},
|
|
@@ -888,6 +905,9 @@
|
|
|
888
905
|
"$ref": "#/definitions/upstream"
|
|
889
906
|
}
|
|
890
907
|
}
|
|
908
|
+
},
|
|
909
|
+
"identifier": {
|
|
910
|
+
"$ref": "#/definitions/accordionIdentifier"
|
|
891
911
|
}
|
|
892
912
|
}
|
|
893
913
|
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "table-accordion-item",
|
|
4
|
+
"allOf": [
|
|
5
|
+
{
|
|
6
|
+
"$ref": "#/definitions/baseAccordionItem"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"const": "table"
|
|
14
|
+
},
|
|
15
|
+
"modifiers": {
|
|
16
|
+
"alias": "modifier",
|
|
17
|
+
"type": "array",
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"enum": [
|
|
21
|
+
"navigation-back-header",
|
|
22
|
+
"without-title"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"description": "The table modifiers"
|
|
26
|
+
},
|
|
27
|
+
"table": {
|
|
28
|
+
"$ref": "#/definitions/table"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"definitions": {
|
|
34
|
+
"baseAccordionItem": {
|
|
35
|
+
"$ref": "./base-accordion-item.schema.json"
|
|
36
|
+
},
|
|
37
|
+
"table": {
|
|
38
|
+
"$ref": "./table.schema.json"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -75,6 +75,9 @@
|
|
|
75
75
|
"$ref": "#/definitions/upstream"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
|
+
},
|
|
79
|
+
"identifier": {
|
|
80
|
+
"$ref": "#/definitions/accordionIdentifier"
|
|
78
81
|
}
|
|
79
82
|
}
|
|
80
83
|
}
|
|
@@ -91,6 +94,9 @@
|
|
|
91
94
|
},
|
|
92
95
|
"baseFormControl": {
|
|
93
96
|
"$ref": "./base-form-control.schema.json"
|
|
97
|
+
},
|
|
98
|
+
"accordionIdentifier": {
|
|
99
|
+
"$ref": "./accordion-identifier.schema.json"
|
|
94
100
|
}
|
|
95
101
|
}
|
|
96
102
|
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "tree-table-accordion-item",
|
|
4
|
+
"allOf": [
|
|
5
|
+
{
|
|
6
|
+
"$ref": "#/definitions/baseAccordionItem"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"kind": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"const": "tree-table"
|
|
14
|
+
},
|
|
15
|
+
"modifiers": {
|
|
16
|
+
"alias": "modifier",
|
|
17
|
+
"type": "array",
|
|
18
|
+
"items": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"enum": [
|
|
21
|
+
"navigation-back-header",
|
|
22
|
+
"without-title"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"description": "The table modifiers"
|
|
26
|
+
},
|
|
27
|
+
"table": {
|
|
28
|
+
"$ref": "#/definitions/treeTable"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"definitions": {
|
|
34
|
+
"baseAccordionItem": {
|
|
35
|
+
"$ref": "./base-accordion-item.schema.json"
|
|
36
|
+
},
|
|
37
|
+
"treeTable": {
|
|
38
|
+
"$ref": "./tree-table.schema.json"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
package/src/template.schema.json
CHANGED
|
@@ -118,6 +118,9 @@
|
|
|
118
118
|
"backend": {
|
|
119
119
|
"$ref": "schematics/backend.schema.json"
|
|
120
120
|
},
|
|
121
|
+
"baseAccordionItem": {
|
|
122
|
+
"$ref": "schematics/base-accordion-item.schema.json"
|
|
123
|
+
},
|
|
121
124
|
"baseFormArray": {
|
|
122
125
|
"$ref": "schematics/base-form-array.schema.json"
|
|
123
126
|
},
|
|
@@ -139,6 +142,9 @@
|
|
|
139
142
|
"cssClass": {
|
|
140
143
|
"$ref": "schematics/css-class.schema.json"
|
|
141
144
|
},
|
|
145
|
+
"dataGridAccordionItem": {
|
|
146
|
+
"$ref": "schematics/data-grid-accordion-item.schema.json"
|
|
147
|
+
},
|
|
142
148
|
"dataGridItem": {
|
|
143
149
|
"$ref": "schematics/data-grid-item.schema.json"
|
|
144
150
|
},
|
|
@@ -187,6 +193,12 @@
|
|
|
187
193
|
"slideToggleFormControl": {
|
|
188
194
|
"$ref": "schematics/slide-toggle-form-control.schema.json"
|
|
189
195
|
},
|
|
196
|
+
"switchAccordionItem": {
|
|
197
|
+
"$ref": "schematics/switch-accordion-item.schema.json"
|
|
198
|
+
},
|
|
199
|
+
"tableAccordionItem": {
|
|
200
|
+
"$ref": "schematics/table-accordion-item.schema.json"
|
|
201
|
+
},
|
|
190
202
|
"tableAction": {
|
|
191
203
|
"$ref": "schematics/table-action.schema.json"
|
|
192
204
|
},
|
|
@@ -202,6 +214,9 @@
|
|
|
202
214
|
"textareaFormControl": {
|
|
203
215
|
"$ref": "schematics/textarea-form-control.schema.json"
|
|
204
216
|
},
|
|
217
|
+
"treeTableAccordionItem": {
|
|
218
|
+
"$ref": "schematics/tree-table-accordion-item.schema.json"
|
|
219
|
+
},
|
|
205
220
|
"treeTable": {
|
|
206
221
|
"$ref": "schematics/tree-table.schema.json"
|
|
207
222
|
},
|