azion-theme 1.16.0 → 1.16.2
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 +12 -0
- package/package.json +1 -1
- package/src/azion/_variables.scss +2 -2
- package/src/azion/extended-components/_breadcumb.scss +1 -1
- package/src/azion/extended-components/_button.scss +5 -1
- package/src/azion/extended-components/_datatable.scss +3 -7
- package/src/azion/theme-base/components/button/_button.scss +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.16.2](https://github.com/aziontech/azion-theme/compare/v1.16.1...v1.16.2) (2025-11-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* empty commit to fix version ([#69](https://github.com/aziontech/azion-theme/issues/69)) ([5430edf](https://github.com/aziontech/azion-theme/commit/5430edfaad8f66591cc500fb5e584a301ae32778))
|
|
6
|
+
|
|
7
|
+
## [1.16.1](https://github.com/aziontech/azion-theme/compare/v1.16.0...v1.16.1) (2025-11-11)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* frozen column values ([#66](https://github.com/aziontech/azion-theme/issues/66)) ([19f591c](https://github.com/aziontech/azion-theme/commit/19f591c2496ce640278ad19a0d1c80ba119016d2))
|
|
12
|
+
|
|
1
13
|
## [1.16.0](https://github.com/aziontech/azion-theme/compare/v1.15.3...v1.16.0) (2025-11-06)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -124,7 +124,7 @@ $colors: (
|
|
|
124
124
|
--error-color: #f26464;
|
|
125
125
|
--mask-bg: #1c1c1c80;
|
|
126
126
|
--bg-selection: #fab99e;
|
|
127
|
-
--table-bg-color: var(--surface-
|
|
127
|
+
--table-bg-color: var(--surface-100);
|
|
128
128
|
--table-header-color: var(--surface-50);
|
|
129
129
|
--highlight-tabview-nav-link: #1e1e1e;
|
|
130
130
|
--bg-tabview-nav-link: var(--surface-100);
|
|
@@ -302,7 +302,7 @@ $colors: (
|
|
|
302
302
|
--mask-bg: #1e1e1e32;
|
|
303
303
|
--error-color: #ef4040;
|
|
304
304
|
--bg-selection: #f7966e;
|
|
305
|
-
--table-bg-color: var(--surface-
|
|
305
|
+
--table-bg-color: var(--surface-0);
|
|
306
306
|
--table-header-color: var(--surface-0);
|
|
307
307
|
--highlight-tab-menu-link: #f4f4f4;
|
|
308
308
|
--paginator-bg: var(--surface-0);
|
|
@@ -55,7 +55,11 @@
|
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
&.p-button-icon-only:not(
|
|
58
|
+
&.p-button-icon-only:not(
|
|
59
|
+
.p-datepicker-trigger,
|
|
60
|
+
.p-inputnumber-button,
|
|
61
|
+
.table-button
|
|
62
|
+
) {
|
|
59
63
|
width: 2rem !important;
|
|
60
64
|
height: 2rem !important;
|
|
61
65
|
.p-button-icon-left,
|
|
@@ -4,10 +4,6 @@
|
|
|
4
4
|
font-size: 0.875rem !important;
|
|
5
5
|
text-wrap: nowrap !important;
|
|
6
6
|
|
|
7
|
-
.p-datatable-tbody > tr {
|
|
8
|
-
background: var(--table-body-row-even-bg);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
7
|
.p-paginator {
|
|
12
8
|
border-width: 0px !important;
|
|
13
9
|
border-top-left-radius: 0 !important;
|
|
@@ -17,7 +13,6 @@
|
|
|
17
13
|
.p-datatable-header {
|
|
18
14
|
border-top-right-radius: $borderRadius;
|
|
19
15
|
border-top-left-radius: $borderRadius;
|
|
20
|
-
background: var(--table-header-color);
|
|
21
16
|
}
|
|
22
17
|
|
|
23
18
|
.p-datatable-tbody > .p-datatable-emptymessage:hover {
|
|
@@ -26,8 +21,8 @@
|
|
|
26
21
|
|
|
27
22
|
.p-datatable-tbody {
|
|
28
23
|
.p-frozen-column {
|
|
29
|
-
background: var(--table-body-row-bg);
|
|
30
|
-
transition: background-color 0.2s !important;
|
|
24
|
+
background: var(--table-body-row-even-bg);
|
|
25
|
+
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s !important;
|
|
31
26
|
}
|
|
32
27
|
}
|
|
33
28
|
|
|
@@ -88,6 +83,7 @@
|
|
|
88
83
|
|
|
89
84
|
&.p-datatable-gridlines {
|
|
90
85
|
border: none !important;
|
|
86
|
+
transition: border-color 0.2s background-color 0.2s;
|
|
91
87
|
.p-paginator-bottom {
|
|
92
88
|
border-color: var(--surface-border) !important;
|
|
93
89
|
border-bottom-left-radius: $borderRadius;
|