@rxap/schematic-angular 18.0.3-dev.1 → 18.1.0-dev.0
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 +16 -0
- package/package.json +10 -9
- package/src/lib/coerce-minimum-table-component.js +9 -2
- package/src/lib/coerce-minimum-table-component.js.map +1 -1
- package/src/lib/form/control/form-control.d.ts +1 -0
- package/src/lib/form/control/form-control.js +6 -1
- package/src/lib/form/control/form-control.js.map +1 -1
- package/src/lib/form/form-component.d.ts +15 -0
- package/src/lib/form/form-component.js +12 -0
- package/src/lib/form/form-component.js.map +1 -0
- package/src/lib/form/form-definition.d.ts +8 -0
- package/src/lib/form/form-definition.js +11 -0
- package/src/lib/form/form-definition.js.map +1 -0
- package/src/lib/mat-form-field-default-options.d.ts +8 -2
- package/src/lib/mat-form-field-default-options.js +8 -1
- package/src/lib/mat-form-field-default-options.js.map +1 -1
- package/src/lib/minimum-table-component-options.js +28 -35
- package/src/lib/minimum-table-component-options.js.map +1 -1
- package/src/lib/minimum-table-options.d.ts +6 -3
- package/src/lib/minimum-table-options.js +4 -1
- package/src/lib/minimum-table-options.js.map +1 -1
- package/src/lib/table/action/base-table-action.d.ts +25 -0
- package/src/lib/table/action/base-table-action.js +32 -0
- package/src/lib/table/action/base-table-action.js.map +1 -0
- package/src/lib/table/action/dialog-table-action.d.ts +15 -0
- package/src/lib/table/action/dialog-table-action.js +23 -0
- package/src/lib/table/action/dialog-table-action.js.map +1 -0
- package/src/lib/table/action/form-table-action.d.ts +19 -0
- package/src/lib/table/action/form-table-action.js +26 -0
- package/src/lib/table/action/form-table-action.js.map +1 -0
- package/src/lib/table/action/navigation-table-action.d.ts +12 -0
- package/src/lib/table/action/navigation-table-action.js +14 -0
- package/src/lib/table/action/navigation-table-action.js.map +1 -0
- package/src/lib/table/action/open-api-table-action.d.ts +16 -0
- package/src/lib/table/action/open-api-table-action.js +14 -0
- package/src/lib/table/action/open-api-table-action.js.map +1 -0
- package/src/lib/table/action/operation-table-action.d.ts +8 -0
- package/src/lib/table/action/operation-table-action.js +10 -0
- package/src/lib/table/action/operation-table-action.js.map +1 -0
- package/src/lib/table/table-action-kind.d.ts +9 -0
- package/src/lib/table/table-action-kind.js +17 -0
- package/src/lib/table/table-action-kind.js.map +1 -0
- package/src/lib/table/table-action.d.ts +11 -0
- package/src/lib/table/table-action.js +35 -0
- package/src/lib/table/table-action.js.map +1 -0
- package/src/lib/table/table-filter-column-rule.js +9 -5
- package/src/lib/table/table-filter-column-rule.js.map +1 -1
- package/src/lib/table-options.d.ts +5 -9
- package/src/lib/table-options.js.map +1 -1
- package/src/lib/tree-table-options.d.ts +5 -10
- package/src/lib/tree-table-options.js.map +1 -1
- package/src/lib/use-pick-from-table-interface-as-form-type.d.ts +3 -1
- package/src/lib/use-pick-from-table-interface-as-form-type.js +19 -5
- package/src/lib/use-pick-from-table-interface-as-form-type.js.map +1 -1
- package/src/schema.json +201 -62
- package/src/schematics/accordion/accordion-component/index.js +5 -2
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/schema.json +380 -48
- package/src/schematics/accordion/accordion-item-component/index.js +7 -4
- package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-item-component/schema.json +380 -48
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +2 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +380 -48
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +534 -48
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +3 -1
- 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 +534 -48
- package/src/schematics/base-table-action.schema.json +62 -0
- package/src/schematics/data-grid-component/index.js +4 -2
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/dialog-table-action.schema.json +65 -0
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +7 -4
- package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/select-form-control/index.js +2 -1
- package/src/schematics/form/control/select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/index.js +5 -3
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/form-component/index.d.ts +2 -7
- package/src/schematics/form/form-component/index.js +7 -6
- package/src/schematics/form/form-component/index.js.map +1 -1
- package/src/schematics/form/form-component/schema.d.ts +2 -9
- package/src/schematics/form-table-action.schema.json +92 -0
- package/src/schematics/minimum-table.schema.json +11 -0
- package/src/schematics/navigation-table-action.schema.json +35 -0
- package/src/schematics/open-api-table-action.schema.json +60 -0
- package/src/schematics/operation-table-action.schema.json +26 -0
- package/src/schematics/table/action/dialog-table-action/index.d.ts +5 -9
- package/src/schematics/table/action/dialog-table-action/index.js +13 -21
- package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
- package/src/schematics/table/action/dialog-table-action/schema.d.ts +4 -6
- package/src/schematics/table/action/dialog-table-action/schema.json +1293 -100
- package/src/schematics/table/action/dialog-table-action/template.schema.json +4 -42
- package/src/schematics/table/action/form-table-action/index.d.ts +3 -11
- package/src/schematics/table/action/form-table-action/index.js +20 -18
- package/src/schematics/table/action/form-table-action/index.js.map +1 -1
- package/src/schematics/table/action/form-table-action/schema.d.ts +4 -14
- package/src/schematics/table/action/form-table-action/schema.json +331 -104
- package/src/schematics/table/action/form-table-action/template.schema.json +4 -59
- package/src/schematics/table/action/navigation-table-action/index.d.ts +3 -3
- package/src/schematics/table/action/navigation-table-action/index.js +2 -3
- package/src/schematics/table/action/navigation-table-action/index.js.map +1 -1
- package/src/schematics/table/action/navigation-table-action/schema.d.ts +4 -4
- package/src/schematics/table/action/navigation-table-action/schema.json +1293 -70
- package/src/schematics/table/action/navigation-table-action/template.schema.json +4 -12
- package/src/schematics/table/action/open-api-table-action/index.d.ts +2 -4
- package/src/schematics/table/action/open-api-table-action/index.js +2 -4
- package/src/schematics/table/action/open-api-table-action/index.js.map +1 -1
- package/src/schematics/table/action/open-api-table-action/schema.d.ts +4 -6
- package/src/schematics/table/action/open-api-table-action/schema.json +1286 -91
- package/src/schematics/table/action/open-api-table-action/template.schema.json +4 -40
- package/src/schematics/table/action/operation-table-action/index.d.ts +2 -1
- package/src/schematics/table/action/operation-table-action/index.js +8 -6
- package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
- package/src/schematics/table/action/operation-table-action/schema.d.ts +5 -3
- package/src/schematics/table/action/operation-table-action/schema.json +1296 -59
- package/src/schematics/table/action/operation-table-action/template.schema.json +6 -0
- package/src/schematics/table/table-action/index.d.ts +2 -1
- package/src/schematics/table/table-action/index.js +3 -2
- package/src/schematics/table/table-action/index.js.map +1 -1
- package/src/schematics/table/table-action/schema.d.ts +2 -2
- package/src/schematics/table/table-action/schema.json +1286 -52
- package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +19 -1
- package/src/schematics/table/table-component/index.js +6 -5
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +534 -48
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +19 -1
- package/src/schematics/table/tree-table-component/index.js +5 -3
- package/src/schematics/table/tree-table-component/index.js.map +1 -1
- package/src/schematics/table/tree-table-component/schema.json +534 -48
- package/src/schematics/table-action.schema.json +47 -53
- package/src/schematics/tree-component/index.js +2 -1
- package/src/schematics/tree-component/index.js.map +1 -1
- package/src/template.schema.json +18 -0
- package/src/lib/table-action.d.ts +0 -13
- package/src/lib/table-action.js +0 -102
- package/src/lib/table-action.js.map +0 -1
- package/src/lib/table-row-action.d.ts +0 -21
- package/src/lib/table-row-action.js +0 -25
- package/src/lib/table-row-action.js.map +0 -1
|
@@ -443,6 +443,61 @@
|
|
|
443
443
|
}
|
|
444
444
|
]
|
|
445
445
|
},
|
|
446
|
+
"baseTableAction": {
|
|
447
|
+
"type": "object",
|
|
448
|
+
"properties": {
|
|
449
|
+
"type": {
|
|
450
|
+
"type": "string"
|
|
451
|
+
},
|
|
452
|
+
"refresh": {
|
|
453
|
+
"type": "boolean"
|
|
454
|
+
},
|
|
455
|
+
"confirm": {
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
},
|
|
458
|
+
"tooltip": {
|
|
459
|
+
"type": "string"
|
|
460
|
+
},
|
|
461
|
+
"errorMessage": {
|
|
462
|
+
"type": "string"
|
|
463
|
+
},
|
|
464
|
+
"successMessage": {
|
|
465
|
+
"type": "string"
|
|
466
|
+
},
|
|
467
|
+
"priority": {
|
|
468
|
+
"type": "number"
|
|
469
|
+
},
|
|
470
|
+
"checkFunction": {
|
|
471
|
+
"type": "string"
|
|
472
|
+
},
|
|
473
|
+
"inHeader": {
|
|
474
|
+
"type": "boolean"
|
|
475
|
+
},
|
|
476
|
+
"kind": {
|
|
477
|
+
"alias": "role",
|
|
478
|
+
"type": "string"
|
|
479
|
+
},
|
|
480
|
+
"icon": {
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
483
|
+
"svgIcon": {
|
|
484
|
+
"type": "string"
|
|
485
|
+
},
|
|
486
|
+
"permission": {
|
|
487
|
+
"type": "string"
|
|
488
|
+
},
|
|
489
|
+
"color": {
|
|
490
|
+
"type": "string",
|
|
491
|
+
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
492
|
+
},
|
|
493
|
+
"cssClass": {
|
|
494
|
+
"$ref": "#/definitions/cssClass"
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"required": [
|
|
498
|
+
"type"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
446
501
|
"baseTableColumn": {
|
|
447
502
|
"type": "object",
|
|
448
503
|
"properties": {
|
|
@@ -823,6 +878,66 @@
|
|
|
823
878
|
}
|
|
824
879
|
]
|
|
825
880
|
},
|
|
881
|
+
"dialogTableAction": {
|
|
882
|
+
"allOf": [
|
|
883
|
+
{
|
|
884
|
+
"$ref": "#/definitions/baseTableAction"
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"type": "object",
|
|
888
|
+
"properties": {
|
|
889
|
+
"kind": {
|
|
890
|
+
"type": "string",
|
|
891
|
+
"const": "dialog",
|
|
892
|
+
"default": "dialog"
|
|
893
|
+
},
|
|
894
|
+
"withoutBody": {
|
|
895
|
+
"type": "boolean",
|
|
896
|
+
"description": "Whether the table action operation should be without body",
|
|
897
|
+
"default": false
|
|
898
|
+
},
|
|
899
|
+
"actionList": {
|
|
900
|
+
"alias": "action",
|
|
901
|
+
"type": "array",
|
|
902
|
+
"description": "The list of actions to be added to the dialog",
|
|
903
|
+
"items": {
|
|
904
|
+
"oneOf": [
|
|
905
|
+
{
|
|
906
|
+
"type": "string"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"type": "object",
|
|
910
|
+
"properties": {
|
|
911
|
+
"label": {
|
|
912
|
+
"type": "string"
|
|
913
|
+
},
|
|
914
|
+
"color": {
|
|
915
|
+
"type": "string"
|
|
916
|
+
},
|
|
917
|
+
"role": {
|
|
918
|
+
"type": "string",
|
|
919
|
+
"enum": [
|
|
920
|
+
"submit",
|
|
921
|
+
"close"
|
|
922
|
+
]
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
]
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
"title": {
|
|
930
|
+
"type": "string",
|
|
931
|
+
"description": "The title for the dialog"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"required": [
|
|
935
|
+
"kind",
|
|
936
|
+
"title"
|
|
937
|
+
]
|
|
938
|
+
}
|
|
939
|
+
]
|
|
940
|
+
},
|
|
826
941
|
"formArray": {
|
|
827
942
|
"allOf": [
|
|
828
943
|
{
|
|
@@ -860,6 +975,41 @@
|
|
|
860
975
|
}
|
|
861
976
|
]
|
|
862
977
|
},
|
|
978
|
+
"formComponent": {
|
|
979
|
+
"allOf": [
|
|
980
|
+
{
|
|
981
|
+
"$ref": "#/definitions/formDefinition"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"type": "object",
|
|
985
|
+
"properties": {
|
|
986
|
+
"window": {
|
|
987
|
+
"type": "boolean",
|
|
988
|
+
"description": "Whether the form can be opened in a window"
|
|
989
|
+
},
|
|
990
|
+
"role": {
|
|
991
|
+
"type": "string",
|
|
992
|
+
"description": "Define the role of the form"
|
|
993
|
+
},
|
|
994
|
+
"matFormFieldDefaultOptions": {
|
|
995
|
+
"appearance": {
|
|
996
|
+
"type": "string",
|
|
997
|
+
"description": "The appearance of the mat form field",
|
|
998
|
+
"enum": [
|
|
999
|
+
"legacy",
|
|
1000
|
+
"standard",
|
|
1001
|
+
"fill",
|
|
1002
|
+
"outline"
|
|
1003
|
+
]
|
|
1004
|
+
}
|
|
1005
|
+
},
|
|
1006
|
+
"identifier": {
|
|
1007
|
+
"$ref": "#/definitions/accordionIdentifier"
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
}
|
|
1011
|
+
]
|
|
1012
|
+
},
|
|
863
1013
|
"formControl": {
|
|
864
1014
|
"allOf": [
|
|
865
1015
|
{
|
|
@@ -916,6 +1066,21 @@
|
|
|
916
1066
|
}
|
|
917
1067
|
]
|
|
918
1068
|
},
|
|
1069
|
+
"formDefinition": {
|
|
1070
|
+
"type": "object",
|
|
1071
|
+
"properties": {
|
|
1072
|
+
"controlList": {
|
|
1073
|
+
"alias": "control",
|
|
1074
|
+
"type": "array",
|
|
1075
|
+
"items": {
|
|
1076
|
+
"$ref": "#/definitions/control"
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"required": [
|
|
1081
|
+
"controlList"
|
|
1082
|
+
]
|
|
1083
|
+
},
|
|
919
1084
|
"formField": {
|
|
920
1085
|
"type": "object",
|
|
921
1086
|
"properties": {
|
|
@@ -973,6 +1138,89 @@
|
|
|
973
1138
|
}
|
|
974
1139
|
]
|
|
975
1140
|
},
|
|
1141
|
+
"formTableAction": {
|
|
1142
|
+
"allOf": [
|
|
1143
|
+
{
|
|
1144
|
+
"$ref": "#/definitions/baseTableAction"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"type": "object",
|
|
1148
|
+
"properties": {
|
|
1149
|
+
"kind": {
|
|
1150
|
+
"type": "string",
|
|
1151
|
+
"const": "form",
|
|
1152
|
+
"default": "form"
|
|
1153
|
+
},
|
|
1154
|
+
"formInitial": {
|
|
1155
|
+
"oneOf": [
|
|
1156
|
+
{
|
|
1157
|
+
"type": "object",
|
|
1158
|
+
"description": "The mapping from the row object to the form initial object"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"type": "boolean",
|
|
1162
|
+
"description": "If true the row object will be used as form initial object. If false the form initial object will be empty. Default is false.",
|
|
1163
|
+
"default": false
|
|
1164
|
+
}
|
|
1165
|
+
]
|
|
1166
|
+
},
|
|
1167
|
+
"formComponent": {
|
|
1168
|
+
"type": "string"
|
|
1169
|
+
},
|
|
1170
|
+
"customComponent": {
|
|
1171
|
+
"type": "boolean",
|
|
1172
|
+
"default": false,
|
|
1173
|
+
"description": "If true the schematic will not coerce the form component"
|
|
1174
|
+
},
|
|
1175
|
+
"loadFrom": {
|
|
1176
|
+
"type": "object",
|
|
1177
|
+
"properties": {
|
|
1178
|
+
"operationId": {
|
|
1179
|
+
"type": "string"
|
|
1180
|
+
},
|
|
1181
|
+
"scope": {
|
|
1182
|
+
"type": "string",
|
|
1183
|
+
"description": "The scope of package for the openapi classes"
|
|
1184
|
+
},
|
|
1185
|
+
"body": {
|
|
1186
|
+
"oneOf": [
|
|
1187
|
+
{
|
|
1188
|
+
"type": "boolean",
|
|
1189
|
+
"description": "Pass the full row as body for the operation request"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"type": "object",
|
|
1193
|
+
"description": "Mapping of table columns to body properties - [request property]: [table column]",
|
|
1194
|
+
"additionalProperties": true
|
|
1195
|
+
}
|
|
1196
|
+
]
|
|
1197
|
+
},
|
|
1198
|
+
"parameters": {
|
|
1199
|
+
"oneOf": [
|
|
1200
|
+
{
|
|
1201
|
+
"type": "boolean",
|
|
1202
|
+
"description": "Pass the full row as parameters for the operation request"
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"type": "object",
|
|
1206
|
+
"description": "Mapping of table columns to parameters properties - [request property]: [table column]",
|
|
1207
|
+
"additionalProperties": true
|
|
1208
|
+
}
|
|
1209
|
+
]
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
"form": {
|
|
1214
|
+
"alias": "formOptions",
|
|
1215
|
+
"$ref": "#/definitions/formComponent"
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"required": [
|
|
1219
|
+
"kind"
|
|
1220
|
+
]
|
|
1221
|
+
}
|
|
1222
|
+
]
|
|
1223
|
+
},
|
|
976
1224
|
"general": {
|
|
977
1225
|
"type": "object",
|
|
978
1226
|
"properties": {
|
|
@@ -1227,6 +1475,111 @@
|
|
|
1227
1475
|
}
|
|
1228
1476
|
}
|
|
1229
1477
|
},
|
|
1478
|
+
"navigationTableAction": {
|
|
1479
|
+
"allOf": [
|
|
1480
|
+
{
|
|
1481
|
+
"$ref": "#/definitions/baseTableAction"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"type": "object",
|
|
1485
|
+
"properties": {
|
|
1486
|
+
"kind": {
|
|
1487
|
+
"type": "string",
|
|
1488
|
+
"const": "navigation",
|
|
1489
|
+
"default": "navigation"
|
|
1490
|
+
},
|
|
1491
|
+
"route": {
|
|
1492
|
+
"type": "string",
|
|
1493
|
+
"description": "The route for the table action"
|
|
1494
|
+
},
|
|
1495
|
+
"relativeTo": {
|
|
1496
|
+
"type": "boolean",
|
|
1497
|
+
"description": "Use the current ActivatedRoute to resolve the route or not",
|
|
1498
|
+
"default": false
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"required": [
|
|
1502
|
+
"kind",
|
|
1503
|
+
"route"
|
|
1504
|
+
]
|
|
1505
|
+
}
|
|
1506
|
+
]
|
|
1507
|
+
},
|
|
1508
|
+
"openApiTableAction": {
|
|
1509
|
+
"allOf": [
|
|
1510
|
+
{
|
|
1511
|
+
"$ref": "#/definitions/baseTableAction"
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"type": "object",
|
|
1515
|
+
"properties": {
|
|
1516
|
+
"kind": {
|
|
1517
|
+
"type": "string",
|
|
1518
|
+
"const": "open-api",
|
|
1519
|
+
"default": "open-api"
|
|
1520
|
+
},
|
|
1521
|
+
"operationId": {
|
|
1522
|
+
"type": "string",
|
|
1523
|
+
"description": "The open api operationId for the table action"
|
|
1524
|
+
},
|
|
1525
|
+
"scope": {
|
|
1526
|
+
"type": "string",
|
|
1527
|
+
"description": "The scope of package for the openapi classes"
|
|
1528
|
+
},
|
|
1529
|
+
"body": {
|
|
1530
|
+
"oneOf": [
|
|
1531
|
+
{
|
|
1532
|
+
"type": "boolean",
|
|
1533
|
+
"description": "Pass the full row as body for the operation request"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"type": "object",
|
|
1537
|
+
"description": "Mapping of table columns to body properties - [request property]: [table column]",
|
|
1538
|
+
"additionalProperties": true
|
|
1539
|
+
}
|
|
1540
|
+
]
|
|
1541
|
+
},
|
|
1542
|
+
"parameters": {
|
|
1543
|
+
"oneOf": [
|
|
1544
|
+
{
|
|
1545
|
+
"type": "boolean",
|
|
1546
|
+
"description": "Pass the full row as parameters for the operation request"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"type": "object",
|
|
1550
|
+
"description": "Mapping of table columns to parameters properties - [request property]: [table column]",
|
|
1551
|
+
"additionalProperties": true
|
|
1552
|
+
}
|
|
1553
|
+
]
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"required": [
|
|
1557
|
+
"kind",
|
|
1558
|
+
"operationId"
|
|
1559
|
+
]
|
|
1560
|
+
}
|
|
1561
|
+
]
|
|
1562
|
+
},
|
|
1563
|
+
"operationTableAction": {
|
|
1564
|
+
"allOf": [
|
|
1565
|
+
{
|
|
1566
|
+
"$ref": "#/definitions/baseTableAction"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"type": "object",
|
|
1570
|
+
"properties": {
|
|
1571
|
+
"kind": {
|
|
1572
|
+
"type": "string",
|
|
1573
|
+
"const": "operation",
|
|
1574
|
+
"default": "operation"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"required": [
|
|
1578
|
+
"kind"
|
|
1579
|
+
]
|
|
1580
|
+
}
|
|
1581
|
+
]
|
|
1582
|
+
},
|
|
1230
1583
|
"option": {
|
|
1231
1584
|
"type": "object",
|
|
1232
1585
|
"properties": {
|
|
@@ -1586,60 +1939,39 @@
|
|
|
1586
1939
|
},
|
|
1587
1940
|
"tableAction": {
|
|
1588
1941
|
"type": "object",
|
|
1589
|
-
"
|
|
1590
|
-
|
|
1591
|
-
"
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
"type": "string"
|
|
1607
|
-
},
|
|
1608
|
-
"priority": {
|
|
1609
|
-
"type": "number"
|
|
1610
|
-
},
|
|
1611
|
-
"checkFunction": {
|
|
1612
|
-
"type": "string"
|
|
1613
|
-
},
|
|
1614
|
-
"inHeader": {
|
|
1615
|
-
"type": "boolean"
|
|
1616
|
-
},
|
|
1617
|
-
"role": {
|
|
1618
|
-
"type": "string"
|
|
1619
|
-
},
|
|
1620
|
-
"icon": {
|
|
1621
|
-
"type": "string"
|
|
1942
|
+
"oneOf": [
|
|
1943
|
+
{
|
|
1944
|
+
"allOf": [
|
|
1945
|
+
{
|
|
1946
|
+
"$ref": "#/definitions/baseTableAction"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"type": "object",
|
|
1950
|
+
"properties": {
|
|
1951
|
+
"kind": {
|
|
1952
|
+
"type": "string",
|
|
1953
|
+
"const": "default",
|
|
1954
|
+
"default": "default"
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
]
|
|
1622
1959
|
},
|
|
1623
|
-
|
|
1624
|
-
"
|
|
1960
|
+
{
|
|
1961
|
+
"$ref": "#/definitions/dialogTableAction"
|
|
1625
1962
|
},
|
|
1626
|
-
|
|
1627
|
-
"
|
|
1963
|
+
{
|
|
1964
|
+
"$ref": "#/definitions/formTableAction"
|
|
1628
1965
|
},
|
|
1629
|
-
|
|
1630
|
-
"
|
|
1631
|
-
"description": "Value for the color input of the mat-button / mat-icon component"
|
|
1966
|
+
{
|
|
1967
|
+
"$ref": "#/definitions/navigationTableAction"
|
|
1632
1968
|
},
|
|
1633
|
-
|
|
1634
|
-
"$ref": "#/definitions/
|
|
1969
|
+
{
|
|
1970
|
+
"$ref": "#/definitions/openApiTableAction"
|
|
1635
1971
|
},
|
|
1636
|
-
|
|
1637
|
-
"
|
|
1638
|
-
"additionalProperties": true
|
|
1972
|
+
{
|
|
1973
|
+
"$ref": "#/definitions/operationTableAction"
|
|
1639
1974
|
}
|
|
1640
|
-
},
|
|
1641
|
-
"required": [
|
|
1642
|
-
"type"
|
|
1643
1975
|
]
|
|
1644
1976
|
},
|
|
1645
1977
|
"tableColumn": {
|
|
@@ -79,7 +79,7 @@ function componentRule(normalizedOptions) {
|
|
|
79
79
|
]);
|
|
80
80
|
}
|
|
81
81
|
function nestjsBackendRule(normalizedOptions) {
|
|
82
|
-
const { name, directory, project, feature, shared, identifier, upstream, controllerName, overwrite, nestModule, } = normalizedOptions;
|
|
82
|
+
const { name, directory, project, feature, shared, identifier, upstream, controllerName, overwrite, nestModule, backend, } = normalizedOptions;
|
|
83
83
|
const { hasSharedModifier, hasCollectionModifier, hasEditModifier, } = (0, accordion_item_component_1.GetItemOptions)(normalizedOptions);
|
|
84
84
|
const paramList = [];
|
|
85
85
|
if (identifier) {
|
|
@@ -123,6 +123,7 @@ function nestjsBackendRule(normalizedOptions) {
|
|
|
123
123
|
paramList,
|
|
124
124
|
idProperty: identifier === null || identifier === void 0 ? void 0 : identifier.property,
|
|
125
125
|
skipCoerce: true,
|
|
126
|
+
backend,
|
|
126
127
|
}));
|
|
127
128
|
}
|
|
128
129
|
return (0, schematics_1.chain)(rules);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-data-grid-component/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-data-grid-component/index.ts"],"names":[],"mappings":"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"}
|