@umbraco-ui/uui-checkbox 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.
- package/lib/index.js +7 -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:
|
|
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:
|
|
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.
|
|
3
|
+
"version": "1.7.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.
|
|
37
|
-
"@umbraco-ui/uui-boolean-input": "1.
|
|
38
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.
|
|
36
|
+
"@umbraco-ui/uui-base": "1.7.0",
|
|
37
|
+
"@umbraco-ui/uui-boolean-input": "1.7.0",
|
|
38
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.7.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "npm run analyze && tsc --build
|
|
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": "
|
|
49
|
+
"gitHead": "1f139dc2b4ed9ba7b9fb1af5e934589d7c4d8f06"
|
|
50
50
|
}
|