@rxap/schematic-angular 16.2.0-dev.6 → 16.2.0-dev.7
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 +25 -0
- package/README.md +1 -1
- package/package.json +4 -2
- package/src/lib/accordion-header.d.ts +5 -0
- package/src/lib/accordion-header.js +8 -2
- package/src/lib/accordion-header.js.map +1 -1
- package/src/lib/accordion-item.d.ts +17 -16
- package/src/lib/accordion-item.js +44 -32
- package/src/lib/accordion-item.js.map +1 -1
- package/src/lib/accordion-itme-kinds.d.ts +8 -0
- package/src/lib/accordion-itme-kinds.js +16 -0
- package/src/lib/accordion-itme-kinds.js.map +1 -0
- package/src/lib/coerce-accordion-component.js +2 -2
- package/src/lib/coerce-accordion-component.js.map +1 -1
- package/src/lib/coerce-form-component.js +5 -2
- package/src/lib/coerce-form-component.js.map +1 -1
- package/src/lib/coerce-minimum-table-component.js +6 -3
- package/src/lib/coerce-minimum-table-component.js.map +1 -1
- package/src/lib/coerce-tree-table-component.js +2 -0
- package/src/lib/coerce-tree-table-component.js.map +1 -1
- package/src/lib/data-grid-item.d.ts +4 -7
- package/src/lib/data-grid-item.js.map +1 -1
- package/src/lib/data-grid-options.d.ts +2 -0
- package/src/lib/data-grid-options.js +7 -3
- package/src/lib/data-grid-options.js.map +1 -1
- package/src/lib/form/generate-form-template.d.ts +5 -0
- package/src/lib/form/generate-form-template.js +12 -0
- package/src/lib/form/generate-form-template.js.map +1 -0
- package/src/lib/form-component-control.d.ts +2 -6
- package/src/lib/form-component-control.js.map +1 -1
- package/src/lib/form-control.d.ts +125 -0
- package/src/lib/form-control.js +303 -0
- package/src/lib/form-control.js.map +1 -0
- package/src/lib/form-definition-control.d.ts +3 -57
- package/src/lib/form-definition-control.js +18 -144
- package/src/lib/form-definition-control.js.map +1 -1
- package/src/lib/load-handlebars-template.d.ts +3 -0
- package/src/lib/load-handlebars-template.js +24 -0
- package/src/lib/load-handlebars-template.js.map +1 -0
- package/src/lib/minimum-table-component-options.d.ts +1 -1
- package/src/lib/minimum-table-component-options.js +3 -3
- package/src/lib/minimum-table-component-options.js.map +1 -1
- package/src/lib/table-column.d.ts +8 -2
- package/src/lib/table-column.js +32 -15
- package/src/lib/table-column.js.map +1 -1
- package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.hbs +25 -0
- package/src/schematics/accordion/accordion-component/index.js +6 -98
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/template.schema.json +102 -0
- package/src/schematics/accordion/accordion-item-component/index.d.ts +2 -2
- package/src/schematics/accordion/accordion-item-component/index.js +42 -42
- package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-item-component/schema.d.ts +2 -2
- package/src/schematics/accordion/accordion-item-component/template.schema.json +33 -0
- 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 +17 -29
- 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.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +31 -0
- 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 +4 -4
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +84 -0
- 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 +8 -8
- package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/schema.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +46 -0
- 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 +10 -10
- 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.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +46 -0
- package/src/schematics/accordion/templates/accordion-header.hbs +6 -0
- package/src/schematics/accordion/templates/data-grid-accordion-item.hbs +15 -0
- package/src/schematics/accordion/templates/default-accordion-item.hbs +15 -0
- package/src/schematics/accordion/templates/switch-accordion-item.hbs +21 -0
- package/src/schematics/accordion/templates/table-accordion-item.hbs +15 -0
- package/src/schematics/accordion/templates/tree-table-accordion-item.hbs +15 -0
- package/src/schematics/accordion-item.schema.json +35 -0
- package/src/schematics/angular.schema.json +2 -10
- package/src/schematics/backend.schema.json +13 -0
- package/src/schematics/button.schema.json +30 -0
- package/src/schematics/data-grid-component/files/component/__componentName__.component.html.hbs +34 -0
- package/src/schematics/data-grid-component/index.d.ts +0 -1
- package/src/schematics/data-grid-component/index.js +21 -7
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/template.schema.json +23 -0
- package/src/schematics/data-grid-item.schema.json +23 -0
- package/src/schematics/data-grid.schema.json +44 -0
- package/src/schematics/dialog-component/template.schema.json +65 -0
- package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
- package/src/schematics/form/control/input-form-control/index.js +4 -27
- 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 -3
- package/src/schematics/form/control/input-form-control/template.schema.json +23 -0
- package/src/schematics/form/control/select-form-control/index.d.ts +4 -2
- package/src/schematics/form/control/select-form-control/index.js +132 -96
- 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/template.schema.json +23 -0
- package/src/schematics/form/control/table-select-form-control/index.d.ts +4 -6
- package/src/schematics/form/control/table-select-form-control/index.js +80 -68
- 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 -4
- package/src/schematics/form/control/table-select-form-control/template.schema.json +78 -0
- package/src/schematics/form/form-component/files/component/{__componentName__.component.html.template → __componentName__.component.html.hbs} +3 -3
- package/src/schematics/form/form-component/index.js +4 -1
- package/src/schematics/form/form-component/index.js.map +1 -1
- package/src/schematics/form/form-component/template.schema.json +23 -0
- package/src/schematics/form/form-control/index.d.ts +3 -1
- package/src/schematics/form/form-control/index.js +19 -8
- package/src/schematics/form/form-control/index.js.map +1 -1
- package/src/schematics/form/form-control/template.schema.json +37 -0
- package/src/schematics/form/form-definition/index.js +14 -1
- package/src/schematics/form/form-definition/index.js.map +1 -1
- package/src/schematics/form/form-definition/template.schema.json +33 -0
- package/src/schematics/form/templates/checkbox-form-control.hbs +9 -0
- package/src/schematics/form/templates/default-form-control.hbs +2 -0
- package/src/schematics/form/templates/input-form-control.hbs +9 -0
- package/src/schematics/form/templates/mat-form-field.hbs +31 -0
- package/src/schematics/form/templates/slide-toggle-form-control.hbs +8 -0
- package/src/schematics/form/templates/table-select-form-control.hbs +18 -0
- package/src/schematics/form-component.schema.json +39 -0
- package/src/schematics/form-control.schema.json +68 -0
- package/src/schematics/form-definition.schema.json +22 -0
- package/src/schematics/form-field.schema.json +24 -0
- package/src/schematics/header-button.schema.json +42 -0
- package/src/schematics/input-form-control.schema.json +47 -0
- package/src/schematics/minimum-table.schema.json +54 -0
- package/src/schematics/property.schema.json +28 -0
- package/src/schematics/select-form-control.schema.json +53 -0
- package/src/schematics/table/action/dialog-table-action/template.schema.json +61 -0
- package/src/schematics/table/action/form-table-action/template.schema.json +75 -0
- package/src/schematics/table/action/navigation-table-action/template.schema.json +31 -0
- package/src/schematics/table/action/open-api-table-action/template.schema.json +59 -0
- package/src/schematics/table/action/operation-table-action/template.schema.json +17 -0
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +51 -0
- package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +31 -0
- package/src/schematics/table/table-action/template.schema.json +30 -0
- package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +241 -0
- package/src/schematics/table/table-component/index.d.ts +1 -1
- package/src/schematics/table/table-component/index.js +2 -2
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/template.schema.json +26 -0
- package/src/schematics/table/table-header-button/template.schema.json +30 -0
- package/src/schematics/table/templates/boolean-table-column.hbs +10 -0
- package/src/schematics/table/templates/component-table-column.hbs +12 -0
- package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +10 -0
- package/src/schematics/table/templates/date-table-column.hbs +11 -0
- package/src/schematics/table/templates/default-table-column.hbs +8 -0
- package/src/schematics/table/templates/icon-table-column.hbs +10 -0
- package/src/schematics/table/templates/link-table-column.hbs +10 -0
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +249 -0
- package/src/schematics/table/tree-table-component/template.schema.json +26 -0
- package/src/schematics/table-action.schema.json +61 -0
- package/src/schematics/table-column.schema.json +69 -0
- package/src/schematics/table.schema.json +54 -0
- package/src/schematics/tree-component/template.schema.json +31 -0
- package/src/schematics/tree-table.schema.json +40 -0
- package/src/schematics/type.schema.json +35 -0
- package/src/schematics/upstream.schema.json +56 -0
- package/src/lib/accordion-itme-types.d.ts +0 -8
- package/src/lib/accordion-itme-types.js +0 -16
- package/src/lib/accordion-itme-types.js.map +0 -1
- package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.html.template +0 -94
- package/src/schematics/accordion/accordion-component/files/header-component/accordion-header.component.html.template +0 -10
- package/src/schematics/accordion/accordion-component/schema.json +0 -191
- package/src/schematics/accordion/accordion-item-component/schema.json +0 -92
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +0 -133
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +0 -226
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +0 -334
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +0 -334
- package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +0 -42
- package/src/schematics/data-grid-component/files/plain/__componentName__.component.html.template +0 -25
- package/src/schematics/data-grid-component/schema.json +0 -176
- package/src/schematics/dialog-component/schema.json +0 -81
- package/src/schematics/form/control/input-form-control/schema.json +0 -116
- package/src/schematics/form/control/select-form-control/schema.json +0 -102
- package/src/schematics/form/control/table-select-form-control/schema.json +0 -106
- package/src/schematics/form/form-component/schema.json +0 -173
- package/src/schematics/form/form-control/schema.json +0 -92
- package/src/schematics/form/form-definition/schema.json +0 -148
- package/src/schematics/table/action/dialog-table-action/schema.json +0 -148
- package/src/schematics/table/action/form-table-action/schema.json +0 -202
- package/src/schematics/table/action/navigation-table-action/schema.json +0 -95
- package/src/schematics/table/action/open-api-table-action/schema.json +0 -121
- package/src/schematics/table/action/operation-table-action/schema.json +0 -98
- package/src/schematics/table/header-button/form-table-header-button/schema.json +0 -139
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +0 -87
- package/src/schematics/table/table-action/schema.json +0 -94
- package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +0 -299
- package/src/schematics/table/table-component/schema.json +0 -340
- package/src/schematics/table/table-header-button/schema.json +0 -80
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +0 -259
- package/src/schematics/table/tree-table-component/schema.json +0 -316
- package/src/schematics/tree-component/schema.json +0 -86
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "accordion-item-table-component",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"itemName": {
|
|
7
|
-
"alias": "name",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the accordion item",
|
|
10
|
-
"x-prompt": "Which name should the accordion item module have?"
|
|
11
|
-
},
|
|
12
|
-
"project": {
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The target project where the accordion item module should be added.",
|
|
15
|
-
"x-prompt": "To which project should the accordion item module be added?"
|
|
16
|
-
},
|
|
17
|
-
"feature": {
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The feature name where the accordion item module should be added.",
|
|
20
|
-
"x-prompt": "To which feature should the accordion item module be added?"
|
|
21
|
-
},
|
|
22
|
-
"accordionName": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"description": "The name of the accordion module where the item should be added.",
|
|
25
|
-
"x-prompt": "To which accordion module should the accordion item module be added?"
|
|
26
|
-
},
|
|
27
|
-
"shared": {
|
|
28
|
-
"type": "boolean",
|
|
29
|
-
"default": false,
|
|
30
|
-
"description": "Whether the item is based of a shared component"
|
|
31
|
-
},
|
|
32
|
-
"overwrite": {
|
|
33
|
-
"anyOf": [
|
|
34
|
-
{
|
|
35
|
-
"type": "boolean"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"type": "array",
|
|
39
|
-
"items": {
|
|
40
|
-
"type": "string"
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
],
|
|
44
|
-
"description": "Overwrite existing files",
|
|
45
|
-
"default": false
|
|
46
|
-
},
|
|
47
|
-
"switch": {
|
|
48
|
-
"type": "object",
|
|
49
|
-
"properties": {
|
|
50
|
-
"property": {
|
|
51
|
-
"type": "object",
|
|
52
|
-
"properties": {
|
|
53
|
-
"name": {
|
|
54
|
-
"type": "string"
|
|
55
|
-
},
|
|
56
|
-
"type": {
|
|
57
|
-
"oneOf": [
|
|
58
|
-
{
|
|
59
|
-
"type": "string"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"type": "object",
|
|
63
|
-
"properties": {
|
|
64
|
-
"name": {
|
|
65
|
-
"type": "string"
|
|
66
|
-
},
|
|
67
|
-
"isTypeOnly": {
|
|
68
|
-
"type": "boolean"
|
|
69
|
-
},
|
|
70
|
-
"moduleSpecifier": {
|
|
71
|
-
"type": "string"
|
|
72
|
-
},
|
|
73
|
-
"namedImport": {
|
|
74
|
-
"type": "string"
|
|
75
|
-
},
|
|
76
|
-
"namespaceImport": {
|
|
77
|
-
"type": "string"
|
|
78
|
-
},
|
|
79
|
-
"defaultImport": {
|
|
80
|
-
"type": "string"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
"required": [
|
|
84
|
-
"name"
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
]
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
"required": [
|
|
91
|
-
"name"
|
|
92
|
-
]
|
|
93
|
-
},
|
|
94
|
-
"defaultCase": {
|
|
95
|
-
"type": "object",
|
|
96
|
-
"properties": {
|
|
97
|
-
"itemList": {
|
|
98
|
-
"alias": "item",
|
|
99
|
-
"type": "array",
|
|
100
|
-
"items": {
|
|
101
|
-
"oneOf": [
|
|
102
|
-
{
|
|
103
|
-
"type": "string"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"type": "object",
|
|
107
|
-
"properties": {
|
|
108
|
-
"name": {
|
|
109
|
-
"type": "string"
|
|
110
|
-
},
|
|
111
|
-
"type": {
|
|
112
|
-
"type": "string",
|
|
113
|
-
"enum": [
|
|
114
|
-
"panel",
|
|
115
|
-
"table",
|
|
116
|
-
"data-grid",
|
|
117
|
-
"data-grid-collection",
|
|
118
|
-
"tree-table",
|
|
119
|
-
"switch"
|
|
120
|
-
]
|
|
121
|
-
},
|
|
122
|
-
"modifiers": {
|
|
123
|
-
"type": "array",
|
|
124
|
-
"default": [],
|
|
125
|
-
"items": {
|
|
126
|
-
"type": "string"
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
"title": {
|
|
130
|
-
"type": "string"
|
|
131
|
-
},
|
|
132
|
-
"description": {
|
|
133
|
-
"type": "string"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"additionalProperties": true,
|
|
137
|
-
"required": ["name"]
|
|
138
|
-
}
|
|
139
|
-
],
|
|
140
|
-
"description": "The name of the accordion expansion panel"
|
|
141
|
-
},
|
|
142
|
-
"description": "The list of accordion expansion panels"
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"required": ["itemList"]
|
|
146
|
-
},
|
|
147
|
-
"case": {
|
|
148
|
-
"type": "array",
|
|
149
|
-
"items": {
|
|
150
|
-
"type": "object",
|
|
151
|
-
"properties": {
|
|
152
|
-
"test": {
|
|
153
|
-
"anyOf": [
|
|
154
|
-
{
|
|
155
|
-
"type": "string"
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"type": "number"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"type": "boolean"
|
|
162
|
-
}
|
|
163
|
-
]
|
|
164
|
-
},
|
|
165
|
-
"itemList": {
|
|
166
|
-
"alias": "item",
|
|
167
|
-
"type": "array",
|
|
168
|
-
"items": {
|
|
169
|
-
"oneOf": [
|
|
170
|
-
{
|
|
171
|
-
"type": "string"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"type": "object",
|
|
175
|
-
"properties": {
|
|
176
|
-
"name": {
|
|
177
|
-
"type": "string"
|
|
178
|
-
},
|
|
179
|
-
"type": {
|
|
180
|
-
"type": "string",
|
|
181
|
-
"enum": [
|
|
182
|
-
"panel",
|
|
183
|
-
"table",
|
|
184
|
-
"data-grid",
|
|
185
|
-
"data-grid-collection",
|
|
186
|
-
"tree-table",
|
|
187
|
-
"switch"
|
|
188
|
-
]
|
|
189
|
-
},
|
|
190
|
-
"modifiers": {
|
|
191
|
-
"type": "array",
|
|
192
|
-
"default": [],
|
|
193
|
-
"items": {
|
|
194
|
-
"type": "string"
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"title": {
|
|
198
|
-
"type": "string"
|
|
199
|
-
},
|
|
200
|
-
"description": {
|
|
201
|
-
"type": "string"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
"additionalProperties": true,
|
|
205
|
-
"required": ["name"]
|
|
206
|
-
}
|
|
207
|
-
],
|
|
208
|
-
"description": "The name of the accordion expansion panel"
|
|
209
|
-
},
|
|
210
|
-
"description": "The list of accordion expansion panels"
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"required": ["test", "itemList"]
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
"required": ["property", "case"]
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
"required": [
|
|
221
|
-
"itemName",
|
|
222
|
-
"project",
|
|
223
|
-
"feature",
|
|
224
|
-
"accordionName"
|
|
225
|
-
]
|
|
226
|
-
}
|
|
@@ -1,334 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "accordion-item-table-component",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"itemName": {
|
|
7
|
-
"alias": "name",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the accordion item",
|
|
10
|
-
"x-prompt": "Which name should the accordion item module have?"
|
|
11
|
-
},
|
|
12
|
-
"project": {
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The target project where the accordion item module should be added.",
|
|
15
|
-
"x-prompt": "To which project should the accordion item module be added?"
|
|
16
|
-
},
|
|
17
|
-
"feature": {
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The feature name where the accordion item module should be added.",
|
|
20
|
-
"x-prompt": "To which feature should the accordion item module be added?"
|
|
21
|
-
},
|
|
22
|
-
"accordionName": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"description": "The name of the accordion module where the item should be added.",
|
|
25
|
-
"x-prompt": "To which accordion module should the accordion item module be added?"
|
|
26
|
-
},
|
|
27
|
-
"shared": {
|
|
28
|
-
"type": "boolean",
|
|
29
|
-
"default": false,
|
|
30
|
-
"description": "Whether the item is based of a shared component"
|
|
31
|
-
},
|
|
32
|
-
"backend": {
|
|
33
|
-
"type": "string",
|
|
34
|
-
"description": "The backend that should be used to handel data",
|
|
35
|
-
"enum": [
|
|
36
|
-
"none",
|
|
37
|
-
"local",
|
|
38
|
-
"nestjs",
|
|
39
|
-
"open-api"
|
|
40
|
-
],
|
|
41
|
-
"default": "none"
|
|
42
|
-
},
|
|
43
|
-
"modifiers": {
|
|
44
|
-
"alias": "modifier",
|
|
45
|
-
"type": "array",
|
|
46
|
-
"items": {
|
|
47
|
-
"type": "string",
|
|
48
|
-
"enum": [
|
|
49
|
-
"navigation-back-header",
|
|
50
|
-
"without-title"
|
|
51
|
-
]
|
|
52
|
-
},
|
|
53
|
-
"description": "The table modifiers"
|
|
54
|
-
},
|
|
55
|
-
"table": {
|
|
56
|
-
"type": "object",
|
|
57
|
-
"properties": {
|
|
58
|
-
"tableMethod": {
|
|
59
|
-
"type": "object",
|
|
60
|
-
"properties": {
|
|
61
|
-
"name": {
|
|
62
|
-
"type": "string",
|
|
63
|
-
"description": "The name of the open api adapter class"
|
|
64
|
-
},
|
|
65
|
-
"moduleSpecifier": {
|
|
66
|
-
"type": "string",
|
|
67
|
-
"description": "The import path for the open api adapter class"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"required": [
|
|
71
|
-
"name",
|
|
72
|
-
"moduleSpecifier"
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
"modifiers": {
|
|
76
|
-
"alias": "modifier",
|
|
77
|
-
"type": "array",
|
|
78
|
-
"items": {
|
|
79
|
-
"type": "string",
|
|
80
|
-
"enum": [
|
|
81
|
-
"navigation-back-header",
|
|
82
|
-
"without-title"
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
"description": "The table modifiers"
|
|
86
|
-
},
|
|
87
|
-
"headerButton": {
|
|
88
|
-
"oneOf": [
|
|
89
|
-
{
|
|
90
|
-
"type": "string"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"type": "object",
|
|
94
|
-
"properties": {
|
|
95
|
-
"role": {
|
|
96
|
-
"type": "string"
|
|
97
|
-
},
|
|
98
|
-
"permission": {
|
|
99
|
-
"type": "string"
|
|
100
|
-
},
|
|
101
|
-
"icon": {
|
|
102
|
-
"type": "string"
|
|
103
|
-
},
|
|
104
|
-
"svgIcon": {
|
|
105
|
-
"type": "string"
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
],
|
|
110
|
-
"description": "The header button configuration"
|
|
111
|
-
},
|
|
112
|
-
"columnList": {
|
|
113
|
-
"alias": "column",
|
|
114
|
-
"type": "array",
|
|
115
|
-
"items": {
|
|
116
|
-
"oneOf": [
|
|
117
|
-
{
|
|
118
|
-
"type": "string"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"type": "object",
|
|
122
|
-
"properties": {
|
|
123
|
-
"name": {
|
|
124
|
-
"type": "string"
|
|
125
|
-
},
|
|
126
|
-
"type": {
|
|
127
|
-
"oneOf": [
|
|
128
|
-
{
|
|
129
|
-
"type": "string"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"type": "object",
|
|
133
|
-
"properties": {
|
|
134
|
-
"name": {
|
|
135
|
-
"type": "string"
|
|
136
|
-
},
|
|
137
|
-
"isTypeOnly": {
|
|
138
|
-
"type": "boolean"
|
|
139
|
-
},
|
|
140
|
-
"moduleSpecifier": {
|
|
141
|
-
"type": "string"
|
|
142
|
-
},
|
|
143
|
-
"namedImport": {
|
|
144
|
-
"type": "string"
|
|
145
|
-
},
|
|
146
|
-
"namespaceImport": {
|
|
147
|
-
"type": "string"
|
|
148
|
-
},
|
|
149
|
-
"defaultImport": {
|
|
150
|
-
"type": "string"
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
"required": [
|
|
154
|
-
"name"
|
|
155
|
-
]
|
|
156
|
-
}
|
|
157
|
-
]
|
|
158
|
-
},
|
|
159
|
-
"role": {
|
|
160
|
-
"type": "string"
|
|
161
|
-
},
|
|
162
|
-
"modifiers": {
|
|
163
|
-
"type": "array",
|
|
164
|
-
"items": {
|
|
165
|
-
"type": "string"
|
|
166
|
-
}
|
|
167
|
-
},
|
|
168
|
-
"template": {
|
|
169
|
-
"type": "string"
|
|
170
|
-
},
|
|
171
|
-
"pipeList": {
|
|
172
|
-
"type": "array",
|
|
173
|
-
"items": {
|
|
174
|
-
"oneOf": [
|
|
175
|
-
{
|
|
176
|
-
"type": "string"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"type": "object",
|
|
180
|
-
"properties": {
|
|
181
|
-
"name": {
|
|
182
|
-
"type": "string"
|
|
183
|
-
},
|
|
184
|
-
"namedImport": {
|
|
185
|
-
"type": "string"
|
|
186
|
-
},
|
|
187
|
-
"moduleSpecifier": {
|
|
188
|
-
"type": "string"
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
|
-
"required": [
|
|
192
|
-
"name",
|
|
193
|
-
"namedImport",
|
|
194
|
-
"moduleSpecifier"
|
|
195
|
-
]
|
|
196
|
-
}
|
|
197
|
-
]
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"hasFilter": {
|
|
201
|
-
"type": "boolean"
|
|
202
|
-
},
|
|
203
|
-
"nowrap": {
|
|
204
|
-
"type": "boolean"
|
|
205
|
-
},
|
|
206
|
-
"cssClass": {
|
|
207
|
-
"type": "string"
|
|
208
|
-
},
|
|
209
|
-
"title": {
|
|
210
|
-
"type": "string"
|
|
211
|
-
},
|
|
212
|
-
"propertyPath": {
|
|
213
|
-
"type": "string"
|
|
214
|
-
},
|
|
215
|
-
"hidden": {
|
|
216
|
-
"type": "boolean"
|
|
217
|
-
},
|
|
218
|
-
"active": {
|
|
219
|
-
"type": "boolean"
|
|
220
|
-
},
|
|
221
|
-
"inactive": {
|
|
222
|
-
"type": "boolean"
|
|
223
|
-
},
|
|
224
|
-
"show": {
|
|
225
|
-
"type": "boolean"
|
|
226
|
-
}
|
|
227
|
-
},
|
|
228
|
-
"required": [
|
|
229
|
-
"name"
|
|
230
|
-
]
|
|
231
|
-
}
|
|
232
|
-
],
|
|
233
|
-
"description": "table column name"
|
|
234
|
-
},
|
|
235
|
-
"description": "List of table column names"
|
|
236
|
-
},
|
|
237
|
-
"actionList": {
|
|
238
|
-
"alias": "action",
|
|
239
|
-
"type": "array",
|
|
240
|
-
"items": {
|
|
241
|
-
"oneOf": [
|
|
242
|
-
{
|
|
243
|
-
"type": "string"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"type": "object",
|
|
247
|
-
"properties": {
|
|
248
|
-
"type": {
|
|
249
|
-
"type": "string"
|
|
250
|
-
},
|
|
251
|
-
"refresh": {
|
|
252
|
-
"type": "boolean"
|
|
253
|
-
},
|
|
254
|
-
"confirm": {
|
|
255
|
-
"type": "boolean"
|
|
256
|
-
},
|
|
257
|
-
"tooltip": {
|
|
258
|
-
"type": "string"
|
|
259
|
-
},
|
|
260
|
-
"errorMessage": {
|
|
261
|
-
"type": "string"
|
|
262
|
-
},
|
|
263
|
-
"successMessage": {
|
|
264
|
-
"type": "string"
|
|
265
|
-
},
|
|
266
|
-
"priority": {
|
|
267
|
-
"type": "number"
|
|
268
|
-
},
|
|
269
|
-
"checkFunction": {
|
|
270
|
-
"type": "string"
|
|
271
|
-
},
|
|
272
|
-
"inHeader": {
|
|
273
|
-
"type": "boolean"
|
|
274
|
-
},
|
|
275
|
-
"role": {
|
|
276
|
-
"type": "string",
|
|
277
|
-
"enum": [
|
|
278
|
-
"form",
|
|
279
|
-
"link",
|
|
280
|
-
"method",
|
|
281
|
-
"custom"
|
|
282
|
-
]
|
|
283
|
-
},
|
|
284
|
-
"icon": {
|
|
285
|
-
"type": "string"
|
|
286
|
-
},
|
|
287
|
-
"svgIcon": {
|
|
288
|
-
"type": "string"
|
|
289
|
-
},
|
|
290
|
-
"permission": {
|
|
291
|
-
"type": "string"
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
"required": [
|
|
295
|
-
"type",
|
|
296
|
-
"role"
|
|
297
|
-
]
|
|
298
|
-
}
|
|
299
|
-
]
|
|
300
|
-
}
|
|
301
|
-
},
|
|
302
|
-
"selectColumn": {
|
|
303
|
-
"type": "boolean",
|
|
304
|
-
"description": "Whether to add a select column to the table"
|
|
305
|
-
},
|
|
306
|
-
"context": {
|
|
307
|
-
"type": "string",
|
|
308
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
},
|
|
312
|
-
"overwrite": {
|
|
313
|
-
"anyOf": [
|
|
314
|
-
{
|
|
315
|
-
"type": "boolean"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"type": "array",
|
|
319
|
-
"items": {
|
|
320
|
-
"type": "string"
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
],
|
|
324
|
-
"description": "Overwrite existing files",
|
|
325
|
-
"default": false
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"required": [
|
|
329
|
-
"itemName",
|
|
330
|
-
"project",
|
|
331
|
-
"feature",
|
|
332
|
-
"accordionName"
|
|
333
|
-
]
|
|
334
|
-
}
|