@umbraco-ui/uui-checkbox 1.6.0-rc.1 → 1.6.0-rc.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/lib/index.js +3 -3
- package/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -99,7 +99,7 @@ UUICheckboxElement.styles = [
|
|
|
99
99
|
height: 1em;
|
|
100
100
|
line-height: 0;
|
|
101
101
|
transition: fill 120ms, opacity 120ms;
|
|
102
|
-
|
|
102
|
+
color: var(--uui-color-selected-contrast,#fff);
|
|
103
103
|
opacity: 0;
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -165,13 +165,13 @@ UUICheckboxElement.styles = [
|
|
|
165
165
|
background-color: var(--uui-color-disabled,#f3f3f5);
|
|
166
166
|
}
|
|
167
167
|
:host([disabled]) #ticker #icon-check {
|
|
168
|
-
|
|
168
|
+
color: var(--uui-color-disabled-contrast,#c4c4c4);
|
|
169
169
|
}
|
|
170
170
|
:host([disabled]) label:active #ticker {
|
|
171
171
|
animation: ${UUIHorizontalShakeAnimationValue};
|
|
172
172
|
}
|
|
173
173
|
:host([disabled]) input:checked + #ticker #icon-check {
|
|
174
|
-
|
|
174
|
+
color: var(--uui-color-disabled-contrast,#c4c4c4);
|
|
175
175
|
}
|
|
176
176
|
`
|
|
177
177
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-checkbox",
|
|
3
|
-
"version": "1.6.0-rc.
|
|
3
|
+
"version": "1.6.0-rc.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"custom-elements.json"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@umbraco-ui/uui-base": "1.6.0-rc.
|
|
37
|
-
"@umbraco-ui/uui-boolean-input": "1.6.0-rc.
|
|
38
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.6.0-rc.
|
|
36
|
+
"@umbraco-ui/uui-base": "1.6.0-rc.3",
|
|
37
|
+
"@umbraco-ui/uui-boolean-input": "1.6.0-rc.3",
|
|
38
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.6.0-rc.3"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-checkbox",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "27c5350ac041811e4d24b656030e7dca544caff1"
|
|
50
50
|
}
|