@rxap/schematic-angular 16.1.0-dev.37 → 16.1.0-dev.38
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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.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)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- use dynamic prefix ([67808c0](https://gitlab.com/rxap/packages/commit/67808c0e8c0e708c4179793d38df20435373d1d4))
|
|
11
|
+
|
|
6
12
|
# [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)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.1.0-dev.
|
|
2
|
+
"version": "16.1.0-dev.38",
|
|
3
3
|
"name": "@rxap/schematic-angular",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"schematics": "./collection.json",
|
|
71
71
|
"type": "commonjs",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "b2914ceb283d873aa0d09bf4f353500cbaf890dc",
|
|
73
73
|
"main": "./src/index.js",
|
|
74
74
|
"types": "./src/index.d.ts"
|
|
75
75
|
}
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
<ng-container i18n><%= column.title %></ng-container>
|
|
203
203
|
</th>
|
|
204
204
|
|
|
205
|
-
<td *matCellDef="let element" mat-cell <% if (column.cssClass) { %>class="<%= column.cssClass %>"<% } %>
|
|
205
|
+
<td *matCellDef="let element" mat-cell <% if (column.cssClass) { %>class="<%= column.cssClass %>"<% } %> <%= prefix %>-<%= column.name %>-cell [element]="element" [value]="element?.<%= column.propertyPath %>"></td>
|
|
206
206
|
</ng-container>
|
|
207
207
|
<% } else { %>
|
|
208
208
|
<ng-container matColumnDef="<%= column.name %>">
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
<ng-container i18n><%= column.title %></ng-container>
|
|
134
134
|
</th>
|
|
135
135
|
|
|
136
|
-
<td *matCellDef="let element"
|
|
136
|
+
<td *matCellDef="let element" <%= prefix %>-<%= column.name %>-cell [element]="element" [value]="element?.<%= column.propertyPath %>"></td>
|
|
137
137
|
</ng-container>
|
|
138
138
|
<% } else { %>
|
|
139
139
|
<ng-container matColumnDef="<%= column.name %>">
|