@awes-io/ui 2.110.0 → 2.111.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
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.111.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.110.0...@awes-io/ui@2.111.0) (2024-09-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* disabled buttons style updated ([e16b2c9](https://github.com/awes-io/client/commit/e16b2c901332fdf8ceca853b8883a1dc29bfc325))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.110.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.109.0...@awes-io/ui@2.110.0) (2024-09-20)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -73,6 +73,14 @@
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
&:where(:disabled) .aw-button__icon-wrapper--highlighted {
|
|
77
|
+
background-color: color-mix(
|
|
78
|
+
in srgb,
|
|
79
|
+
var(--icon-color, var(--btn-color)) 8%,
|
|
80
|
+
rgba(255, 255, 255, 0.05)
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
|
|
76
84
|
&__loader {
|
|
77
85
|
height: 0.5rem;
|
|
78
86
|
width: auto;
|
|
@@ -166,12 +174,14 @@
|
|
|
166
174
|
--btn-bg-color: var(--c-accent);
|
|
167
175
|
--btn-color: var(--c-on-accent);
|
|
168
176
|
--btn-bg-hover: var(--c-accent-hover);
|
|
177
|
+
--btn-bg-disabled: var(--c-green);
|
|
169
178
|
}
|
|
170
179
|
|
|
171
180
|
&--color-error:where(&--theme-solid) {
|
|
172
181
|
--btn-bg-color: var(--c-error);
|
|
173
182
|
--btn-color: var(--c-on-error);
|
|
174
183
|
--btn-bg-hover: var(--c-error-hover);
|
|
184
|
+
--btn-bg-disabled: var(--c-red);
|
|
175
185
|
}
|
|
176
186
|
|
|
177
187
|
&--color-dark:where(&--theme-solid) {
|
|
@@ -243,7 +253,7 @@
|
|
|
243
253
|
}
|
|
244
254
|
|
|
245
255
|
&--theme-solid:where(:not(&--loading, &--locked)):disabled {
|
|
246
|
-
--btn-bg-color: var(--c-mono-800);
|
|
256
|
+
--btn-bg-color: var(--btn-bg-disabled, var(--c-mono-800));
|
|
247
257
|
--btn-color: var(--c-mono-400);
|
|
248
258
|
}
|
|
249
259
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awes-io/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.111.0",
|
|
4
4
|
"description": "User Interface (UI) components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ui",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"rollup-plugin-visualizer": "^2.6.0",
|
|
115
115
|
"rollup-plugin-vue": "^5.0.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "4425bd4d524a3818f1fff86daa9af1ee732bbb57"
|
|
118
118
|
}
|