@rxap/schematic-angular 16.1.0-dev.4 → 16.1.0-dev.41

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 (108) hide show
  1. package/CHANGELOG.md +297 -0
  2. package/README.md +1 -1
  3. package/collection.json +21 -1
  4. package/package.json +44 -40
  5. package/src/lib/angular-options.js +18 -1
  6. package/src/lib/angular-options.js.map +1 -1
  7. package/src/lib/form-definition-control.js +3 -1
  8. package/src/lib/form-definition-control.js.map +1 -1
  9. package/src/lib/minimum-table-component-options.d.ts +1 -0
  10. package/src/lib/minimum-table-component-options.js +114 -155
  11. package/src/lib/minimum-table-component-options.js.map +1 -1
  12. package/src/lib/table-action.d.ts +1 -1
  13. package/src/lib/table-action.js +16 -10
  14. package/src/lib/table-action.js.map +1 -1
  15. package/src/lib/table-column.d.ts +4 -0
  16. package/src/lib/table-column.js +40 -2
  17. package/src/lib/table-column.js.map +1 -1
  18. package/src/lib/table-header-button.d.ts +9 -2
  19. package/src/lib/table-header-button.js +22 -2
  20. package/src/lib/table-header-button.js.map +1 -1
  21. package/src/lib/table-row-action.d.ts +5 -1
  22. package/src/lib/table-row-action.js +8 -6
  23. package/src/lib/table-row-action.js.map +1 -1
  24. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.ts.template +1 -1
  25. package/src/schematics/accordion/accordion-component/index.js +1 -1
  26. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  27. package/src/schematics/accordion/accordion-component/schema.json +13 -3
  28. package/src/schematics/accordion/accordion-item-component/files/component/__componentName__.component.html.template +1 -1
  29. package/src/schematics/accordion/accordion-item-component/schema.json +13 -3
  30. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +13 -3
  31. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +16 -3
  32. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +16 -3
  33. package/src/schematics/angular.schema.json +61 -0
  34. package/src/schematics/data-grid-component/schema.json +13 -3
  35. package/src/schematics/dialog-component/schema.json +13 -3
  36. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  37. package/src/schematics/form/control/input-form-control/index.js +7 -3
  38. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  39. package/src/schematics/form/control/select-form-control/index.js +2 -0
  40. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  41. package/src/schematics/form/control/table-select-form-control/index.js +2 -0
  42. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  43. package/src/schematics/form/form-component/index.d.ts +0 -1
  44. package/src/schematics/form/form-component/index.js +45 -14
  45. package/src/schematics/form/form-component/index.js.map +1 -1
  46. package/src/schematics/form/form-component/schema.json +3 -6
  47. package/src/schematics/form/form-control/index.d.ts +2 -2
  48. package/src/schematics/form/form-control/index.js +7 -8
  49. package/src/schematics/form/form-control/index.js.map +1 -1
  50. package/src/schematics/form/form-definition/index.d.ts +2 -2
  51. package/src/schematics/form/form-definition/index.js +24 -10
  52. package/src/schematics/form/form-definition/index.js.map +1 -1
  53. package/src/schematics/form/form-definition/schema.d.ts +2 -1
  54. package/src/schematics/form/form-definition/schema.json +5 -0
  55. package/src/schematics/general.schema.json +41 -0
  56. package/src/schematics/table/action/dialog-table-action/index.d.ts +2 -1
  57. package/src/schematics/table/action/dialog-table-action/index.js +6 -2
  58. package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
  59. package/src/schematics/table/action/dialog-table-action/schema.json +12 -2
  60. package/src/schematics/table/action/form-table-action/index.d.ts +9 -1
  61. package/src/schematics/table/action/form-table-action/index.js +151 -71
  62. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  63. package/src/schematics/table/action/form-table-action/schema.d.ts +13 -1
  64. package/src/schematics/table/action/form-table-action/schema.json +106 -3
  65. package/src/schematics/table/action/navigation-table-action/index.d.ts +1 -1
  66. package/src/schematics/table/action/navigation-table-action/index.js +10 -10
  67. package/src/schematics/table/action/navigation-table-action/index.js.map +1 -1
  68. package/src/schematics/table/action/open-api-table-action/index.d.ts +10 -0
  69. package/src/schematics/table/action/open-api-table-action/index.js +50 -0
  70. package/src/schematics/table/action/open-api-table-action/index.js.map +1 -0
  71. package/src/schematics/table/action/open-api-table-action/schema.d.ts +9 -0
  72. package/src/schematics/table/action/open-api-table-action/schema.json +121 -0
  73. package/src/schematics/table/action/operation-table-action/index.d.ts +1 -3
  74. package/src/schematics/table/action/operation-table-action/index.js +11 -12
  75. package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
  76. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +11 -0
  77. package/src/schematics/table/header-button/form-table-header-button/index.js +83 -0
  78. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -0
  79. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +7 -0
  80. package/src/schematics/table/header-button/form-table-header-button/schema.json +123 -0
  81. package/src/schematics/table/header-button/navigation-table-header-button/index.d.ts +8 -0
  82. package/src/schematics/table/header-button/navigation-table-header-button/index.js +69 -0
  83. package/src/schematics/table/header-button/navigation-table-header-button/index.js.map +1 -0
  84. package/src/schematics/table/header-button/navigation-table-header-button/schema.d.ts +8 -0
  85. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +87 -0
  86. package/src/schematics/table/table-action/index.d.ts +1 -1
  87. package/src/schematics/table/table-action/index.js +6 -4
  88. package/src/schematics/table/table-action/index.js.map +1 -1
  89. package/src/schematics/table/table-action/schema.json +8 -0
  90. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +26 -48
  91. package/src/schematics/table/table-component/files/component/__componentName__.component.ts.template +13 -5
  92. package/src/schematics/table/table-component/index.d.ts +1 -0
  93. package/src/schematics/table/table-component/index.js +44 -8
  94. package/src/schematics/table/table-component/index.js.map +1 -1
  95. package/src/schematics/table/table-component/schema.json +210 -220
  96. package/src/schematics/table/table-header-button/index.d.ts +8 -0
  97. package/src/schematics/table/table-header-button/index.js +50 -0
  98. package/src/schematics/table/table-header-button/index.js.map +1 -0
  99. package/src/schematics/table/table-header-button/schema.d.ts +8 -0
  100. package/src/schematics/table/table-header-button/schema.json +80 -0
  101. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +86 -82
  102. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.ts.template +11 -4
  103. package/src/schematics/table/tree-table-component/index.d.ts +1 -0
  104. package/src/schematics/table/tree-table-component/index.js +14 -18
  105. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  106. package/src/schematics/table/tree-table-component/schema.json +14 -1
  107. package/src/schematics/tree-component/schema.json +11 -1
  108. /package/src/schematics/form/form-component/files/window/{open-__name__-form-window.method.ts.template → open-__componentName__-window.method.ts.template} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,303 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.1.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.40...@rxap/schematic-angular@16.1.0-dev.41) (2023-11-17)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ensure the custom component are imported ([6ebab4b](https://gitlab.com/rxap/packages/commit/6ebab4b626d1ed41df6dc16e3c3a9371c975b89c))
11
+
12
+ # [16.1.0-dev.40](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.39...@rxap/schematic-angular@16.1.0-dev.40) (2023-11-17)
13
+
14
+ ### Bug Fixes
15
+
16
+ - auto detect the best matching column type ([75f748b](https://gitlab.com/rxap/packages/commit/75f748b841d0495b0a2faa46836e2ad19455c735))
17
+
18
+ # [16.1.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.38...@rxap/schematic-angular@16.1.0-dev.39) (2023-11-17)
19
+
20
+ ### Bug Fixes
21
+
22
+ - update table templates ([9e463da](https://gitlab.com/rxap/packages/commit/9e463daa7af811b5f9da7dcf6d1f82ea37f4631f))
23
+ - use prop role for the type of table column ([45759f4](https://gitlab.com/rxap/packages/commit/45759f4ce099aaeee7e31bfc1b85c67cc674db78))
24
+
25
+ # [16.1.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.37...@rxap/schematic-angular@16.1.0-dev.38) (2023-11-17)
26
+
27
+ ### Bug Fixes
28
+
29
+ - use dynamic prefix ([67808c0](https://gitlab.com/rxap/packages/commit/67808c0e8c0e708c4179793d38df20435373d1d4))
30
+
31
+ # [16.1.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.36...@rxap/schematic-angular@16.1.0-dev.37) (2023-11-17)
32
+
33
+ ### Bug Fixes
34
+
35
+ - support custom form component ([28e26ab](https://gitlab.com/rxap/packages/commit/28e26abb2ef171b9a5c54909dfcc33285c121545))
36
+ - support custom form options ([04c74e6](https://gitlab.com/rxap/packages/commit/04c74e608a93ae37831f72194acc1a5c22b0001d))
37
+
38
+ # [16.1.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.35...@rxap/schematic-angular@16.1.0-dev.36) (2023-11-17)
39
+
40
+ ### Bug Fixes
41
+
42
+ - resolve minor template issues ([1f13b90](https://gitlab.com/rxap/packages/commit/1f13b9084fd3de7e97e803f8ca8dfae7feb5cfac))
43
+
44
+ # [16.1.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.34...@rxap/schematic-angular@16.1.0-dev.35) (2023-11-17)
45
+
46
+ ### Bug Fixes
47
+
48
+ - use correct path ([30ad62c](https://gitlab.com/rxap/packages/commit/30ad62c1a944a8388e31c41c7d606d686df084b6))
49
+
50
+ # [16.1.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.33...@rxap/schematic-angular@16.1.0-dev.34) (2023-11-17)
51
+
52
+ ### Bug Fixes
53
+
54
+ - support custom form component ([6c1a9b7](https://gitlab.com/rxap/packages/commit/6c1a9b7e996aa5bac073a5867b30819748230a84))
55
+
56
+ # [16.1.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.32...@rxap/schematic-angular@16.1.0-dev.33) (2023-11-17)
57
+
58
+ ### Bug Fixes
59
+
60
+ - support navigation ([16ce11f](https://gitlab.com/rxap/packages/commit/16ce11f2c60d47fef463259944b659b0a750f1dd))
61
+
62
+ # [16.1.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.31...@rxap/schematic-angular@16.1.0-dev.32) (2023-11-17)
63
+
64
+ ### Bug Fixes
65
+
66
+ - support navigation ([2b3542b](https://gitlab.com/rxap/packages/commit/2b3542b50dda823330e1c8f4b0108a1669a607f9))
67
+
68
+ # [16.1.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.30...@rxap/schematic-angular@16.1.0-dev.31) (2023-11-17)
69
+
70
+ ### Bug Fixes
71
+
72
+ - support role alias ([284fa94](https://gitlab.com/rxap/packages/commit/284fa94d256e9bcc39a981dbc179d5f810aad330))
73
+
74
+ # [16.1.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.29...@rxap/schematic-angular@16.1.0-dev.30) (2023-11-17)
75
+
76
+ ### Bug Fixes
77
+
78
+ - support complex overwrite values ([c2fc6b9](https://gitlab.com/rxap/packages/commit/c2fc6b91c71d99496a2448e75287ea61f49e11c4))
79
+
80
+ # [16.1.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.28...@rxap/schematic-angular@16.1.0-dev.29) (2023-11-17)
81
+
82
+ ### Bug Fixes
83
+
84
+ - improve table template ([ddc5469](https://gitlab.com/rxap/packages/commit/ddc546991ef5450893617fa34af590c10997bb92))
85
+ - support custom css class for actions and columns ([f5363df](https://gitlab.com/rxap/packages/commit/f5363dffb13be7f668d41ce606e33aba7f404437))
86
+
87
+ ### Features
88
+
89
+ - add open api table action ([ceee1d8](https://gitlab.com/rxap/packages/commit/ceee1d81d7633d1115010691e631f2974e335805))
90
+
91
+ # [16.1.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.27...@rxap/schematic-angular@16.1.0-dev.28) (2023-11-16)
92
+
93
+ ### Bug Fixes
94
+
95
+ - support mat card inline ([0e42a58](https://gitlab.com/rxap/packages/commit/0e42a58206b0c522dd5b5e597ce5657b8ce14c5b))
96
+
97
+ # [16.1.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.26...@rxap/schematic-angular@16.1.0-dev.27) (2023-11-16)
98
+
99
+ ### Bug Fixes
100
+
101
+ - only export component as default if root level feature ([fd1515b](https://gitlab.com/rxap/packages/commit/fd1515b3fab4298d9d00b7725922ec12140ad2f2))
102
+
103
+ # [16.1.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.25...@rxap/schematic-angular@16.1.0-dev.26) (2023-11-16)
104
+
105
+ ### Bug Fixes
106
+
107
+ - support nested column properties ([8e98214](https://gitlab.com/rxap/packages/commit/8e9821427996fd8445f039a5683dc5ed910c056d))
108
+
109
+ # [16.1.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.24...@rxap/schematic-angular@16.1.0-dev.25) (2023-10-11)
110
+
111
+ **Note:** Version bump only for package @rxap/schematic-angular
112
+
113
+ # [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.24...@rxap/schematic-angular@16.1.0-dev.24) (2023-10-11)
114
+
115
+ **Note:** Version bump only for package @rxap/schematic-angular
116
+
117
+ # 16.1.0-dev.24 (2023-10-11)
118
+
119
+ ### Bug Fixes
120
+
121
+ - add generator termination indicator ([15ca23c](https://gitlab.com/rxap/packages/commit/15ca23cd732ca3372a5eba7fba941a6fa1e5278c))
122
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
123
+ - add missing import ([2e1c1d0](https://gitlab.com/rxap/packages/commit/2e1c1d0bef2de65c0abc8fff2c411b90a0c03f02))
124
+ - allow new role types ([1a2d6d0](https://gitlab.com/rxap/packages/commit/1a2d6d034d2b4ea66181a1e46fa30a927aad4e00))
125
+ - allow null or undefined for scope parameter ([949d4d0](https://gitlab.com/rxap/packages/commit/949d4d04a25644a54cbfabc081e83719ace885f2))
126
+ - build controller name for tables ([14d6d94](https://gitlab.com/rxap/packages/commit/14d6d94c30e18eb1ceb876815a99c414f82a172a))
127
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
128
+ - change overscroll-contain to overscroll-auto ([8834055](https://gitlab.com/rxap/packages/commit/88340559e9dcaa45f8d88c4468e77965ba92e2d3))
129
+ - check with role ([99c9ca8](https://gitlab.com/rxap/packages/commit/99c9ca8cd4f71347ee9d66f9b0b59790924140bb))
130
+ - controller name composition ([ad2c82d](https://gitlab.com/rxap/packages/commit/ad2c82df5db0036efedd3bdbb5143483a4a3deb4))
131
+ - controller naming and route ([38054d3](https://gitlab.com/rxap/packages/commit/38054d3ee106e1f50f806e1596da674f268cb4aa))
132
+ - ensure required packages are added to package.json ([a5d5996](https://gitlab.com/rxap/packages/commit/a5d5996709e58f8b9991f276513857e7ce2939cb))
133
+ - ensure required packages are installed ([0c96f09](https://gitlab.com/rxap/packages/commit/0c96f096c85b9192531a353e5ec110b73a0af155))
134
+ - ensure table action respect then backend type ([9f1e659](https://gitlab.com/rxap/packages/commit/9f1e659475926506ba4c083c5c75f6d5d11b9de1))
135
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
136
+ - extend debug output ([61d4369](https://gitlab.com/rxap/packages/commit/61d4369e3fcb32bd0993c0251be14b4ac8bec927))
137
+ - generate a valid implementation for navigation execution ([9c605b4](https://gitlab.com/rxap/packages/commit/9c605b4dd25091ad50c88cb45239f413ab58d29b))
138
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
139
+ - generate window specific methods ([baa38c3](https://gitlab.com/rxap/packages/commit/baa38c38b6db6f98170b6d0afab28dacf601a275))
140
+ - move additional table header options into the options object ([bb3aa5b](https://gitlab.com/rxap/packages/commit/bb3aa5b8c827dd10250a9d7c764f3226d8310557))
141
+ - move additional table header options into the options object ([1810762](https://gitlab.com/rxap/packages/commit/18107623efb019cb55d3ee882fd757feae0b4a17))
142
+ - only set to unknown type if type property is empty or object ([717cae1](https://gitlab.com/rxap/packages/commit/717cae14da2ccb091c3138910859060322f486f0))
143
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
144
+ - remove css class usage of container ([472cc12](https://gitlab.com/rxap/packages/commit/472cc12f824acc10bca596e4a34e8bc13e809eaa))
145
+ - remove custom controller name generation ([753d702](https://gitlab.com/rxap/packages/commit/753d70223ddf3db5fa985d69d4d506d3639ae93b))
146
+ - remove deprecated code ([ed61f38](https://gitlab.com/rxap/packages/commit/ed61f38ddd6b11f12b9c886ae94683c56b125457))
147
+ - remove old mat tooltip i18n ([5292efe](https://gitlab.com/rxap/packages/commit/5292efe674feb8e863f40775a1cabd838173523c))
148
+ - schema ref urls ([864229b](https://gitlab.com/rxap/packages/commit/864229bead46725c3d5a4acdee95342209c907fc))
149
+ - table button component generation ([b76453d](https://gitlab.com/rxap/packages/commit/b76453d4077f61840cc83aff732b8fdeff479457))
150
+ - update table action generator to new concept ([fadb1f6](https://gitlab.com/rxap/packages/commit/fadb1f68763a842cc3b363429c7f1dcfd1a5266c))
151
+ - use role for sub schematic decision ([cb215f5](https://gitlab.com/rxap/packages/commit/cb215f510dbcc13be92c14d6f69dce0bd264d58f))
152
+ - use table type as base for the form filter type ([ef00fe0](https://gitlab.com/rxap/packages/commit/ef00fe0628642a1d02b6452c6b6a1f5ea5236baa))
153
+
154
+ ### Features
155
+
156
+ - add navigation header button schematic ([02ef47c](https://gitlab.com/rxap/packages/commit/02ef47c6f22d25e69c1b468f65cdcaa93e97a26b))
157
+ - support custom table action options pass through ([2a502de](https://gitlab.com/rxap/packages/commit/2a502def23628bf54cdc73b18b55cd3886ec6a45))
158
+ - support non standalone form definitions ([7fbb153](https://gitlab.com/rxap/packages/commit/7fbb153bf6f0c5544fb512f7710a87401b15f6c9))
159
+ - support open api backend ([71dac49](https://gitlab.com/rxap/packages/commit/71dac49b866ebc9fbf4fbee683a29255efee7abb))
160
+ - support overwrite array ([2696160](https://gitlab.com/rxap/packages/commit/2696160aef2cf384edca3235aa0aaadc3afb97cc))
161
+
162
+ ### Performance Improvements
163
+
164
+ - improve ts-morph transform performance ([737d375](https://gitlab.com/rxap/packages/commit/737d37553f6ced9646e12deb1e7bad56b77efc9d))
165
+
166
+ ### Reverts
167
+
168
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
169
+
170
+ # [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.22...@rxap/schematic-angular@16.1.0-dev.23) (2023-10-09)
171
+
172
+ ### Bug Fixes
173
+
174
+ - schema ref urls ([dd1f3a0](https://gitlab.com/rxap/packages/commit/dd1f3a012bbba3f1725e2b41eda139fc18bd5f13))
175
+
176
+ # [16.1.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.21...@rxap/schematic-angular@16.1.0-dev.22) (2023-10-09)
177
+
178
+ ### Bug Fixes
179
+
180
+ - only set to unknown type if type property is empty or object ([44cd819](https://gitlab.com/rxap/packages/commit/44cd81935248d5941e55e6fbb4a983ccdbbd590c))
181
+
182
+ ### Features
183
+
184
+ - support overwrite array ([e528c87](https://gitlab.com/rxap/packages/commit/e528c87fd5fb49898583e0c08c191942e7e2f8e4))
185
+
186
+ # [16.1.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.20...@rxap/schematic-angular@16.1.0-dev.21) (2023-10-08)
187
+
188
+ ### Features
189
+
190
+ - support non standalone form definitions ([45f88c6](https://gitlab.com/rxap/packages/commit/45f88c6409439ea7b8dfb87e2c4a445570ae425e))
191
+
192
+ # [16.1.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.19...@rxap/schematic-angular@16.1.0-dev.20) (2023-10-02)
193
+
194
+ ### Bug Fixes
195
+
196
+ - ensure required packages are installed ([fbef16e](https://gitlab.com/rxap/packages/commit/fbef16edb34530ed4414a5c597096c1e0ecd537e))
197
+
198
+ # [16.1.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.18...@rxap/schematic-angular@16.1.0-dev.19) (2023-10-02)
199
+
200
+ ### Bug Fixes
201
+
202
+ - add generator termination indicator ([aa34baf](https://gitlab.com/rxap/packages/commit/aa34baf92397cf320859845fb7b5a4765b77d4d9))
203
+ - ensure required packages are added to package.json ([ebe0858](https://gitlab.com/rxap/packages/commit/ebe085822edb94a276f7f79dd70d28c9872f7b32))
204
+ - generate a valid implementation for navigation execution ([d9d13d1](https://gitlab.com/rxap/packages/commit/d9d13d11c56bc5b0c5c130c21281e2c2d91e575a))
205
+
206
+ # [16.1.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.17...@rxap/schematic-angular@16.1.0-dev.18) (2023-10-01)
207
+
208
+ ### Bug Fixes
209
+
210
+ - move additional table header options into the options object ([3284d7c](https://gitlab.com/rxap/packages/commit/3284d7cd7aba7ae41255bd2bcd8b9dd6c37f92f6))
211
+
212
+ # [16.1.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.16...@rxap/schematic-angular@16.1.0-dev.17) (2023-10-01)
213
+
214
+ ### Bug Fixes
215
+
216
+ - move additional table header options into the options object ([731702b](https://gitlab.com/rxap/packages/commit/731702baac87997ebce3248c68d48ed083fa138f))
217
+
218
+ # [16.1.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.15...@rxap/schematic-angular@16.1.0-dev.16) (2023-09-21)
219
+
220
+ ### Bug Fixes
221
+
222
+ - change overscroll-contain to overscroll-auto ([0a8db9f](https://gitlab.com/rxap/packages/commit/0a8db9ff3d131b98d207ad40aef411927ebdc837))
223
+
224
+ # [16.1.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.14...@rxap/schematic-angular@16.1.0-dev.15) (2023-09-14)
225
+
226
+ ### Bug Fixes
227
+
228
+ - remove css class usage of container ([9a1969f](https://gitlab.com/rxap/packages/commit/9a1969f8748a08d6d948f9e7d4f4b511c1349352))
229
+
230
+ # [16.1.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.13...@rxap/schematic-angular@16.1.0-dev.14) (2023-09-12)
231
+
232
+ ### Bug Fixes
233
+
234
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
235
+
236
+ # [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.12...@rxap/schematic-angular@16.1.0-dev.13) (2023-09-12)
237
+
238
+ **Note:** Version bump only for package @rxap/schematic-angular
239
+
240
+ # [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.11...@rxap/schematic-angular@16.1.0-dev.12) (2023-09-07)
241
+
242
+ **Note:** Version bump only for package @rxap/schematic-angular
243
+
244
+ # [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.10...@rxap/schematic-angular@16.1.0-dev.11) (2023-09-03)
245
+
246
+ **Note:** Version bump only for package @rxap/schematic-angular
247
+
248
+ # [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.9...@rxap/schematic-angular@16.1.0-dev.10) (2023-09-03)
249
+
250
+ ### Bug Fixes
251
+
252
+ - remove deprecated code ([8c3fda1](https://gitlab.com/rxap/packages/commit/8c3fda114efa98adbdde8417f6a5d793b5db1f77))
253
+
254
+ # [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.8...@rxap/schematic-angular@16.1.0-dev.9) (2023-08-31)
255
+
256
+ ### Bug Fixes
257
+
258
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
259
+
260
+ # [16.1.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.7...@rxap/schematic-angular@16.1.0-dev.8) (2023-08-17)
261
+
262
+ ### Reverts
263
+
264
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
265
+
266
+ # [16.1.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.6...@rxap/schematic-angular@16.1.0-dev.7) (2023-08-16)
267
+
268
+ ### Bug Fixes
269
+
270
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
271
+
272
+ # [16.1.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.5...@rxap/schematic-angular@16.1.0-dev.6) (2023-08-14)
273
+
274
+ ### Bug Fixes
275
+
276
+ - controller name composition ([d7c89a4](https://gitlab.com/rxap/packages/commit/d7c89a41dd3bfa6ab599e1eded3a1f2be92828e7))
277
+ - remove custom controller name generation ([525554b](https://gitlab.com/rxap/packages/commit/525554b252be90339cec8a7d25845b08ae9a7b32))
278
+ - remove old mat tooltip i18n ([fbffc23](https://gitlab.com/rxap/packages/commit/fbffc23fc346b5f5b6636f2b2735e088763c437f))
279
+ - table button component generation ([da7da39](https://gitlab.com/rxap/packages/commit/da7da39788dda48d23d7befcdc8395201e5caafe))
280
+
281
+ ### Features
282
+
283
+ - add navigation header button schematic ([5293374](https://gitlab.com/rxap/packages/commit/5293374546ce02201abe987dc1f1901c753d55ca))
284
+
285
+ # [16.1.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.4...@rxap/schematic-angular@16.1.0-dev.5) (2023-08-14)
286
+
287
+ ### Bug Fixes
288
+
289
+ - add missing import ([04df10c](https://gitlab.com/rxap/packages/commit/04df10c4fe7cac05a00793d565fdf5107fac91c8))
290
+ - build controller name for tables ([ce4c728](https://gitlab.com/rxap/packages/commit/ce4c728b941f9808d6d4dd7b1245ce4259acf823))
291
+ - check with role ([d9bacb2](https://gitlab.com/rxap/packages/commit/d9bacb27e94276a5e1860d89a201a02a9ee12634))
292
+ - controller naming and route ([6004d02](https://gitlab.com/rxap/packages/commit/6004d02890eb4d9b4d8369a9fa9b7726f7af28e2))
293
+ - ensure table action respect then backend type ([f49c961](https://gitlab.com/rxap/packages/commit/f49c96109a1c290945bb2d69ac06cf020cfc02d8))
294
+ - extend debug output ([a3f71c6](https://gitlab.com/rxap/packages/commit/a3f71c6a0380037642e72cd03a095d9127c9ee96))
295
+ - generate window specific methods ([b73445f](https://gitlab.com/rxap/packages/commit/b73445fce4f3d29b5942866461436b4c19ddefdb))
296
+ - update table action generator to new concept ([e08a27f](https://gitlab.com/rxap/packages/commit/e08a27fc9755eb25d695991234f8ec1d0770b176))
297
+ - use table type as base for the form filter type ([d05a200](https://gitlab.com/rxap/packages/commit/d05a200bf4c6e6734eecd7029139c3939dc67576))
298
+
299
+ ### Performance Improvements
300
+
301
+ - improve ts-morph transform performance ([ec059e6](https://gitlab.com/rxap/packages/commit/ec059e68dd50aa89391d71cbcd453a45b2596439))
302
+
6
303
  # [16.1.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.3...@rxap/schematic-angular@16.1.0-dev.4) (2023-08-07)
7
304
 
8
305
  ### Bug Fixes
package/README.md CHANGED
@@ -17,5 +17,5 @@ yarn add @rxap/schematic-angular
17
17
  ```
18
18
  **Install peer dependencies:**
19
19
  ```bash
20
- yarn add @angular-devkit/core@^16.1.4 @angular-devkit/schematics@^16.1.4 @rxap/schematics-ts-morph@^16.0.0-dev.8 @rxap/schematics-utilities@^16.0.0-dev.7 @rxap/utilities@^16.0.0-dev.7 ts-morph@^18.0.0
20
+ yarn add @angular-devkit/core@^16.1.4 @angular-devkit/schematics@^16.1.4 @rxap/schematics-ts-morph@^16.0.0-dev.34 @rxap/schematics-utilities@^16.0.0-dev.21 @rxap/utilities@^16.0.0-dev.23 ts-morph@^18.0.0 tslib@2.6.2
21
21
  ```
package/collection.json CHANGED
@@ -25,6 +25,21 @@
25
25
  "schema": "./src/schematics/table/table-action/schema.json",
26
26
  "description": "Generates a table action."
27
27
  },
28
+ "table-header-button": {
29
+ "factory": "./src/schematics/table/table-header-button/index",
30
+ "schema": "./src/schematics/table/table-header-button/schema.json",
31
+ "description": "Generates a table header-button."
32
+ },
33
+ "form-table-header-button": {
34
+ "factory": "./src/schematics/table/header-button/form-table-header-button/index",
35
+ "schema": "./src/schematics/table/header-button/form-table-header-button/schema.json",
36
+ "description": "Generates a table form header-button."
37
+ },
38
+ "navigation-table-header-button": {
39
+ "factory": "./src/schematics/table/header-button/navigation-table-header-button/index",
40
+ "schema": "./src/schematics/table/header-button/navigation-table-header-button/schema.json",
41
+ "description": "Generates a table navigation header-button."
42
+ },
28
43
  "accordion-component": {
29
44
  "schema": "./src/schematics/accordion/accordion-component/schema.json",
30
45
  "factory": "./src/schematics/accordion/accordion-component/index",
@@ -90,6 +105,11 @@
90
105
  "factory": "./src/schematics/table/action/operation-table-action/index",
91
106
  "description": "The operation-table-action schematic"
92
107
  },
108
+ "open-api-table-action": {
109
+ "schema": "./src/schematics/table/action/open-api-table-action/schema.json",
110
+ "factory": "./src/schematics/table/action/open-api-table-action/index",
111
+ "description": "The open-api-table-action schematic"
112
+ },
93
113
  "tree-component": {
94
114
  "schema": "./src/schematics/tree-component/schema.json",
95
115
  "factory": "./src/schematics/tree-component/index",
@@ -106,4 +126,4 @@
106
126
  "description": "The accordion-item-tree-table-component schematic"
107
127
  }
108
128
  }
109
- }
129
+ }
package/package.json CHANGED
@@ -1,63 +1,56 @@
1
1
  {
2
+ "version": "16.1.0-dev.41",
2
3
  "name": "@rxap/schematic-angular",
3
- "version": "16.1.0-dev.4",
4
- "type": "commonjs",
5
- "schematics": "./collection.json",
6
- "publishConfig": {
7
- "access": "public",
8
- "directory": "../../../dist/packages/schematic/angular"
9
- },
10
- "keywords": [
11
- "rxap",
12
- "packages",
13
- "schematic",
14
- "angular"
15
- ],
16
- "homepage": "https:/gitlab.com/rxap/packages/packages/schematic/angular",
17
- "bugs": {
18
- "url": "https://gitlab.com/rxap/packages/-/issues",
19
- "email": "incoming+rxap-packages-14898188-issue-@incoming.gitlab.com"
20
- },
21
4
  "license": "GPL-3.0-or-later",
22
- "repository": {
23
- "type": "git",
24
- "url": "https://gitlab.com/rxap/packages.git",
25
- "directory": "packages/schematic/angular"
26
- },
27
- "author": {
28
- "name": "Merzough Münker",
29
- "email": "mmuenker@digitaix.com"
30
- },
31
5
  "dependencies": {
32
- "ignore": "^5.2.4",
6
+ "ignore": "5.2.4",
33
7
  "process": "0.11.10",
34
- "semver": "^7.3.5",
35
- "tslib": "2.6.1"
8
+ "semver": "7.5.3",
9
+ "tslib": "2.6.2",
10
+ "yaml": "2.3.1"
36
11
  },
37
12
  "peerDependencies": {
38
13
  "@angular-devkit/core": "^16.1.4",
39
14
  "@angular-devkit/schematics": "^16.1.4",
40
- "@rxap/schematics-ts-morph": "^16.0.0-dev.8",
41
- "@rxap/schematics-utilities": "^16.0.0-dev.7",
42
- "@rxap/utilities": "^16.0.0-dev.7",
15
+ "@rxap/schematics-ts-morph": "^16.0.0-dev.34",
16
+ "@rxap/schematics-utilities": "^16.0.0-dev.21",
17
+ "@rxap/utilities": "^16.0.0-dev.23",
43
18
  "ts-morph": "^18.0.0",
44
- "@rxap/node-utilities": "1.1.0-dev.1",
45
- "@rxap/workspace-ts-morph": "0.1.0-dev.0",
46
- "@rxap/workspace-utilities": "0.1.0-dev.3"
19
+ "tslib": "2.6.2",
20
+ "@rxap/node-utilities": "1.1.0-dev.15",
21
+ "@rxap/ts-morph": "0.1.0-dev.19",
22
+ "@rxap/workspace-ts-morph": "0.1.0-dev.12",
23
+ "@rxap/workspace-utilities": "0.1.0-dev.26"
47
24
  },
25
+ "author": {
26
+ "name": "Merzough Münker",
27
+ "email": "mmuenker@digitaix.com"
28
+ },
29
+ "bugs": {
30
+ "url": "https://gitlab.com/rxap/packages/-/issues",
31
+ "email": "incoming+rxap-packages-14898188-issue-@incoming.gitlab.com"
32
+ },
33
+ "homepage": "https:/gitlab.com/rxap/packages/packages/schematic/angular",
34
+ "keywords": [
35
+ "angular",
36
+ "packages",
37
+ "rxap",
38
+ "schematic",
39
+ "schematic-angular"
40
+ ],
48
41
  "nx-migrations": {
49
42
  "packageGroup": [
50
43
  {
51
44
  "package": "@rxap/schematics-ts-morph",
52
- "version": "16.0.0-dev.8"
45
+ "version": "16.0.0-dev.34"
53
46
  },
54
47
  {
55
48
  "package": "@rxap/schematics-utilities",
56
- "version": "16.0.0-dev.7"
49
+ "version": "16.0.0-dev.21"
57
50
  },
58
51
  {
59
52
  "package": "@rxap/utilities",
60
- "version": "16.0.0-dev.7"
53
+ "version": "16.0.0-dev.23"
61
54
  },
62
55
  {
63
56
  "package": "@rxap/workspace-utilities",
@@ -65,7 +58,18 @@
65
58
  }
66
59
  ]
67
60
  },
68
- "gitHead": "506d94941fbc9a3b548c6cbafc15949aaa5c89e0",
61
+ "publishConfig": {
62
+ "access": "public",
63
+ "directory": "../../../dist/packages/schematic/angular"
64
+ },
65
+ "repository": {
66
+ "type": "git",
67
+ "url": "https://gitlab.com/rxap/packages.git",
68
+ "directory": "packages/schematic/angular"
69
+ },
70
+ "schematics": "./collection.json",
71
+ "type": "commonjs",
72
+ "gitHead": "01340d5d8ef7f79fcd0bebd54d542bff0a4b536e",
69
73
  "main": "./src/index.js",
70
74
  "types": "./src/index.d.ts"
71
75
  }
@@ -37,19 +37,36 @@ function PrintAngularOptions(schematicName, options) {
37
37
  if (context) {
38
38
  console.log(`\x1b[34m===== Context: ${context}\x1b[0m`);
39
39
  }
40
+ else {
41
+ console.log(`\x1b[34m===== Context: \x1b[31mNONE\x1b[0m`);
42
+ }
40
43
  switch (backend) {
41
44
  case backend_types_1.BackendTypes.NESTJS:
45
+ console.log(`\x1b[31m===== Backend: NESTJS\x1b[0m`);
42
46
  if (nestModule) {
43
47
  console.log(`\x1b[36m===== Nest Module: ${nestModule}\x1b[0m`);
44
48
  }
49
+ else {
50
+ console.log(`\x1b[36m===== Nest Module: \x1b[31mNONE\x1b[0m`);
51
+ }
45
52
  if (controllerName) {
46
53
  console.log(`\x1b[36m===== Controller Name: ${controllerName}\x1b[0m`);
47
54
  }
55
+ else {
56
+ console.log(`\x1b[36m===== Controller Name: \x1b[31mNONE\x1b[0m`);
57
+ }
58
+ break;
59
+ case backend_types_1.BackendTypes.OPEN_API:
60
+ console.log(`\x1b[31m===== Backend: OPENAPI\x1b[0m`);
61
+ break;
62
+ case backend_types_1.BackendTypes.LOCAL:
63
+ console.log(`\x1b[31m===== Backend: LOCAL\x1b[0m`);
48
64
  break;
49
65
  case backend_types_1.BackendTypes.NONE:
50
- default:
51
66
  console.log(`\x1b[31m===== Backend: NONE\x1b[0m`);
52
67
  break;
68
+ default:
69
+ throw new Error(`Unknown backend type: ${backend}`);
53
70
  }
54
71
  }
55
72
  exports.PrintAngularOptions = PrintAngularOptions;
@@ -1 +1 @@
1
- {"version":3,"file":"angular-options.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/angular-options.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"angular-options.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/angular-options.ts"],"names":[],"mappings":"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"}
@@ -18,7 +18,9 @@ function NormalizeFormControlType(control) {
18
18
  case 'uuid':
19
19
  type = 'string';
20
20
  break;
21
- default:
21
+ case 'object':
22
+ case 'Object':
23
+ case '':
22
24
  type = 'unknown';
23
25
  break;
24
26
  }
@@ -1 +1 @@
1
- {"version":3,"file":"form-definition-control.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/form-definition-control.ts"],"names":[],"mappings":";;;AAIA,qEAAyE;AAezE,SAAgB,wBAAwB,CAAC,OAAgE;;IACvG,IAAI,OAAO,GAAG,KAAK,CAAC;IACpB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IACxB,IAAI,KAAK,GAAG,MAAA,OAAO,CAAC,KAAK,mCAAI,IAAI,CAAC;IAClC,IAAI,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;QACpC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;QAC3D,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;QAC9D,IAAI,CAAC,CAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,CAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAChE,QAAQ,IAAI,EAAE;gBACZ,KAAK,MAAM;oBACT,IAAI,GAAG,QAAQ,CAAC;oBAChB,MAAM;gBACR,KAAK,MAAM;oBACT,IAAI,GAAG,QAAQ,CAAC;oBAChB,MAAM;gBACR;oBACE,IAAI,GAAG,SAAS,CAAC;oBACjB,MAAM;aACT;SACF;KACF;IACD,IAAI,OAAO,EAAE;QACX,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,KAAK,CAAC,SAAS,CAAC,CAAA,EAAE;YACzD,OAAO,CAAC,IAAI,CACV,+DAA+D,CAChE,CAAC;YACF,KAAK,GAAG,IAAI,CAAC;SACd;KACF;IACD,OAAO,MAAM,CAAC,IAAI,CAAC;QACjB,IAAI,EAAE,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,SAAS;QACvB,OAAO;QACP,KAAK;KACN,CAAC,CAAC;AACL,CAAC;AAlCD,4DAkCC;AAED,SAAgB,8BAA8B,CAC5C,OAAuC;IAEvC,MAAM,QAAQ,GAAG,IAAA,sDAA6B,EAAC,OAAO,CAAC,CAAC;IACxD,MAAM,EACJ,IAAI,EACJ,UAAU,EACV,aAAa,GACd,GAAG,QAAQ,CAAC;IACb,MAAM,EACJ,IAAI,EACJ,KAAK,EACL,OAAO,GACR,GAAG,wBAAwB,CAAC,QAAQ,CAAC,CAAC;IACvC,OAAO,MAAM,CAAC,IAAI,CAAC;QACjB,IAAI;QACJ,IAAI;QACJ,OAAO;QACP,UAAU;QACV,KAAK;QACL,aAAa;KACd,CAAC,CAAC;AACL,CAAC;AAtBD,wEAsBC;AAED,SAAgB,kCAAkC,CAChD,WAAmD;;IAEnD,OAAO,MAAM,CAAC,IAAI,CAAC,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,GAAG,CAAC,8BAA8B,CAAC,mCAAI,EAAE,CAAC,CAAC;AAC7E,CAAC;AAJD,gFAIC"}
1
+ {"version":3,"file":"form-definition-control.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/form-definition-control.ts"],"names":[],"mappings":";;;AAIA,qEAAyE;AAezE,SAAgB,wBAAwB,CAAC,OAAgE;;IACvG,IAAI,OAAO,GAAG,KAAK,CAAC;IACpB,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IACxB,IAAI,KAAK,GAAG,MAAA,OAAO,CAAC,KAAK,mCAAI,IAAI,CAAC;IAClC,IAAI,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;QACpC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;QAC3D,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;QAC9D,IAAI,CAAC,CAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,CAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAChE,QAAQ,IAAI,EAAE;gBACZ,KAAK,MAAM;oBACT,IAAI,GAAG,QAAQ,CAAC;oBAChB,MAAM;gBACR,KAAK,MAAM;oBACT,IAAI,GAAG,QAAQ,CAAC;oBAChB,MAAM;gBACR,KAAK,QAAQ,CAAC;gBACd,KAAK,QAAQ,CAAC;gBACd,KAAK,EAAE;oBACL,IAAI,GAAG,SAAS,CAAC;oBACjB,MAAM;aACT;SACF;KACF;IACD,IAAI,OAAO,EAAE;QACX,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,KAAK,CAAC,SAAS,CAAC,CAAA,EAAE;YACzD,OAAO,CAAC,IAAI,CACV,+DAA+D,CAChE,CAAC;YACF,KAAK,GAAG,IAAI,CAAC;SACd;KACF;IACD,OAAO,MAAM,CAAC,IAAI,CAAC;QACjB,IAAI,EAAE,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,SAAS;QACvB,OAAO;QACP,KAAK;KACN,CAAC,CAAC;AACL,CAAC;AApCD,4DAoCC;AAED,SAAgB,8BAA8B,CAC5C,OAAuC;IAEvC,MAAM,QAAQ,GAAG,IAAA,sDAA6B,EAAC,OAAO,CAAC,CAAC;IACxD,MAAM,EACJ,IAAI,EACJ,UAAU,EACV,aAAa,GACd,GAAG,QAAQ,CAAC;IACb,MAAM,EACJ,IAAI,EACJ,KAAK,EACL,OAAO,GACR,GAAG,wBAAwB,CAAC,QAAQ,CAAC,CAAC;IACvC,OAAO,MAAM,CAAC,IAAI,CAAC;QACjB,IAAI;QACJ,IAAI;QACJ,OAAO;QACP,UAAU;QACV,KAAK;QACL,aAAa;KACd,CAAC,CAAC;AACL,CAAC;AAtBD,wEAsBC;AAED,SAAgB,kCAAkC,CAChD,WAAmD;;IAEnD,OAAO,MAAM,CAAC,IAAI,CAAC,MAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,GAAG,CAAC,8BAA8B,CAAC,mCAAI,EAAE,CAAC,CAAC;AAC7E,CAAC;AAJD,gFAIC"}
@@ -9,6 +9,7 @@ export interface NormalizedMinimumTableComponentOptions extends Readonly<Normali
9
9
  columnList: NormalizedTableColumn[];
10
10
  actionList: NormalizedTableAction[];
11
11
  componentName: string;
12
+ controllerName: string;
12
13
  }
13
14
  export declare function NormalizeMinimumTableComponentOptions(options: Readonly<MinimumTableComponentOptions>): NormalizedMinimumTableComponentOptions;
14
15
  export declare function tableInterfaceRule(normalizedOptions: NormalizedMinimumTableComponentOptions): Rule;