azion-theme 1.19.0 → 1.20.0

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,15 @@
1
+ ## [1.20.0](https://github.com/aziontech/azion-theme/compare/v1.19.1...v1.20.0) (2026-03-12)
2
+
3
+ ### Features
4
+
5
+ * added new tokens to cards home ([#78](https://github.com/aziontech/azion-theme/issues/78)) ([52af798](https://github.com/aziontech/azion-theme/commit/52af79825178b41cbf0d84fa9a1769b03ff53491))
6
+
7
+ ## [1.19.1](https://github.com/aziontech/azion-theme/compare/v1.19.0...v1.19.1) (2026-03-12)
8
+
9
+ ### Bug Fixes
10
+
11
+ * removed focus on table row, not necessary anymore ([#77](https://github.com/aziontech/azion-theme/issues/77)) ([76eebbc](https://github.com/aziontech/azion-theme/commit/76eebbc37998c4e725d267163514fcb5cd232331))
12
+
1
13
  ## [1.19.0](https://github.com/aziontech/azion-theme/compare/v1.18.4...v1.19.0) (2026-03-10)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "azion-theme",
3
3
  "type": "module",
4
- "version": "1.19.0",
4
+ "version": "1.20.0",
5
5
  "author": "aziontech",
6
6
  "contributors": [
7
7
  {
@@ -110,6 +110,10 @@ $colors: (
110
110
  --surface-hover: #f5f5f516;
111
111
  --surface-code-highlight: #5e5e5e50;
112
112
 
113
+ --card-content-bg: var(--surface-100);
114
+ --card-header-bg: var(--surface-50);
115
+ --card-footer-bg: var(--surface-50);
116
+
113
117
  --content-padding: 1.25rem;
114
118
  --inline-spacing: 0.5rem;
115
119
  --border-radius: 6px;
@@ -291,6 +295,10 @@ $colors: (
291
295
  --surface-hover: #3b3b3b16;
292
296
  --surface-code-highlight: #b5b5b550;
293
297
 
298
+ --card-content-bg: var(--surface-0);
299
+ --card-header-bg: var(--surface-0);
300
+ --card-footer-bg: var(--surface-0);
301
+
294
302
  --maskbg: #1e1e1e32;
295
303
  --highlight-text-color: none;
296
304
  --highlight-focus-bg: var(--surface-hover);
@@ -19,6 +19,10 @@
19
19
  background: unset !important;
20
20
  }
21
21
 
22
+ .p-datatable-tbody > tr:focus-visible {
23
+ outline: none !important;
24
+ }
25
+
22
26
  .p-datatable-tbody {
23
27
  .p-frozen-column {
24
28
  background: var(--table-body-row-even-bg);