@rxap/schematic-angular 16.2.0-dev.22 → 16.2.0-dev.24

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.
Files changed (103) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +1 -1
  3. package/package.json +13 -13
  4. package/src/lib/accordion-header.js +7 -4
  5. package/src/lib/accordion-header.js.map +1 -1
  6. package/src/lib/accordion-identifier.d.ts +2 -2
  7. package/src/lib/accordion-identifier.js +2 -1
  8. package/src/lib/accordion-identifier.js.map +1 -1
  9. package/src/lib/accordion-item.js +17 -17
  10. package/src/lib/accordion-item.js.map +1 -1
  11. package/src/lib/coerce-form-component.js +3 -2
  12. package/src/lib/coerce-form-component.js.map +1 -1
  13. package/src/lib/css-class.d.ts +8 -0
  14. package/src/lib/css-class.js +28 -0
  15. package/src/lib/css-class.js.map +1 -0
  16. package/src/lib/data-grid-item.js +15 -10
  17. package/src/lib/data-grid-item.js.map +1 -1
  18. package/src/lib/form/control/autocomplete-table-select-form-control.js +11 -1
  19. package/src/lib/form/control/autocomplete-table-select-form-control.js.map +1 -1
  20. package/src/lib/form/control/table-select-form-control.d.ts +3 -0
  21. package/src/lib/form/control/table-select-form-control.js +11 -1
  22. package/src/lib/form/control/table-select-form-control.js.map +1 -1
  23. package/src/lib/load-handlebars-template.d.ts +1 -0
  24. package/src/lib/load-handlebars-template.js +5 -1
  25. package/src/lib/load-handlebars-template.js.map +1 -1
  26. package/src/lib/minimum-table-options.d.ts +6 -0
  27. package/src/lib/minimum-table-options.js +9 -0
  28. package/src/lib/minimum-table-options.js.map +1 -1
  29. package/src/lib/table/table-filter-column-rule.js +2 -3
  30. package/src/lib/table/table-filter-column-rule.js.map +1 -1
  31. package/src/lib/table-action.js.map +1 -1
  32. package/src/lib/table-column.d.ts +3 -1
  33. package/src/lib/table-column.js +7 -3
  34. package/src/lib/table-column.js.map +1 -1
  35. package/src/lib/table-row-action.d.ts +4 -2
  36. package/src/lib/table-row-action.js +8 -7
  37. package/src/lib/table-row-action.js.map +1 -1
  38. package/src/schema.json +279 -167
  39. package/src/schematics/accordion/accordion-component/schema.json +1427 -116
  40. package/src/schematics/accordion/accordion-item-component/schema.json +1427 -116
  41. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +72 -62
  42. package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +3 -14
  43. package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +1411 -166
  44. package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +3 -64
  45. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +119 -77
  46. package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +3 -26
  47. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +119 -77
  48. package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +3 -26
  49. package/src/schematics/accordion-identifier.schema.json +1 -2
  50. package/src/schematics/accordion-item.schema.json +43 -50
  51. package/src/schematics/autocomplete-table-select-form-control.schema.json +1 -1
  52. package/src/schematics/base-accordion-item.schema.json +52 -0
  53. package/src/schematics/css-class.schema.json +34 -0
  54. package/src/schematics/data-grid-accordion-item.schema.json +34 -0
  55. package/src/schematics/data-grid-component/index.js +9 -4
  56. package/src/schematics/data-grid-component/index.js.map +1 -1
  57. package/src/schematics/data-grid-component/schema.json +6 -7
  58. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js +8 -6
  59. package/src/schematics/form/control/autocomplete-table-select-form-control/index.js.map +1 -1
  60. package/src/schematics/form/control/autocomplete-table-select-form-control/schema.json +2 -5
  61. package/src/schematics/form/control/input-form-control/schema.json +1 -4
  62. package/src/schematics/form/control/select-form-control/schema.json +1 -4
  63. package/src/schematics/form/control/table-select-form-control/index.js +8 -6
  64. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  65. package/src/schematics/form/control/table-select-form-control/schema.json +21 -4
  66. package/src/schematics/form/form-array/schema.json +22 -5
  67. package/src/schematics/form/form-component/schema.json +6 -7
  68. package/src/schematics/form/form-control/schema.json +22 -5
  69. package/src/schematics/form/form-definition/schema.json +22 -5
  70. package/src/schematics/form/form-group/schema.json +22 -5
  71. package/src/schematics/minimum-table.schema.json +12 -0
  72. package/src/schematics/property.schema.json +1 -4
  73. package/src/schematics/switch-accordion-item.schema.json +82 -0
  74. package/src/schematics/table/action/dialog-table-action/schema.json +33 -2
  75. package/src/schematics/table/action/form-table-action/schema.json +39 -9
  76. package/src/schematics/table/action/navigation-table-action/schema.json +33 -2
  77. package/src/schematics/table/action/open-api-table-action/schema.json +33 -2
  78. package/src/schematics/table/action/operation-table-action/schema.json +33 -2
  79. package/src/schematics/table/header-button/form-table-header-button/schema.json +6 -7
  80. package/src/schematics/table/table-action/schema.json +33 -2
  81. package/src/schematics/table/table-component/files/component/__componentName__.component.html.hbs +11 -9
  82. package/src/schematics/table/table-component/index.d.ts +0 -3
  83. package/src/schematics/table/table-component/index.js +2 -9
  84. package/src/schematics/table/table-component/index.js.map +1 -1
  85. package/src/schematics/table/table-component/schema.json +62 -8
  86. package/src/schematics/table/templates/boolean-table-column.hbs +3 -2
  87. package/src/schematics/table/templates/component-table-column.hbs +3 -2
  88. package/src/schematics/table/templates/copy-to-clipboard-table-column.hbs +3 -2
  89. package/src/schematics/table/templates/date-table-column.hbs +3 -2
  90. package/src/schematics/table/templates/default-table-column.hbs +4 -1
  91. package/src/schematics/table/templates/icon-table-column.hbs +3 -2
  92. package/src/schematics/table/templates/link-table-column.hbs +3 -2
  93. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +13 -11
  94. package/src/schematics/table/tree-table-component/index.js +1 -0
  95. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  96. package/src/schematics/table/tree-table-component/schema.json +62 -8
  97. package/src/schematics/table-accordion-item.schema.json +41 -0
  98. package/src/schematics/table-action.schema.json +7 -3
  99. package/src/schematics/table-column.schema.json +4 -1
  100. package/src/schematics/table-select-form-control.schema.json +6 -0
  101. package/src/schematics/templates/css-class.hbs +1 -0
  102. package/src/schematics/tree-table-accordion-item.schema.json +41 -0
  103. package/src/template.schema.json +18 -0
@@ -6,76 +6,15 @@
6
6
  "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "#/definitions/accordionItem"
10
- },
11
- {
12
- "type": "object",
13
- "properties": {
14
- "switch": {
15
- "type": "object",
16
- "properties": {
17
- "property": {
18
- "$ref": "#/definitions/property"
19
- },
20
- "defaultCase": {
21
- "type": "object",
22
- "properties": {
23
- "itemList": {
24
- "alias": "item",
25
- "type": "array",
26
- "items": {
27
- "$ref": "#/definitions/accordionItem"
28
- },
29
- "description": "The list of accordion expansion panels"
30
- }
31
- },
32
- "required": ["itemList"]
33
- },
34
- "case": {
35
- "type": "array",
36
- "items": {
37
- "type": "object",
38
- "properties": {
39
- "test": {
40
- "anyOf": [
41
- {
42
- "type": "string"
43
- },
44
- {
45
- "type": "number"
46
- },
47
- {
48
- "type": "boolean"
49
- }
50
- ]
51
- },
52
- "itemList": {
53
- "alias": "item",
54
- "type": "array",
55
- "items": {
56
- "$ref": "#/definitions/accordionItem"
57
- },
58
- "description": "The list of accordion expansion panels"
59
- }
60
- },
61
- "required": ["test", "itemList"]
62
- }
63
- }
64
- },
65
- "required": ["property", "case"]
66
- }
67
- }
9
+ "$ref": "#/definitions/switchAccordionItem"
68
10
  }
69
11
  ],
70
12
  "definitions": {
71
13
  "angular": {
72
14
  "$ref": "../../../angular.schema.json"
73
15
  },
74
- "accordionItem": {
75
- "$ref": "../../../accordion-item.schema.json"
76
- },
77
- "property": {
78
- "$ref": "../../../property.schema.json"
16
+ "switchAccordionItem": {
17
+ "$ref": "../../../switch-accordion-item.schema.json"
79
18
  }
80
19
  }
81
20
  }
@@ -6,27 +6,7 @@
6
6
  "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "#/definitions/accordionItem"
10
- },
11
- {
12
- "type": "object",
13
- "properties": {
14
- "modifiers": {
15
- "alias": "modifier",
16
- "type": "array",
17
- "items": {
18
- "type": "string",
19
- "enum": [
20
- "navigation-back-header",
21
- "without-title"
22
- ]
23
- },
24
- "description": "The table modifiers"
25
- },
26
- "table": {
27
- "$ref": "#/definitions/table"
28
- }
29
- }
9
+ "$ref": "#/definitions/tableAccordionItem"
30
10
  }
31
11
  ],
32
12
  "definitions": {
@@ -112,60 +92,13 @@
112
92
  "type": "string",
113
93
  "enum": [
114
94
  "route"
115
- ],
116
- "default": "route"
95
+ ]
117
96
  }
118
97
  },
119
98
  "required": [
120
99
  "property"
121
100
  ]
122
101
  },
123
- "accordionItem": {
124
- "type": "object",
125
- "properties": {
126
- "kind": {
127
- "type": "string",
128
- "enum": [
129
- "default",
130
- "table",
131
- "data-grid",
132
- "data-grid-collection",
133
- "tree-table",
134
- "switch"
135
- ],
136
- "description": "The type of the accordion item",
137
- "default": "panel"
138
- },
139
- "modifiers": {
140
- "alias": "modifier",
141
- "type": "array",
142
- "items": {
143
- "type": "string"
144
- },
145
- "description": "The modifiers to apply to the accordion item type"
146
- },
147
- "identifier": {
148
- "$ref": "#/definitions/accordionIdentifier"
149
- },
150
- "title": {
151
- "type": "string"
152
- },
153
- "description": {
154
- "type": "string"
155
- },
156
- "upstream": {
157
- "$ref": "#/definitions/upstream"
158
- },
159
- "propertyList": {
160
- "alias": "property",
161
- "type": "array",
162
- "items": {
163
- "$ref": "#/definitions/property"
164
- }
165
- }
166
- },
167
- "additionalProperties": true
168
- },
169
102
  "angular": {
170
103
  "allOf": [
171
104
  {
@@ -230,7 +163,7 @@
230
163
  },
231
164
  "kind": {
232
165
  "type": "string",
233
- "const": "table-select"
166
+ "const": "autocomplete-table-select"
234
167
  },
235
168
  "placeholder": {
236
169
  "type": "string"
@@ -308,6 +241,47 @@
308
241
  ],
309
242
  "default": "none"
310
243
  },
244
+ "baseAccordionItem": {
245
+ "type": "object",
246
+ "properties": {
247
+ "name": {
248
+ "type": "string"
249
+ },
250
+ "kind": {
251
+ "type": "string"
252
+ },
253
+ "modifiers": {
254
+ "alias": "modifier",
255
+ "type": "array",
256
+ "items": {
257
+ "type": "string"
258
+ },
259
+ "description": "The modifiers to apply to the accordion item type"
260
+ },
261
+ "identifier": {
262
+ "$ref": "#/definitions/accordionIdentifier"
263
+ },
264
+ "title": {
265
+ "type": "string"
266
+ },
267
+ "description": {
268
+ "type": "string"
269
+ },
270
+ "upstream": {
271
+ "$ref": "#/definitions/upstream"
272
+ },
273
+ "propertyList": {
274
+ "alias": "property",
275
+ "type": "array",
276
+ "items": {
277
+ "$ref": "#/definitions/property"
278
+ }
279
+ }
280
+ },
281
+ "required": [
282
+ "name"
283
+ ]
284
+ },
311
285
  "baseFormControl": {
312
286
  "allOf": [
313
287
  {
@@ -374,6 +348,38 @@
374
348
  }
375
349
  ]
376
350
  },
351
+ "cssClass": {
352
+ "oneOf": [
353
+ {
354
+ "type": "string"
355
+ },
356
+ {
357
+ "type": "array",
358
+ "items": {
359
+ "type": "string"
360
+ }
361
+ },
362
+ {
363
+ "type": "object",
364
+ "properties": {
365
+ "name": {
366
+ "type": "string"
367
+ }
368
+ }
369
+ },
370
+ {
371
+ "type": "array",
372
+ "items": {
373
+ "type": "object",
374
+ "properties": {
375
+ "name": {
376
+ "type": "string"
377
+ }
378
+ }
379
+ }
380
+ }
381
+ ]
382
+ },
377
383
  "formControl": {
378
384
  "allOf": [
379
385
  {
@@ -609,6 +615,12 @@
609
615
  "type": "string"
610
616
  },
611
617
  "description": "The table modifiers"
618
+ },
619
+ "cssClass": {
620
+ "$ref": "#/definitions/cssClass"
621
+ },
622
+ "identifier": {
623
+ "$ref": "#/definitions/accordionIdentifier"
612
624
  }
613
625
  }
614
626
  },
@@ -657,10 +669,7 @@
657
669
  "isArray": {
658
670
  "type": "boolean"
659
671
  }
660
- },
661
- "required": [
662
- "name"
663
- ]
672
+ }
664
673
  }
665
674
  ]
666
675
  },
@@ -789,6 +798,37 @@
789
798
  }
790
799
  ]
791
800
  },
801
+ "tableAccordionItem": {
802
+ "allOf": [
803
+ {
804
+ "$ref": "#/definitions/baseAccordionItem"
805
+ },
806
+ {
807
+ "type": "object",
808
+ "properties": {
809
+ "kind": {
810
+ "type": "string",
811
+ "const": "table"
812
+ },
813
+ "modifiers": {
814
+ "alias": "modifier",
815
+ "type": "array",
816
+ "items": {
817
+ "type": "string",
818
+ "enum": [
819
+ "navigation-back-header",
820
+ "without-title"
821
+ ]
822
+ },
823
+ "description": "The table modifiers"
824
+ },
825
+ "table": {
826
+ "$ref": "#/definitions/table"
827
+ }
828
+ }
829
+ }
830
+ ]
831
+ },
792
832
  "tableAction": {
793
833
  "type": "object",
794
834
  "properties": {
@@ -836,8 +876,7 @@
836
876
  "description": "Value for the color input of the mat-button / mat-icon component"
837
877
  },
838
878
  "cssClass": {
839
- "type": "string",
840
- "description": "Additional CSS classes added to the button element"
879
+ "$ref": "#/definitions/cssClass"
841
880
  },
842
881
  "options": {
843
882
  "type": "object",
@@ -882,7 +921,7 @@
882
921
  "type": "boolean"
883
922
  },
884
923
  "cssClass": {
885
- "type": "string"
924
+ "$ref": "#/definitions/cssClass"
886
925
  },
887
926
  "title": {
888
927
  "type": "string"
@@ -985,6 +1024,9 @@
985
1024
  "$ref": "#/definitions/upstream"
986
1025
  }
987
1026
  }
1027
+ },
1028
+ "identifier": {
1029
+ "$ref": "#/definitions/accordionIdentifier"
988
1030
  }
989
1031
  }
990
1032
  }
@@ -6,38 +6,15 @@
6
6
  "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "#/definitions/accordionItem"
10
- },
11
- {
12
- "type": "object",
13
- "properties": {
14
- "modifiers": {
15
- "alias": "modifier",
16
- "type": "array",
17
- "items": {
18
- "type": "string",
19
- "enum": [
20
- "navigation-back-header",
21
- "without-title"
22
- ]
23
- },
24
- "description": "The table modifiers"
25
- },
26
- "table": {
27
- "$ref": "#/definitions/table"
28
- }
29
- }
9
+ "$ref": "#/definitions/tableAccordionItem"
30
10
  }
31
11
  ],
32
12
  "definitions": {
33
- "accordionItem": {
34
- "$ref": "../../../accordion-item.schema.json"
13
+ "tableAccordionItem": {
14
+ "$ref": "../../../table-accordion-item.schema.json"
35
15
  },
36
16
  "angular": {
37
17
  "$ref": "../../../angular.schema.json"
38
- },
39
- "table": {
40
- "$ref": "../../../table.schema.json"
41
18
  }
42
19
  }
43
20
  }
@@ -6,27 +6,7 @@
6
6
  "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "#/definitions/accordionItem"
10
- },
11
- {
12
- "type": "object",
13
- "properties": {
14
- "modifiers": {
15
- "alias": "modifier",
16
- "type": "array",
17
- "items": {
18
- "type": "string",
19
- "enum": [
20
- "navigation-back-header",
21
- "without-title"
22
- ]
23
- },
24
- "description": "The table modifiers"
25
- },
26
- "table": {
27
- "$ref": "#/definitions/treeTable"
28
- }
29
- }
9
+ "$ref": "#/definitions/treeTableAccordionItem"
30
10
  }
31
11
  ],
32
12
  "definitions": {
@@ -112,60 +92,13 @@
112
92
  "type": "string",
113
93
  "enum": [
114
94
  "route"
115
- ],
116
- "default": "route"
95
+ ]
117
96
  }
118
97
  },
119
98
  "required": [
120
99
  "property"
121
100
  ]
122
101
  },
123
- "accordionItem": {
124
- "type": "object",
125
- "properties": {
126
- "kind": {
127
- "type": "string",
128
- "enum": [
129
- "default",
130
- "table",
131
- "data-grid",
132
- "data-grid-collection",
133
- "tree-table",
134
- "switch"
135
- ],
136
- "description": "The type of the accordion item",
137
- "default": "panel"
138
- },
139
- "modifiers": {
140
- "alias": "modifier",
141
- "type": "array",
142
- "items": {
143
- "type": "string"
144
- },
145
- "description": "The modifiers to apply to the accordion item type"
146
- },
147
- "identifier": {
148
- "$ref": "#/definitions/accordionIdentifier"
149
- },
150
- "title": {
151
- "type": "string"
152
- },
153
- "description": {
154
- "type": "string"
155
- },
156
- "upstream": {
157
- "$ref": "#/definitions/upstream"
158
- },
159
- "propertyList": {
160
- "alias": "property",
161
- "type": "array",
162
- "items": {
163
- "$ref": "#/definitions/property"
164
- }
165
- }
166
- },
167
- "additionalProperties": true
168
- },
169
102
  "angular": {
170
103
  "allOf": [
171
104
  {
@@ -230,7 +163,7 @@
230
163
  },
231
164
  "kind": {
232
165
  "type": "string",
233
- "const": "table-select"
166
+ "const": "autocomplete-table-select"
234
167
  },
235
168
  "placeholder": {
236
169
  "type": "string"
@@ -308,6 +241,47 @@
308
241
  ],
309
242
  "default": "none"
310
243
  },
244
+ "baseAccordionItem": {
245
+ "type": "object",
246
+ "properties": {
247
+ "name": {
248
+ "type": "string"
249
+ },
250
+ "kind": {
251
+ "type": "string"
252
+ },
253
+ "modifiers": {
254
+ "alias": "modifier",
255
+ "type": "array",
256
+ "items": {
257
+ "type": "string"
258
+ },
259
+ "description": "The modifiers to apply to the accordion item type"
260
+ },
261
+ "identifier": {
262
+ "$ref": "#/definitions/accordionIdentifier"
263
+ },
264
+ "title": {
265
+ "type": "string"
266
+ },
267
+ "description": {
268
+ "type": "string"
269
+ },
270
+ "upstream": {
271
+ "$ref": "#/definitions/upstream"
272
+ },
273
+ "propertyList": {
274
+ "alias": "property",
275
+ "type": "array",
276
+ "items": {
277
+ "$ref": "#/definitions/property"
278
+ }
279
+ }
280
+ },
281
+ "required": [
282
+ "name"
283
+ ]
284
+ },
311
285
  "baseFormControl": {
312
286
  "allOf": [
313
287
  {
@@ -374,6 +348,38 @@
374
348
  }
375
349
  ]
376
350
  },
351
+ "cssClass": {
352
+ "oneOf": [
353
+ {
354
+ "type": "string"
355
+ },
356
+ {
357
+ "type": "array",
358
+ "items": {
359
+ "type": "string"
360
+ }
361
+ },
362
+ {
363
+ "type": "object",
364
+ "properties": {
365
+ "name": {
366
+ "type": "string"
367
+ }
368
+ }
369
+ },
370
+ {
371
+ "type": "array",
372
+ "items": {
373
+ "type": "object",
374
+ "properties": {
375
+ "name": {
376
+ "type": "string"
377
+ }
378
+ }
379
+ }
380
+ }
381
+ ]
382
+ },
377
383
  "formControl": {
378
384
  "allOf": [
379
385
  {
@@ -609,6 +615,12 @@
609
615
  "type": "string"
610
616
  },
611
617
  "description": "The table modifiers"
618
+ },
619
+ "cssClass": {
620
+ "$ref": "#/definitions/cssClass"
621
+ },
622
+ "identifier": {
623
+ "$ref": "#/definitions/accordionIdentifier"
612
624
  }
613
625
  }
614
626
  },
@@ -657,10 +669,7 @@
657
669
  "isArray": {
658
670
  "type": "boolean"
659
671
  }
660
- },
661
- "required": [
662
- "name"
663
- ]
672
+ }
664
673
  }
665
674
  ]
666
675
  },
@@ -789,8 +798,7 @@
789
798
  "description": "Value for the color input of the mat-button / mat-icon component"
790
799
  },
791
800
  "cssClass": {
792
- "type": "string",
793
- "description": "Additional CSS classes added to the button element"
801
+ "$ref": "#/definitions/cssClass"
794
802
  },
795
803
  "options": {
796
804
  "type": "object",
@@ -835,7 +843,7 @@
835
843
  "type": "boolean"
836
844
  },
837
845
  "cssClass": {
838
- "type": "string"
846
+ "$ref": "#/definitions/cssClass"
839
847
  },
840
848
  "title": {
841
849
  "type": "string"
@@ -938,6 +946,9 @@
938
946
  "$ref": "#/definitions/upstream"
939
947
  }
940
948
  }
949
+ },
950
+ "identifier": {
951
+ "$ref": "#/definitions/accordionIdentifier"
941
952
  }
942
953
  }
943
954
  }
@@ -995,6 +1006,37 @@
995
1006
  }
996
1007
  ]
997
1008
  },
1009
+ "treeTableAccordionItem": {
1010
+ "allOf": [
1011
+ {
1012
+ "$ref": "#/definitions/baseAccordionItem"
1013
+ },
1014
+ {
1015
+ "type": "object",
1016
+ "properties": {
1017
+ "kind": {
1018
+ "type": "string",
1019
+ "const": "tree-table"
1020
+ },
1021
+ "modifiers": {
1022
+ "alias": "modifier",
1023
+ "type": "array",
1024
+ "items": {
1025
+ "type": "string",
1026
+ "enum": [
1027
+ "navigation-back-header",
1028
+ "without-title"
1029
+ ]
1030
+ },
1031
+ "description": "The table modifiers"
1032
+ },
1033
+ "table": {
1034
+ "$ref": "#/definitions/treeTable"
1035
+ }
1036
+ }
1037
+ }
1038
+ ]
1039
+ },
998
1040
  "type": {
999
1041
  "oneOf": [
1000
1042
  {
@@ -6,35 +6,12 @@
6
6
  "$ref": "#/definitions/angular"
7
7
  },
8
8
  {
9
- "$ref": "#/definitions/accordionItem"
10
- },
11
- {
12
- "type": "object",
13
- "properties": {
14
- "modifiers": {
15
- "alias": "modifier",
16
- "type": "array",
17
- "items": {
18
- "type": "string",
19
- "enum": [
20
- "navigation-back-header",
21
- "without-title"
22
- ]
23
- },
24
- "description": "The table modifiers"
25
- },
26
- "table": {
27
- "$ref": "#/definitions/treeTable"
28
- }
29
- }
9
+ "$ref": "#/definitions/treeTableAccordionItem"
30
10
  }
31
11
  ],
32
12
  "definitions": {
33
- "treeTable": {
34
- "$ref": "../../../tree-table.schema.json"
35
- },
36
- "accordionItem": {
37
- "$ref": "../../../accordion-item.schema.json"
13
+ "treeTableAccordionItem": {
14
+ "$ref": "../../../tree-table-accordion-item.schema.json"
38
15
  },
39
16
  "angular": {
40
17
  "$ref": "../../../angular.schema.json"