@rxap/schematic-angular 16.2.0-dev.14 → 16.2.0-dev.15
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 +17 -0
- package/package.json +2 -2
- package/src/lib/accordion-item.d.ts +13 -6
- package/src/lib/accordion-item.js +10 -1
- package/src/lib/accordion-item.js.map +1 -1
- package/src/lib/coerce-accordion-component.js +1 -1
- package/src/lib/coerce-accordion-component.js.map +1 -1
- package/src/lib/coerce-accordion-item-table-component.js +1 -1
- package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
- package/src/lib/data-grid-options.d.ts +3 -0
- package/src/lib/data-grid-options.js +2 -0
- package/src/lib/data-grid-options.js.map +1 -1
- package/src/lib/form-control.d.ts +2 -2
- package/src/lib/form-control.js +14 -43
- package/src/lib/form-control.js.map +1 -1
- package/src/lib/minimum-table-component-options.js +2 -2
- package/src/lib/minimum-table-component-options.js.map +1 -1
- package/src/lib/table-column.d.ts +9 -5
- package/src/lib/table-column.js +37 -59
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +2347 -0
- package/src/schematic-input.schema.json +607 -0
- package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
- package/src/schematics/accordion/accordion-component/index.js +51 -25
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
- package/src/schematics/accordion/accordion-component/schema.json +183 -360
- package/src/schematics/accordion/accordion-component/template.schema.json +22 -25
- package/src/schematics/accordion/accordion-item-component/index.d.ts +7 -2
- package/src/schematics/accordion/accordion-item-component/index.js +70 -49
- package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-item-component/schema.json +167 -336
- package/src/schematics/accordion/accordion-item-component/template.schema.json +8 -15
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +21 -25
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +321 -429
- package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +9 -15
- package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js +14 -6
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +174 -346
- package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +6 -15
- package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/index.js +11 -13
- package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +453 -614
- package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +9 -18
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +37 -61
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +431 -592
- package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +10 -19
- package/src/schematics/accordion-identifier.schema.json +25 -0
- package/src/schematics/accordion-item.schema.json +24 -0
- package/src/schematics/angular.schema.json +11 -3
- package/src/schematics/button.schema.json +1 -1
- package/src/schematics/data-grid-component/index.js +17 -16
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +212 -378
- package/src/schematics/data-grid-component/template.schema.json +6 -15
- package/src/schematics/data-grid-item.schema.json +4 -1
- package/src/schematics/data-grid.schema.json +10 -4
- package/src/schematics/dialog-component/schema.json +72 -158
- package/src/schematics/dialog-component/template.schema.json +3 -6
- package/src/schematics/form/control/input-form-control/schema.json +108 -306
- package/src/schematics/form/control/input-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/select-form-control/schema.json +120 -307
- package/src/schematics/form/control/select-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/table-select-form-control/index.js +1 -1
- 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 +93 -296
- package/src/schematics/form/control/table-select-form-control/template.schema.json +3 -6
- package/src/schematics/form/form-component/schema.json +136 -238
- package/src/schematics/form/form-component/template.schema.json +6 -9
- package/src/schematics/form/form-control/schema.json +68 -176
- package/src/schematics/form/form-control/template.schema.json +6 -9
- package/src/schematics/form/form-definition/schema.json +125 -230
- package/src/schematics/form/form-definition/template.schema.json +6 -9
- package/src/schematics/form-component.schema.json +3 -3
- package/src/schematics/form-definition.schema.json +3 -3
- package/src/schematics/general.schema.json +1 -4
- package/src/schematics/input-form-control.schema.json +11 -3
- package/src/schematics/minimum-table.schema.json +11 -5
- package/src/schematics/pipe.schema.json +1 -1
- package/src/schematics/select-form-control.schema.json +15 -4
- package/src/schematics/table/action/dialog-table-action/schema.json +150 -230
- package/src/schematics/table/action/dialog-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/form-table-action/schema.json +283 -321
- package/src/schematics/table/action/form-table-action/template.schema.json +6 -6
- package/src/schematics/table/action/navigation-table-action/schema.json +150 -230
- package/src/schematics/table/action/navigation-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/open-api-table-action/schema.json +150 -230
- package/src/schematics/table/action/open-api-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/operation-table-action/schema.json +138 -218
- package/src/schematics/table/action/operation-table-action/template.schema.json +3 -6
- package/src/schematics/table/header-button/form-table-header-button/schema.json +217 -261
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +6 -6
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +131 -211
- package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +3 -6
- package/src/schematics/table/table-action/schema.json +56 -139
- package/src/schematics/table/table-action/template.schema.json +6 -6
- package/src/schematics/table/table-component/index.d.ts +1 -1
- package/src/schematics/table/table-component/index.js +2 -0
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +352 -547
- package/src/schematics/table/table-component/template.schema.json +6 -18
- package/src/schematics/table/table-header-button/schema.json +56 -139
- package/src/schematics/table/table-header-button/template.schema.json +6 -6
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -0
- package/src/schematics/table/tree-table-component/index.d.ts +3 -0
- package/src/schematics/table/tree-table-component/index.js +11 -3
- package/src/schematics/table/tree-table-component/index.js.map +1 -1
- package/src/schematics/table/tree-table-component/schema.json +352 -547
- package/src/schematics/table/tree-table-component/template.schema.json +6 -18
- package/src/schematics/table-column.schema.json +4 -1
- package/src/schematics/table.schema.json +4 -1
- package/src/schematics/tree-component/schema.json +70 -62
- package/src/schematics/tree-component/template.schema.json +7 -2
- package/src/schematics/tree-table.schema.json +3 -3
- package/src/schematics/value.schema.json +1 -1
- package/src/template.schema.json +173 -0
|
@@ -3,45 +3,75 @@
|
|
|
3
3
|
"$id": "accordion-item-component-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
+
"$ref": "#/definitions/angular"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"$ref": "#/definitions/accordionItem"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"accordionName": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The name of the accordion module where the item should be added."
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": [
|
|
20
|
+
"accordionName"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"definitions": {
|
|
25
|
+
"accordionItem": {
|
|
26
|
+
"type": "object",
|
|
27
|
+
"properties": {
|
|
28
|
+
"kind": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"enum": [
|
|
31
|
+
"default",
|
|
32
|
+
"table",
|
|
33
|
+
"data-grid",
|
|
34
|
+
"data-grid-collection",
|
|
35
|
+
"tree-table",
|
|
36
|
+
"switch"
|
|
37
|
+
],
|
|
38
|
+
"description": "The type of the accordion item",
|
|
39
|
+
"default": "panel"
|
|
40
|
+
},
|
|
41
|
+
"modifiers": {
|
|
42
|
+
"alias": "modifier",
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"description": "The modifiers to apply to the accordion item type"
|
|
48
|
+
},
|
|
49
|
+
"identifier": {
|
|
50
|
+
"$ref": "#/definitions/accordionIdentifier"
|
|
51
|
+
},
|
|
52
|
+
"title": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"description": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
"upstream": {
|
|
59
|
+
"$ref": "#/definitions/upstream"
|
|
60
|
+
},
|
|
61
|
+
"propertyList": {
|
|
62
|
+
"alias": "property",
|
|
63
|
+
"type": "array",
|
|
64
|
+
"items": {
|
|
65
|
+
"$ref": "#/definitions/property"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"additionalProperties": true
|
|
70
|
+
},
|
|
71
|
+
"angular": {
|
|
6
72
|
"allOf": [
|
|
7
73
|
{
|
|
8
|
-
"
|
|
9
|
-
"properties": {
|
|
10
|
-
"project": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"description": "Project name where the files should be generated"
|
|
13
|
-
},
|
|
14
|
-
"feature": {
|
|
15
|
-
"type": "string",
|
|
16
|
-
"description": "Feature name where the files should be generated"
|
|
17
|
-
},
|
|
18
|
-
"overwrite": {
|
|
19
|
-
"anyOf": [
|
|
20
|
-
{
|
|
21
|
-
"type": "boolean"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"type": "array",
|
|
25
|
-
"items": {
|
|
26
|
-
"type": "string"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"description": "Overwrite existing files",
|
|
31
|
-
"default": false
|
|
32
|
-
},
|
|
33
|
-
"overwriteHtml": {
|
|
34
|
-
"type": "boolean",
|
|
35
|
-
"default": false
|
|
36
|
-
},
|
|
37
|
-
"replace": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"default": false
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"required": [
|
|
43
|
-
"project"
|
|
44
|
-
]
|
|
74
|
+
"$ref": "#/definitions/general"
|
|
45
75
|
},
|
|
46
76
|
{
|
|
47
77
|
"type": "object",
|
|
@@ -64,15 +94,7 @@
|
|
|
64
94
|
"type": "string"
|
|
65
95
|
},
|
|
66
96
|
"backend": {
|
|
67
|
-
"
|
|
68
|
-
"description": "The backend that should be used to handel data",
|
|
69
|
-
"enum": [
|
|
70
|
-
"none",
|
|
71
|
-
"nestjs",
|
|
72
|
-
"open-api",
|
|
73
|
-
"local"
|
|
74
|
-
],
|
|
75
|
-
"default": "none"
|
|
97
|
+
"$ref": "#/definitions/backend"
|
|
76
98
|
},
|
|
77
99
|
"directory": {
|
|
78
100
|
"type": "string",
|
|
@@ -97,54 +119,72 @@
|
|
|
97
119
|
}
|
|
98
120
|
]
|
|
99
121
|
},
|
|
100
|
-
{
|
|
122
|
+
"accordionIdentifier": {
|
|
101
123
|
"type": "object",
|
|
102
124
|
"properties": {
|
|
103
|
-
"
|
|
125
|
+
"property": {
|
|
126
|
+
"$ref": "#/definitions/property"
|
|
127
|
+
},
|
|
128
|
+
"source": {
|
|
104
129
|
"type": "string",
|
|
105
130
|
"enum": [
|
|
106
|
-
"
|
|
107
|
-
"table",
|
|
108
|
-
"data-grid",
|
|
109
|
-
"data-grid-collection",
|
|
110
|
-
"tree-table",
|
|
111
|
-
"switch"
|
|
131
|
+
"route"
|
|
112
132
|
],
|
|
113
|
-
"
|
|
114
|
-
"default": "panel"
|
|
115
|
-
},
|
|
116
|
-
"modifiers": {
|
|
117
|
-
"alias": "modifier",
|
|
118
|
-
"type": "array",
|
|
119
|
-
"items": {
|
|
120
|
-
"type": "string"
|
|
121
|
-
},
|
|
122
|
-
"description": "The modifiers to apply to the accordion item type"
|
|
123
|
-
},
|
|
124
|
-
"title": {
|
|
125
|
-
"type": "string"
|
|
126
|
-
},
|
|
127
|
-
"description": {
|
|
128
|
-
"type": "string"
|
|
133
|
+
"default": "route"
|
|
129
134
|
}
|
|
130
135
|
},
|
|
131
|
-
"
|
|
136
|
+
"required": [
|
|
137
|
+
"property"
|
|
138
|
+
]
|
|
132
139
|
},
|
|
133
|
-
{
|
|
140
|
+
"backend": {
|
|
141
|
+
"type": "string",
|
|
142
|
+
"description": "The backend that should be used to handel data",
|
|
143
|
+
"enum": [
|
|
144
|
+
"none",
|
|
145
|
+
"nestjs",
|
|
146
|
+
"open-api",
|
|
147
|
+
"local"
|
|
148
|
+
],
|
|
149
|
+
"default": "none"
|
|
150
|
+
},
|
|
151
|
+
"general": {
|
|
134
152
|
"type": "object",
|
|
135
153
|
"properties": {
|
|
136
|
-
"
|
|
154
|
+
"project": {
|
|
137
155
|
"type": "string",
|
|
138
|
-
"description": "
|
|
156
|
+
"description": "Project name where the files should be generated"
|
|
157
|
+
},
|
|
158
|
+
"feature": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"description": "Feature name where the files should be generated"
|
|
161
|
+
},
|
|
162
|
+
"overwrite": {
|
|
163
|
+
"anyOf": [
|
|
164
|
+
{
|
|
165
|
+
"type": "boolean"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "array",
|
|
169
|
+
"items": {
|
|
170
|
+
"type": "string"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"description": "Overwrite existing files",
|
|
175
|
+
"default": false
|
|
176
|
+
},
|
|
177
|
+
"overwriteHtml": {
|
|
178
|
+
"type": "boolean",
|
|
179
|
+
"default": false
|
|
180
|
+
},
|
|
181
|
+
"replace": {
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"default": false
|
|
139
184
|
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
]
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"definitions": {
|
|
147
|
-
"type": {
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"property": {
|
|
148
188
|
"oneOf": [
|
|
149
189
|
{
|
|
150
190
|
"type": "string"
|
|
@@ -155,20 +195,11 @@
|
|
|
155
195
|
"name": {
|
|
156
196
|
"type": "string"
|
|
157
197
|
},
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
},
|
|
161
|
-
"moduleSpecifier": {
|
|
162
|
-
"type": "string"
|
|
163
|
-
},
|
|
164
|
-
"namedImport": {
|
|
165
|
-
"type": "string"
|
|
166
|
-
},
|
|
167
|
-
"namespaceImport": {
|
|
168
|
-
"type": "string"
|
|
198
|
+
"type": {
|
|
199
|
+
"$ref": "#/definitions/type"
|
|
169
200
|
},
|
|
170
|
-
"
|
|
171
|
-
"type": "
|
|
201
|
+
"isArray": {
|
|
202
|
+
"type": "boolean"
|
|
172
203
|
}
|
|
173
204
|
},
|
|
174
205
|
"required": [
|
|
@@ -177,7 +208,7 @@
|
|
|
177
208
|
}
|
|
178
209
|
]
|
|
179
210
|
},
|
|
180
|
-
"
|
|
211
|
+
"type": {
|
|
181
212
|
"oneOf": [
|
|
182
213
|
{
|
|
183
214
|
"type": "string"
|
|
@@ -188,286 +219,86 @@
|
|
|
188
219
|
"name": {
|
|
189
220
|
"type": "string"
|
|
190
221
|
},
|
|
191
|
-
"
|
|
192
|
-
"$ref": "#/definitions/type"
|
|
193
|
-
},
|
|
194
|
-
"isArray": {
|
|
222
|
+
"isTypeOnly": {
|
|
195
223
|
"type": "boolean"
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
"required": [
|
|
199
|
-
"name"
|
|
200
|
-
]
|
|
201
|
-
}
|
|
202
|
-
],
|
|
203
|
-
"definitions": {
|
|
204
|
-
"type": {
|
|
205
|
-
"oneOf": [
|
|
206
|
-
{
|
|
224
|
+
},
|
|
225
|
+
"moduleSpecifier": {
|
|
207
226
|
"type": "string"
|
|
208
227
|
},
|
|
209
|
-
{
|
|
210
|
-
"type": "object",
|
|
211
|
-
"properties": {
|
|
212
|
-
"name": {
|
|
213
|
-
"type": "string"
|
|
214
|
-
},
|
|
215
|
-
"isTypeOnly": {
|
|
216
|
-
"type": "boolean"
|
|
217
|
-
},
|
|
218
|
-
"moduleSpecifier": {
|
|
219
|
-
"type": "string"
|
|
220
|
-
},
|
|
221
|
-
"namedImport": {
|
|
222
|
-
"type": "string"
|
|
223
|
-
},
|
|
224
|
-
"namespaceImport": {
|
|
225
|
-
"type": "string"
|
|
226
|
-
},
|
|
227
|
-
"defaultImport": {
|
|
228
|
-
"type": "string"
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"required": [
|
|
232
|
-
"name"
|
|
233
|
-
]
|
|
234
|
-
}
|
|
235
|
-
]
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
"button": {
|
|
240
|
-
"type": "object",
|
|
241
|
-
"properties": {
|
|
242
|
-
"svgIcon": {
|
|
243
|
-
"type": "string"
|
|
244
|
-
},
|
|
245
|
-
"icon": {
|
|
246
|
-
"type": "string"
|
|
247
|
-
},
|
|
248
|
-
"directiveList": {
|
|
249
|
-
"type": "array",
|
|
250
|
-
"items": {
|
|
251
|
-
"$ref": "#/definitions/type"
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
"importList": {
|
|
255
|
-
"type": "array",
|
|
256
|
-
"items": {
|
|
257
|
-
"$ref": "#/definitions/type"
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"definitions": {
|
|
262
|
-
"type": {
|
|
263
|
-
"oneOf": [
|
|
264
|
-
{
|
|
228
|
+
"namedImport": {
|
|
265
229
|
"type": "string"
|
|
266
230
|
},
|
|
267
|
-
{
|
|
268
|
-
"type": "
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
},
|
|
273
|
-
"isTypeOnly": {
|
|
274
|
-
"type": "boolean"
|
|
275
|
-
},
|
|
276
|
-
"moduleSpecifier": {
|
|
277
|
-
"type": "string"
|
|
278
|
-
},
|
|
279
|
-
"namedImport": {
|
|
280
|
-
"type": "string"
|
|
281
|
-
},
|
|
282
|
-
"namespaceImport": {
|
|
283
|
-
"type": "string"
|
|
284
|
-
},
|
|
285
|
-
"defaultImport": {
|
|
286
|
-
"type": "string"
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
"required": [
|
|
290
|
-
"name"
|
|
291
|
-
]
|
|
231
|
+
"namespaceImport": {
|
|
232
|
+
"type": "string"
|
|
233
|
+
},
|
|
234
|
+
"defaultImport": {
|
|
235
|
+
"type": "string"
|
|
292
236
|
}
|
|
237
|
+
},
|
|
238
|
+
"required": [
|
|
239
|
+
"name"
|
|
293
240
|
]
|
|
294
241
|
}
|
|
295
|
-
|
|
242
|
+
]
|
|
296
243
|
},
|
|
297
|
-
"
|
|
244
|
+
"upstream": {
|
|
298
245
|
"oneOf": [
|
|
299
246
|
{
|
|
300
|
-
"type": "
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"type": "object",
|
|
309
|
-
"properties": {
|
|
310
|
-
"argumentList": {
|
|
311
|
-
"type": "array",
|
|
312
|
-
"items": {
|
|
313
|
-
"$ref": "#/definitions/value"
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
},
|
|
317
|
-
"required": [
|
|
318
|
-
"name"
|
|
247
|
+
"type": "object",
|
|
248
|
+
"properties": {
|
|
249
|
+
"kind": {
|
|
250
|
+
"type": "string",
|
|
251
|
+
"enum": [
|
|
252
|
+
"open-api"
|
|
319
253
|
]
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
}
|
|
323
|
-
],
|
|
324
|
-
"definitions": {
|
|
325
|
-
"type": {
|
|
326
|
-
"oneOf": [
|
|
327
|
-
{
|
|
254
|
+
},
|
|
255
|
+
"operationId": {
|
|
328
256
|
"type": "string"
|
|
329
257
|
},
|
|
330
|
-
{
|
|
258
|
+
"scope": {
|
|
259
|
+
"type": "string"
|
|
260
|
+
},
|
|
261
|
+
"mapper": {
|
|
331
262
|
"type": "object",
|
|
332
263
|
"properties": {
|
|
333
|
-
"
|
|
264
|
+
"pageIndex": {
|
|
334
265
|
"type": "string"
|
|
335
266
|
},
|
|
336
|
-
"
|
|
337
|
-
"type": "boolean"
|
|
338
|
-
},
|
|
339
|
-
"moduleSpecifier": {
|
|
267
|
+
"pageSize": {
|
|
340
268
|
"type": "string"
|
|
341
269
|
},
|
|
342
|
-
"
|
|
270
|
+
"sortBy": {
|
|
343
271
|
"type": "string"
|
|
344
272
|
},
|
|
345
|
-
"
|
|
273
|
+
"sortDirection": {
|
|
346
274
|
"type": "string"
|
|
347
275
|
},
|
|
348
|
-
"
|
|
276
|
+
"list": {
|
|
349
277
|
"type": "string"
|
|
350
|
-
}
|
|
351
|
-
},
|
|
352
|
-
"required": [
|
|
353
|
-
"name"
|
|
354
|
-
]
|
|
355
|
-
}
|
|
356
|
-
]
|
|
357
|
-
},
|
|
358
|
-
"value": {
|
|
359
|
-
"oneOf": [
|
|
360
|
-
{
|
|
361
|
-
"type": "string"
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"type": "object",
|
|
365
|
-
"properties": {
|
|
366
|
-
"type": {
|
|
367
|
-
"$ref": "#/definitions/type"
|
|
368
278
|
},
|
|
369
|
-
"
|
|
370
|
-
"type": "string"
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
"required": [
|
|
374
|
-
"value"
|
|
375
|
-
]
|
|
376
|
-
}
|
|
377
|
-
],
|
|
378
|
-
"definitions": {
|
|
379
|
-
"type": {
|
|
380
|
-
"oneOf": [
|
|
381
|
-
{
|
|
279
|
+
"total": {
|
|
382
280
|
"type": "string"
|
|
383
281
|
},
|
|
384
|
-
{
|
|
282
|
+
"filter": {
|
|
385
283
|
"type": "object",
|
|
386
284
|
"properties": {
|
|
387
|
-
"
|
|
388
|
-
"type": "string"
|
|
389
|
-
},
|
|
390
|
-
"isTypeOnly": {
|
|
391
|
-
"type": "boolean"
|
|
392
|
-
},
|
|
393
|
-
"moduleSpecifier": {
|
|
394
|
-
"type": "string"
|
|
395
|
-
},
|
|
396
|
-
"namedImport": {
|
|
397
|
-
"type": "string"
|
|
398
|
-
},
|
|
399
|
-
"namespaceImport": {
|
|
285
|
+
"eq": {
|
|
400
286
|
"type": "string"
|
|
401
287
|
},
|
|
402
|
-
"
|
|
288
|
+
"join": {
|
|
403
289
|
"type": "string"
|
|
404
290
|
}
|
|
405
|
-
}
|
|
406
|
-
"required": [
|
|
407
|
-
"name"
|
|
408
|
-
]
|
|
291
|
+
}
|
|
409
292
|
}
|
|
410
|
-
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
},
|
|
416
|
-
"value": {
|
|
417
|
-
"oneOf": [
|
|
418
|
-
{
|
|
419
|
-
"type": "string"
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
"type": "object",
|
|
423
|
-
"properties": {
|
|
424
|
-
"type": {
|
|
425
|
-
"$ref": "#/definitions/type"
|
|
426
|
-
},
|
|
427
|
-
"value": {
|
|
428
|
-
"type": "string"
|
|
293
|
+
}
|
|
429
294
|
}
|
|
430
295
|
},
|
|
431
296
|
"required": [
|
|
432
|
-
"
|
|
433
|
-
|
|
434
|
-
}
|
|
435
|
-
],
|
|
436
|
-
"definitions": {
|
|
437
|
-
"type": {
|
|
438
|
-
"oneOf": [
|
|
439
|
-
{
|
|
440
|
-
"type": "string"
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"type": "object",
|
|
444
|
-
"properties": {
|
|
445
|
-
"name": {
|
|
446
|
-
"type": "string"
|
|
447
|
-
},
|
|
448
|
-
"isTypeOnly": {
|
|
449
|
-
"type": "boolean"
|
|
450
|
-
},
|
|
451
|
-
"moduleSpecifier": {
|
|
452
|
-
"type": "string"
|
|
453
|
-
},
|
|
454
|
-
"namedImport": {
|
|
455
|
-
"type": "string"
|
|
456
|
-
},
|
|
457
|
-
"namespaceImport": {
|
|
458
|
-
"type": "string"
|
|
459
|
-
},
|
|
460
|
-
"defaultImport": {
|
|
461
|
-
"type": "string"
|
|
462
|
-
}
|
|
463
|
-
},
|
|
464
|
-
"required": [
|
|
465
|
-
"name"
|
|
466
|
-
]
|
|
467
|
-
}
|
|
297
|
+
"kind",
|
|
298
|
+
"operationId"
|
|
468
299
|
]
|
|
469
300
|
}
|
|
470
|
-
|
|
301
|
+
]
|
|
471
302
|
}
|
|
472
303
|
}
|
|
473
304
|
}
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"$id": "accordion-item-component-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"$ref": "
|
|
6
|
+
"$ref": "#/definitions/angular"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
|
-
"$ref": "
|
|
9
|
+
"$ref": "#/definitions/accordionItem"
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"type": "object",
|
|
@@ -19,21 +19,14 @@
|
|
|
19
19
|
"required": ["accordionName"]
|
|
20
20
|
}
|
|
21
21
|
],
|
|
22
|
+
|
|
23
|
+
|
|
22
24
|
"definitions": {
|
|
23
|
-
"
|
|
24
|
-
"$ref": "../../
|
|
25
|
-
},
|
|
26
|
-
"property": {
|
|
27
|
-
"$ref": "../../property.schema.json"
|
|
28
|
-
},
|
|
29
|
-
"button": {
|
|
30
|
-
"$ref": "../../button.schema.json"
|
|
31
|
-
},
|
|
32
|
-
"pipe": {
|
|
33
|
-
"$ref": "../../pipe.schema.json"
|
|
25
|
+
"accordionItem": {
|
|
26
|
+
"$ref": "../../accordion-item.schema.json"
|
|
34
27
|
},
|
|
35
|
-
"
|
|
36
|
-
"$ref": "../../
|
|
28
|
+
"angular": {
|
|
29
|
+
"$ref": "../../angular.schema.json"
|
|
37
30
|
}
|
|
38
31
|
}
|
|
39
32
|
}
|
|
@@ -3,7 +3,7 @@ import { NormalizedDataGridAccordionItem } from '../../../../lib/accordion-item'
|
|
|
3
3
|
import { NormalizedAngularOptions } from '../../../../lib/angular-options';
|
|
4
4
|
import { NormalizedAccordionItemStandaloneComponentOptions } from '../../accordion-item-component';
|
|
5
5
|
import { AccordionItemDataGridComponentOptions } from './schema';
|
|
6
|
-
export interface NormalizedAccordionItemDataGridComponentOptions extends Omit<Readonly<Normalized<AccordionItemDataGridComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'dataGrid' | 'importList'>, Omit<NormalizedDataGridAccordionItem, 'kind'> {
|
|
6
|
+
export interface NormalizedAccordionItemDataGridComponentOptions extends Omit<Readonly<Normalized<AccordionItemDataGridComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'dataGrid' | 'importList' | 'propertyList'>, Omit<NormalizedDataGridAccordionItem, 'kind'> {
|
|
7
7
|
}
|
|
8
8
|
export declare function NormalizeAccordionItemDataGridComponentOptions(options: Readonly<AccordionItemDataGridComponentOptions>): Readonly<NormalizedAccordionItemDataGridComponentOptions>;
|
|
9
9
|
export default function (options: AccordionItemDataGridComponentOptions): () => import("@angular-devkit/schematics").Rule;
|