@rxap/schematic-angular 16.1.0-dev.0 → 16.1.0-dev.10

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 (82) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/LICENSE.md +621 -0
  3. package/README.md +1 -1
  4. package/collection.json +16 -1
  5. package/package.json +14 -12
  6. package/src/lib/angular-options.js +18 -1
  7. package/src/lib/angular-options.js.map +1 -1
  8. package/src/lib/minimum-table-component-options.d.ts +1 -0
  9. package/src/lib/minimum-table-component-options.js +53 -144
  10. package/src/lib/minimum-table-component-options.js.map +1 -1
  11. package/src/lib/table-action.d.ts +1 -1
  12. package/src/lib/table-action.js +10 -7
  13. package/src/lib/table-action.js.map +1 -1
  14. package/src/lib/table-header-button.d.ts +10 -1
  15. package/src/lib/table-header-button.js +20 -1
  16. package/src/lib/table-header-button.js.map +1 -1
  17. package/src/lib/table-row-action.d.ts +1 -0
  18. package/src/lib/table-row-action.js +2 -1
  19. package/src/lib/table-row-action.js.map +1 -1
  20. package/src/schematics/form/control/input-form-control/index.d.ts +2 -2
  21. package/src/schematics/form/control/input-form-control/index.js +7 -3
  22. package/src/schematics/form/control/input-form-control/index.js.map +1 -1
  23. package/src/schematics/form/control/select-form-control/index.js +2 -0
  24. package/src/schematics/form/control/select-form-control/index.js.map +1 -1
  25. package/src/schematics/form/control/table-select-form-control/index.js +2 -0
  26. package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
  27. package/src/schematics/form/form-component/index.d.ts +0 -1
  28. package/src/schematics/form/form-component/index.js +45 -14
  29. package/src/schematics/form/form-component/index.js.map +1 -1
  30. package/src/schematics/form/form-component/schema.json +3 -6
  31. package/src/schematics/form/form-control/index.d.ts +2 -2
  32. package/src/schematics/form/form-control/index.js +7 -8
  33. package/src/schematics/form/form-control/index.js.map +1 -1
  34. package/src/schematics/form/form-definition/index.d.ts +2 -2
  35. package/src/schematics/form/form-definition/index.js +8 -1
  36. package/src/schematics/form/form-definition/index.js.map +1 -1
  37. package/src/schematics/table/action/dialog-table-action/index.d.ts +2 -1
  38. package/src/schematics/table/action/dialog-table-action/index.js +6 -2
  39. package/src/schematics/table/action/dialog-table-action/index.js.map +1 -1
  40. package/src/schematics/table/action/dialog-table-action/schema.json +4 -0
  41. package/src/schematics/table/action/form-table-action/index.d.ts +6 -1
  42. package/src/schematics/table/action/form-table-action/index.js +121 -77
  43. package/src/schematics/table/action/form-table-action/index.js.map +1 -1
  44. package/src/schematics/table/action/form-table-action/schema.json +39 -0
  45. package/src/schematics/table/action/navigation-table-action/index.d.ts +1 -1
  46. package/src/schematics/table/action/navigation-table-action/index.js +10 -10
  47. package/src/schematics/table/action/navigation-table-action/index.js.map +1 -1
  48. package/src/schematics/table/action/navigation-table-action/schema.json +4 -0
  49. package/src/schematics/table/action/operation-table-action/index.d.ts +1 -3
  50. package/src/schematics/table/action/operation-table-action/index.js +11 -12
  51. package/src/schematics/table/action/operation-table-action/index.js.map +1 -1
  52. package/src/schematics/table/action/operation-table-action/schema.json +4 -0
  53. package/src/schematics/table/header-button/form-table-header-button/index.d.ts +11 -0
  54. package/src/schematics/table/header-button/form-table-header-button/index.js +83 -0
  55. package/src/schematics/table/header-button/form-table-header-button/index.js.map +1 -0
  56. package/src/schematics/table/header-button/form-table-header-button/schema.d.ts +7 -0
  57. package/src/schematics/table/header-button/form-table-header-button/schema.json +123 -0
  58. package/src/schematics/table/header-button/navigation-table-header-button/index.d.ts +8 -0
  59. package/src/schematics/table/header-button/navigation-table-header-button/index.js +62 -0
  60. package/src/schematics/table/header-button/navigation-table-header-button/index.js.map +1 -0
  61. package/src/schematics/table/header-button/navigation-table-header-button/schema.d.ts +6 -0
  62. package/src/schematics/table/header-button/navigation-table-header-button/schema.json +85 -0
  63. package/src/schematics/table/table-action/index.d.ts +1 -1
  64. package/src/schematics/table/table-action/index.js +6 -4
  65. package/src/schematics/table/table-action/index.js.map +1 -1
  66. package/src/schematics/table/table-action/schema.json +4 -0
  67. package/src/schematics/table/table-component/files/component/__componentName__.component.html.template +5 -8
  68. package/src/schematics/table/table-component/files/component/__componentName__.component.ts.template +2 -4
  69. package/src/schematics/table/table-component/index.d.ts +1 -0
  70. package/src/schematics/table/table-component/index.js +38 -7
  71. package/src/schematics/table/table-component/index.js.map +1 -1
  72. package/src/schematics/table/table-component/schema.json +10 -9
  73. package/src/schematics/table/table-header-button/index.d.ts +10 -0
  74. package/src/schematics/table/table-header-button/index.js +50 -0
  75. package/src/schematics/table/table-header-button/index.js.map +1 -0
  76. package/src/schematics/table/table-header-button/schema.d.ts +7 -0
  77. package/src/schematics/table/table-header-button/schema.json +80 -0
  78. package/src/schematics/table/tree-table-component/files/component/__componentName__.component.ts.template +0 -2
  79. package/src/schematics/table/tree-table-component/index.d.ts +1 -0
  80. package/src/schematics/table/tree-table-component/index.js +13 -17
  81. package/src/schematics/table/tree-table-component/index.js.map +1 -1
  82. /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,85 @@
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.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)
7
+
8
+ ### Bug Fixes
9
+
10
+ - remove deprecated code ([8c3fda1](https://gitlab.com/rxap/packages/commit/8c3fda114efa98adbdde8417f6a5d793b5db1f77))
11
+
12
+ # [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)
13
+
14
+ ### Bug Fixes
15
+
16
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
17
+
18
+ # [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)
19
+
20
+ ### Reverts
21
+
22
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
23
+
24
+ # [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)
25
+
26
+ ### Bug Fixes
27
+
28
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
29
+
30
+ # [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)
31
+
32
+ ### Bug Fixes
33
+
34
+ - controller name composition ([d7c89a4](https://gitlab.com/rxap/packages/commit/d7c89a41dd3bfa6ab599e1eded3a1f2be92828e7))
35
+ - remove custom controller name generation ([525554b](https://gitlab.com/rxap/packages/commit/525554b252be90339cec8a7d25845b08ae9a7b32))
36
+ - remove old mat tooltip i18n ([fbffc23](https://gitlab.com/rxap/packages/commit/fbffc23fc346b5f5b6636f2b2735e088763c437f))
37
+ - table button component generation ([da7da39](https://gitlab.com/rxap/packages/commit/da7da39788dda48d23d7befcdc8395201e5caafe))
38
+
39
+ ### Features
40
+
41
+ - add navigation header button schematic ([5293374](https://gitlab.com/rxap/packages/commit/5293374546ce02201abe987dc1f1901c753d55ca))
42
+
43
+ # [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)
44
+
45
+ ### Bug Fixes
46
+
47
+ - add missing import ([04df10c](https://gitlab.com/rxap/packages/commit/04df10c4fe7cac05a00793d565fdf5107fac91c8))
48
+ - build controller name for tables ([ce4c728](https://gitlab.com/rxap/packages/commit/ce4c728b941f9808d6d4dd7b1245ce4259acf823))
49
+ - check with role ([d9bacb2](https://gitlab.com/rxap/packages/commit/d9bacb27e94276a5e1860d89a201a02a9ee12634))
50
+ - controller naming and route ([6004d02](https://gitlab.com/rxap/packages/commit/6004d02890eb4d9b4d8369a9fa9b7726f7af28e2))
51
+ - ensure table action respect then backend type ([f49c961](https://gitlab.com/rxap/packages/commit/f49c96109a1c290945bb2d69ac06cf020cfc02d8))
52
+ - extend debug output ([a3f71c6](https://gitlab.com/rxap/packages/commit/a3f71c6a0380037642e72cd03a095d9127c9ee96))
53
+ - generate window specific methods ([b73445f](https://gitlab.com/rxap/packages/commit/b73445fce4f3d29b5942866461436b4c19ddefdb))
54
+ - update table action generator to new concept ([e08a27f](https://gitlab.com/rxap/packages/commit/e08a27fc9755eb25d695991234f8ec1d0770b176))
55
+ - use table type as base for the form filter type ([d05a200](https://gitlab.com/rxap/packages/commit/d05a200bf4c6e6734eecd7029139c3939dc67576))
56
+
57
+ ### Performance Improvements
58
+
59
+ - improve ts-morph transform performance ([ec059e6](https://gitlab.com/rxap/packages/commit/ec059e68dd50aa89391d71cbcd453a45b2596439))
60
+
61
+ # [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)
62
+
63
+ ### Bug Fixes
64
+
65
+ - use role for sub schematic decision ([bd6b135](https://gitlab.com/rxap/packages/commit/bd6b13584d17be6e2aec0d29e9e83b05bfa29d95))
66
+
67
+ # [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)
68
+
69
+ ### Bug Fixes
70
+
71
+ - allow new role types ([5703642](https://gitlab.com/rxap/packages/commit/5703642f5f33659b7fe6d955ce46445090dbe1fd))
72
+
73
+ # [16.1.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.1...@rxap/schematic-angular@16.1.0-dev.2) (2023-08-07)
74
+
75
+ ### Features
76
+
77
+ - support custom table action options pass through ([5045e00](https://gitlab.com/rxap/packages/commit/5045e00e36f4434876e9a1ccec3328b81653137d))
78
+
79
+ # [16.1.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.1.0-dev.0...@rxap/schematic-angular@16.1.0-dev.1) (2023-08-04)
80
+
81
+ ### Bug Fixes
82
+
83
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
84
+
6
85
  # [16.1.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/schematic-angular@16.0.1-dev.0...@rxap/schematic-angular@16.1.0-dev.0) (2023-08-03)
7
86
 
8
87
  ### Bug Fixes