azion-theme 1.11.2 → 1.11.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 +6 -0
- package/package.json +1 -1
- package/src/azion/_extensions.scss +2 -0
- package/src/azion/_variables.scss +2 -0
- package/src/azion/extended-components/_dropdown.scss +10 -0
- package/src/azion/extended-components/_listbox.scss +8 -1
- package/src/azion/extended-components/_multiselect.scss +2 -3
- package/src/azion/extended-components/_treeselect.scss +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.11.3](https://github.com/aziontech/azion-theme/compare/v1.11.2...v1.11.3) (2025-06-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* empty results color ([#40](https://github.com/aziontech/azion-theme/issues/40)) ([bb9906a](https://github.com/aziontech/azion-theme/commit/bb9906a8187f8212bea25b67a53362a358e738de))
|
|
6
|
+
|
|
1
7
|
## [1.11.2](https://github.com/aziontech/azion-theme/compare/v1.11.1...v1.11.2) (2025-05-30)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -77,6 +77,7 @@ $colors: (
|
|
|
77
77
|
--text-color-secondary: #b5b5b5;
|
|
78
78
|
--text-color-link: #93c5fd;
|
|
79
79
|
--text-color-link-hover: #93c5fd;
|
|
80
|
+
--text-color-empty: var(--surface-800);
|
|
80
81
|
|
|
81
82
|
--surface-0: #0a0a0a;
|
|
82
83
|
--surface-50: #111111;
|
|
@@ -243,6 +244,7 @@ $colors: (
|
|
|
243
244
|
--text-color-secondary: #666666;
|
|
244
245
|
--text-color-link: #3265cb;
|
|
245
246
|
--text-color-link-hover: #2851a4;
|
|
247
|
+
--text-color-empty: var(--surface-800);
|
|
246
248
|
--degrade-primary: 0, 0, 0;
|
|
247
249
|
--degrade-secondary: 255, 255, 255;
|
|
248
250
|
|