azion-theme 1.5.2 → 1.5.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 +12 -0
- package/package.json +1 -1
- package/src/azion/theme.scss +1 -1
- package/src/azion/variables/_button.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.5.4](https://github.com/aziontech/azion-theme/compare/v1.5.3...v1.5.4) (2024-08-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* button secondary color priority ([0d0f457](https://github.com/aziontech/azion-theme/commit/0d0f457c4a54394a7a2f2526ea8449b5b0c5a055))
|
|
6
|
+
|
|
7
|
+
## [1.5.3](https://github.com/aziontech/azion-theme/compare/v1.5.2...v1.5.3) (2024-08-07)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* sync theme transition with primevue transitions ([7537d14](https://github.com/aziontech/azion-theme/commit/7537d1429ec986c8076bbfb25730f18bcb32a13e))
|
|
12
|
+
|
|
1
13
|
## [1.5.2](https://github.com/aziontech/azion-theme/compare/v1.5.1...v1.5.2) (2024-08-07)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/package.json
CHANGED
package/src/azion/theme.scss
CHANGED
|
@@ -87,7 +87,7 @@ $secondaryButtonBg: var(--secondary-button-bg);
|
|
|
87
87
|
|
|
88
88
|
/// Text color of a secondary button
|
|
89
89
|
/// @group button
|
|
90
|
-
$secondaryButtonTextColor: var(--secondary-button-text-color);
|
|
90
|
+
$secondaryButtonTextColor: var(--secondary-button-text-color) !important;
|
|
91
91
|
|
|
92
92
|
/// Border of a secondary button
|
|
93
93
|
/// @group button
|