@rxap/schematic-angular 16.2.0-dev.20 → 16.2.0-dev.22
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 +19 -0
- package/README.md +1 -1
- package/collection.json +15 -0
- package/package.json +7 -7
- package/src/lib/coerce-form-component.js +15 -3
- package/src/lib/coerce-form-component.js.map +1 -1
- package/src/lib/data-grid-item.d.ts +3 -3
- package/src/lib/data-grid-item.js +2 -2
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/lib/form/abstract-control.d.ts +29 -0
- package/src/lib/form/abstract-control.js +37 -0
- package/src/lib/form/abstract-control.js.map +1 -0
- package/src/lib/form/array/base-form-array.d.ts +18 -0
- package/src/lib/form/array/base-form-array.js +40 -0
- package/src/lib/form/array/base-form-array.js.map +1 -0
- package/src/lib/form/array/form-array-kind.d.ts +3 -0
- package/src/lib/form/array/form-array-kind.js +8 -0
- package/src/lib/form/array/form-array-kind.js.map +1 -0
- package/src/lib/form/array/form-array.d.ts +12 -0
- package/src/lib/form/array/form-array.js +18 -0
- package/src/lib/form/array/form-array.js.map +1 -0
- package/src/lib/form/coerce-control-component-imports.d.ts +3 -0
- package/src/lib/form/coerce-control-component-imports.js +18 -0
- package/src/lib/form/coerce-control-component-imports.js.map +1 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.d.ts +6 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js +34 -0
- package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -0
- package/src/lib/form/control/base-form-control.d.ts +14 -0
- package/src/lib/form/control/base-form-control.js +19 -0
- package/src/lib/form/control/base-form-control.js.map +1 -0
- package/src/lib/form/control/checkbox-form-control.d.ts +11 -0
- package/src/lib/form/control/checkbox-form-control.js +23 -0
- package/src/lib/form/control/checkbox-form-control.js.map +1 -0
- package/src/lib/form/control/form-control-kind.d.ts +9 -0
- package/src/lib/form/control/form-control-kind.js +14 -0
- package/src/lib/form/control/form-control-kind.js.map +1 -0
- package/src/lib/form/control/form-control.d.ts +18 -0
- package/src/lib/form/control/form-control.js +43 -0
- package/src/lib/form/control/form-control.js.map +1 -0
- package/src/lib/form/control/form-field-form-control.d.ts +33 -0
- package/src/lib/form/control/form-field-form-control.js +76 -0
- package/src/lib/form/control/form-field-form-control.js.map +1 -0
- package/src/lib/form/control/input-form-control.d.ts +14 -0
- package/src/lib/form/control/input-form-control.js +71 -0
- package/src/lib/form/control/input-form-control.js.map +1 -0
- package/src/lib/form/control/select-form-control.d.ts +18 -0
- package/src/lib/form/control/select-form-control.js +29 -0
- package/src/lib/form/control/select-form-control.js.map +1 -0
- package/src/lib/form/control/slide-toggle-form-control.d.ts +11 -0
- package/src/lib/form/control/slide-toggle-form-control.js +23 -0
- package/src/lib/form/control/slide-toggle-form-control.js.map +1 -0
- package/src/lib/form/control/table-select-form-control.d.ts +43 -0
- package/src/lib/form/control/table-select-form-control.js +69 -0
- package/src/lib/form/control/table-select-form-control.js.map +1 -0
- package/src/lib/form/control.d.ts +8 -0
- package/src/lib/form/control.js +38 -0
- package/src/lib/form/control.js.map +1 -0
- package/src/lib/form/generate-form-template.d.ts +2 -2
- package/src/lib/form/group/base-form-group.d.ts +17 -0
- package/src/lib/form/group/base-form-group.js +20 -0
- package/src/lib/form/group/base-form-group.js.map +1 -0
- package/src/lib/form/group/form-group-kind.d.ts +3 -0
- package/src/lib/form/group/form-group-kind.js +8 -0
- package/src/lib/form/group/form-group-kind.js.map +1 -0
- package/src/lib/form/group/form-group.d.ts +12 -0
- package/src/lib/form/group/form-group.js +18 -0
- package/src/lib/form/group/form-group.js.map +1 -0
- package/src/lib/table-column.d.ts +4 -3
- package/src/lib/table-column.js +5 -4
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +1691 -1311
- package/src/schematic-input.schema.json +109 -156
- package/src/schematics/abstract-control.schema.json +78 -0
- package/src/schematics/accordion/accordion-component/schema.json +127 -127
- package/src/schematics/accordion/accordion-item-component/schema.json +18 -18
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +685 -81
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +76 -76
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +555 -97
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +537 -79
- package/src/schematics/autocomplete-table-select-form-control.schema.json +96 -0
- package/src/schematics/base-form-array.schema.json +45 -0
- package/src/schematics/base-form-control.schema.json +27 -0
- package/src/schematics/base-form-group.schema.json +42 -0
- package/src/schematics/checkbox-form-control.schema.json +30 -0
- package/src/schematics/control.schema.json +26 -0
- package/src/schematics/data-grid-component/index.js +4 -0
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +685 -81
- package/src/schematics/data-grid-item.schema.json +3 -3
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.d.ts +10 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +247 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.d.ts +4 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +453 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/template.schema.json +39 -0
- package/src/schematics/form/control/input-form-control/index.d.ts +1 -1
- package/src/schematics/form/control/input-form-control/index.js +4 -4
- package/src/schematics/form/control/input-form-control/index.js.map +1 -1
- package/src/schematics/form/control/input-form-control/schema.d.ts +2 -2
- package/src/schematics/form/control/input-form-control/schema.json +256 -86
- package/src/schematics/form/control/input-form-control/template.schema.json +16 -3
- package/src/schematics/form/control/select-form-control/index.d.ts +2 -2
- package/src/schematics/form/control/select-form-control/index.js +21 -14
- package/src/schematics/form/control/select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/select-form-control/schema.d.ts +2 -3
- package/src/schematics/form/control/select-form-control/schema.json +249 -90
- package/src/schematics/form/control/select-form-control/template.schema.json +16 -3
- package/src/schematics/form/control/table-select-form-control/index.d.ts +3 -9
- package/src/schematics/form/control/table-select-form-control/index.js +24 -18
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/schema.d.ts +2 -3
- package/src/schematics/form/control/table-select-form-control/schema.json +325 -123
- package/src/schematics/form/control/table-select-form-control/template.schema.json +16 -60
- package/src/schematics/form/form-array/index.d.ts +9 -0
- package/src/schematics/form/form-array/index.js +54 -0
- package/src/schematics/form/form-array/index.js.map +1 -0
- package/src/schematics/form/form-array/schema.d.ts +4 -0
- package/src/schematics/form/form-array/schema.json +906 -0
- package/src/schematics/form/form-array/template.schema.json +33 -0
- package/src/schematics/form/form-component/files/component/__componentName__.component.html.hbs +4 -1
- package/src/schematics/form/form-component/index.d.ts +2 -4
- package/src/schematics/form/form-component/index.js +8 -24
- package/src/schematics/form/form-component/index.js.map +1 -1
- package/src/schematics/form/form-component/schema.d.ts +2 -2
- package/src/schematics/form/form-component/schema.json +749 -86
- package/src/schematics/form/form-control/index.d.ts +3 -5
- package/src/schematics/form/form-control/index.js +8 -20
- package/src/schematics/form/form-control/index.js.map +1 -1
- package/src/schematics/form/form-control/schema.d.ts +2 -4
- package/src/schematics/form/form-control/schema.json +599 -59
- package/src/schematics/form/form-control/template.schema.json +1 -2
- package/src/schematics/form/form-definition/index.d.ts +2 -2
- package/src/schematics/form/form-definition/index.js +28 -15
- package/src/schematics/form/form-definition/index.js.map +1 -1
- package/src/schematics/form/form-definition/schema.d.ts +2 -2
- package/src/schematics/form/form-definition/schema.json +743 -56
- package/src/schematics/form/form-group/index.d.ts +9 -0
- package/src/schematics/form/form-group/index.js +54 -0
- package/src/schematics/form/form-group/index.js.map +1 -0
- package/src/schematics/form/form-group/schema.d.ts +4 -0
- package/src/schematics/form/form-group/schema.json +906 -0
- package/src/schematics/form/form-group/template.schema.json +33 -0
- package/src/schematics/form/templates/checkbox-form-control.hbs +1 -1
- package/src/schematics/form/templates/default-form-array.hbs +27 -0
- package/src/schematics/form/templates/default-form-group.hbs +13 -0
- package/src/schematics/form/templates/input-form-control.hbs +7 -7
- package/src/schematics/form/templates/select-form-control.hbs +5 -0
- package/src/schematics/form/templates/table-select-form-control.hbs +16 -16
- package/src/schematics/form-array.schema.json +40 -0
- package/src/schematics/form-control.schema.json +69 -54
- package/src/schematics/form-definition.schema.json +3 -3
- package/src/schematics/form-group.schema.json +40 -0
- package/src/schematics/input-form-control.schema.json +10 -6
- package/src/schematics/select-form-control.schema.json +8 -4
- package/src/schematics/slide-toggle-form-control.schema.json +30 -0
- package/src/schematics/table/action/dialog-table-action/schema.json +20 -20
- package/src/schematics/table/action/form-table-action/index.d.ts +2 -2
- package/src/schematics/table/action/form-table-action/index.js +3 -4
- package/src/schematics/table/action/form-table-action/index.js.map +1 -1
- package/src/schematics/table/action/form-table-action/schema.d.ts +2 -2
- package/src/schematics/table/action/form-table-action/schema.json +750 -87
- package/src/schematics/table/action/navigation-table-action/schema.json +20 -20
- package/src/schematics/table/action/open-api-table-action/schema.json +20 -20
- package/src/schematics/table/action/operation-table-action/schema.json +20 -20
- package/src/schematics/table/header-button/form-table-header-button/index.d.ts +2 -2
- package/src/schematics/table/header-button/form-table-header-button/index.js +2 -2
- package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
- package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +2 -2
- package/src/schematics/table/header-button/form-table-header-button/schema.json +818 -81
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +4 -22
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +20 -20
- package/src/schematics/table/table-action/schema.json +47 -47
- package/src/schematics/table/table-component/index.d.ts +2 -2
- package/src/schematics/table/table-component/schema.json +537 -79
- package/src/schematics/table/table-header-button/schema.json +40 -40
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +1 -1
- package/src/schematics/table/tree-table-component/schema.json +521 -63
- package/src/schematics/table-select-form-control.schema.json +96 -0
- package/src/schematics/textarea-form-control.schema.json +32 -0
- package/src/template.schema.json +45 -0
- package/src/lib/form-component-control.d.ts +0 -8
- package/src/lib/form-component-control.js +0 -15
- package/src/lib/form-component-control.js.map +0 -1
- package/src/lib/form-control.d.ts +0 -136
- package/src/lib/form-control.js +0 -265
- package/src/lib/form-control.js.map +0 -1
- package/src/lib/form-definition-control.d.ts +0 -5
- package/src/lib/form-definition-control.js +0 -30
- package/src/lib/form-definition-control.js.map +0 -1
|
@@ -8,15 +8,11 @@
|
|
|
8
8
|
"properties": {
|
|
9
9
|
"package": {
|
|
10
10
|
"type": "string",
|
|
11
|
-
"
|
|
12
|
-
"@rxap/schematic-angular"
|
|
13
|
-
]
|
|
11
|
+
"const": "@rxap/schematic-angular"
|
|
14
12
|
},
|
|
15
13
|
"name": {
|
|
16
14
|
"type": "string",
|
|
17
|
-
"
|
|
18
|
-
"table-component"
|
|
19
|
-
]
|
|
15
|
+
"const": "table-component"
|
|
20
16
|
},
|
|
21
17
|
"options": {
|
|
22
18
|
"$ref": "#/definitions/tableComponentSchematic"
|
|
@@ -28,15 +24,11 @@
|
|
|
28
24
|
"properties": {
|
|
29
25
|
"package": {
|
|
30
26
|
"type": "string",
|
|
31
|
-
"
|
|
32
|
-
"@rxap/schematic-angular"
|
|
33
|
-
]
|
|
27
|
+
"const": "@rxap/schematic-angular"
|
|
34
28
|
},
|
|
35
29
|
"name": {
|
|
36
30
|
"type": "string",
|
|
37
|
-
"
|
|
38
|
-
"tree-table-component"
|
|
39
|
-
]
|
|
31
|
+
"const": "tree-table-component"
|
|
40
32
|
},
|
|
41
33
|
"options": {
|
|
42
34
|
"$ref": "#/definitions/treeTableComponentSchematic"
|
|
@@ -48,15 +40,11 @@
|
|
|
48
40
|
"properties": {
|
|
49
41
|
"package": {
|
|
50
42
|
"type": "string",
|
|
51
|
-
"
|
|
52
|
-
"@rxap/schematic-angular"
|
|
53
|
-
]
|
|
43
|
+
"const": "@rxap/schematic-angular"
|
|
54
44
|
},
|
|
55
45
|
"name": {
|
|
56
46
|
"type": "string",
|
|
57
|
-
"
|
|
58
|
-
"form-component"
|
|
59
|
-
]
|
|
47
|
+
"const": "form-component"
|
|
60
48
|
},
|
|
61
49
|
"options": {
|
|
62
50
|
"$ref": "#/definitions/formComponentSchematic"
|
|
@@ -68,15 +56,11 @@
|
|
|
68
56
|
"properties": {
|
|
69
57
|
"package": {
|
|
70
58
|
"type": "string",
|
|
71
|
-
"
|
|
72
|
-
"@rxap/schematic-angular"
|
|
73
|
-
]
|
|
59
|
+
"const": "@rxap/schematic-angular"
|
|
74
60
|
},
|
|
75
61
|
"name": {
|
|
76
62
|
"type": "string",
|
|
77
|
-
"
|
|
78
|
-
"form-definition"
|
|
79
|
-
]
|
|
63
|
+
"const": "form-definition"
|
|
80
64
|
},
|
|
81
65
|
"options": {
|
|
82
66
|
"$ref": "#/definitions/formDefinitionSchematic"
|
|
@@ -88,15 +72,11 @@
|
|
|
88
72
|
"properties": {
|
|
89
73
|
"package": {
|
|
90
74
|
"type": "string",
|
|
91
|
-
"
|
|
92
|
-
"@rxap/schematic-angular"
|
|
93
|
-
]
|
|
75
|
+
"const": "@rxap/schematic-angular"
|
|
94
76
|
},
|
|
95
77
|
"name": {
|
|
96
78
|
"type": "string",
|
|
97
|
-
"
|
|
98
|
-
"table-action"
|
|
99
|
-
]
|
|
79
|
+
"const": "table-action"
|
|
100
80
|
},
|
|
101
81
|
"options": {
|
|
102
82
|
"$ref": "#/definitions/tableActionSchematic"
|
|
@@ -108,15 +88,11 @@
|
|
|
108
88
|
"properties": {
|
|
109
89
|
"package": {
|
|
110
90
|
"type": "string",
|
|
111
|
-
"
|
|
112
|
-
"@rxap/schematic-angular"
|
|
113
|
-
]
|
|
91
|
+
"const": "@rxap/schematic-angular"
|
|
114
92
|
},
|
|
115
93
|
"name": {
|
|
116
94
|
"type": "string",
|
|
117
|
-
"
|
|
118
|
-
"table-header-button"
|
|
119
|
-
]
|
|
95
|
+
"const": "table-header-button"
|
|
120
96
|
},
|
|
121
97
|
"options": {
|
|
122
98
|
"$ref": "#/definitions/tableHeaderButtonSchematic"
|
|
@@ -128,15 +104,11 @@
|
|
|
128
104
|
"properties": {
|
|
129
105
|
"package": {
|
|
130
106
|
"type": "string",
|
|
131
|
-
"
|
|
132
|
-
"@rxap/schematic-angular"
|
|
133
|
-
]
|
|
107
|
+
"const": "@rxap/schematic-angular"
|
|
134
108
|
},
|
|
135
109
|
"name": {
|
|
136
110
|
"type": "string",
|
|
137
|
-
"
|
|
138
|
-
"form-table-header-button"
|
|
139
|
-
]
|
|
111
|
+
"const": "form-table-header-button"
|
|
140
112
|
},
|
|
141
113
|
"options": {
|
|
142
114
|
"$ref": "#/definitions/formTableHeaderButtonSchematic"
|
|
@@ -148,15 +120,11 @@
|
|
|
148
120
|
"properties": {
|
|
149
121
|
"package": {
|
|
150
122
|
"type": "string",
|
|
151
|
-
"
|
|
152
|
-
"@rxap/schematic-angular"
|
|
153
|
-
]
|
|
123
|
+
"const": "@rxap/schematic-angular"
|
|
154
124
|
},
|
|
155
125
|
"name": {
|
|
156
126
|
"type": "string",
|
|
157
|
-
"
|
|
158
|
-
"navigation-table-header-button"
|
|
159
|
-
]
|
|
127
|
+
"const": "navigation-table-header-button"
|
|
160
128
|
},
|
|
161
129
|
"options": {
|
|
162
130
|
"$ref": "#/definitions/navigationTableHeaderButtonSchematic"
|
|
@@ -168,15 +136,11 @@
|
|
|
168
136
|
"properties": {
|
|
169
137
|
"package": {
|
|
170
138
|
"type": "string",
|
|
171
|
-
"
|
|
172
|
-
"@rxap/schematic-angular"
|
|
173
|
-
]
|
|
139
|
+
"const": "@rxap/schematic-angular"
|
|
174
140
|
},
|
|
175
141
|
"name": {
|
|
176
142
|
"type": "string",
|
|
177
|
-
"
|
|
178
|
-
"accordion-component"
|
|
179
|
-
]
|
|
143
|
+
"const": "accordion-component"
|
|
180
144
|
},
|
|
181
145
|
"options": {
|
|
182
146
|
"$ref": "#/definitions/accordionComponentSchematic"
|
|
@@ -188,15 +152,11 @@
|
|
|
188
152
|
"properties": {
|
|
189
153
|
"package": {
|
|
190
154
|
"type": "string",
|
|
191
|
-
"
|
|
192
|
-
"@rxap/schematic-angular"
|
|
193
|
-
]
|
|
155
|
+
"const": "@rxap/schematic-angular"
|
|
194
156
|
},
|
|
195
157
|
"name": {
|
|
196
158
|
"type": "string",
|
|
197
|
-
"
|
|
198
|
-
"accordion-item-component"
|
|
199
|
-
]
|
|
159
|
+
"const": "accordion-item-component"
|
|
200
160
|
},
|
|
201
161
|
"options": {
|
|
202
162
|
"$ref": "#/definitions/accordionItemComponentSchematic"
|
|
@@ -208,15 +168,11 @@
|
|
|
208
168
|
"properties": {
|
|
209
169
|
"package": {
|
|
210
170
|
"type": "string",
|
|
211
|
-
"
|
|
212
|
-
"@rxap/schematic-angular"
|
|
213
|
-
]
|
|
171
|
+
"const": "@rxap/schematic-angular"
|
|
214
172
|
},
|
|
215
173
|
"name": {
|
|
216
174
|
"type": "string",
|
|
217
|
-
"
|
|
218
|
-
"accordion-item-table-component"
|
|
219
|
-
]
|
|
175
|
+
"const": "accordion-item-table-component"
|
|
220
176
|
},
|
|
221
177
|
"options": {
|
|
222
178
|
"$ref": "#/definitions/accordionItemTableComponentSchematic"
|
|
@@ -228,15 +184,11 @@
|
|
|
228
184
|
"properties": {
|
|
229
185
|
"package": {
|
|
230
186
|
"type": "string",
|
|
231
|
-
"
|
|
232
|
-
"@rxap/schematic-angular"
|
|
233
|
-
]
|
|
187
|
+
"const": "@rxap/schematic-angular"
|
|
234
188
|
},
|
|
235
189
|
"name": {
|
|
236
190
|
"type": "string",
|
|
237
|
-
"
|
|
238
|
-
"accordion-item-switch-component"
|
|
239
|
-
]
|
|
191
|
+
"const": "accordion-item-switch-component"
|
|
240
192
|
},
|
|
241
193
|
"options": {
|
|
242
194
|
"$ref": "#/definitions/accordionItemSwitchComponentSchematic"
|
|
@@ -248,15 +200,11 @@
|
|
|
248
200
|
"properties": {
|
|
249
201
|
"package": {
|
|
250
202
|
"type": "string",
|
|
251
|
-
"
|
|
252
|
-
"@rxap/schematic-angular"
|
|
253
|
-
]
|
|
203
|
+
"const": "@rxap/schematic-angular"
|
|
254
204
|
},
|
|
255
205
|
"name": {
|
|
256
206
|
"type": "string",
|
|
257
|
-
"
|
|
258
|
-
"data-grid-component"
|
|
259
|
-
]
|
|
207
|
+
"const": "data-grid-component"
|
|
260
208
|
},
|
|
261
209
|
"options": {
|
|
262
210
|
"$ref": "#/definitions/dataGridComponentSchematic"
|
|
@@ -268,15 +216,11 @@
|
|
|
268
216
|
"properties": {
|
|
269
217
|
"package": {
|
|
270
218
|
"type": "string",
|
|
271
|
-
"
|
|
272
|
-
"@rxap/schematic-angular"
|
|
273
|
-
]
|
|
219
|
+
"const": "@rxap/schematic-angular"
|
|
274
220
|
},
|
|
275
221
|
"name": {
|
|
276
222
|
"type": "string",
|
|
277
|
-
"
|
|
278
|
-
"dialog-component"
|
|
279
|
-
]
|
|
223
|
+
"const": "dialog-component"
|
|
280
224
|
},
|
|
281
225
|
"options": {
|
|
282
226
|
"$ref": "#/definitions/dialogComponentSchematic"
|
|
@@ -288,15 +232,11 @@
|
|
|
288
232
|
"properties": {
|
|
289
233
|
"package": {
|
|
290
234
|
"type": "string",
|
|
291
|
-
"
|
|
292
|
-
"@rxap/schematic-angular"
|
|
293
|
-
]
|
|
235
|
+
"const": "@rxap/schematic-angular"
|
|
294
236
|
},
|
|
295
237
|
"name": {
|
|
296
238
|
"type": "string",
|
|
297
|
-
"
|
|
298
|
-
"input-form-control"
|
|
299
|
-
]
|
|
239
|
+
"const": "input-form-control"
|
|
300
240
|
},
|
|
301
241
|
"options": {
|
|
302
242
|
"$ref": "#/definitions/inputFormControlSchematic"
|
|
@@ -308,15 +248,11 @@
|
|
|
308
248
|
"properties": {
|
|
309
249
|
"package": {
|
|
310
250
|
"type": "string",
|
|
311
|
-
"
|
|
312
|
-
"@rxap/schematic-angular"
|
|
313
|
-
]
|
|
251
|
+
"const": "@rxap/schematic-angular"
|
|
314
252
|
},
|
|
315
253
|
"name": {
|
|
316
254
|
"type": "string",
|
|
317
|
-
"
|
|
318
|
-
"select-form-control"
|
|
319
|
-
]
|
|
255
|
+
"const": "select-form-control"
|
|
320
256
|
},
|
|
321
257
|
"options": {
|
|
322
258
|
"$ref": "#/definitions/selectFormControlSchematic"
|
|
@@ -328,15 +264,11 @@
|
|
|
328
264
|
"properties": {
|
|
329
265
|
"package": {
|
|
330
266
|
"type": "string",
|
|
331
|
-
"
|
|
332
|
-
"@rxap/schematic-angular"
|
|
333
|
-
]
|
|
267
|
+
"const": "@rxap/schematic-angular"
|
|
334
268
|
},
|
|
335
269
|
"name": {
|
|
336
270
|
"type": "string",
|
|
337
|
-
"
|
|
338
|
-
"table-select-form-control"
|
|
339
|
-
]
|
|
271
|
+
"const": "table-select-form-control"
|
|
340
272
|
},
|
|
341
273
|
"options": {
|
|
342
274
|
"$ref": "#/definitions/tableSelectFormControlSchematic"
|
|
@@ -348,15 +280,27 @@
|
|
|
348
280
|
"properties": {
|
|
349
281
|
"package": {
|
|
350
282
|
"type": "string",
|
|
351
|
-
"
|
|
352
|
-
"@rxap/schematic-angular"
|
|
353
|
-
]
|
|
283
|
+
"const": "@rxap/schematic-angular"
|
|
354
284
|
},
|
|
355
285
|
"name": {
|
|
356
286
|
"type": "string",
|
|
357
|
-
"
|
|
358
|
-
|
|
359
|
-
|
|
287
|
+
"const": "autocomplete-table-select-form-control"
|
|
288
|
+
},
|
|
289
|
+
"options": {
|
|
290
|
+
"$ref": "#/definitions/autocompleteTableSelectFormControlSchematic"
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"type": "object",
|
|
296
|
+
"properties": {
|
|
297
|
+
"package": {
|
|
298
|
+
"type": "string",
|
|
299
|
+
"const": "@rxap/schematic-angular"
|
|
300
|
+
},
|
|
301
|
+
"name": {
|
|
302
|
+
"type": "string",
|
|
303
|
+
"const": "form-control"
|
|
360
304
|
},
|
|
361
305
|
"options": {
|
|
362
306
|
"$ref": "#/definitions/formControlSchematic"
|
|
@@ -368,15 +312,43 @@
|
|
|
368
312
|
"properties": {
|
|
369
313
|
"package": {
|
|
370
314
|
"type": "string",
|
|
371
|
-
"
|
|
372
|
-
|
|
373
|
-
|
|
315
|
+
"const": "@rxap/schematic-angular"
|
|
316
|
+
},
|
|
317
|
+
"name": {
|
|
318
|
+
"type": "string",
|
|
319
|
+
"const": "form-group"
|
|
320
|
+
},
|
|
321
|
+
"options": {
|
|
322
|
+
"$ref": "#/definitions/formGroupSchematic"
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"type": "object",
|
|
328
|
+
"properties": {
|
|
329
|
+
"package": {
|
|
330
|
+
"type": "string",
|
|
331
|
+
"const": "@rxap/schematic-angular"
|
|
374
332
|
},
|
|
375
333
|
"name": {
|
|
376
334
|
"type": "string",
|
|
377
|
-
"
|
|
378
|
-
|
|
379
|
-
|
|
335
|
+
"const": "form-array"
|
|
336
|
+
},
|
|
337
|
+
"options": {
|
|
338
|
+
"$ref": "#/definitions/formArraySchematic"
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"type": "object",
|
|
344
|
+
"properties": {
|
|
345
|
+
"package": {
|
|
346
|
+
"type": "string",
|
|
347
|
+
"const": "@rxap/schematic-angular"
|
|
348
|
+
},
|
|
349
|
+
"name": {
|
|
350
|
+
"type": "string",
|
|
351
|
+
"const": "dialog-table-action"
|
|
380
352
|
},
|
|
381
353
|
"options": {
|
|
382
354
|
"$ref": "#/definitions/dialogTableActionSchematic"
|
|
@@ -388,15 +360,11 @@
|
|
|
388
360
|
"properties": {
|
|
389
361
|
"package": {
|
|
390
362
|
"type": "string",
|
|
391
|
-
"
|
|
392
|
-
"@rxap/schematic-angular"
|
|
393
|
-
]
|
|
363
|
+
"const": "@rxap/schematic-angular"
|
|
394
364
|
},
|
|
395
365
|
"name": {
|
|
396
366
|
"type": "string",
|
|
397
|
-
"
|
|
398
|
-
"form-table-action"
|
|
399
|
-
]
|
|
367
|
+
"const": "form-table-action"
|
|
400
368
|
},
|
|
401
369
|
"options": {
|
|
402
370
|
"$ref": "#/definitions/formTableActionSchematic"
|
|
@@ -408,15 +376,11 @@
|
|
|
408
376
|
"properties": {
|
|
409
377
|
"package": {
|
|
410
378
|
"type": "string",
|
|
411
|
-
"
|
|
412
|
-
"@rxap/schematic-angular"
|
|
413
|
-
]
|
|
379
|
+
"const": "@rxap/schematic-angular"
|
|
414
380
|
},
|
|
415
381
|
"name": {
|
|
416
382
|
"type": "string",
|
|
417
|
-
"
|
|
418
|
-
"navigation-table-action"
|
|
419
|
-
]
|
|
383
|
+
"const": "navigation-table-action"
|
|
420
384
|
},
|
|
421
385
|
"options": {
|
|
422
386
|
"$ref": "#/definitions/navigationTableActionSchematic"
|
|
@@ -428,15 +392,11 @@
|
|
|
428
392
|
"properties": {
|
|
429
393
|
"package": {
|
|
430
394
|
"type": "string",
|
|
431
|
-
"
|
|
432
|
-
"@rxap/schematic-angular"
|
|
433
|
-
]
|
|
395
|
+
"const": "@rxap/schematic-angular"
|
|
434
396
|
},
|
|
435
397
|
"name": {
|
|
436
398
|
"type": "string",
|
|
437
|
-
"
|
|
438
|
-
"operation-table-action"
|
|
439
|
-
]
|
|
399
|
+
"const": "operation-table-action"
|
|
440
400
|
},
|
|
441
401
|
"options": {
|
|
442
402
|
"$ref": "#/definitions/operationTableActionSchematic"
|
|
@@ -448,15 +408,11 @@
|
|
|
448
408
|
"properties": {
|
|
449
409
|
"package": {
|
|
450
410
|
"type": "string",
|
|
451
|
-
"
|
|
452
|
-
"@rxap/schematic-angular"
|
|
453
|
-
]
|
|
411
|
+
"const": "@rxap/schematic-angular"
|
|
454
412
|
},
|
|
455
413
|
"name": {
|
|
456
414
|
"type": "string",
|
|
457
|
-
"
|
|
458
|
-
"open-api-table-action"
|
|
459
|
-
]
|
|
415
|
+
"const": "open-api-table-action"
|
|
460
416
|
},
|
|
461
417
|
"options": {
|
|
462
418
|
"$ref": "#/definitions/openApiTableActionSchematic"
|
|
@@ -468,15 +424,11 @@
|
|
|
468
424
|
"properties": {
|
|
469
425
|
"package": {
|
|
470
426
|
"type": "string",
|
|
471
|
-
"
|
|
472
|
-
"@rxap/schematic-angular"
|
|
473
|
-
]
|
|
427
|
+
"const": "@rxap/schematic-angular"
|
|
474
428
|
},
|
|
475
429
|
"name": {
|
|
476
430
|
"type": "string",
|
|
477
|
-
"
|
|
478
|
-
"tree-component"
|
|
479
|
-
]
|
|
431
|
+
"const": "tree-component"
|
|
480
432
|
},
|
|
481
433
|
"options": {
|
|
482
434
|
"$ref": "#/definitions/treeComponentSchematic"
|
|
@@ -488,15 +440,11 @@
|
|
|
488
440
|
"properties": {
|
|
489
441
|
"package": {
|
|
490
442
|
"type": "string",
|
|
491
|
-
"
|
|
492
|
-
"@rxap/schematic-angular"
|
|
493
|
-
]
|
|
443
|
+
"const": "@rxap/schematic-angular"
|
|
494
444
|
},
|
|
495
445
|
"name": {
|
|
496
446
|
"type": "string",
|
|
497
|
-
"
|
|
498
|
-
"accordion-item-data-grid-component"
|
|
499
|
-
]
|
|
447
|
+
"const": "accordion-item-data-grid-component"
|
|
500
448
|
},
|
|
501
449
|
"options": {
|
|
502
450
|
"$ref": "#/definitions/accordionItemDataGridComponentSchematic"
|
|
@@ -508,15 +456,11 @@
|
|
|
508
456
|
"properties": {
|
|
509
457
|
"package": {
|
|
510
458
|
"type": "string",
|
|
511
|
-
"
|
|
512
|
-
"@rxap/schematic-angular"
|
|
513
|
-
]
|
|
459
|
+
"const": "@rxap/schematic-angular"
|
|
514
460
|
},
|
|
515
461
|
"name": {
|
|
516
462
|
"type": "string",
|
|
517
|
-
"
|
|
518
|
-
"accordion-item-tree-table-component"
|
|
519
|
-
]
|
|
463
|
+
"const": "accordion-item-tree-table-component"
|
|
520
464
|
},
|
|
521
465
|
"options": {
|
|
522
466
|
"$ref": "#/definitions/accordionItemTreeTableComponentSchematic"
|
|
@@ -576,9 +520,18 @@
|
|
|
576
520
|
"tableSelectFormControlSchematic": {
|
|
577
521
|
"$ref": "schematics/form/control/table-select-form-control/template.schema.json"
|
|
578
522
|
},
|
|
523
|
+
"autocompleteTableSelectFormControlSchematic": {
|
|
524
|
+
"$ref": "schematics/form/control/autocomplete-table-select-form-control/template.schema.json"
|
|
525
|
+
},
|
|
579
526
|
"formControlSchematic": {
|
|
580
527
|
"$ref": "schematics/form/form-control/template.schema.json"
|
|
581
528
|
},
|
|
529
|
+
"formGroupSchematic": {
|
|
530
|
+
"$ref": "schematics/form/form-group/template.schema.json"
|
|
531
|
+
},
|
|
532
|
+
"formArraySchematic": {
|
|
533
|
+
"$ref": "schematics/form/form-array/template.schema.json"
|
|
534
|
+
},
|
|
582
535
|
"dialogTableActionSchematic": {
|
|
583
536
|
"$ref": "schematics/table/action/dialog-table-action/template.schema.json"
|
|
584
537
|
},
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "abstract-control",
|
|
4
|
+
"allOf": [
|
|
5
|
+
{
|
|
6
|
+
"$ref": "#/definitions/property"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"name": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "The name of the control"
|
|
14
|
+
},
|
|
15
|
+
"isArray": {
|
|
16
|
+
"type": "boolean",
|
|
17
|
+
"description": "Whether the control value is an array",
|
|
18
|
+
"default": false
|
|
19
|
+
},
|
|
20
|
+
"state": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "The initial state of the control"
|
|
23
|
+
},
|
|
24
|
+
"isRequired": {
|
|
25
|
+
"type": "boolean",
|
|
26
|
+
"description": "Whether the control value is required",
|
|
27
|
+
"default": false
|
|
28
|
+
},
|
|
29
|
+
"isReadonly": {
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"description": "Whether the control value is readonly",
|
|
32
|
+
"default": false
|
|
33
|
+
},
|
|
34
|
+
"isDisabled": {
|
|
35
|
+
"type": "boolean",
|
|
36
|
+
"description": "Whether the control value is disabled",
|
|
37
|
+
"default": false
|
|
38
|
+
},
|
|
39
|
+
"validatorList": {
|
|
40
|
+
"type": "array",
|
|
41
|
+
"items": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"kind": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "The kind of the control",
|
|
48
|
+
"default": "default"
|
|
49
|
+
},
|
|
50
|
+
"importList": {
|
|
51
|
+
"type": "array",
|
|
52
|
+
"items": {
|
|
53
|
+
"$ref": "#/definitions/type"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"template": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "The template of the control"
|
|
59
|
+
},
|
|
60
|
+
"role": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "The role of the control",
|
|
63
|
+
"enum": ["control", "group", "array"],
|
|
64
|
+
"default": "control"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"additionalProperties": true
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"definitions": {
|
|
71
|
+
"type": {
|
|
72
|
+
"$ref": "./type.schema.json"
|
|
73
|
+
},
|
|
74
|
+
"property": {
|
|
75
|
+
"$ref": "./property.schema.json"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|