azion-theme 1.14.1 → 1.14.3

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
@@ -1,3 +1,16 @@
1
+ ## [1.14.3](https://github.com/aziontech/azion-theme/compare/v1.14.2...v1.14.3) (2025-09-03)
2
+
3
+ ### Bug Fixes
4
+
5
+ * ./ relative path to toast ([eaf0273](https://github.com/aziontech/azion-theme/commit/eaf0273e8e17ddeab48287fad0684893fbd9c965))
6
+ * trigger refactoring last pipeline ([72a558d](https://github.com/aziontech/azion-theme/commit/72a558d2d0f0010366fb7ea1d2c35b1a09b3b482))
7
+
8
+ ## [1.14.2](https://github.com/aziontech/azion-theme/compare/v1.14.1...v1.14.2) (2025-09-01)
9
+
10
+ ### Bug Fixes
11
+
12
+ * frozen column when bg-altered ([#54](https://github.com/aziontech/azion-theme/issues/54)) ([872baa1](https://github.com/aziontech/azion-theme/commit/872baa14de3fe174e7dcb790045eb2eb85693e9e))
13
+
1
14
  ## [1.14.1](https://github.com/aziontech/azion-theme/compare/v1.14.0...v1.14.1) (2025-08-31)
2
15
 
3
16
  ### Bug Fixes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.14.1",
4
+ "version": "1.14.3",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -26,7 +26,8 @@
26
26
  }
27
27
  }
28
28
 
29
- .p-datatable-tbody > tr:hover {
29
+ .p-datatable-tbody > tr:hover,
30
+ .p-datatable-tbody > tr.bg-altered {
30
31
  .p-frozen-column {
31
32
  background: var(--table-body-row-hover-bg) !important;
32
33
  }
@@ -71,7 +72,7 @@
71
72
  }
72
73
  }
73
74
  }
74
-
75
+
75
76
  .p-datatable-wrapper {
76
77
  overscroll-behavior: revert !important;
77
78
  }
@@ -93,7 +94,7 @@
93
94
  background: transparent;
94
95
  &::before {
95
96
  font-family: primeicons;
96
- content: '\e965' !important;
97
+ content: "\e965" !important;
97
98
  color: var(--surface-700);
98
99
  margin-right: 0.5rem;
99
100
  font-size: 0.875rem;
@@ -108,7 +109,7 @@
108
109
  background: transparent !important;
109
110
  &::before {
110
111
  font-family: primeicons;
111
- content: '\e966' !important;
112
+ content: "\e966" !important;
112
113
  color: var(--text-color);
113
114
  }
114
115
  &:hover {
@@ -30,35 +30,9 @@
30
30
 
31
31
  &:after {
32
32
  border: solid transparent;
33
- border-color: rgba($overlayContentBg, 0);
34
- border-bottom-color: $overlayContentBg;
35
33
  }
36
34
 
37
35
  &:before {
38
36
  border: solid transparent;
39
-
40
- @if (nth($overlayContentBorder, 2) == 'none') {
41
- border-color: rgba($overlayContentBg, 0);
42
- border-bottom-color: $overlayContentBg;
43
- }
44
- @else {
45
- border-color: rgba(nth($overlayContentBorder, 3), 0);
46
- border-bottom-color: nth($overlayContentBorder, 3);
47
- }
48
- }
49
-
50
- &.p-overlaypanel-flipped {
51
- &:after {
52
- border-top-color: $overlayContentBg;
53
- }
54
-
55
- &:before {
56
- @if (nth($overlayContentBorder, 2) == 'none') {
57
- border-top-color: $overlayContentBg;
58
- }
59
- @else {
60
- border-top-color: nth($overlayContentBorder, 3);
61
- }
62
- }
63
37
  }
64
38
  }