@umbraco-ui/uui-toggle 1.6.0 → 1.7.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 +4 -1
  2. package/package.json +5 -5
package/lib/index.js CHANGED
@@ -124,7 +124,10 @@ UUIToggleElement.styles = [
124
124
  height: calc(var(--uui-toggle-size) - 4px);
125
125
  border-radius: 100px;
126
126
  background-color: var(--uui-color-selected-contrast,#fff);
127
- transition: width 120ms ease, left 120ms ease, transform 120ms ease,
127
+ transition:
128
+ width 120ms ease,
129
+ left 120ms ease,
130
+ transform 120ms ease,
128
131
  background-color 120ms;
129
132
  }
130
133
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-toggle",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,11 +30,11 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.6.0",
34
- "@umbraco-ui/uui-boolean-input": "1.6.0"
33
+ "@umbraco-ui/uui-base": "1.7.0",
34
+ "@umbraco-ui/uui-boolean-input": "1.7.0"
35
35
  },
36
36
  "scripts": {
37
- "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
37
+ "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
38
38
  "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
39
39
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
40
40
  },
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "homepage": "https://uui.umbraco.com/?path=/story/uui-toggle",
45
- "gitHead": "b06aebbb67ff67c9611a19927ec3ef484edcb1cc"
45
+ "gitHead": "1f139dc2b4ed9ba7b9fb1af5e934589d7c4d8f06"
46
46
  }