@umbraco-ui/uui-checkbox 1.6.0-rc.0 → 1.6.0-rc.2

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.
Files changed (2) hide show
  1. package/lib/index.js +3 -3
  2. 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
- fill: var(--uui-color-selected-contrast,#fff);
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
- fill: var(--uui-color-disabled-contrast,#c4c4c4);
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
- fill: var(--uui-color-disabled-contrast,#c4c4c4);
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.0",
3
+ "version": "1.6.0-rc.2",
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.0",
37
- "@umbraco-ui/uui-boolean-input": "1.6.0-rc.0",
38
- "@umbraco-ui/uui-icon-registry-essential": "1.6.0-rc.0"
36
+ "@umbraco-ui/uui-base": "1.6.0-rc.2",
37
+ "@umbraco-ui/uui-boolean-input": "1.6.0-rc.2",
38
+ "@umbraco-ui/uui-icon-registry-essential": "1.6.0-rc.2"
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": "04709c32cb81b058bdf7976b69533e5b793c49ab"
49
+ "gitHead": "5d4eefce4744802ab5bc40055b1a3136f0afc520"
50
50
  }