@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,195 +3,84 @@
|
|
|
3
3
|
"$id": "select-form-control-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
},
|
|
20
|
-
"overwrite": {
|
|
21
|
-
"anyOf": [
|
|
22
|
-
{
|
|
23
|
-
"type": "boolean"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"type": "array",
|
|
27
|
-
"items": {
|
|
28
|
-
"type": "string"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"description": "Overwrite existing files",
|
|
33
|
-
"default": false
|
|
34
|
-
},
|
|
35
|
-
"overwriteHtml": {
|
|
36
|
-
"type": "boolean",
|
|
37
|
-
"default": false
|
|
38
|
-
},
|
|
39
|
-
"replace": {
|
|
40
|
-
"type": "boolean",
|
|
41
|
-
"default": false
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"required": [
|
|
45
|
-
"project"
|
|
46
|
-
]
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"type": "object",
|
|
50
|
-
"properties": {
|
|
51
|
-
"componentName": {
|
|
52
|
-
"type": "string"
|
|
53
|
-
},
|
|
54
|
-
"name": {
|
|
55
|
-
"type": "string"
|
|
56
|
-
},
|
|
57
|
-
"context": {
|
|
58
|
-
"type": "string",
|
|
59
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
60
|
-
},
|
|
61
|
-
"nestModule": {
|
|
62
|
-
"type": "string",
|
|
63
|
-
"description": "The module name for the table nest operations"
|
|
64
|
-
},
|
|
65
|
-
"controllerName": {
|
|
66
|
-
"type": "string"
|
|
67
|
-
},
|
|
68
|
-
"backend": {
|
|
69
|
-
"$ref": "#/allOf/1/allOf/1/properties/backend"
|
|
70
|
-
},
|
|
71
|
-
"directory": {
|
|
72
|
-
"type": "string",
|
|
73
|
-
"description": "A directory name or absolute path where the files should be generated. Relative to the project and feature base path if a feature is defined"
|
|
74
|
-
},
|
|
75
|
-
"shared": {
|
|
76
|
-
"type": "boolean",
|
|
77
|
-
"description": "Whether the generated code is used across the project",
|
|
78
|
-
"default": false
|
|
79
|
-
},
|
|
80
|
-
"scope": {
|
|
81
|
-
"type": "string"
|
|
82
|
-
},
|
|
83
|
-
"prefix": {
|
|
84
|
-
"type": "string"
|
|
85
|
-
},
|
|
86
|
-
"openApi": {
|
|
87
|
-
"type": "object",
|
|
88
|
-
"additionalProperties": true
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
]
|
|
6
|
+
"$ref": "#/definitions/formControl"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"$ref": "#/definitions/selectFormControl"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"definitions": {
|
|
13
|
+
"formControl": {
|
|
14
|
+
"type": "object",
|
|
15
|
+
"properties": {
|
|
16
|
+
"name": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "The name of the control"
|
|
93
19
|
},
|
|
94
|
-
{
|
|
95
|
-
"
|
|
96
|
-
"properties": {
|
|
97
|
-
"name": {
|
|
98
|
-
"type": "string",
|
|
99
|
-
"description": "The name of the control"
|
|
100
|
-
},
|
|
101
|
-
"type": {
|
|
102
|
-
"$ref": "#/definitions/type"
|
|
103
|
-
},
|
|
104
|
-
"isArray": {
|
|
105
|
-
"type": "boolean",
|
|
106
|
-
"description": "Whether the control value is an array",
|
|
107
|
-
"default": false
|
|
108
|
-
},
|
|
109
|
-
"state": {
|
|
110
|
-
"type": "string",
|
|
111
|
-
"description": "The initial state of the control"
|
|
112
|
-
},
|
|
113
|
-
"isRequired": {
|
|
114
|
-
"type": "boolean",
|
|
115
|
-
"description": "Whether the control value is required",
|
|
116
|
-
"default": false
|
|
117
|
-
},
|
|
118
|
-
"isReadonly": {
|
|
119
|
-
"type": "boolean",
|
|
120
|
-
"description": "Whether the control value is readonly",
|
|
121
|
-
"default": false
|
|
122
|
-
},
|
|
123
|
-
"isDisabled": {
|
|
124
|
-
"type": "boolean",
|
|
125
|
-
"description": "Whether the control value is disabled",
|
|
126
|
-
"default": false
|
|
127
|
-
},
|
|
128
|
-
"validatorList": {
|
|
129
|
-
"type": "array",
|
|
130
|
-
"items": {
|
|
131
|
-
"type": "string"
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
"kind": {
|
|
135
|
-
"type": "string",
|
|
136
|
-
"description": "The name of the template",
|
|
137
|
-
"enum": [
|
|
138
|
-
"default",
|
|
139
|
-
"input",
|
|
140
|
-
"select",
|
|
141
|
-
"checkbox",
|
|
142
|
-
"autocomplete-table-select",
|
|
143
|
-
"table-select",
|
|
144
|
-
"textarea",
|
|
145
|
-
"slide-toggle"
|
|
146
|
-
],
|
|
147
|
-
"default": "default"
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"required": [
|
|
151
|
-
"name"
|
|
152
|
-
],
|
|
153
|
-
"additionalProperties": true
|
|
20
|
+
"type": {
|
|
21
|
+
"$ref": "#/definitions/type"
|
|
154
22
|
},
|
|
155
|
-
{
|
|
156
|
-
"type": "
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
23
|
+
"isArray": {
|
|
24
|
+
"type": "boolean",
|
|
25
|
+
"description": "Whether the control value is an array",
|
|
26
|
+
"default": false
|
|
27
|
+
},
|
|
28
|
+
"state": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "The initial state of the control"
|
|
31
|
+
},
|
|
32
|
+
"isRequired": {
|
|
33
|
+
"type": "boolean",
|
|
34
|
+
"description": "Whether the control value is required",
|
|
35
|
+
"default": false
|
|
36
|
+
},
|
|
37
|
+
"isReadonly": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"description": "Whether the control value is readonly",
|
|
40
|
+
"default": false
|
|
41
|
+
},
|
|
42
|
+
"isDisabled": {
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"description": "Whether the control value is disabled",
|
|
45
|
+
"default": false
|
|
46
|
+
},
|
|
47
|
+
"validatorList": {
|
|
48
|
+
"type": "array",
|
|
49
|
+
"items": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"kind": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "The name of the template",
|
|
56
|
+
"enum": [
|
|
57
|
+
"default",
|
|
58
|
+
"input",
|
|
59
|
+
"select",
|
|
60
|
+
"checkbox",
|
|
61
|
+
"autocomplete-table-select",
|
|
62
|
+
"table-select",
|
|
63
|
+
"textarea",
|
|
64
|
+
"slide-toggle"
|
|
65
|
+
],
|
|
66
|
+
"default": "default"
|
|
168
67
|
}
|
|
169
|
-
|
|
68
|
+
},
|
|
69
|
+
"required": [
|
|
70
|
+
"name"
|
|
71
|
+
],
|
|
72
|
+
"additionalProperties": true
|
|
170
73
|
},
|
|
171
|
-
{
|
|
74
|
+
"selectFormControl": {
|
|
172
75
|
"allOf": [
|
|
173
76
|
{
|
|
174
|
-
"$ref": "#/
|
|
77
|
+
"$ref": "#/definitions/formControl"
|
|
175
78
|
},
|
|
176
79
|
{
|
|
177
80
|
"type": "object",
|
|
178
81
|
"properties": {
|
|
179
82
|
"formField": {
|
|
180
|
-
"
|
|
181
|
-
"properties": {
|
|
182
|
-
"label": {
|
|
183
|
-
"type": "string"
|
|
184
|
-
},
|
|
185
|
-
"prefixButton": {
|
|
186
|
-
"$ref": "#/definitions/button"
|
|
187
|
-
},
|
|
188
|
-
"suffixButton": {
|
|
189
|
-
"$ref": "#/definitions/button"
|
|
190
|
-
},
|
|
191
|
-
"hasClearButton": {
|
|
192
|
-
"type": "boolean"
|
|
193
|
-
}
|
|
194
|
-
}
|
|
83
|
+
"$ref": "#/definitions/formField"
|
|
195
84
|
},
|
|
196
85
|
"options": {
|
|
197
86
|
"type": "array",
|
|
@@ -222,15 +111,7 @@
|
|
|
222
111
|
}
|
|
223
112
|
},
|
|
224
113
|
"backend": {
|
|
225
|
-
"
|
|
226
|
-
"description": "The backend that should be used to handel data",
|
|
227
|
-
"enum": [
|
|
228
|
-
"none",
|
|
229
|
-
"nestjs",
|
|
230
|
-
"open-api",
|
|
231
|
-
"local"
|
|
232
|
-
],
|
|
233
|
-
"default": "none"
|
|
114
|
+
"$ref": "#/definitions/backend"
|
|
234
115
|
},
|
|
235
116
|
"multiple": {
|
|
236
117
|
"alias": "multi",
|
|
@@ -240,9 +121,58 @@
|
|
|
240
121
|
}
|
|
241
122
|
}
|
|
242
123
|
]
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
|
|
124
|
+
},
|
|
125
|
+
"backend": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "The backend that should be used to handel data",
|
|
128
|
+
"enum": [
|
|
129
|
+
"none",
|
|
130
|
+
"nestjs",
|
|
131
|
+
"open-api",
|
|
132
|
+
"local"
|
|
133
|
+
],
|
|
134
|
+
"default": "none"
|
|
135
|
+
},
|
|
136
|
+
"button": {
|
|
137
|
+
"type": "object",
|
|
138
|
+
"properties": {
|
|
139
|
+
"svgIcon": {
|
|
140
|
+
"type": "string"
|
|
141
|
+
},
|
|
142
|
+
"icon": {
|
|
143
|
+
"type": "string"
|
|
144
|
+
},
|
|
145
|
+
"directiveList": {
|
|
146
|
+
"type": "array",
|
|
147
|
+
"items": {
|
|
148
|
+
"$ref": "#/definitions/type"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"importList": {
|
|
152
|
+
"type": "array",
|
|
153
|
+
"items": {
|
|
154
|
+
"$ref": "#/definitions/type"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"formField": {
|
|
160
|
+
"type": "object",
|
|
161
|
+
"properties": {
|
|
162
|
+
"label": {
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"prefixButton": {
|
|
166
|
+
"$ref": "#/definitions/button"
|
|
167
|
+
},
|
|
168
|
+
"suffixButton": {
|
|
169
|
+
"$ref": "#/definitions/button"
|
|
170
|
+
},
|
|
171
|
+
"hasClearButton": {
|
|
172
|
+
"type": "boolean"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
246
176
|
"type": {
|
|
247
177
|
"oneOf": [
|
|
248
178
|
{
|
|
@@ -275,123 +205,6 @@
|
|
|
275
205
|
]
|
|
276
206
|
}
|
|
277
207
|
]
|
|
278
|
-
},
|
|
279
|
-
"property": {
|
|
280
|
-
"oneOf": [
|
|
281
|
-
{
|
|
282
|
-
"type": "string"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"type": "object",
|
|
286
|
-
"properties": {
|
|
287
|
-
"name": {
|
|
288
|
-
"type": "string"
|
|
289
|
-
},
|
|
290
|
-
"type": {
|
|
291
|
-
"$ref": "#/definitions/type"
|
|
292
|
-
},
|
|
293
|
-
"isArray": {
|
|
294
|
-
"type": "boolean"
|
|
295
|
-
}
|
|
296
|
-
},
|
|
297
|
-
"required": [
|
|
298
|
-
"name"
|
|
299
|
-
]
|
|
300
|
-
}
|
|
301
|
-
],
|
|
302
|
-
"definitions": {
|
|
303
|
-
"type": {
|
|
304
|
-
"oneOf": [
|
|
305
|
-
{
|
|
306
|
-
"type": "string"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"type": "object",
|
|
310
|
-
"properties": {
|
|
311
|
-
"name": {
|
|
312
|
-
"type": "string"
|
|
313
|
-
},
|
|
314
|
-
"isTypeOnly": {
|
|
315
|
-
"type": "boolean"
|
|
316
|
-
},
|
|
317
|
-
"moduleSpecifier": {
|
|
318
|
-
"type": "string"
|
|
319
|
-
},
|
|
320
|
-
"namedImport": {
|
|
321
|
-
"type": "string"
|
|
322
|
-
},
|
|
323
|
-
"namespaceImport": {
|
|
324
|
-
"type": "string"
|
|
325
|
-
},
|
|
326
|
-
"defaultImport": {
|
|
327
|
-
"type": "string"
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
"required": [
|
|
331
|
-
"name"
|
|
332
|
-
]
|
|
333
|
-
}
|
|
334
|
-
]
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
},
|
|
338
|
-
"button": {
|
|
339
|
-
"type": "object",
|
|
340
|
-
"properties": {
|
|
341
|
-
"svgIcon": {
|
|
342
|
-
"type": "string"
|
|
343
|
-
},
|
|
344
|
-
"icon": {
|
|
345
|
-
"type": "string"
|
|
346
|
-
},
|
|
347
|
-
"directiveList": {
|
|
348
|
-
"type": "array",
|
|
349
|
-
"items": {
|
|
350
|
-
"$ref": "#/definitions/type"
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
"importList": {
|
|
354
|
-
"type": "array",
|
|
355
|
-
"items": {
|
|
356
|
-
"$ref": "#/definitions/type"
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
"definitions": {
|
|
361
|
-
"type": {
|
|
362
|
-
"oneOf": [
|
|
363
|
-
{
|
|
364
|
-
"type": "string"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
"type": "object",
|
|
368
|
-
"properties": {
|
|
369
|
-
"name": {
|
|
370
|
-
"type": "string"
|
|
371
|
-
},
|
|
372
|
-
"isTypeOnly": {
|
|
373
|
-
"type": "boolean"
|
|
374
|
-
},
|
|
375
|
-
"moduleSpecifier": {
|
|
376
|
-
"type": "string"
|
|
377
|
-
},
|
|
378
|
-
"namedImport": {
|
|
379
|
-
"type": "string"
|
|
380
|
-
},
|
|
381
|
-
"namespaceImport": {
|
|
382
|
-
"type": "string"
|
|
383
|
-
},
|
|
384
|
-
"defaultImport": {
|
|
385
|
-
"type": "string"
|
|
386
|
-
}
|
|
387
|
-
},
|
|
388
|
-
"required": [
|
|
389
|
-
"name"
|
|
390
|
-
]
|
|
391
|
-
}
|
|
392
|
-
]
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
208
|
}
|
|
396
209
|
}
|
|
397
210
|
}
|
|
@@ -3,21 +3,18 @@
|
|
|
3
3
|
"$id": "select-form-control-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"$ref": "
|
|
6
|
+
"$ref": "#/definitions/formControl"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
|
-
"$ref": "
|
|
9
|
+
"$ref": "#/definitions/selectFormControl"
|
|
10
10
|
}
|
|
11
11
|
],
|
|
12
12
|
"definitions": {
|
|
13
|
-
"
|
|
14
|
-
"$ref": "
|
|
15
|
-
},
|
|
16
|
-
"property": {
|
|
17
|
-
"$ref": "../../../property.schema.json"
|
|
13
|
+
"formControl": {
|
|
14
|
+
"$ref": "../../form-control/template.schema.json"
|
|
18
15
|
},
|
|
19
|
-
"
|
|
20
|
-
"$ref": "../../../
|
|
16
|
+
"selectFormControl": {
|
|
17
|
+
"$ref": "../../../select-form-control.schema.json"
|
|
21
18
|
}
|
|
22
19
|
}
|
|
23
20
|
}
|
|
@@ -79,7 +79,7 @@ function default_1(options) {
|
|
|
79
79
|
propertyList: (0, table_component_1.TableColumnListAndPropertyListToGetPageOperationPropertyList)(columnList, propertyList),
|
|
80
80
|
operationName: optionsOperationName,
|
|
81
81
|
path: optionsOperationPath,
|
|
82
|
-
|
|
82
|
+
dtoClassNameSuffix: tableResponseDtoName,
|
|
83
83
|
context,
|
|
84
84
|
upstream
|
|
85
85
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/form/control/table-select-form-control/index.ts"],"names":[],"mappings":";;;AAAA,2DAAmD;AACnD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/form/control/table-select-form-control/index.ts"],"names":[],"mappings":"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"}
|