@umbraco-ui/uui-tabs 1.6.1 → 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.
- package/lib/index.js +12 -5
- package/package.json +7 -7
package/lib/index.js
CHANGED
|
@@ -102,7 +102,8 @@ UUITabElement.styles = [
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
:host(:not([active]):not([disabled])) #button:active {
|
|
105
|
-
box-shadow:
|
|
105
|
+
box-shadow:
|
|
106
|
+
inset 0 2px 4px rgba(0, 0, 0, 0.15),
|
|
106
107
|
0 1px 2px rgba(0, 0, 0, 0.05);
|
|
107
108
|
}
|
|
108
109
|
|
|
@@ -139,7 +140,8 @@ UUITabElement.styles = [
|
|
|
139
140
|
height: 0px;
|
|
140
141
|
width: calc(100% - 15px);
|
|
141
142
|
bottom: 0;
|
|
142
|
-
transition:
|
|
143
|
+
transition:
|
|
144
|
+
opacity ease-in-out var(--transitionDuration),
|
|
143
145
|
height ease-in-out var(--transitionDuration);
|
|
144
146
|
}
|
|
145
147
|
:host([active][orientation='horizontal']) #button::before {
|
|
@@ -154,7 +156,8 @@ UUITabElement.styles = [
|
|
|
154
156
|
height: calc(100% - 12px);
|
|
155
157
|
width: 0px;
|
|
156
158
|
left: 0;
|
|
157
|
-
transition:
|
|
159
|
+
transition:
|
|
160
|
+
opacity ease-in-out var(--transitionDuration),
|
|
158
161
|
width ease-in-out var(--transitionDuration);
|
|
159
162
|
}
|
|
160
163
|
:host([active][orientation='vertical']) #button::before {
|
|
@@ -520,12 +523,16 @@ UUITabGroupElement.styles = [
|
|
|
520
523
|
height: 0px;
|
|
521
524
|
border-radius: 3px 3px 0 0;
|
|
522
525
|
opacity: 0;
|
|
523
|
-
transition:
|
|
526
|
+
transition:
|
|
527
|
+
opacity ease-in 120ms,
|
|
528
|
+
height ease-in 120ms;
|
|
524
529
|
}
|
|
525
530
|
#more-button.active-inside::before {
|
|
526
531
|
opacity: 1;
|
|
527
532
|
height: 4px;
|
|
528
|
-
transition:
|
|
533
|
+
transition:
|
|
534
|
+
opacity 120ms,
|
|
535
|
+
height ease-out 120ms;
|
|
529
536
|
}
|
|
530
537
|
`
|
|
531
538
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-tabs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.
|
|
34
|
-
"@umbraco-ui/uui-button": "1.
|
|
35
|
-
"@umbraco-ui/uui-popover-container": "1.
|
|
36
|
-
"@umbraco-ui/uui-symbol-more": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.7.0-rc.0",
|
|
34
|
+
"@umbraco-ui/uui-button": "1.7.0-rc.0",
|
|
35
|
+
"@umbraco-ui/uui-popover-container": "1.7.0-rc.0",
|
|
36
|
+
"@umbraco-ui/uui-symbol-more": "1.7.0-rc.0"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
|
-
"build": "npm run analyze && tsc --build
|
|
39
|
+
"build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
|
|
40
40
|
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
|
|
41
41
|
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
|
|
42
42
|
},
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-tabs",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "a7166e62b37b609e74b96821d397c694a5f42458"
|
|
48
48
|
}
|