@rxap/schematic-angular 16.1.0-dev.35 → 16.1.0-dev.36
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.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)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- resolve minor template issues ([1f13b90](https://gitlab.com/rxap/packages/commit/1f13b9084fd3de7e97e803f8ca8dfae7feb5cfac))
|
|
11
|
+
|
|
6
12
|
# [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)
|
|
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.36",
|
|
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": "3c6fb3e45f8cf94ab67819081737ae446ce97954",
|
|
73
73
|
"main": "./src/index.js",
|
|
74
74
|
"types": "./src/index.d.ts"
|
|
75
75
|
}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</button>
|
|
31
31
|
<mat-card-subtitle i18n><%= headerButton.label %></mat-card-subtitle>
|
|
32
32
|
<% } %>
|
|
33
|
-
<rxap-table-column-menu matCard #rxapTableColumns="rxapTableColumns" <% if (!headerButton && hasWithoutTitle) { %>inline<% }
|
|
33
|
+
<rxap-table-column-menu matCard #rxapTableColumns="rxapTableColumns" <% if (!headerButton && hasWithoutTitle) { %>inline<% } %>>
|
|
34
34
|
<% if (selectColumn) { %>
|
|
35
35
|
<rxap-table-column-option hidden name="select">
|
|
36
36
|
<ng-container i18n>Select</ng-container>
|
|
@@ -115,6 +115,8 @@
|
|
|
115
115
|
<button
|
|
116
116
|
rxapTableRowHeaderAction="<%= action.type %>"
|
|
117
117
|
mat-icon-button
|
|
118
|
+
<% if (action.color) { %>color="<%= action.color %>"<% } %>
|
|
119
|
+
<% if (action.cssClass) { %>class="<%= action.cssClass %>"<% } %>
|
|
118
120
|
*ngIf="selected | rxapRowActionCheck:'<%= action.type %>'"
|
|
119
121
|
<% if (action.permission) { %>rxapHasEnablePermission="<%= action.permission %>"<% } %>
|
|
120
122
|
matTooltip
|
|
@@ -246,7 +248,7 @@
|
|
|
246
248
|
<ng-container i18n><%= column.title %></ng-container>
|
|
247
249
|
</mat-checkbox>
|
|
248
250
|
<% } else { %>
|
|
249
|
-
<mat-form-field class="w-
|
|
251
|
+
<mat-form-field class="w-full pt-3">
|
|
250
252
|
<mat-label i18n><%= column.title %></mat-label>
|
|
251
253
|
<input
|
|
252
254
|
matInput
|