@rxap/schematic-angular 16.1.0-dev.9 → 16.1.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 (162) hide show
  1. package/CHANGELOG.md +346 -0
  2. package/README.md +1 -1
  3. package/collection.json +5 -0
  4. package/package.json +47 -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 +5 -3
  32. package/src/lib/minimum-table-component-options.js +85 -27
  33. package/src/lib/minimum-table-component-options.js.map +1 -1
  34. package/src/lib/minimum-table-options.d.ts +9 -6
  35. package/src/lib/minimum-table-options.js +7 -4
  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 +2 -2
  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 +1 -1
  65. package/src/schematics/accordion/accordion-component/index.d.ts +3 -1
  66. package/src/schematics/accordion/accordion-component/index.js +2 -2
  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 +1 -1
  70. package/src/schematics/accordion/accordion-item-component/index.js +2 -2
  71. package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
  72. package/src/schematics/accordion/accordion-item-component/schema.json +13 -3
  73. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +3 -3
  74. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +5 -5
  75. package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
  76. package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +13 -3
  77. package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +7 -4
  78. package/src/schematics/accordion/item/accordion-item-table-component/index.js +5 -5
  79. package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
  80. package/src/schematics/accordion/item/accordion-item-table-component/schema.json +57 -8
  81. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +4 -1
  82. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +1 -1
  83. package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
  84. package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +62 -9
  85. package/src/schematics/angular.schema.json +61 -0
  86. package/src/schematics/data-grid-component/index.d.ts +1 -1
  87. package/src/schematics/data-grid-component/index.js +1 -1
  88. package/src/schematics/data-grid-component/index.js.map +1 -1
  89. package/src/schematics/data-grid-component/schema.json +13 -3
  90. package/src/schematics/dialog-component/index.js +3 -3
  91. package/src/schematics/dialog-component/index.js.map +1 -1
  92. package/src/schematics/dialog-component/schema.json +13 -3
  93. package/src/schematics/form/control/input-form-control/index.js +1 -1
  94. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  95. package/src/schematics/form/control/select-form-control/index.js +1 -1
  96. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  97. package/src/schematics/form/control/table-select-form-control/index.d.ts +2 -2
  98. package/src/schematics/form/control/table-select-form-control/index.js +3 -3
  99. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  100. package/src/schematics/form/form-component/index.d.ts +1 -1
  101. package/src/schematics/form/form-component/index.js +1 -1
  102. package/src/schematics/form/form-component/index.js.map +1 -1
  103. package/src/schematics/form/form-control/index.js +1 -1
  104. package/src/schematics/form/form-control/index.js.map +1 -1
  105. package/src/schematics/form/form-definition/index.d.ts +2 -2
  106. package/src/schematics/form/form-definition/index.js +16 -9
  107. package/src/schematics/form/form-definition/index.js.map +1 -1
  108. package/src/schematics/form/form-definition/schema.d.ts +2 -1
  109. package/src/schematics/form/form-definition/schema.json +5 -0
  110. package/src/schematics/general.schema.json +41 -0
  111. package/src/schematics/table/action/dialog-table-action/index.d.ts +3 -1
  112. package/src/schematics/table/action/dialog-table-action/index.js +1 -1
  113. package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
  114. package/src/schematics/table/action/dialog-table-action/schema.json +12 -2
  115. package/src/schematics/table/action/form-table-action/index.d.ts +6 -3
  116. package/src/schematics/table/action/form-table-action/index.js +46 -18
  117. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  118. package/src/schematics/table/action/form-table-action/schema.d.ts +13 -1
  119. package/src/schematics/table/action/form-table-action/schema.json +71 -3
  120. package/src/schematics/table/action/navigation-table-action/index.js +4 -3
  121. package/src/schematics/table/action/navigation-table-action/index.js.map +1 -1
  122. package/src/schematics/table/action/navigation-table-action/schema.d.ts +1 -0
  123. package/src/schematics/table/action/navigation-table-action/schema.json +5 -0
  124. package/src/schematics/table/action/open-api-table-action/index.d.ts +10 -0
  125. package/src/schematics/table/action/open-api-table-action/index.js +50 -0
  126. package/src/schematics/table/action/open-api-table-action/index.js.map +1 -0
  127. package/src/schematics/table/action/open-api-table-action/schema.d.ts +9 -0
  128. package/src/schematics/table/action/open-api-table-action/schema.json +121 -0
  129. package/src/schematics/table/action/operation-table-action/index.js +1 -1
  130. package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
  131. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +10 -3
  132. package/src/schematics/table/header-button/form-table-header-button/index.js +57 -48
  133. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -1
  134. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +8 -0
  135. package/src/schematics/table/header-button/form-table-header-button/schema.json +17 -1
  136. package/src/schematics/table/header-button/navigation-table-header-button/index.js +30 -8
  137. package/src/schematics/table/header-button/navigation-table-header-button/index.js.map +1 -1
  138. package/src/schematics/table/header-button/navigation-table-header-button/schema.d.ts +1 -0
  139. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +8 -6
  140. package/src/schematics/table/table-action/index.js +1 -1
  141. package/src/schematics/table/table-action/index.js.map +1 -1
  142. package/src/schematics/table/table-action/schema.json +8 -0
  143. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +31 -40
  144. package/src/schematics/table/table-component/files/component/__componentName__.component.ts.template +17 -3
  145. package/src/schematics/table/table-component/index.d.ts +6 -8
  146. package/src/schematics/table/table-component/index.js +41 -28
  147. package/src/schematics/table/table-component/index.js.map +1 -1
  148. package/src/schematics/table/table-component/schema.json +267 -218
  149. package/src/schematics/table/table-header-button/index.d.ts +2 -4
  150. package/src/schematics/table/table-header-button/index.js +1 -1
  151. package/src/schematics/table/table-header-button/index.js.map +1 -1
  152. package/src/schematics/table/table-header-button/schema.d.ts +2 -1
  153. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.template +94 -82
  154. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.ts.template +17 -4
  155. package/src/schematics/table/tree-table-component/index.d.ts +1 -1
  156. package/src/schematics/table/tree-table-component/index.js +19 -24
  157. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  158. package/src/schematics/table/tree-table-component/schema.json +60 -7
  159. package/src/schematics/tree-component/index.d.ts +2 -2
  160. package/src/schematics/tree-component/index.js +2 -2
  161. package/src/schematics/tree-component/index.js.map +1 -1
  162. package/src/schematics/tree-component/schema.json +11 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,352 @@
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](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.56...@rxap/schematic-angular@16.1.0) (2024-02-07)
7
+
8
+ **Note:** Version bump only for package @rxap/schematic-angular
9
+
10
+ # [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)
11
+
12
+ ### Bug Fixes
13
+
14
+ - add modifier option show-archived-slide ([5a57820](https://gitlab.com/rxap/packages/commit/5a578203014a878908a34c0e23400d9633007c98))
15
+
16
+ # [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)
17
+
18
+ ### Bug Fixes
19
+
20
+ - update template ([0d9b369](https://gitlab.com/rxap/packages/commit/0d9b369f2cff641917787fe4ee82870b03526af3))
21
+
22
+ # [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)
23
+
24
+ ### Bug Fixes
25
+
26
+ - update template ([d06a584](https://gitlab.com/rxap/packages/commit/d06a584846451b42e8850e023c8829bbb5cf8ab4))
27
+
28
+ # [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)
29
+
30
+ ### Bug Fixes
31
+
32
+ - update template ([93010e4](https://gitlab.com/rxap/packages/commit/93010e4c0f3b7169f7c4316b74a2a68df61058f9))
33
+
34
+ # [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)
35
+
36
+ ### Bug Fixes
37
+
38
+ - update template ([472261b](https://gitlab.com/rxap/packages/commit/472261bea3a691ce3d83476fbe91e2266e898846))
39
+
40
+ # [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)
41
+
42
+ ### Bug Fixes
43
+
44
+ - simplify the table action form name ([af8012e](https://gitlab.com/rxap/packages/commit/af8012e60602d4a8bcb191e97af18b93dc1fe32b))
45
+
46
+ # [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)
47
+
48
+ ### Bug Fixes
49
+
50
+ - include property list in operation dto generation ([db77bdd](https://gitlab.com/rxap/packages/commit/db77bddfceb5858a6468830d62133aff49bfea65))
51
+
52
+ # [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)
53
+
54
+ ### Bug Fixes
55
+
56
+ - preserve table column name prefix ([6ad3d2b](https://gitlab.com/rxap/packages/commit/6ad3d2b528a9d5ae022ad3fef7a0aa60220cf6d4))
57
+
58
+ # [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)
59
+
60
+ ### Features
61
+
62
+ - support complex and importable types ([1636580](https://gitlab.com/rxap/packages/commit/1636580713961324683ea0246e109e35e7efc6c1))
63
+
64
+ # [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)
65
+
66
+ ### Bug Fixes
67
+
68
+ - use Object.freeze instead of Object.seal ([630008f](https://gitlab.com/rxap/packages/commit/630008fe0eed3ec9f4670cfe6ba8e25cc8b3e42f))
69
+
70
+ ### Features
71
+
72
+ - support complex and importable types ([b8b6e16](https://gitlab.com/rxap/packages/commit/b8b6e16fcdf6544681f84aa5d9ddf302c1ac34db))
73
+
74
+ # [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)
75
+
76
+ ### Bug Fixes
77
+
78
+ - support custom form components ([7df7f07](https://gitlab.com/rxap/packages/commit/7df7f07c2de91d77116d5c190ff8b538be1eeac2))
79
+
80
+ # [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)
81
+
82
+ ### Bug Fixes
83
+
84
+ - support custom table interface properties ([746bd42](https://gitlab.com/rxap/packages/commit/746bd42632ccb699b471ffea25543a76445501ff))
85
+
86
+ # [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)
87
+
88
+ ### Bug Fixes
89
+
90
+ - support relativeTo parameter ([0f1e690](https://gitlab.com/rxap/packages/commit/0f1e690f74802761efee09fa73ffb8036b3cefcd))
91
+
92
+ # [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)
93
+
94
+ ### Features
95
+
96
+ - support custom column template and pipes ([d45ccab](https://gitlab.com/rxap/packages/commit/d45ccab1ea86b0139e49c5c42ea0131d5fcb5028))
97
+
98
+ # [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)
99
+
100
+ ### Bug Fixes
101
+
102
+ - ensure the custom component are imported ([9757656](https://gitlab.com/rxap/packages/commit/9757656618ea6723dfd0b348a1ea25c3700032c2))
103
+
104
+ # [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)
105
+
106
+ ### Bug Fixes
107
+
108
+ - ensure the custom component are imported ([6ebab4b](https://gitlab.com/rxap/packages/commit/6ebab4b626d1ed41df6dc16e3c3a9371c975b89c))
109
+
110
+ # [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)
111
+
112
+ ### Bug Fixes
113
+
114
+ - auto detect the best matching column type ([75f748b](https://gitlab.com/rxap/packages/commit/75f748b841d0495b0a2faa46836e2ad19455c735))
115
+
116
+ # [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)
117
+
118
+ ### Bug Fixes
119
+
120
+ - update table templates ([9e463da](https://gitlab.com/rxap/packages/commit/9e463daa7af811b5f9da7dcf6d1f82ea37f4631f))
121
+ - use prop role for the type of table column ([45759f4](https://gitlab.com/rxap/packages/commit/45759f4ce099aaeee7e31bfc1b85c67cc674db78))
122
+
123
+ # [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)
124
+
125
+ ### Bug Fixes
126
+
127
+ - use dynamic prefix ([67808c0](https://gitlab.com/rxap/packages/commit/67808c0e8c0e708c4179793d38df20435373d1d4))
128
+
129
+ # [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)
130
+
131
+ ### Bug Fixes
132
+
133
+ - support custom form component ([28e26ab](https://gitlab.com/rxap/packages/commit/28e26abb2ef171b9a5c54909dfcc33285c121545))
134
+ - support custom form options ([04c74e6](https://gitlab.com/rxap/packages/commit/04c74e608a93ae37831f72194acc1a5c22b0001d))
135
+
136
+ # [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)
137
+
138
+ ### Bug Fixes
139
+
140
+ - resolve minor template issues ([1f13b90](https://gitlab.com/rxap/packages/commit/1f13b9084fd3de7e97e803f8ca8dfae7feb5cfac))
141
+
142
+ # [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)
143
+
144
+ ### Bug Fixes
145
+
146
+ - use correct path ([30ad62c](https://gitlab.com/rxap/packages/commit/30ad62c1a944a8388e31c41c7d606d686df084b6))
147
+
148
+ # [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)
149
+
150
+ ### Bug Fixes
151
+
152
+ - support custom form component ([6c1a9b7](https://gitlab.com/rxap/packages/commit/6c1a9b7e996aa5bac073a5867b30819748230a84))
153
+
154
+ # [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)
155
+
156
+ ### Bug Fixes
157
+
158
+ - support navigation ([16ce11f](https://gitlab.com/rxap/packages/commit/16ce11f2c60d47fef463259944b659b0a750f1dd))
159
+
160
+ # [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)
161
+
162
+ ### Bug Fixes
163
+
164
+ - support navigation ([2b3542b](https://gitlab.com/rxap/packages/commit/2b3542b50dda823330e1c8f4b0108a1669a607f9))
165
+
166
+ # [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)
167
+
168
+ ### Bug Fixes
169
+
170
+ - support role alias ([284fa94](https://gitlab.com/rxap/packages/commit/284fa94d256e9bcc39a981dbc179d5f810aad330))
171
+
172
+ # [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)
173
+
174
+ ### Bug Fixes
175
+
176
+ - support complex overwrite values ([c2fc6b9](https://gitlab.com/rxap/packages/commit/c2fc6b91c71d99496a2448e75287ea61f49e11c4))
177
+
178
+ # [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)
179
+
180
+ ### Bug Fixes
181
+
182
+ - improve table template ([ddc5469](https://gitlab.com/rxap/packages/commit/ddc546991ef5450893617fa34af590c10997bb92))
183
+ - support custom css class for actions and columns ([f5363df](https://gitlab.com/rxap/packages/commit/f5363dffb13be7f668d41ce606e33aba7f404437))
184
+
185
+ ### Features
186
+
187
+ - add open api table action ([ceee1d8](https://gitlab.com/rxap/packages/commit/ceee1d81d7633d1115010691e631f2974e335805))
188
+
189
+ # [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)
190
+
191
+ ### Bug Fixes
192
+
193
+ - support mat card inline ([0e42a58](https://gitlab.com/rxap/packages/commit/0e42a58206b0c522dd5b5e597ce5657b8ce14c5b))
194
+
195
+ # [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)
196
+
197
+ ### Bug Fixes
198
+
199
+ - only export component as default if root level feature ([fd1515b](https://gitlab.com/rxap/packages/commit/fd1515b3fab4298d9d00b7725922ec12140ad2f2))
200
+
201
+ # [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)
202
+
203
+ ### Bug Fixes
204
+
205
+ - support nested column properties ([8e98214](https://gitlab.com/rxap/packages/commit/8e9821427996fd8445f039a5683dc5ed910c056d))
206
+
207
+ # [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)
208
+
209
+ **Note:** Version bump only for package @rxap/schematic-angular
210
+
211
+ # [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)
212
+
213
+ **Note:** Version bump only for package @rxap/schematic-angular
214
+
215
+ # 16.1.0-dev.24 (2023-10-11)
216
+
217
+ ### Bug Fixes
218
+
219
+ - add generator termination indicator ([15ca23c](https://gitlab.com/rxap/packages/commit/15ca23cd732ca3372a5eba7fba941a6fa1e5278c))
220
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
221
+ - add missing import ([2e1c1d0](https://gitlab.com/rxap/packages/commit/2e1c1d0bef2de65c0abc8fff2c411b90a0c03f02))
222
+ - allow new role types ([1a2d6d0](https://gitlab.com/rxap/packages/commit/1a2d6d034d2b4ea66181a1e46fa30a927aad4e00))
223
+ - allow null or undefined for scope parameter ([949d4d0](https://gitlab.com/rxap/packages/commit/949d4d04a25644a54cbfabc081e83719ace885f2))
224
+ - build controller name for tables ([14d6d94](https://gitlab.com/rxap/packages/commit/14d6d94c30e18eb1ceb876815a99c414f82a172a))
225
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
226
+ - change overscroll-contain to overscroll-auto ([8834055](https://gitlab.com/rxap/packages/commit/88340559e9dcaa45f8d88c4468e77965ba92e2d3))
227
+ - check with role ([99c9ca8](https://gitlab.com/rxap/packages/commit/99c9ca8cd4f71347ee9d66f9b0b59790924140bb))
228
+ - controller name composition ([ad2c82d](https://gitlab.com/rxap/packages/commit/ad2c82df5db0036efedd3bdbb5143483a4a3deb4))
229
+ - controller naming and route ([38054d3](https://gitlab.com/rxap/packages/commit/38054d3ee106e1f50f806e1596da674f268cb4aa))
230
+ - ensure required packages are added to package.json ([a5d5996](https://gitlab.com/rxap/packages/commit/a5d5996709e58f8b9991f276513857e7ce2939cb))
231
+ - ensure required packages are installed ([0c96f09](https://gitlab.com/rxap/packages/commit/0c96f096c85b9192531a353e5ec110b73a0af155))
232
+ - ensure table action respect then backend type ([9f1e659](https://gitlab.com/rxap/packages/commit/9f1e659475926506ba4c083c5c75f6d5d11b9de1))
233
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
234
+ - extend debug output ([61d4369](https://gitlab.com/rxap/packages/commit/61d4369e3fcb32bd0993c0251be14b4ac8bec927))
235
+ - generate a valid implementation for navigation execution ([9c605b4](https://gitlab.com/rxap/packages/commit/9c605b4dd25091ad50c88cb45239f413ab58d29b))
236
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
237
+ - generate window specific methods ([baa38c3](https://gitlab.com/rxap/packages/commit/baa38c38b6db6f98170b6d0afab28dacf601a275))
238
+ - move additional table header options into the options object ([bb3aa5b](https://gitlab.com/rxap/packages/commit/bb3aa5b8c827dd10250a9d7c764f3226d8310557))
239
+ - move additional table header options into the options object ([1810762](https://gitlab.com/rxap/packages/commit/18107623efb019cb55d3ee882fd757feae0b4a17))
240
+ - only set to unknown type if type property is empty or object ([717cae1](https://gitlab.com/rxap/packages/commit/717cae14da2ccb091c3138910859060322f486f0))
241
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
242
+ - remove css class usage of container ([472cc12](https://gitlab.com/rxap/packages/commit/472cc12f824acc10bca596e4a34e8bc13e809eaa))
243
+ - remove custom controller name generation ([753d702](https://gitlab.com/rxap/packages/commit/753d70223ddf3db5fa985d69d4d506d3639ae93b))
244
+ - remove deprecated code ([ed61f38](https://gitlab.com/rxap/packages/commit/ed61f38ddd6b11f12b9c886ae94683c56b125457))
245
+ - remove old mat tooltip i18n ([5292efe](https://gitlab.com/rxap/packages/commit/5292efe674feb8e863f40775a1cabd838173523c))
246
+ - schema ref urls ([864229b](https://gitlab.com/rxap/packages/commit/864229bead46725c3d5a4acdee95342209c907fc))
247
+ - table button component generation ([b76453d](https://gitlab.com/rxap/packages/commit/b76453d4077f61840cc83aff732b8fdeff479457))
248
+ - update table action generator to new concept ([fadb1f6](https://gitlab.com/rxap/packages/commit/fadb1f68763a842cc3b363429c7f1dcfd1a5266c))
249
+ - use role for sub schematic decision ([cb215f5](https://gitlab.com/rxap/packages/commit/cb215f510dbcc13be92c14d6f69dce0bd264d58f))
250
+ - use table type as base for the form filter type ([ef00fe0](https://gitlab.com/rxap/packages/commit/ef00fe0628642a1d02b6452c6b6a1f5ea5236baa))
251
+
252
+ ### Features
253
+
254
+ - add navigation header button schematic ([02ef47c](https://gitlab.com/rxap/packages/commit/02ef47c6f22d25e69c1b468f65cdcaa93e97a26b))
255
+ - support custom table action options pass through ([2a502de](https://gitlab.com/rxap/packages/commit/2a502def23628bf54cdc73b18b55cd3886ec6a45))
256
+ - support non standalone form definitions ([7fbb153](https://gitlab.com/rxap/packages/commit/7fbb153bf6f0c5544fb512f7710a87401b15f6c9))
257
+ - support open api backend ([71dac49](https://gitlab.com/rxap/packages/commit/71dac49b866ebc9fbf4fbee683a29255efee7abb))
258
+ - support overwrite array ([2696160](https://gitlab.com/rxap/packages/commit/2696160aef2cf384edca3235aa0aaadc3afb97cc))
259
+
260
+ ### Performance Improvements
261
+
262
+ - improve ts-morph transform performance ([737d375](https://gitlab.com/rxap/packages/commit/737d37553f6ced9646e12deb1e7bad56b77efc9d))
263
+
264
+ ### Reverts
265
+
266
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
267
+
268
+ # [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)
269
+
270
+ ### Bug Fixes
271
+
272
+ - schema ref urls ([dd1f3a0](https://gitlab.com/rxap/packages/commit/dd1f3a012bbba3f1725e2b41eda139fc18bd5f13))
273
+
274
+ # [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)
275
+
276
+ ### Bug Fixes
277
+
278
+ - only set to unknown type if type property is empty or object ([44cd819](https://gitlab.com/rxap/packages/commit/44cd81935248d5941e55e6fbb4a983ccdbbd590c))
279
+
280
+ ### Features
281
+
282
+ - support overwrite array ([e528c87](https://gitlab.com/rxap/packages/commit/e528c87fd5fb49898583e0c08c191942e7e2f8e4))
283
+
284
+ # [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)
285
+
286
+ ### Features
287
+
288
+ - support non standalone form definitions ([45f88c6](https://gitlab.com/rxap/packages/commit/45f88c6409439ea7b8dfb87e2c4a445570ae425e))
289
+
290
+ # [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)
291
+
292
+ ### Bug Fixes
293
+
294
+ - ensure required packages are installed ([fbef16e](https://gitlab.com/rxap/packages/commit/fbef16edb34530ed4414a5c597096c1e0ecd537e))
295
+
296
+ # [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)
297
+
298
+ ### Bug Fixes
299
+
300
+ - add generator termination indicator ([aa34baf](https://gitlab.com/rxap/packages/commit/aa34baf92397cf320859845fb7b5a4765b77d4d9))
301
+ - ensure required packages are added to package.json ([ebe0858](https://gitlab.com/rxap/packages/commit/ebe085822edb94a276f7f79dd70d28c9872f7b32))
302
+ - generate a valid implementation for navigation execution ([d9d13d1](https://gitlab.com/rxap/packages/commit/d9d13d11c56bc5b0c5c130c21281e2c2d91e575a))
303
+
304
+ # [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)
305
+
306
+ ### Bug Fixes
307
+
308
+ - move additional table header options into the options object ([3284d7c](https://gitlab.com/rxap/packages/commit/3284d7cd7aba7ae41255bd2bcd8b9dd6c37f92f6))
309
+
310
+ # [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)
311
+
312
+ ### Bug Fixes
313
+
314
+ - move additional table header options into the options object ([731702b](https://gitlab.com/rxap/packages/commit/731702baac87997ebce3248c68d48ed083fa138f))
315
+
316
+ # [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)
317
+
318
+ ### Bug Fixes
319
+
320
+ - change overscroll-contain to overscroll-auto ([0a8db9f](https://gitlab.com/rxap/packages/commit/0a8db9ff3d131b98d207ad40aef411927ebdc837))
321
+
322
+ # [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)
323
+
324
+ ### Bug Fixes
325
+
326
+ - remove css class usage of container ([9a1969f](https://gitlab.com/rxap/packages/commit/9a1969f8748a08d6d948f9e7d4f4b511c1349352))
327
+
328
+ # [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)
329
+
330
+ ### Bug Fixes
331
+
332
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
333
+
334
+ # [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)
335
+
336
+ **Note:** Version bump only for package @rxap/schematic-angular
337
+
338
+ # [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)
339
+
340
+ **Note:** Version bump only for package @rxap/schematic-angular
341
+
342
+ # [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)
343
+
344
+ **Note:** Version bump only for package @rxap/schematic-angular
345
+
346
+ # [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)
347
+
348
+ ### Bug Fixes
349
+
350
+ - remove deprecated code ([8c3fda1](https://gitlab.com/rxap/packages/commit/8c3fda114efa98adbdde8417f6a5d793b5db1f77))
351
+
6
352
  # [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
353
 
8
354
  ### 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-dev.41 @rxap/schematics-utilities@^16.0.0-dev.21 @rxap/ts-morph@^0.1.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
@@ -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.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,17 @@
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",
70
76
  "main": "./src/index.js",
71
77
  "types": "./src/index.d.ts"
72
78
  }
@@ -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) {
@@ -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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"}
@@ -6,4 +6,4 @@ export interface DataGridItem {
6
6
  }
7
7
  export type NormalizedDataGridItem = Readonly<NonNullableSelected<Normalized<DataGridItem>, 'type'>>;
8
8
  export declare function NormalizeDataGridItem(item: Readonly<DataGridItem> | string): NormalizedDataGridItem;
9
- export declare function NormalizeDataGridItemList(itemList?: Array<Readonly<DataGridItem> | string>): Array<NormalizedDataGridItem>;
9
+ export declare function NormalizeDataGridItemList(itemList?: Array<Readonly<DataGridItem> | string>): ReadonlyArray<NormalizedDataGridItem>;