@vkontakte/vkui 8.2.2 → 8.2.3
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/dist/components.css +1 -1
- package/dist/components.css.map +1 -1
- package/dist/cssm/components/PopoutWrapper/PopoutWrapper.module.css +11 -11
- package/dist/cssm/components/SegmentedControl/SegmentedControl.module.css +2 -4
- package/dist/vkui.css +1 -1
- package/dist/vkui.css.map +1 -1
- package/package.json +1 -1
- package/src/components/PopoutWrapper/PopoutWrapper.module.css +11 -11
- package/src/components/PopoutWrapper/PopoutWrapper.module.css.d.ts.map +1 -1
- package/src/components/SegmentedControl/SegmentedControl.module.css +2 -4
- package/src/components/SegmentedControl/SegmentedControl.module.css.d.ts.map +1 -1
|
@@ -32,22 +32,22 @@
|
|
|
32
32
|
opacity: 1;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
.opened .overlay {
|
|
35
|
+
.opened > .container > .overlay {
|
|
36
36
|
animation: animationPopoutWrapperFullFadeIn var(--vkui--animation_duration_m) ease both;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
.closing .overlay {
|
|
39
|
+
.closing > .container > .overlay {
|
|
40
40
|
opacity: 0;
|
|
41
41
|
animation: animationPopoutWrapperFullFadeOut var(--vkui--animation_duration_m)
|
|
42
42
|
var(--vkui--animation_easing_default) both;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.masked .overlay {
|
|
45
|
+
.masked > .container > .overlay {
|
|
46
46
|
background: var(--vkui--color_overlay_primary);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
.fixed .overlay,
|
|
50
|
-
.absolute .overlay {
|
|
49
|
+
.fixed > .container > .overlay,
|
|
50
|
+
.absolute > .container > .overlay {
|
|
51
51
|
position: absolute;
|
|
52
52
|
}
|
|
53
53
|
|
|
@@ -73,27 +73,27 @@
|
|
|
73
73
|
pointer-events: auto;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
.alignYCenter .container {
|
|
76
|
+
.alignYCenter > .container {
|
|
77
77
|
align-items: center;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
.alignYBottom .container {
|
|
80
|
+
.alignYBottom > .container {
|
|
81
81
|
align-items: flex-end;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
.alignYTop .container {
|
|
84
|
+
.alignYTop > .container {
|
|
85
85
|
align-items: flex-start;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
.alignXCenter .container {
|
|
88
|
+
.alignXCenter > .container {
|
|
89
89
|
justify-content: center;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
.alignXLeft .container {
|
|
92
|
+
.alignXLeft > .container {
|
|
93
93
|
justify-content: flex-start;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
.alignXRight .container {
|
|
96
|
+
.alignXRight > .container {
|
|
97
97
|
justify-content: flex-end;
|
|
98
98
|
}
|
|
99
99
|
|
|
@@ -26,11 +26,9 @@
|
|
|
26
26
|
inset-inline-start: 0;
|
|
27
27
|
inline-size: calc(100% / var(--vkui_internal--SegmentedControl_options));
|
|
28
28
|
background-color: var(--vkui--color_segmented_control);
|
|
29
|
+
border: var(--vkui--size_border--regular) solid var(--vkui--color_image_border_alpha);
|
|
29
30
|
border-radius: inherit;
|
|
30
|
-
box-shadow:
|
|
31
|
-
inset 0 0 0 0.5px var(--vkui--color_image_border_alpha),
|
|
32
|
-
0 3px 8px rgb(0, 0, 0, 0.12),
|
|
33
|
-
0 3px 1px rgb(0, 0, 0, 0.04);
|
|
31
|
+
box-shadow: var(--vkui--elevation2);
|
|
34
32
|
transform: translateX(calc(var(--vkui_internal--SegmentedControl_actual_index) * 100%));
|
|
35
33
|
transform-origin: 0 0;
|
|
36
34
|
transition: transform 150ms;
|