@rxap/schematic-angular 16.2.0-dev.5 → 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 +31 -0
- package/README.md +1 -1
- package/package.json +6 -4
- 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 +7 -3
- package/src/lib/coerce-minimum-table-component.js.map +1 -1
- package/src/lib/coerce-tree-table-component.js +16 -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,121 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "table-action",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"tableName": {
|
|
7
|
-
"alias": "table",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the table action"
|
|
10
|
-
},
|
|
11
|
-
"type": {
|
|
12
|
-
"alias": "actionType",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The table action type string",
|
|
15
|
-
"x-prompt": "Enter the table action type string?"
|
|
16
|
-
},
|
|
17
|
-
"project": {
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The target project where the table action should be added."
|
|
20
|
-
},
|
|
21
|
-
"feature": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"description": "The feature name where the table action should be added.",
|
|
24
|
-
"x-prompt": "To which feature should the table action be added?"
|
|
25
|
-
},
|
|
26
|
-
"backend": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"description": "The backend that should be used to handel data",
|
|
29
|
-
"enum": [
|
|
30
|
-
"none",
|
|
31
|
-
"local",
|
|
32
|
-
"nestjs",
|
|
33
|
-
"open-api"
|
|
34
|
-
],
|
|
35
|
-
"default": "none"
|
|
36
|
-
},
|
|
37
|
-
"shared": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"description": "Whether the table action is shared across applications",
|
|
40
|
-
"default": false
|
|
41
|
-
},
|
|
42
|
-
"refresh": {
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Whether the table action should refresh the table after execution",
|
|
45
|
-
"default": false
|
|
46
|
-
},
|
|
47
|
-
"confirm": {
|
|
48
|
-
"type": "boolean",
|
|
49
|
-
"description": "Whether the table action should confirm before execution",
|
|
50
|
-
"default": false
|
|
51
|
-
},
|
|
52
|
-
"tooltip": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"description": "The tooltip for the table action"
|
|
55
|
-
},
|
|
56
|
-
"errorMessage": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"description": "The error message for the table action"
|
|
59
|
-
},
|
|
60
|
-
"successMessage": {
|
|
61
|
-
"type": "string",
|
|
62
|
-
"description": "The success message for the table action"
|
|
63
|
-
},
|
|
64
|
-
"checkFunction": {
|
|
65
|
-
"type": "string",
|
|
66
|
-
"description": "The check function for the table action"
|
|
67
|
-
},
|
|
68
|
-
"priority": {
|
|
69
|
-
"type": "number",
|
|
70
|
-
"description": "The priority of the table action"
|
|
71
|
-
},
|
|
72
|
-
"directory": {
|
|
73
|
-
"type": "string",
|
|
74
|
-
"description": "A directory name or absolute path for the table action. relative to the feature base path"
|
|
75
|
-
},
|
|
76
|
-
"operationId": {
|
|
77
|
-
"type": "string",
|
|
78
|
-
"description": "The open api operationId for the table action"
|
|
79
|
-
},
|
|
80
|
-
"scope": {
|
|
81
|
-
"type": "string",
|
|
82
|
-
"description": "The scope of package for the openapi classes"
|
|
83
|
-
},
|
|
84
|
-
"body": {
|
|
85
|
-
"oneOf": [
|
|
86
|
-
{
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"description": "Pass the full row as body for the operation request"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"type": "object",
|
|
92
|
-
"description": "Mapping of table columns to body properties - [request property]: [table column]",
|
|
93
|
-
"additionalProperties": true
|
|
94
|
-
}
|
|
95
|
-
]
|
|
96
|
-
},
|
|
97
|
-
"parameters": {
|
|
98
|
-
"oneOf": [
|
|
99
|
-
{
|
|
100
|
-
"type": "boolean",
|
|
101
|
-
"description": "Pass the full row as parameters for the operation request"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"type": "object",
|
|
105
|
-
"description": "Mapping of table columns to parameters properties - [request property]: [table column]",
|
|
106
|
-
"additionalProperties": true
|
|
107
|
-
}
|
|
108
|
-
]
|
|
109
|
-
},
|
|
110
|
-
"options": {
|
|
111
|
-
"type": "object",
|
|
112
|
-
"additionalProperties": true
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"required": [
|
|
116
|
-
"type",
|
|
117
|
-
"project",
|
|
118
|
-
"feature",
|
|
119
|
-
"operationId"
|
|
120
|
-
]
|
|
121
|
-
}
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "operation-table-action",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"tableName": {
|
|
7
|
-
"alias": "table",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the table action"
|
|
10
|
-
},
|
|
11
|
-
"type": {
|
|
12
|
-
"alias": "actionType",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The table action type string",
|
|
15
|
-
"x-prompt": "Enter the table action type string?"
|
|
16
|
-
},
|
|
17
|
-
"project": {
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The target project where the table action should be added."
|
|
20
|
-
},
|
|
21
|
-
"feature": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"description": "The feature name where the table action should be added.",
|
|
24
|
-
"x-prompt": "To which feature should the table action be added?"
|
|
25
|
-
},
|
|
26
|
-
"backend": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"description": "The backend that should be used to handel data",
|
|
29
|
-
"enum": [
|
|
30
|
-
"none",
|
|
31
|
-
"local",
|
|
32
|
-
"nestjs",
|
|
33
|
-
"open-api"
|
|
34
|
-
],
|
|
35
|
-
"default": "none"
|
|
36
|
-
},
|
|
37
|
-
"shared": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"description": "Whether the table action is shared across applications",
|
|
40
|
-
"default": false
|
|
41
|
-
},
|
|
42
|
-
"refresh": {
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Whether the table action should refresh the table after execution",
|
|
45
|
-
"default": false
|
|
46
|
-
},
|
|
47
|
-
"confirm": {
|
|
48
|
-
"type": "boolean",
|
|
49
|
-
"description": "Whether the table action should confirm before execution",
|
|
50
|
-
"default": false
|
|
51
|
-
},
|
|
52
|
-
"tooltip": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"description": "The tooltip for the table action"
|
|
55
|
-
},
|
|
56
|
-
"errorMessage": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"description": "The error message for the table action"
|
|
59
|
-
},
|
|
60
|
-
"successMessage": {
|
|
61
|
-
"type": "string",
|
|
62
|
-
"description": "The success message for the table action"
|
|
63
|
-
},
|
|
64
|
-
"checkFunction": {
|
|
65
|
-
"type": "string",
|
|
66
|
-
"description": "The check function for the table action"
|
|
67
|
-
},
|
|
68
|
-
"priority": {
|
|
69
|
-
"type": "number",
|
|
70
|
-
"description": "The priority of the table action"
|
|
71
|
-
},
|
|
72
|
-
"directory": {
|
|
73
|
-
"type": "string",
|
|
74
|
-
"description": "A directory name or absolute path for the table action. relative to the feature base path"
|
|
75
|
-
},
|
|
76
|
-
"nestModule": {
|
|
77
|
-
"type": "string",
|
|
78
|
-
"description": "The module name for the table nest operations"
|
|
79
|
-
},
|
|
80
|
-
"controllerName": {
|
|
81
|
-
"type": "string",
|
|
82
|
-
"description": "The controller name for the table nest operations"
|
|
83
|
-
},
|
|
84
|
-
"context": {
|
|
85
|
-
"type": "string",
|
|
86
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
87
|
-
},
|
|
88
|
-
"options": {
|
|
89
|
-
"type": "object",
|
|
90
|
-
"additionalProperties": true
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
"required": [
|
|
94
|
-
"type",
|
|
95
|
-
"project",
|
|
96
|
-
"feature"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "table-action",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"tableName": {
|
|
7
|
-
"alias": "table",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the table action"
|
|
10
|
-
},
|
|
11
|
-
"project": {
|
|
12
|
-
"type": "string",
|
|
13
|
-
"description": "The target project where the table action should be added."
|
|
14
|
-
},
|
|
15
|
-
"feature": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"description": "The feature name where the table action should be added.",
|
|
18
|
-
"x-prompt": "To which feature should the table action be added?"
|
|
19
|
-
},
|
|
20
|
-
"backend": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "The backend that should be used to handel data",
|
|
23
|
-
"enum": [
|
|
24
|
-
"none",
|
|
25
|
-
"local",
|
|
26
|
-
"nestjs",
|
|
27
|
-
"open-api"
|
|
28
|
-
],
|
|
29
|
-
"default": "none"
|
|
30
|
-
},
|
|
31
|
-
"shared": {
|
|
32
|
-
"type": "boolean",
|
|
33
|
-
"description": "Whether the table action is shared across applications",
|
|
34
|
-
"default": false
|
|
35
|
-
},
|
|
36
|
-
"refresh": {
|
|
37
|
-
"type": "boolean",
|
|
38
|
-
"description": "Whether the table action should refresh the table after execution",
|
|
39
|
-
"default": false
|
|
40
|
-
},
|
|
41
|
-
"confirm": {
|
|
42
|
-
"type": "boolean",
|
|
43
|
-
"description": "Whether the table action should confirm before execution",
|
|
44
|
-
"default": false
|
|
45
|
-
},
|
|
46
|
-
"tooltip": {
|
|
47
|
-
"type": "string",
|
|
48
|
-
"description": "The tooltip for the table action"
|
|
49
|
-
},
|
|
50
|
-
"errorMessage": {
|
|
51
|
-
"type": "string",
|
|
52
|
-
"description": "The error message for the table action"
|
|
53
|
-
},
|
|
54
|
-
"successMessage": {
|
|
55
|
-
"type": "string",
|
|
56
|
-
"description": "The success message for the table action"
|
|
57
|
-
},
|
|
58
|
-
"directory": {
|
|
59
|
-
"type": "string",
|
|
60
|
-
"description": "A directory name or absolute path for the table action. relative to the feature base path"
|
|
61
|
-
},
|
|
62
|
-
"permission": {
|
|
63
|
-
"type": "string"
|
|
64
|
-
},
|
|
65
|
-
"icon": {
|
|
66
|
-
"type": "string"
|
|
67
|
-
},
|
|
68
|
-
"svgIcon": {
|
|
69
|
-
"type": "string"
|
|
70
|
-
},
|
|
71
|
-
"formComponent": {
|
|
72
|
-
"type": "string"
|
|
73
|
-
},
|
|
74
|
-
"customComponent": {
|
|
75
|
-
"type": "boolean",
|
|
76
|
-
"default": false,
|
|
77
|
-
"description": "If true the schematic will not coerce the form component"
|
|
78
|
-
},
|
|
79
|
-
"formOptions": {
|
|
80
|
-
"type": "object",
|
|
81
|
-
"properties": {
|
|
82
|
-
"role": {
|
|
83
|
-
"type": "string",
|
|
84
|
-
"description": "Define the role of the form"
|
|
85
|
-
},
|
|
86
|
-
"window": {
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"description": "Whether the form can be opened in a window"
|
|
89
|
-
},
|
|
90
|
-
"controlList": {
|
|
91
|
-
"alias": "control",
|
|
92
|
-
"type": "array",
|
|
93
|
-
"items": {
|
|
94
|
-
"type": "object",
|
|
95
|
-
"properties": {
|
|
96
|
-
"type": {
|
|
97
|
-
"type": "string"
|
|
98
|
-
},
|
|
99
|
-
"name": {
|
|
100
|
-
"type": "string"
|
|
101
|
-
},
|
|
102
|
-
"state": {
|
|
103
|
-
"type": "string",
|
|
104
|
-
"description": "The initial state of the control"
|
|
105
|
-
},
|
|
106
|
-
"isRequired": {
|
|
107
|
-
"type": "boolean",
|
|
108
|
-
"description": "Whether the control value is required",
|
|
109
|
-
"default": false
|
|
110
|
-
},
|
|
111
|
-
"validatorList": {
|
|
112
|
-
"type": "array",
|
|
113
|
-
"items": {
|
|
114
|
-
"type": "string"
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
"required": [
|
|
119
|
-
"name"
|
|
120
|
-
]
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"additionalProperties": true
|
|
125
|
-
},
|
|
126
|
-
"nestModule": {
|
|
127
|
-
"type": "string",
|
|
128
|
-
"description": "The module name for the table nest operations"
|
|
129
|
-
},
|
|
130
|
-
"context": {
|
|
131
|
-
"type": "string",
|
|
132
|
-
"description": "The context use to generate proper names for class, files, etc"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"required": [
|
|
136
|
-
"project",
|
|
137
|
-
"feature"
|
|
138
|
-
]
|
|
139
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "table-action",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"tableName": {
|
|
7
|
-
"alias": "table",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the table action"
|
|
10
|
-
},
|
|
11
|
-
"project": {
|
|
12
|
-
"type": "string",
|
|
13
|
-
"description": "The target project where the table action should be added."
|
|
14
|
-
},
|
|
15
|
-
"feature": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"description": "The feature name where the table action should be added.",
|
|
18
|
-
"x-prompt": "To which feature should the table action be added?"
|
|
19
|
-
},
|
|
20
|
-
"backend": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "The backend that should be used to handel data",
|
|
23
|
-
"enum": [
|
|
24
|
-
"none",
|
|
25
|
-
"local",
|
|
26
|
-
"nestjs",
|
|
27
|
-
"open-api"
|
|
28
|
-
],
|
|
29
|
-
"default": "none"
|
|
30
|
-
},
|
|
31
|
-
"shared": {
|
|
32
|
-
"type": "boolean",
|
|
33
|
-
"description": "Whether the table action is shared across applications",
|
|
34
|
-
"default": false
|
|
35
|
-
},
|
|
36
|
-
"refresh": {
|
|
37
|
-
"type": "boolean",
|
|
38
|
-
"description": "Whether the table action should refresh the table after execution",
|
|
39
|
-
"default": false
|
|
40
|
-
},
|
|
41
|
-
"confirm": {
|
|
42
|
-
"type": "boolean",
|
|
43
|
-
"description": "Whether the table action should confirm before execution",
|
|
44
|
-
"default": false
|
|
45
|
-
},
|
|
46
|
-
"tooltip": {
|
|
47
|
-
"type": "string",
|
|
48
|
-
"description": "The tooltip for the table action"
|
|
49
|
-
},
|
|
50
|
-
"errorMessage": {
|
|
51
|
-
"type": "string",
|
|
52
|
-
"description": "The error message for the table action"
|
|
53
|
-
},
|
|
54
|
-
"successMessage": {
|
|
55
|
-
"type": "string",
|
|
56
|
-
"description": "The success message for the table action"
|
|
57
|
-
},
|
|
58
|
-
"directory": {
|
|
59
|
-
"type": "string",
|
|
60
|
-
"description": "A directory name or absolute path for the table action. relative to the feature base path"
|
|
61
|
-
},
|
|
62
|
-
"permission": {
|
|
63
|
-
"type": "string"
|
|
64
|
-
},
|
|
65
|
-
"icon": {
|
|
66
|
-
"type": "string"
|
|
67
|
-
},
|
|
68
|
-
"svgIcon": {
|
|
69
|
-
"type": "string"
|
|
70
|
-
},
|
|
71
|
-
"route": {
|
|
72
|
-
"type": "string",
|
|
73
|
-
"description": "The route path for the table action"
|
|
74
|
-
},
|
|
75
|
-
"relativeTo": {
|
|
76
|
-
"type": "boolean",
|
|
77
|
-
"description": "Indicates if the route path should be relative to the current activated route",
|
|
78
|
-
"default": false
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"required": [
|
|
82
|
-
"options",
|
|
83
|
-
"project",
|
|
84
|
-
"feature",
|
|
85
|
-
"route"
|
|
86
|
-
]
|
|
87
|
-
}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
|
3
|
-
"$id": "table-action",
|
|
4
|
-
"type": "object",
|
|
5
|
-
"properties": {
|
|
6
|
-
"tableName": {
|
|
7
|
-
"alias": "table",
|
|
8
|
-
"type": "string",
|
|
9
|
-
"description": "The name of the table action"
|
|
10
|
-
},
|
|
11
|
-
"type": {
|
|
12
|
-
"alias": "actionType",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"description": "The table action type string",
|
|
15
|
-
"x-prompt": "Enter the table action type string?"
|
|
16
|
-
},
|
|
17
|
-
"project": {
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The target project where the table action should be added."
|
|
20
|
-
},
|
|
21
|
-
"feature": {
|
|
22
|
-
"type": "string",
|
|
23
|
-
"description": "The feature name where the table action should be added.",
|
|
24
|
-
"x-prompt": "To which feature should the table action be added?"
|
|
25
|
-
},
|
|
26
|
-
"backend": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"description": "The backend that should be used to handel data",
|
|
29
|
-
"enum": [
|
|
30
|
-
"none",
|
|
31
|
-
"local",
|
|
32
|
-
"nestjs",
|
|
33
|
-
"open-api"
|
|
34
|
-
],
|
|
35
|
-
"default": "none"
|
|
36
|
-
},
|
|
37
|
-
"shared": {
|
|
38
|
-
"type": "boolean",
|
|
39
|
-
"description": "Whether the table action is shared across applications",
|
|
40
|
-
"default": false
|
|
41
|
-
},
|
|
42
|
-
"refresh": {
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Whether the table action should refresh the table after execution",
|
|
45
|
-
"default": false
|
|
46
|
-
},
|
|
47
|
-
"confirm": {
|
|
48
|
-
"type": "boolean",
|
|
49
|
-
"description": "Whether the table action should confirm before execution",
|
|
50
|
-
"default": false
|
|
51
|
-
},
|
|
52
|
-
"tooltip": {
|
|
53
|
-
"type": "string",
|
|
54
|
-
"description": "The tooltip for the table action"
|
|
55
|
-
},
|
|
56
|
-
"errorMessage": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"description": "The error message for the table action"
|
|
59
|
-
},
|
|
60
|
-
"successMessage": {
|
|
61
|
-
"type": "string",
|
|
62
|
-
"description": "The success message for the table action"
|
|
63
|
-
},
|
|
64
|
-
"checkFunction": {
|
|
65
|
-
"type": "string",
|
|
66
|
-
"description": "The check function for the table action"
|
|
67
|
-
},
|
|
68
|
-
"color": {
|
|
69
|
-
"type": "string",
|
|
70
|
-
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
71
|
-
},
|
|
72
|
-
"cssClass": {
|
|
73
|
-
"type": "string",
|
|
74
|
-
"description": "Additional CSS classes added to the button element"
|
|
75
|
-
},
|
|
76
|
-
"priority": {
|
|
77
|
-
"type": "number",
|
|
78
|
-
"description": "The priority of the table action"
|
|
79
|
-
},
|
|
80
|
-
"directory": {
|
|
81
|
-
"type": "string",
|
|
82
|
-
"description": "A directory name or absolute path for the table action. relative to the feature base path"
|
|
83
|
-
},
|
|
84
|
-
"options": {
|
|
85
|
-
"type": "object",
|
|
86
|
-
"additionalProperties": true
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"required": [
|
|
90
|
-
"type",
|
|
91
|
-
"project",
|
|
92
|
-
"feature"
|
|
93
|
-
]
|
|
94
|
-
}
|