@vaadin/tabs 24.5.0-alpha5 → 24.5.0-alpha6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/tabs",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/a11y-base": "24.5.0-
|
|
43
|
-
"@vaadin/component-base": "24.5.0-
|
|
44
|
-
"@vaadin/item": "24.5.0-
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "24.5.0-
|
|
46
|
-
"@vaadin/vaadin-material-styles": "24.5.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "24.5.0-
|
|
42
|
+
"@vaadin/a11y-base": "24.5.0-alpha6",
|
|
43
|
+
"@vaadin/component-base": "24.5.0-alpha6",
|
|
44
|
+
"@vaadin/item": "24.5.0-alpha6",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha6",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha6",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha6",
|
|
48
48
|
"lit": "^3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "c5f541dbe961a994730d4c60472ae957bf6b4c12"
|
|
60
60
|
}
|
|
@@ -16,7 +16,9 @@ registerStyles(
|
|
|
16
16
|
font-weight: 500;
|
|
17
17
|
opacity: 1;
|
|
18
18
|
color: var(--lumo-secondary-text-color);
|
|
19
|
-
transition:
|
|
19
|
+
transition:
|
|
20
|
+
0.15s color,
|
|
21
|
+
0.2s transform;
|
|
20
22
|
flex-shrink: 0;
|
|
21
23
|
display: flex;
|
|
22
24
|
align-items: center;
|
|
@@ -92,11 +94,6 @@ registerStyles(
|
|
|
92
94
|
will-change: transform;
|
|
93
95
|
}
|
|
94
96
|
|
|
95
|
-
:host([selected])::before,
|
|
96
|
-
:host([selected])::after {
|
|
97
|
-
background-color: var(--_selection-color);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
97
|
:host([orientation='vertical'])::before,
|
|
101
98
|
:host([orientation='vertical'])::after {
|
|
102
99
|
left: 0;
|
|
@@ -111,11 +108,14 @@ registerStyles(
|
|
|
111
108
|
:host::after {
|
|
112
109
|
box-shadow: 0 0 0 4px var(--_selection-color);
|
|
113
110
|
opacity: 0.15;
|
|
114
|
-
transition:
|
|
111
|
+
transition:
|
|
112
|
+
0.15s 0.02s transform,
|
|
113
|
+
0.8s 0.17s opacity;
|
|
115
114
|
}
|
|
116
115
|
|
|
117
116
|
:host([selected])::before,
|
|
118
117
|
:host([selected])::after {
|
|
118
|
+
background-color: var(--_selection-color);
|
|
119
119
|
transform: translateX(-50%) scale(1);
|
|
120
120
|
transition-timing-function: cubic-bezier(0.12, 0.32, 0.54, 1.5);
|
|
121
121
|
}
|
|
@@ -81,7 +81,9 @@ registerStyles(
|
|
|
81
81
|
transform: translate(-50%, -50%) scale(0);
|
|
82
82
|
background-color: var(--material-primary-color);
|
|
83
83
|
opacity: 0;
|
|
84
|
-
transition:
|
|
84
|
+
transition:
|
|
85
|
+
transform 0s cubic-bezier(0.05, 0.8, 0.5, 1),
|
|
86
|
+
opacity 0s linear;
|
|
85
87
|
}
|
|
86
88
|
|
|
87
89
|
:host([focused]:not([focus-ring]))::after,
|
package/web-types.json
CHANGED