@rxap/schematic-angular 16.1.0-dev.9 → 16.1.1-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.
Files changed (168) hide show
  1. package/CHANGELOG.md +358 -0
  2. package/README.md +1 -1
  3. package/collection.json +5 -0
  4. package/package.json +48 -41
  5. package/src/lib/accordion-item.d.ts +2 -2
  6. package/src/lib/accordion-item.js +4 -4
  7. package/src/lib/accordion-item.js.map +1 -1
  8. package/src/lib/adapter-options.d.ts +11 -5
  9. package/src/lib/adapter-options.js +8 -5
  10. package/src/lib/adapter-options.js.map +1 -1
  11. package/src/lib/angular-options.js +1 -1
  12. package/src/lib/angular-options.js.map +1 -1
  13. package/src/lib/data-grid-item.d.ts +1 -1
  14. package/src/lib/data-grid-item.js +2 -2
  15. package/src/lib/data-grid-item.js.map +1 -1
  16. package/src/lib/data-grid-options.d.ts +3 -3
  17. package/src/lib/data-grid-options.js +1 -1
  18. package/src/lib/data-grid-options.js.map +1 -1
  19. package/src/lib/dialog-action.d.ts +1 -1
  20. package/src/lib/dialog-action.js +2 -2
  21. package/src/lib/dialog-action.js.map +1 -1
  22. package/src/lib/existing-method.d.ts +11 -2
  23. package/src/lib/existing-method.js +8 -2
  24. package/src/lib/existing-method.js.map +1 -1
  25. package/src/lib/form-component-control.d.ts +1 -1
  26. package/src/lib/form-component-control.js +2 -2
  27. package/src/lib/form-component-control.js.map +1 -1
  28. package/src/lib/form-definition-control.d.ts +1 -1
  29. package/src/lib/form-definition-control.js +6 -4
  30. package/src/lib/form-definition-control.js.map +1 -1
  31. package/src/lib/minimum-table-component-options.d.ts +6 -4
  32. package/src/lib/minimum-table-component-options.js +87 -29
  33. package/src/lib/minimum-table-component-options.js.map +1 -1
  34. package/src/lib/minimum-table-options.d.ts +10 -7
  35. package/src/lib/minimum-table-options.js +9 -6
  36. package/src/lib/minimum-table-options.js.map +1 -1
  37. package/src/lib/table-action.d.ts +1 -1
  38. package/src/lib/table-action.js +11 -5
  39. package/src/lib/table-action.js.map +1 -1
  40. package/src/lib/table-column.d.ts +16 -4
  41. package/src/lib/table-column.js +93 -6
  42. package/src/lib/table-column.js.map +1 -1
  43. package/src/lib/table-header-button.d.ts +4 -6
  44. package/src/lib/table-header-button.js +2 -1
  45. package/src/lib/table-header-button.js.map +1 -1
  46. package/src/lib/table-open-api-options.d.ts +3 -2
  47. package/src/lib/table-open-api-options.js +1 -1
  48. package/src/lib/table-open-api-options.js.map +1 -1
  49. package/src/lib/table-options.d.ts +9 -5
  50. package/src/lib/table-options.js +1 -1
  51. package/src/lib/table-options.js.map +1 -1
  52. package/src/lib/table-property.d.ts +14 -0
  53. package/src/lib/table-property.js +46 -0
  54. package/src/lib/table-property.js.map +1 -0
  55. package/src/lib/table-row-action.d.ts +5 -1
  56. package/src/lib/table-row-action.js +9 -7
  57. package/src/lib/table-row-action.js.map +1 -1
  58. package/src/lib/tree-table-options.d.ts +10 -6
  59. package/src/lib/tree-table-options.js +3 -3
  60. package/src/lib/tree-table-options.js.map +1 -1
  61. package/src/lib/type-import.d.ts +4 -0
  62. package/src/lib/type-import.js +38 -0
  63. package/src/lib/type-import.js.map +1 -0
  64. package/src/schematics/accordion/accordion-component/files/component/__componentName__.component.ts.template +5 -5
  65. package/src/schematics/accordion/accordion-component/index.d.ts +3 -1
  66. package/src/schematics/accordion/accordion-component/index.js +15 -8
  67. package/src/schematics/accordion/accordion-component/index.js.map +1 -1
  68. package/src/schematics/accordion/accordion-component/schema.json +13 -3
  69. package/src/schematics/accordion/accordion-item-component/files/component/__componentName__.component.html.template +2 -2
  70. package/src/schematics/accordion/accordion-item-component/files/component/__componentName__.component.ts.template +0 -2
  71. package/src/schematics/accordion/accordion-item-component/index.js +3 -3
  72. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  73. package/src/schematics/accordion/accordion-item-component/schema.json +13 -3
  74. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +3 -3
  75. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +9 -7
  76. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  77. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +13 -3
  78. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +7 -4
  79. package/src/schematics/accordion/item/accordion-item-table-component/index.js +5 -5
  80. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  81. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +57 -8
  82. package/src/schematics/accordion/item/accordion-item-tree-table-component/files/component/__componentName__.component.html.template +1 -1
  83. package/src/schematics/accordion/item/accordion-item-tree-table-component/files/component/__componentName__.component.ts.template +3 -3
  84. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +4 -1
  85. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +1 -1
  86. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  87. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +62 -9
  88. package/src/schematics/angular.schema.json +61 -0
  89. package/src/schematics/data-grid-component/files/form/__componentName__.component.html.template +1 -1
  90. package/src/schematics/data-grid-component/index.d.ts +1 -1
  91. package/src/schematics/data-grid-component/index.js +8 -7
  92. package/src/schematics/data-grid-component/index.js.map +1 -1
  93. package/src/schematics/data-grid-component/schema.json +13 -3
  94. package/src/schematics/dialog-component/files/component/__componentName__.component.html.template +1 -1
  95. package/src/schematics/dialog-component/index.js +3 -3
  96. package/src/schematics/dialog-component/index.js.map +1 -1
  97. package/src/schematics/dialog-component/schema.json +13 -3
  98. package/src/schematics/form/control/input-form-control/index.js +1 -1
  99. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  100. package/src/schematics/form/control/select-form-control/index.js +1 -1
  101. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  102. package/src/schematics/form/control/table-select-form-control/index.d.ts +2 -2
  103. package/src/schematics/form/control/table-select-form-control/index.js +3 -3
  104. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  105. package/src/schematics/form/form-component/files/component/__componentName__.component.ts.template +0 -2
  106. package/src/schematics/form/form-component/index.d.ts +1 -1
  107. package/src/schematics/form/form-component/index.js +1 -1
  108. package/src/schematics/form/form-component/index.js.map +1 -1
  109. package/src/schematics/form/form-control/index.js +1 -1
  110. package/src/schematics/form/form-control/index.js.map +1 -1
  111. package/src/schematics/form/form-definition/index.d.ts +2 -2
  112. package/src/schematics/form/form-definition/index.js +16 -9
  113. package/src/schematics/form/form-definition/index.js.map +1 -1
  114. package/src/schematics/form/form-definition/schema.d.ts +2 -1
  115. package/src/schematics/form/form-definition/schema.json +5 -0
  116. package/src/schematics/general.schema.json +41 -0
  117. package/src/schematics/table/action/dialog-table-action/index.d.ts +3 -1
  118. package/src/schematics/table/action/dialog-table-action/index.js +1 -1
  119. package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
  120. package/src/schematics/table/action/dialog-table-action/schema.json +12 -2
  121. package/src/schematics/table/action/form-table-action/index.d.ts +6 -3
  122. package/src/schematics/table/action/form-table-action/index.js +46 -18
  123. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  124. package/src/schematics/table/action/form-table-action/schema.d.ts +13 -1
  125. package/src/schematics/table/action/form-table-action/schema.json +71 -3
  126. package/src/schematics/table/action/navigation-table-action/index.js +4 -3
  127. package/src/schematics/table/action/navigation-table-action/index.js.map +1 -1
  128. package/src/schematics/table/action/navigation-table-action/schema.d.ts +1 -0
  129. package/src/schematics/table/action/navigation-table-action/schema.json +5 -0
  130. package/src/schematics/table/action/open-api-table-action/index.d.ts +10 -0
  131. package/src/schematics/table/action/open-api-table-action/index.js +50 -0
  132. package/src/schematics/table/action/open-api-table-action/index.js.map +1 -0
  133. package/src/schematics/table/action/open-api-table-action/schema.d.ts +9 -0
  134. package/src/schematics/table/action/open-api-table-action/schema.json +121 -0
  135. package/src/schematics/table/action/operation-table-action/index.js +1 -1
  136. package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
  137. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +10 -3
  138. package/src/schematics/table/header-button/form-table-header-button/index.js +57 -48
  139. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
  140. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +8 -0
  141. package/src/schematics/table/header-button/form-table-header-button/schema.json +17 -1
  142. package/src/schematics/table/header-button/navigation-table-header-button/index.js +30 -8
  143. package/src/schematics/table/header-button/navigation-table-header-button/index.js.map +1 -1
  144. package/src/schematics/table/header-button/navigation-table-header-button/schema.d.ts +1 -0
  145. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +8 -6
  146. package/src/schematics/table/table-action/index.js +1 -1
  147. package/src/schematics/table/table-action/index.js.map +1 -1
  148. package/src/schematics/table/table-action/schema.json +8 -0
  149. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +31 -40
  150. package/src/schematics/table/table-component/files/component/__componentName__.component.ts.template +17 -5
  151. package/src/schematics/table/table-component/index.d.ts +6 -8
  152. package/src/schematics/table/table-component/index.js +41 -28
  153. package/src/schematics/table/table-component/index.js.map +1 -1
  154. package/src/schematics/table/table-component/schema.json +297 -218
  155. package/src/schematics/table/table-header-button/index.d.ts +2 -4
  156. package/src/schematics/table/table-header-button/index.js +1 -1
  157. package/src/schematics/table/table-header-button/index.js.map +1 -1
  158. package/src/schematics/table/table-header-button/schema.d.ts +2 -1
  159. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +94 -82
  160. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.ts.template +17 -6
  161. package/src/schematics/table/tree-table-component/index.d.ts +1 -1
  162. package/src/schematics/table/tree-table-component/index.js +20 -25
  163. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  164. package/src/schematics/table/tree-table-component/schema.json +90 -7
  165. package/src/schematics/tree-component/index.d.ts +2 -2
  166. package/src/schematics/tree-component/index.js +2 -2
  167. package/src/schematics/tree-component/index.js.map +1 -1
  168. package/src/schematics/tree-component/schema.json +11 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,364 @@
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.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0...@rxap/schematic-angular@16.1.1-dev.0) (2024-02-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ - fix tree table name generation ([f2c1ee2](https://gitlab.com/rxap/packages/commit/f2c1ee234f594e127efad6a2ef294bc946cfe7b0))
11
+ - remove FlexLayout dependency ([b6601be](https://gitlab.com/rxap/packages/commit/b6601be8c14d31668e047a08af45e10fc0df1b91))
12
+ - set the componentName if not defined ([6f708bf](https://gitlab.com/rxap/packages/commit/6f708bf3da1af7bdeff34dd2b66f9b69f79a2640))
13
+ - support new option type for type ([0034a57](https://gitlab.com/rxap/packages/commit/0034a5761963ae79a8ab66b47bb1b4c0d64c084b))
14
+ - update the accordion data grid correctly ([2e5b8eb](https://gitlab.com/rxap/packages/commit/2e5b8ebb91a2fc720767257ce505654224d9ac72))
15
+ - use correct property path ([f2c1e6e](https://gitlab.com/rxap/packages/commit/f2c1e6e4a29fc801f3e802961679348a8d454291))
16
+ - use the componentName property ([04ccbda](https://gitlab.com/rxap/packages/commit/04ccbda0d219a050cfdca06a420d0dfc7827ea4d))
17
+
18
+ # [16.1.0](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.56...@rxap/schematic-angular@16.1.0) (2024-02-07)
19
+
20
+ **Note:** Version bump only for package @rxap/schematic-angular
21
+
22
+ # [16.1.0-dev.56](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.55...@rxap/schematic-angular@16.1.0-dev.56) (2023-11-23)
23
+
24
+ ### Bug Fixes
25
+
26
+ - add modifier option show-archived-slide ([5a57820](https://gitlab.com/rxap/packages/commit/5a578203014a878908a34c0e23400d9633007c98))
27
+
28
+ # [16.1.0-dev.55](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.54...@rxap/schematic-angular@16.1.0-dev.55) (2023-11-19)
29
+
30
+ ### Bug Fixes
31
+
32
+ - update template ([0d9b369](https://gitlab.com/rxap/packages/commit/0d9b369f2cff641917787fe4ee82870b03526af3))
33
+
34
+ # [16.1.0-dev.54](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.53...@rxap/schematic-angular@16.1.0-dev.54) (2023-11-19)
35
+
36
+ ### Bug Fixes
37
+
38
+ - update template ([d06a584](https://gitlab.com/rxap/packages/commit/d06a584846451b42e8850e023c8829bbb5cf8ab4))
39
+
40
+ # [16.1.0-dev.53](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.52...@rxap/schematic-angular@16.1.0-dev.53) (2023-11-19)
41
+
42
+ ### Bug Fixes
43
+
44
+ - update template ([93010e4](https://gitlab.com/rxap/packages/commit/93010e4c0f3b7169f7c4316b74a2a68df61058f9))
45
+
46
+ # [16.1.0-dev.52](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.51...@rxap/schematic-angular@16.1.0-dev.52) (2023-11-19)
47
+
48
+ ### Bug Fixes
49
+
50
+ - update template ([472261b](https://gitlab.com/rxap/packages/commit/472261bea3a691ce3d83476fbe91e2266e898846))
51
+
52
+ # [16.1.0-dev.51](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.50...@rxap/schematic-angular@16.1.0-dev.51) (2023-11-19)
53
+
54
+ ### Bug Fixes
55
+
56
+ - simplify the table action form name ([af8012e](https://gitlab.com/rxap/packages/commit/af8012e60602d4a8bcb191e97af18b93dc1fe32b))
57
+
58
+ # [16.1.0-dev.50](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.49...@rxap/schematic-angular@16.1.0-dev.50) (2023-11-19)
59
+
60
+ ### Bug Fixes
61
+
62
+ - include property list in operation dto generation ([db77bdd](https://gitlab.com/rxap/packages/commit/db77bddfceb5858a6468830d62133aff49bfea65))
63
+
64
+ # [16.1.0-dev.49](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.48...@rxap/schematic-angular@16.1.0-dev.49) (2023-11-19)
65
+
66
+ ### Bug Fixes
67
+
68
+ - preserve table column name prefix ([6ad3d2b](https://gitlab.com/rxap/packages/commit/6ad3d2b528a9d5ae022ad3fef7a0aa60220cf6d4))
69
+
70
+ # [16.1.0-dev.48](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.47...@rxap/schematic-angular@16.1.0-dev.48) (2023-11-19)
71
+
72
+ ### Features
73
+
74
+ - support complex and importable types ([1636580](https://gitlab.com/rxap/packages/commit/1636580713961324683ea0246e109e35e7efc6c1))
75
+
76
+ # [16.1.0-dev.47](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.46...@rxap/schematic-angular@16.1.0-dev.47) (2023-11-19)
77
+
78
+ ### Bug Fixes
79
+
80
+ - use Object.freeze instead of Object.seal ([630008f](https://gitlab.com/rxap/packages/commit/630008fe0eed3ec9f4670cfe6ba8e25cc8b3e42f))
81
+
82
+ ### Features
83
+
84
+ - support complex and importable types ([b8b6e16](https://gitlab.com/rxap/packages/commit/b8b6e16fcdf6544681f84aa5d9ddf302c1ac34db))
85
+
86
+ # [16.1.0-dev.46](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.45...@rxap/schematic-angular@16.1.0-dev.46) (2023-11-18)
87
+
88
+ ### Bug Fixes
89
+
90
+ - support custom form components ([7df7f07](https://gitlab.com/rxap/packages/commit/7df7f07c2de91d77116d5c190ff8b538be1eeac2))
91
+
92
+ # [16.1.0-dev.45](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.44...@rxap/schematic-angular@16.1.0-dev.45) (2023-11-18)
93
+
94
+ ### Bug Fixes
95
+
96
+ - support custom table interface properties ([746bd42](https://gitlab.com/rxap/packages/commit/746bd42632ccb699b471ffea25543a76445501ff))
97
+
98
+ # [16.1.0-dev.44](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.43...@rxap/schematic-angular@16.1.0-dev.44) (2023-11-18)
99
+
100
+ ### Bug Fixes
101
+
102
+ - support relativeTo parameter ([0f1e690](https://gitlab.com/rxap/packages/commit/0f1e690f74802761efee09fa73ffb8036b3cefcd))
103
+
104
+ # [16.1.0-dev.43](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.42...@rxap/schematic-angular@16.1.0-dev.43) (2023-11-17)
105
+
106
+ ### Features
107
+
108
+ - support custom column template and pipes ([d45ccab](https://gitlab.com/rxap/packages/commit/d45ccab1ea86b0139e49c5c42ea0131d5fcb5028))
109
+
110
+ # [16.1.0-dev.42](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.41...@rxap/schematic-angular@16.1.0-dev.42) (2023-11-17)
111
+
112
+ ### Bug Fixes
113
+
114
+ - ensure the custom component are imported ([9757656](https://gitlab.com/rxap/packages/commit/9757656618ea6723dfd0b348a1ea25c3700032c2))
115
+
116
+ # [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)
117
+
118
+ ### Bug Fixes
119
+
120
+ - ensure the custom component are imported ([6ebab4b](https://gitlab.com/rxap/packages/commit/6ebab4b626d1ed41df6dc16e3c3a9371c975b89c))
121
+
122
+ # [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)
123
+
124
+ ### Bug Fixes
125
+
126
+ - auto detect the best matching column type ([75f748b](https://gitlab.com/rxap/packages/commit/75f748b841d0495b0a2faa46836e2ad19455c735))
127
+
128
+ # [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)
129
+
130
+ ### Bug Fixes
131
+
132
+ - update table templates ([9e463da](https://gitlab.com/rxap/packages/commit/9e463daa7af811b5f9da7dcf6d1f82ea37f4631f))
133
+ - use prop role for the type of table column ([45759f4](https://gitlab.com/rxap/packages/commit/45759f4ce099aaeee7e31bfc1b85c67cc674db78))
134
+
135
+ # [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)
136
+
137
+ ### Bug Fixes
138
+
139
+ - use dynamic prefix ([67808c0](https://gitlab.com/rxap/packages/commit/67808c0e8c0e708c4179793d38df20435373d1d4))
140
+
141
+ # [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)
142
+
143
+ ### Bug Fixes
144
+
145
+ - support custom form component ([28e26ab](https://gitlab.com/rxap/packages/commit/28e26abb2ef171b9a5c54909dfcc33285c121545))
146
+ - support custom form options ([04c74e6](https://gitlab.com/rxap/packages/commit/04c74e608a93ae37831f72194acc1a5c22b0001d))
147
+
148
+ # [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)
149
+
150
+ ### Bug Fixes
151
+
152
+ - resolve minor template issues ([1f13b90](https://gitlab.com/rxap/packages/commit/1f13b9084fd3de7e97e803f8ca8dfae7feb5cfac))
153
+
154
+ # [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)
155
+
156
+ ### Bug Fixes
157
+
158
+ - use correct path ([30ad62c](https://gitlab.com/rxap/packages/commit/30ad62c1a944a8388e31c41c7d606d686df084b6))
159
+
160
+ # [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)
161
+
162
+ ### Bug Fixes
163
+
164
+ - support custom form component ([6c1a9b7](https://gitlab.com/rxap/packages/commit/6c1a9b7e996aa5bac073a5867b30819748230a84))
165
+
166
+ # [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)
167
+
168
+ ### Bug Fixes
169
+
170
+ - support navigation ([16ce11f](https://gitlab.com/rxap/packages/commit/16ce11f2c60d47fef463259944b659b0a750f1dd))
171
+
172
+ # [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)
173
+
174
+ ### Bug Fixes
175
+
176
+ - support navigation ([2b3542b](https://gitlab.com/rxap/packages/commit/2b3542b50dda823330e1c8f4b0108a1669a607f9))
177
+
178
+ # [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)
179
+
180
+ ### Bug Fixes
181
+
182
+ - support role alias ([284fa94](https://gitlab.com/rxap/packages/commit/284fa94d256e9bcc39a981dbc179d5f810aad330))
183
+
184
+ # [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)
185
+
186
+ ### Bug Fixes
187
+
188
+ - support complex overwrite values ([c2fc6b9](https://gitlab.com/rxap/packages/commit/c2fc6b91c71d99496a2448e75287ea61f49e11c4))
189
+
190
+ # [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)
191
+
192
+ ### Bug Fixes
193
+
194
+ - improve table template ([ddc5469](https://gitlab.com/rxap/packages/commit/ddc546991ef5450893617fa34af590c10997bb92))
195
+ - support custom css class for actions and columns ([f5363df](https://gitlab.com/rxap/packages/commit/f5363dffb13be7f668d41ce606e33aba7f404437))
196
+
197
+ ### Features
198
+
199
+ - add open api table action ([ceee1d8](https://gitlab.com/rxap/packages/commit/ceee1d81d7633d1115010691e631f2974e335805))
200
+
201
+ # [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)
202
+
203
+ ### Bug Fixes
204
+
205
+ - support mat card inline ([0e42a58](https://gitlab.com/rxap/packages/commit/0e42a58206b0c522dd5b5e597ce5657b8ce14c5b))
206
+
207
+ # [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)
208
+
209
+ ### Bug Fixes
210
+
211
+ - only export component as default if root level feature ([fd1515b](https://gitlab.com/rxap/packages/commit/fd1515b3fab4298d9d00b7725922ec12140ad2f2))
212
+
213
+ # [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)
214
+
215
+ ### Bug Fixes
216
+
217
+ - support nested column properties ([8e98214](https://gitlab.com/rxap/packages/commit/8e9821427996fd8445f039a5683dc5ed910c056d))
218
+
219
+ # [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)
220
+
221
+ **Note:** Version bump only for package @rxap/schematic-angular
222
+
223
+ # [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)
224
+
225
+ **Note:** Version bump only for package @rxap/schematic-angular
226
+
227
+ # 16.1.0-dev.24 (2023-10-11)
228
+
229
+ ### Bug Fixes
230
+
231
+ - add generator termination indicator ([15ca23c](https://gitlab.com/rxap/packages/commit/15ca23cd732ca3372a5eba7fba941a6fa1e5278c))
232
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
233
+ - add missing import ([2e1c1d0](https://gitlab.com/rxap/packages/commit/2e1c1d0bef2de65c0abc8fff2c411b90a0c03f02))
234
+ - allow new role types ([1a2d6d0](https://gitlab.com/rxap/packages/commit/1a2d6d034d2b4ea66181a1e46fa30a927aad4e00))
235
+ - allow null or undefined for scope parameter ([949d4d0](https://gitlab.com/rxap/packages/commit/949d4d04a25644a54cbfabc081e83719ace885f2))
236
+ - build controller name for tables ([14d6d94](https://gitlab.com/rxap/packages/commit/14d6d94c30e18eb1ceb876815a99c414f82a172a))
237
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
238
+ - change overscroll-contain to overscroll-auto ([8834055](https://gitlab.com/rxap/packages/commit/88340559e9dcaa45f8d88c4468e77965ba92e2d3))
239
+ - check with role ([99c9ca8](https://gitlab.com/rxap/packages/commit/99c9ca8cd4f71347ee9d66f9b0b59790924140bb))
240
+ - controller name composition ([ad2c82d](https://gitlab.com/rxap/packages/commit/ad2c82df5db0036efedd3bdbb5143483a4a3deb4))
241
+ - controller naming and route ([38054d3](https://gitlab.com/rxap/packages/commit/38054d3ee106e1f50f806e1596da674f268cb4aa))
242
+ - ensure required packages are added to package.json ([a5d5996](https://gitlab.com/rxap/packages/commit/a5d5996709e58f8b9991f276513857e7ce2939cb))
243
+ - ensure required packages are installed ([0c96f09](https://gitlab.com/rxap/packages/commit/0c96f096c85b9192531a353e5ec110b73a0af155))
244
+ - ensure table action respect then backend type ([9f1e659](https://gitlab.com/rxap/packages/commit/9f1e659475926506ba4c083c5c75f6d5d11b9de1))
245
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
246
+ - extend debug output ([61d4369](https://gitlab.com/rxap/packages/commit/61d4369e3fcb32bd0993c0251be14b4ac8bec927))
247
+ - generate a valid implementation for navigation execution ([9c605b4](https://gitlab.com/rxap/packages/commit/9c605b4dd25091ad50c88cb45239f413ab58d29b))
248
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
249
+ - generate window specific methods ([baa38c3](https://gitlab.com/rxap/packages/commit/baa38c38b6db6f98170b6d0afab28dacf601a275))
250
+ - move additional table header options into the options object ([bb3aa5b](https://gitlab.com/rxap/packages/commit/bb3aa5b8c827dd10250a9d7c764f3226d8310557))
251
+ - move additional table header options into the options object ([1810762](https://gitlab.com/rxap/packages/commit/18107623efb019cb55d3ee882fd757feae0b4a17))
252
+ - only set to unknown type if type property is empty or object ([717cae1](https://gitlab.com/rxap/packages/commit/717cae14da2ccb091c3138910859060322f486f0))
253
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
254
+ - remove css class usage of container ([472cc12](https://gitlab.com/rxap/packages/commit/472cc12f824acc10bca596e4a34e8bc13e809eaa))
255
+ - remove custom controller name generation ([753d702](https://gitlab.com/rxap/packages/commit/753d70223ddf3db5fa985d69d4d506d3639ae93b))
256
+ - remove deprecated code ([ed61f38](https://gitlab.com/rxap/packages/commit/ed61f38ddd6b11f12b9c886ae94683c56b125457))
257
+ - remove old mat tooltip i18n ([5292efe](https://gitlab.com/rxap/packages/commit/5292efe674feb8e863f40775a1cabd838173523c))
258
+ - schema ref urls ([864229b](https://gitlab.com/rxap/packages/commit/864229bead46725c3d5a4acdee95342209c907fc))
259
+ - table button component generation ([b76453d](https://gitlab.com/rxap/packages/commit/b76453d4077f61840cc83aff732b8fdeff479457))
260
+ - update table action generator to new concept ([fadb1f6](https://gitlab.com/rxap/packages/commit/fadb1f68763a842cc3b363429c7f1dcfd1a5266c))
261
+ - use role for sub schematic decision ([cb215f5](https://gitlab.com/rxap/packages/commit/cb215f510dbcc13be92c14d6f69dce0bd264d58f))
262
+ - use table type as base for the form filter type ([ef00fe0](https://gitlab.com/rxap/packages/commit/ef00fe0628642a1d02b6452c6b6a1f5ea5236baa))
263
+
264
+ ### Features
265
+
266
+ - add navigation header button schematic ([02ef47c](https://gitlab.com/rxap/packages/commit/02ef47c6f22d25e69c1b468f65cdcaa93e97a26b))
267
+ - support custom table action options pass through ([2a502de](https://gitlab.com/rxap/packages/commit/2a502def23628bf54cdc73b18b55cd3886ec6a45))
268
+ - support non standalone form definitions ([7fbb153](https://gitlab.com/rxap/packages/commit/7fbb153bf6f0c5544fb512f7710a87401b15f6c9))
269
+ - support open api backend ([71dac49](https://gitlab.com/rxap/packages/commit/71dac49b866ebc9fbf4fbee683a29255efee7abb))
270
+ - support overwrite array ([2696160](https://gitlab.com/rxap/packages/commit/2696160aef2cf384edca3235aa0aaadc3afb97cc))
271
+
272
+ ### Performance Improvements
273
+
274
+ - improve ts-morph transform performance ([737d375](https://gitlab.com/rxap/packages/commit/737d37553f6ced9646e12deb1e7bad56b77efc9d))
275
+
276
+ ### Reverts
277
+
278
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
279
+
280
+ # [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)
281
+
282
+ ### Bug Fixes
283
+
284
+ - schema ref urls ([dd1f3a0](https://gitlab.com/rxap/packages/commit/dd1f3a012bbba3f1725e2b41eda139fc18bd5f13))
285
+
286
+ # [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)
287
+
288
+ ### Bug Fixes
289
+
290
+ - only set to unknown type if type property is empty or object ([44cd819](https://gitlab.com/rxap/packages/commit/44cd81935248d5941e55e6fbb4a983ccdbbd590c))
291
+
292
+ ### Features
293
+
294
+ - support overwrite array ([e528c87](https://gitlab.com/rxap/packages/commit/e528c87fd5fb49898583e0c08c191942e7e2f8e4))
295
+
296
+ # [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)
297
+
298
+ ### Features
299
+
300
+ - support non standalone form definitions ([45f88c6](https://gitlab.com/rxap/packages/commit/45f88c6409439ea7b8dfb87e2c4a445570ae425e))
301
+
302
+ # [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)
303
+
304
+ ### Bug Fixes
305
+
306
+ - ensure required packages are installed ([fbef16e](https://gitlab.com/rxap/packages/commit/fbef16edb34530ed4414a5c597096c1e0ecd537e))
307
+
308
+ # [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)
309
+
310
+ ### Bug Fixes
311
+
312
+ - add generator termination indicator ([aa34baf](https://gitlab.com/rxap/packages/commit/aa34baf92397cf320859845fb7b5a4765b77d4d9))
313
+ - ensure required packages are added to package.json ([ebe0858](https://gitlab.com/rxap/packages/commit/ebe085822edb94a276f7f79dd70d28c9872f7b32))
314
+ - generate a valid implementation for navigation execution ([d9d13d1](https://gitlab.com/rxap/packages/commit/d9d13d11c56bc5b0c5c130c21281e2c2d91e575a))
315
+
316
+ # [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)
317
+
318
+ ### Bug Fixes
319
+
320
+ - move additional table header options into the options object ([3284d7c](https://gitlab.com/rxap/packages/commit/3284d7cd7aba7ae41255bd2bcd8b9dd6c37f92f6))
321
+
322
+ # [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)
323
+
324
+ ### Bug Fixes
325
+
326
+ - move additional table header options into the options object ([731702b](https://gitlab.com/rxap/packages/commit/731702baac87997ebce3248c68d48ed083fa138f))
327
+
328
+ # [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)
329
+
330
+ ### Bug Fixes
331
+
332
+ - change overscroll-contain to overscroll-auto ([0a8db9f](https://gitlab.com/rxap/packages/commit/0a8db9ff3d131b98d207ad40aef411927ebdc837))
333
+
334
+ # [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)
335
+
336
+ ### Bug Fixes
337
+
338
+ - remove css class usage of container ([9a1969f](https://gitlab.com/rxap/packages/commit/9a1969f8748a08d6d948f9e7d4f4b511c1349352))
339
+
340
+ # [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)
341
+
342
+ ### Bug Fixes
343
+
344
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
345
+
346
+ # [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)
347
+
348
+ **Note:** Version bump only for package @rxap/schematic-angular
349
+
350
+ # [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)
351
+
352
+ **Note:** Version bump only for package @rxap/schematic-angular
353
+
354
+ # [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)
355
+
356
+ **Note:** Version bump only for package @rxap/schematic-angular
357
+
358
+ # [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)
359
+
360
+ ### Bug Fixes
361
+
362
+ - remove deprecated code ([8c3fda1](https://gitlab.com/rxap/packages/commit/8c3fda114efa98adbdde8417f6a5d793b5db1f77))
363
+
6
364
  # [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)
7
365
 
8
366
  ### 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.13 @rxap/schematics-utilities@^16.0.0-dev.10 @rxap/utilities@^16.0.0-dev.13 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 @rxap/schematics-utilities@^16.0.0 @rxap/ts-morph@^1.0.1 @rxap/utilities@^16.0.0 ts-morph@^18.0.0 tslib@2.6.2
21
21
  ```
package/collection.json CHANGED
@@ -105,6 +105,11 @@
105
105
  "factory": "./src/schematics/table/action/operation-table-action/index",
106
106
  "description": "The operation-table-action schematic"
107
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
+ },
108
113
  "tree-component": {
109
114
  "schema": "./src/schematics/tree-component/schema.json",
110
115
  "factory": "./src/schematics/tree-component/index",
package/package.json CHANGED
@@ -1,64 +1,60 @@
1
1
  {
2
+ "version": "16.1.1-dev.0",
2
3
  "name": "@rxap/schematic-angular",
3
- "version": "16.1.0-dev.9",
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
- "schematic-angular"
16
- ],
17
- "homepage": "https:/gitlab.com/rxap/packages/packages/schematic/angular",
18
- "bugs": {
19
- "url": "https://gitlab.com/rxap/packages/-/issues",
20
- "email": "incoming+rxap-packages-14898188-issue-@incoming.gitlab.com"
21
- },
22
4
  "license": "GPL-3.0-or-later",
23
- "repository": {
24
- "type": "git",
25
- "url": "https://gitlab.com/rxap/packages.git",
26
- "directory": "packages/schematic/angular"
27
- },
28
- "author": {
29
- "name": "Merzough Münker",
30
- "email": "mmuenker@digitaix.com"
31
- },
32
5
  "dependencies": {
33
- "ignore": "^5.2.4",
6
+ "ignore": "5.2.4",
34
7
  "process": "0.11.10",
35
- "semver": "^7.3.5",
36
- "tslib": "2.6.1"
8
+ "semver": "7.5.3",
9
+ "tslib": "2.6.2",
10
+ "yaml": "2.3.1"
37
11
  },
38
12
  "peerDependencies": {
39
13
  "@angular-devkit/core": "^16.1.4",
40
14
  "@angular-devkit/schematics": "^16.1.4",
41
- "@rxap/schematics-ts-morph": "^16.0.0-dev.13",
42
- "@rxap/schematics-utilities": "^16.0.0-dev.10",
43
- "@rxap/utilities": "^16.0.0-dev.13",
15
+ "@rxap/schematics-ts-morph": "^16.0.0",
16
+ "@rxap/schematics-utilities": "^16.0.0",
17
+ "@rxap/ts-morph": "^1.0.1",
18
+ "@rxap/utilities": "^16.0.0",
44
19
  "ts-morph": "^18.0.0",
45
- "@rxap/node-utilities": "1.1.0-dev.4",
46
- "@rxap/workspace-ts-morph": "0.1.0-dev.3",
47
- "@rxap/workspace-utilities": "0.1.0-dev.6"
20
+ "tslib": "2.6.2",
21
+ "@rxap/node-utilities": "1.1.0",
22
+ "@rxap/workspace-ts-morph": "16.0.1",
23
+ "@rxap/workspace-utilities": "16.0.1"
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"
48
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
+ ],
49
41
  "nx-migrations": {
50
42
  "packageGroup": [
51
43
  {
52
44
  "package": "@rxap/schematics-ts-morph",
53
- "version": "16.0.0-dev.13"
45
+ "version": "16.0.0"
54
46
  },
55
47
  {
56
48
  "package": "@rxap/schematics-utilities",
57
- "version": "16.0.0-dev.10"
49
+ "version": "16.0.0"
50
+ },
51
+ {
52
+ "package": "@rxap/ts-morph",
53
+ "version": "1.0.1"
58
54
  },
59
55
  {
60
56
  "package": "@rxap/utilities",
61
- "version": "16.0.0-dev.13"
57
+ "version": "16.0.0"
62
58
  },
63
59
  {
64
60
  "package": "@rxap/workspace-utilities",
@@ -66,7 +62,18 @@
66
62
  }
67
63
  ]
68
64
  },
69
- "gitHead": "3d49d0a2548a0c403ad55c564108b54ba734a677",
65
+ "publishConfig": {
66
+ "access": "public",
67
+ "directory": "../../../dist/packages/schematic/angular"
68
+ },
69
+ "repository": {
70
+ "type": "git",
71
+ "url": "https://gitlab.com/rxap/packages.git",
72
+ "directory": "packages/schematic/angular"
73
+ },
74
+ "schematics": "./collection.json",
75
+ "type": "commonjs",
76
+ "gitHead": "c72606219a2dc28185f6e21617ec127d7c82715c",
70
77
  "main": "./src/index.js",
71
78
  "types": "./src/index.d.ts"
72
79
  }
@@ -1,5 +1,5 @@
1
- import { AccordionItemTypes } from './accordion-itme-types';
2
1
  import { NonNullableSelected, Normalized } from '@rxap/utilities';
2
+ import { AccordionItemTypes } from './accordion-itme-types';
3
3
  export interface AccordionItem {
4
4
  name: string;
5
5
  type: AccordionItemTypes;
@@ -7,4 +7,4 @@ export interface AccordionItem {
7
7
  }
8
8
  export type NormalizedAccordionItem = Readonly<NonNullableSelected<Normalized<AccordionItem>, 'type'>>;
9
9
  export declare function NormalizeAccordionItem(item: string | AccordionItem): NormalizedAccordionItem;
10
- export declare function NormalizeAccordionItemList(itemList?: Array<string | AccordionItem>): NormalizedAccordionItem[];
10
+ export declare function NormalizeAccordionItemList(itemList?: Array<string | AccordionItem>): ReadonlyArray<NormalizedAccordionItem>;
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NormalizeAccordionItemList = exports.NormalizeAccordionItem = void 0;
4
- const accordion_itme_types_1 = require("./accordion-itme-types");
5
- const utilities_1 = require("@rxap/utilities");
6
4
  const schematics_1 = require("@angular-devkit/schematics");
5
+ const utilities_1 = require("@rxap/utilities");
6
+ const accordion_itme_types_1 = require("./accordion-itme-types");
7
7
  function NormalizeAccordionItem(item) {
8
8
  var _a, _b, _c;
9
9
  let name;
@@ -25,12 +25,12 @@ function NormalizeAccordionItem(item) {
25
25
  if (!(0, accordion_itme_types_1.IsAccordionItemType)(type)) {
26
26
  throw new schematics_1.SchematicsException(`The item type '${type}' for item '${name}' is not supported`);
27
27
  }
28
- return Object.seal(Object.assign(Object.assign({}, additional), { name: (0, utilities_1.dasherize)(name), type,
28
+ return Object.freeze(Object.assign(Object.assign({}, additional), { name: (0, utilities_1.dasherize)(name), type,
29
29
  modifiers }));
30
30
  }
31
31
  exports.NormalizeAccordionItem = NormalizeAccordionItem;
32
32
  function NormalizeAccordionItemList(itemList) {
33
- return Object.seal((itemList !== null && itemList !== void 0 ? itemList : []).map(NormalizeAccordionItem));
33
+ return Object.freeze((itemList !== null && itemList !== void 0 ? itemList : []).map(NormalizeAccordionItem));
34
34
  }
35
35
  exports.NormalizeAccordionItemList = NormalizeAccordionItemList;
36
36
  //# sourceMappingURL=accordion-item.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"accordion-item.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/accordion-item.ts"],"names":[],"mappings":";;;AAAA,iEAGgC;AAChC,+CAIyB;AACzB,2DAAiE;AAUjE,SAAgB,sBAAsB,CAAC,IAA4B;;IACjE,IAAI,IAAY,CAAC;IACjB,IAAI,IAAI,GAAG,OAAO,CAAC;IACnB,IAAI,SAAS,GAAa,EAAE,CAAC;IAC7B,IAAI,UAAU,GAAwB,EAAE,CAAC;IACzC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;QAC5B,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAClC,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QACpB,IAAI,GAAG,MAAA,SAAS,CAAC,CAAC,CAAC,mCAAI,IAAI,CAAC;QAC5B,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;KAC5E;SAAM;QACL,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACjB,IAAI,GAAG,MAAA,IAAI,CAAC,IAAI,mCAAI,IAAI,CAAC;QACzB,SAAS,GAAG,MAAA,IAAI,CAAC,SAAS,mCAAI,SAAS,CAAC;QACxC,UAAU,GAAG,IAAI,CAAC;KACnB;IACD,IAAI,CAAC,IAAA,0CAAmB,EAAC,IAAI,CAAC,EAAE;QAC9B,MAAM,IAAI,gCAAmB,CAC3B,kBAAmB,IAAK,eAAgB,IAAK,oBAAoB,CAClE,CAAC;KACH;IACD,OAAO,MAAM,CAAC,IAAI,iCACb,UAAU,KACb,IAAI,EAAE,IAAA,qBAAS,EAAC,IAAI,CAAC,EACrB,IAAI;QACJ,SAAS,IACT,CAAC;AACL,CAAC;AA3BD,wDA2BC;AAED,SAAgB,0BAA0B,CAAC,QAAwC;IACjF,OAAO,MAAM,CAAC,IAAI,CAAC,CAAC,QAAQ,aAAR,QAAQ,cAAR,QAAQ,GAAI,EAAE,CAAC,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,CAAC;AACnE,CAAC;AAFD,gEAEC"}
1
+ {"version":3,"file":"accordion-item.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/accordion-item.ts"],"names":[],"mappings":";;;AAAA,2DAAiE;AACjE,+CAIyB;AACzB,iEAGgC;AAUhC,SAAgB,sBAAsB,CAAC,IAA4B;;IACjE,IAAI,IAAY,CAAC;IACjB,IAAI,IAAI,GAAG,OAAO,CAAC;IACnB,IAAI,SAAS,GAAa,EAAE,CAAC;IAC7B,IAAI,UAAU,GAAwB,EAAE,CAAC;IACzC,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;QAC5B,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAClC,IAAI,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QACpB,IAAI,GAAG,MAAA,SAAS,CAAC,CAAC,CAAC,mCAAI,IAAI,CAAC;QAC5B,SAAS,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;KAC5E;SAAM;QACL,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;QACjB,IAAI,GAAG,MAAA,IAAI,CAAC,IAAI,mCAAI,IAAI,CAAC;QACzB,SAAS,GAAG,MAAA,IAAI,CAAC,SAAS,mCAAI,SAAS,CAAC;QACxC,UAAU,GAAG,IAAI,CAAC;KACnB;IACD,IAAI,CAAC,IAAA,0CAAmB,EAAC,IAAI,CAAC,EAAE;QAC9B,MAAM,IAAI,gCAAmB,CAC3B,kBAAmB,IAAK,eAAgB,IAAK,oBAAoB,CAClE,CAAC;KACH;IACD,OAAO,MAAM,CAAC,MAAM,iCACf,UAAU,KACb,IAAI,EAAE,IAAA,qBAAS,EAAC,IAAI,CAAC,EACrB,IAAI;QACJ,SAAS,IACT,CAAC;AACL,CAAC;AA3BD,wDA2BC;AAED,SAAgB,0BAA0B,CAAC,QAAwC;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,CACnB,QAAQ,aAAR,QAAQ,cAAR,QAAQ,GAAI,EAAE,CACf,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,CAAC;AACjC,CAAC;AAJD,gEAIC"}
@@ -1,8 +1,14 @@
1
- import { Normalized } from '@rxap/utilities';
2
- export interface AdapterOptions {
1
+ import { TypeImport } from '@rxap/ts-morph';
2
+ import { NormalizedTypeImport } from './type-import';
3
+ export interface AdapterOptions extends TypeImport {
4
+ /**
5
+ * @deprecated use name instead
6
+ */
3
7
  className: string;
8
+ /**
9
+ * @deprecated use moduleSpecifier instead
10
+ */
4
11
  importPath: string;
5
12
  }
6
- export interface NormalizedAdapterOptions extends Readonly<Normalized<AdapterOptions>> {
7
- }
8
- export declare function NormalizeAdapterOptions(options?: Readonly<AdapterOptions>): NormalizedAdapterOptions | null;
13
+ export type NormalizedAdapterOptions = NormalizedTypeImport;
14
+ export declare function NormalizeAdapterOptions(options?: AdapterOptions): NormalizedAdapterOptions | null;
@@ -1,16 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NormalizeAdapterOptions = void 0;
4
+ const type_import_1 = require("./type-import");
4
5
  function NormalizeAdapterOptions(options) {
6
+ var _a, _b;
7
+ if (options) {
8
+ (_a = options.name) !== null && _a !== void 0 ? _a : (options.name = options.className);
9
+ (_b = options.moduleSpecifier) !== null && _b !== void 0 ? _b : (options.moduleSpecifier = options.importPath);
10
+ }
5
11
  // check if the className and importPath is set. The schematic options parse will build an object with all property set to undefined
6
12
  // if the user does not set the object properties. If the className or importPath is not set the adapter options should be null
7
- if (!(options === null || options === void 0 ? void 0 : options.className) || !(options === null || options === void 0 ? void 0 : options.importPath)) {
13
+ if (!options || !options.name) {
8
14
  return null;
9
15
  }
10
- return Object.seal({
11
- className: options.className,
12
- importPath: options.importPath,
13
- });
16
+ return (0, type_import_1.NormalizeTypeImport)(options);
14
17
  }
15
18
  exports.NormalizeAdapterOptions = NormalizeAdapterOptions;
16
19
  //# sourceMappingURL=adapter-options.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"adapter-options.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/adapter-options.ts"],"names":[],"mappings":";;;AAUA,SAAgB,uBAAuB,CAAC,OAAkC;IACxE,oIAAoI;IACpI,+HAA+H;IAC/H,IAAI,CAAC,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,CAAA,IAAI,CAAC,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU,CAAA,EAAE;QAC/C,OAAO,IAAI,CAAC;KACb;IACD,OAAO,MAAM,CAAC,IAAI,CAAC;QACjB,SAAS,EAAE,OAAO,CAAC,SAAS;QAC5B,UAAU,EAAE,OAAO,CAAC,UAAU;KAC/B,CAAC,CAAC;AACL,CAAC;AAVD,0DAUC"}
1
+ {"version":3,"file":"adapter-options.js","sourceRoot":"","sources":["../../../../../../packages/schematic/angular/src/lib/adapter-options.ts"],"names":[],"mappings":";;;AACA,+CAGuB;AAevB,SAAgB,uBAAuB,CAAC,OAAwB;;IAC9D,IAAI,OAAO,EAAE;QACX,MAAA,OAAO,CAAC,IAAI,oCAAZ,OAAO,CAAC,IAAI,GAAK,OAAO,CAAC,SAAS,EAAC;QACnC,MAAA,OAAO,CAAC,eAAe,oCAAvB,OAAO,CAAC,eAAe,GAAK,OAAO,CAAC,UAAU,EAAC;KAChD;IACD,oIAAoI;IACpI,+HAA+H;IAC/H,IAAI,CAAC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE;QAC7B,OAAO,IAAI,CAAC;KACb;IACD,OAAO,IAAA,iCAAmB,EAAC,OAAO,CAAC,CAAC;AACtC,CAAC;AAXD,0DAWC"}
@@ -12,7 +12,7 @@ function NormalizeAngularOptions(options) {
12
12
  shared = true;
13
13
  }
14
14
  const normalizedOptions = (0, schematics_utilities_1.NormalizeGlobalOptions)(Object.assign(Object.assign({}, options), { project }));
15
- return Object.seal(Object.assign(Object.assign({}, normalizedOptions), { componentName: options.componentName ? (0, utilities_1.dasherize)(options.componentName) : null, name: options.name ? (0, utilities_1.dasherize)(options.name) : null, context: options.context ? (0, utilities_1.dasherize)(options.context) : null, nestModule: options.nestModule ? (0, utilities_1.dasherize)(options.nestModule) : null, controllerName: options.controllerName ? (0, utilities_1.dasherize)(options.controllerName) : null, backend: (_c = options.backend) !== null && _c !== void 0 ? _c : backend_types_1.BackendTypes.NONE, directory: (_d = options.directory) !== null && _d !== void 0 ? _d : null, shared, prefix: (_e = options.prefix) !== null && _e !== void 0 ? _e : null, scope: (_f = options.scope) !== null && _f !== void 0 ? _f : null, openApi: (_g = options.openApi) !== null && _g !== void 0 ? _g : null }));
15
+ return Object.freeze(Object.assign(Object.assign({}, normalizedOptions), { componentName: options.componentName ? (0, utilities_1.dasherize)(options.componentName) : null, name: options.name ? (0, utilities_1.dasherize)(options.name) : null, context: options.context ? (0, utilities_1.dasherize)(options.context) : null, nestModule: options.nestModule ? (0, utilities_1.dasherize)(options.nestModule) : null, controllerName: options.controllerName ? (0, utilities_1.dasherize)(options.controllerName) : null, backend: (_c = options.backend) !== null && _c !== void 0 ? _c : backend_types_1.BackendTypes.NONE, directory: (_d = options.directory) !== null && _d !== void 0 ? _d : null, shared, prefix: (_e = options.prefix) !== null && _e !== void 0 ? _e : null, scope: (_f = options.scope) !== null && _f !== void 0 ? _f : null, openApi: (_g = options.openApi) !== null && _g !== void 0 ? _g : null }));
16
16
  }
17
17
  exports.NormalizeAngularOptions = NormalizeAngularOptions;
18
18
  function AssertAngularOptionsNameProperty(options) {