azion-theme 1.14.2 → 1.14.4

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.4](https://github.com/aziontech/azion-theme/compare/v1.14.3...v1.14.4) (2025-09-12)
2
+
3
+ ### Bug Fixes
4
+
5
+ * frozen column bug ([#56](https://github.com/aziontech/azion-theme/issues/56)) ([bdcd287](https://github.com/aziontech/azion-theme/commit/bdcd2878b6313bcd22b0098052fa028e48008e42))
6
+
7
+ ## [1.14.3](https://github.com/aziontech/azion-theme/compare/v1.14.2...v1.14.3) (2025-09-03)
8
+
9
+ ### Bug Fixes
10
+
11
+ * ./ relative path to toast ([eaf0273](https://github.com/aziontech/azion-theme/commit/eaf0273e8e17ddeab48287fad0684893fbd9c965))
12
+ * trigger refactoring last pipeline ([72a558d](https://github.com/aziontech/azion-theme/commit/72a558d2d0f0010366fb7ea1d2c35b1a09b3b482))
13
+
1
14
  ## [1.14.2](https://github.com/aziontech/azion-theme/compare/v1.14.1...v1.14.2) (2025-09-01)
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.2",
4
+ "version": "1.14.4",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -21,7 +21,7 @@
21
21
 
22
22
  .p-datatable-tbody {
23
23
  .p-frozen-column {
24
- background: var(--surface-section) !important;
24
+ background: var(--surface-section);
25
25
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s !important;
26
26
  }
27
27
  }
@@ -29,7 +29,7 @@
29
29
  .p-datatable-tbody > tr:hover,
30
30
  .p-datatable-tbody > tr.bg-altered {
31
31
  .p-frozen-column {
32
- background: var(--table-body-row-hover-bg) !important;
32
+ background: var(--table-body-row-hover-bg);
33
33
  }
34
34
  }
35
35
 
@@ -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
  }