@umbraco-ui/uui-checkbox 1.6.0-rc.4 → 1.7.0-rc.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.
Files changed (2) hide show
  1. package/lib/index.js +7 -2
  2. package/package.json +6 -6
package/lib/index.js CHANGED
@@ -98,7 +98,9 @@ UUICheckboxElement.styles = [
98
98
  width: 1em;
99
99
  height: 1em;
100
100
  line-height: 0;
101
- transition: fill 120ms, opacity 120ms;
101
+ transition:
102
+ fill 120ms,
103
+ opacity 120ms;
102
104
  color: var(--uui-color-selected-contrast,#fff);
103
105
  opacity: 0;
104
106
  }
@@ -114,7 +116,10 @@ UUICheckboxElement.styles = [
114
116
  var(--uui-checkbox-border-radius, var(--uui-border-radius,3px)) * 0.5
115
117
  );
116
118
  background-color: var(--uui-color-selected,#3544b1);
117
- transition: transform 120ms ease, opacity 120ms, background-color 120ms;
119
+ transition:
120
+ transform 120ms ease,
121
+ opacity 120ms,
122
+ background-color 120ms;
118
123
  transform: scale(0);
119
124
  opacity: 0;
120
125
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-checkbox",
3
- "version": "1.6.0-rc.4",
3
+ "version": "1.7.0-rc.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -33,12 +33,12 @@
33
33
  "custom-elements.json"
34
34
  ],
35
35
  "dependencies": {
36
- "@umbraco-ui/uui-base": "1.6.0-rc.4",
37
- "@umbraco-ui/uui-boolean-input": "1.6.0-rc.4",
38
- "@umbraco-ui/uui-icon-registry-essential": "1.6.0-rc.4"
36
+ "@umbraco-ui/uui-base": "1.7.0-rc.0",
37
+ "@umbraco-ui/uui-boolean-input": "1.7.0-rc.0",
38
+ "@umbraco-ui/uui-icon-registry-essential": "1.7.0-rc.0"
39
39
  },
40
40
  "scripts": {
41
- "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
41
+ "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
42
42
  "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
43
43
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
44
44
  },
@@ -46,5 +46,5 @@
46
46
  "access": "public"
47
47
  },
48
48
  "homepage": "https://uui.umbraco.com/?path=/story/uui-checkbox",
49
- "gitHead": "ae00cf3a0d7be2827491b435c1a40f5d7649a504"
49
+ "gitHead": "a7166e62b37b609e74b96821d397c694a5f42458"
50
50
  }