@rxap/schematic-angular 16.1.0-dev.3 → 16.1.0-dev.31

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