@workday/canvas-kit-css 16.0.0-alpha.0396-next.0 → 16.0.0-alpha.0424-next.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/avatar.css +30 -8
- package/badge.css +2 -2
- package/card.css +4 -3
- package/color-picker.css +18 -1
- package/common.css +7 -0
- package/form-field.css +17 -3
- package/loading-dots.css +2 -2
- package/modal.css +2 -2
- package/package.json +2 -2
- package/popup.css +2 -2
- package/skeleton.css +2 -2
- package/text-input.css +18 -3
- package/tooltip.css +2 -2
package/avatar.css
CHANGED
|
@@ -20,29 +20,39 @@
|
|
|
20
20
|
height: var(--cnvs-base-avatar-size, var(--cnvs-sys-size-lg, 3rem));
|
|
21
21
|
min-width: var(--cnvs-base-avatar-size, var(--cnvs-sys-size-lg, 3rem));
|
|
22
22
|
min-height: var(--cnvs-base-avatar-size, var(--cnvs-sys-size-lg, 3rem));
|
|
23
|
-
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-blue-
|
|
24
|
-
color: var(--cnvs-base-avatar-color, var(--cnvs-
|
|
23
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-blue-600, oklch(0.5198 0.1782 256.11 / 1)));
|
|
24
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-sys-color-fg-inverse));
|
|
25
25
|
display: flex;
|
|
26
26
|
align-items: center;
|
|
27
27
|
justify-content: center;
|
|
28
28
|
overflow: hidden;
|
|
29
29
|
border: none;
|
|
30
|
+
outline: 0.0625rem solid transparent;
|
|
30
31
|
font-family: var(--cnvs-sys-font-family-default);
|
|
31
32
|
font-weight: var(--cnvs-sys-font-weight-normal);
|
|
32
33
|
line-height: var(--cnvs-sys-line-height-body-md, var(--cnvs-sys-line-height-body-medium, 1.75rem));
|
|
33
34
|
font-size: var(--cnvs-sys-font-size-body-md, var(--cnvs-sys-font-size-body-medium, 1.125rem));
|
|
34
35
|
}
|
|
35
36
|
|
|
37
|
+
button .cnvs-base-avatar, a .cnvs-base-avatar, .cnvs-base-avatar:is(button, a) {
|
|
38
|
+
outline: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.cnvs-base-avatar:is(button, a):focus-visible, .cnvs-base-avatar:is(button, a).focus {
|
|
42
|
+
outline: 0.125rem solid transparent;
|
|
43
|
+
outline-offset: 0.125rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
36
46
|
|
|
37
47
|
.cnvs-base-avatar.variant-blue {
|
|
38
|
-
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-blue-
|
|
39
|
-
color: var(--cnvs-base-avatar-color, var(--cnvs-
|
|
48
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-blue-600, oklch(0.5198 0.1782 256.11 / 1)));
|
|
49
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-sys-color-fg-inverse));
|
|
40
50
|
}
|
|
41
51
|
|
|
42
52
|
|
|
43
53
|
.cnvs-base-avatar.variant-amber {
|
|
44
|
-
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-amber-
|
|
45
|
-
color: var(--cnvs-base-avatar-color, var(--cnvs-base-palette-amber-
|
|
54
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-amber-300, oklch(0.8432 0.1713 85.24 / 1)));
|
|
55
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-base-palette-amber-800, oklch(0.4143 0.1245 42.21 / 1)));
|
|
46
56
|
}
|
|
47
57
|
|
|
48
58
|
|
|
@@ -53,8 +63,20 @@
|
|
|
53
63
|
|
|
54
64
|
|
|
55
65
|
.cnvs-base-avatar.variant-purple {
|
|
56
|
-
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-purple-
|
|
57
|
-
color: var(--cnvs-base-avatar-color, var(--cnvs-
|
|
66
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-purple-600, oklch(0.5177 0.162 313.92 / 1)));
|
|
67
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-sys-color-fg-inverse));
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
.cnvs-base-avatar.variant-magenta {
|
|
72
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-magenta-600, oklch(0.534 0.183 344.19 / 1)));
|
|
73
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-sys-color-fg-inverse));
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
.cnvs-base-avatar.variant-green {
|
|
78
|
+
background-color: var(--cnvs-base-avatar-background-color, var(--cnvs-base-palette-green-600, oklch(0.5069 0.1569 145.56 / 1)));
|
|
79
|
+
color: var(--cnvs-base-avatar-color, var(--cnvs-sys-color-fg-inverse));
|
|
58
80
|
}
|
|
59
81
|
|
|
60
82
|
|
package/badge.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-3ixwlo {
|
|
2
2
|
from {
|
|
3
3
|
transform: scale(0.85);
|
|
4
4
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
.cnvs-count-badge {
|
|
13
13
|
box-sizing: border-box;
|
|
14
14
|
align-items: center;
|
|
15
|
-
animation: animation-
|
|
15
|
+
animation: animation-3ixwlo 0.2s ease;
|
|
16
16
|
border-radius: var(--cnvs-sys-shape-full, var(--cnvs-sys-shape-round, 65rem));
|
|
17
17
|
display: inline-flex;
|
|
18
18
|
font-family: var(--cnvs-sys-font-family-default);
|
package/card.css
CHANGED
|
@@ -7,18 +7,19 @@
|
|
|
7
7
|
box-sizing: border-box;
|
|
8
8
|
color: var(--cnvs-sys-color-fg-strong);
|
|
9
9
|
font-weight: var(--cnvs-sys-font-weight-bold);
|
|
10
|
-
margin-block: var(--cnvs-sys-padding-none, var(--cnvs-sys-space-zero, 0));
|
|
10
|
+
margin-block-start: var(--cnvs-sys-padding-none, var(--cnvs-sys-space-zero, 0));
|
|
11
|
+
margin-block-end: var(--cnvs-sys-padding-none, var(--cnvs-sys-space-zero, 0));
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
.cnvs-card {
|
|
15
16
|
box-sizing: border-box;
|
|
17
|
+
--cnvs-corner-shape-shape: var(--cnvs-sys-shape-xxl, var(--cnvs-sys-shape-x6, 1.5rem));
|
|
16
18
|
display: flex;
|
|
17
19
|
flex-direction: column;
|
|
18
|
-
gap: var(--cnvs-sys-
|
|
20
|
+
gap: var(--cnvs-sys-padding-sm, var(--cnvs-sys-space-x3, 0.75rem));
|
|
19
21
|
padding: var(--cnvs-sys-padding-xl, var(--cnvs-sys-space-x6, 1.5rem));
|
|
20
22
|
background-color: var(--cnvs-sys-color-surface-default, var(--cnvs-sys-color-bg-default, oklch(1 0 0 / 1)));
|
|
21
|
-
border-radius: var(--cnvs-sys-shape-xxl, var(--cnvs-sys-shape-x6, 1.5rem));
|
|
22
23
|
border: 0.0625rem solid var(--cnvs-sys-color-border-default, var(--cnvs-sys-color-border-divider, oklch(0.3057 0.079 256.22 / 0.13)));
|
|
23
24
|
}
|
|
24
25
|
|
package/color-picker.css
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
.cnvs-color-picker-color-swatch {
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
--cnvs-system-icon-color: var(--cnvs-color-picker-color-swatch-icon-color);
|
|
4
|
+
--cnvs-corner-shape-shape: var(--cnvs-sys-shape-sm, var(--cnvs-sys-shape-x1, 0.25rem));
|
|
4
5
|
width: var(--cnvs-sys-size-xxs, var(--cnvs-sys-space-x5, 1.25rem));
|
|
5
6
|
height: var(--cnvs-sys-size-xxs, var(--cnvs-sys-space-x5, 1.25rem));
|
|
6
|
-
border-radius: var(--cnvs-sys-shape-sm, var(--cnvs-sys-shape-x1, 0.25rem));
|
|
7
7
|
background-color: var(--cnvs-color-picker-color-swatch-color);
|
|
8
8
|
display: flex;
|
|
9
9
|
align-items: center;
|
|
10
10
|
justify-content: center;
|
|
11
|
+
forced-color-adjust: none;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
.cnvs-color-picker-color-swatch>* {
|
|
@@ -19,6 +20,14 @@
|
|
|
19
20
|
box-shadow: inset 0px 0px 0px 0.0625rem rgba(0, 0, 0, 0.25);
|
|
20
21
|
}
|
|
21
22
|
|
|
23
|
+
@media (forced-colors: active) {
|
|
24
|
+
.cnvs-color-picker-color-swatch.with-shadow {
|
|
25
|
+
outline: solid 0.0625rem SelectedItemText;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
22
31
|
|
|
23
32
|
.cnvs-color-picker-hex-input {
|
|
24
33
|
box-sizing: border-box;
|
|
@@ -53,6 +62,14 @@
|
|
|
53
62
|
pointer-events: none;
|
|
54
63
|
}
|
|
55
64
|
|
|
65
|
+
@media (forced-colors: active) {
|
|
66
|
+
.cnvs-color-picker-hex-input [data-part="color-picker-hex-input-swatch"] {
|
|
67
|
+
outline: solid 0.0625rem SelectedItemText;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
}
|
|
72
|
+
|
|
56
73
|
.cnvs-color-picker-hex-input :dir(ltr) [data-part="color-picker-hex-input"] {
|
|
57
74
|
padding-inline-start: 2.875rem;
|
|
58
75
|
}
|
package/common.css
CHANGED
package/form-field.css
CHANGED
|
@@ -166,9 +166,9 @@
|
|
|
166
166
|
|
|
167
167
|
.cnvs-form-field-group-list {
|
|
168
168
|
box-sizing: border-box;
|
|
169
|
+
--cnvs-corner-shape-shape: var(--cnvs-sys-shape-lg, 0.75rem);
|
|
169
170
|
display: flex;
|
|
170
171
|
flex-direction: column;
|
|
171
|
-
border-radius: var(--cnvs-sys-shape-md, var(--cnvs-sys-shape-x2, 0.5rem));
|
|
172
172
|
gap: var(--cnvs-sys-gap-sm, var(--cnvs-sys-space-x2, 0.5rem));
|
|
173
173
|
padding: 0.625rem var(--cnvs-base-size-150, 0.75rem) var(--cnvs-sys-padding-xs, var(--cnvs-sys-space-x2, 0.5rem));
|
|
174
174
|
margin: 0 calc(var(--cnvs-base-size-150, 0.75rem) * -1);
|
|
@@ -178,13 +178,27 @@
|
|
|
178
178
|
|
|
179
179
|
|
|
180
180
|
.cnvs-form-field-group-list.error-error {
|
|
181
|
-
background-color: var(--cnvs-sys-color-brand-surface-critical-default, oklch(0.6289 0.2567 29.11 / 0.04));
|
|
182
181
|
box-shadow: inset 0 0 0 0.125rem var(--cnvs-sys-color-brand-border-critical, oklch(0.6495 0.2369 30.04 / 1));
|
|
183
182
|
}
|
|
184
183
|
|
|
184
|
+
@media (forced-colors: active) {
|
|
185
|
+
.cnvs-form-field-group-list.error-error {
|
|
186
|
+
outline: solid 0.125rem ButtonBorder;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
}
|
|
191
|
+
|
|
185
192
|
|
|
186
193
|
.cnvs-form-field-group-list.error-caution {
|
|
187
|
-
background-color: var(--cnvs-sys-color-brand-surface-caution-default, oklch(0.7982 0.159 92.57 / 0.1));
|
|
188
194
|
box-shadow: inset 0 0 0 0.0625rem var(--cnvs-sys-color-brand-border-caution, var(--cnvs-brand-alert-dark, oklch(0.6601 0.1537 60.7 / 1))),inset 0 0 0 0.1875rem var(--cnvs-sys-color-brand-focus-caution-inner, var(--cnvs-brand-common-alert-inner, oklch(0.7909 0.1711 70.15 / 1)));
|
|
189
195
|
}
|
|
190
196
|
|
|
197
|
+
@media (forced-colors: active) {
|
|
198
|
+
.cnvs-form-field-group-list.error-caution {
|
|
199
|
+
outline: solid 0.125rem ButtonBorder;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
}
|
|
204
|
+
|
package/loading-dots.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-2zsp0u {
|
|
2
2
|
0%, 80%, 100% {
|
|
3
3
|
transform: scale(0);
|
|
4
4
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
outline: 0.125rem solid transparent;
|
|
38
38
|
transform: scale(0);
|
|
39
39
|
display: inline-block;
|
|
40
|
-
animation-name: animation-
|
|
40
|
+
animation-name: animation-2zsp0u;
|
|
41
41
|
animation-duration: calc(var(--cnvs-loading-dots-animation-duration-ms) * 35);
|
|
42
42
|
animation-iteration-count: infinite;
|
|
43
43
|
animation-timing-function: ease-in-out;
|
package/modal.css
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
@keyframes animation-
|
|
48
|
+
@keyframes animation-3vqy2x {
|
|
49
49
|
0% {
|
|
50
50
|
background: none;
|
|
51
51
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
height: 100vh;
|
|
66
66
|
background: var(--cnvs-sys-color-surface-overlay-scrim, oklch(0.0847 0 0 / 0.36));
|
|
67
67
|
animation-duration: 0.3s;
|
|
68
|
-
animation-name: animation-
|
|
68
|
+
animation-name: animation-3vqy2x;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.wd-no-animation .cnvs-modal-overlay-container {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-css",
|
|
3
|
-
"version": "16.0.0-alpha.
|
|
3
|
+
"version": "16.0.0-alpha.0424-next.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The parent module that contains all Workday Canvas Kit CSS components",
|
|
6
6
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"components",
|
|
27
27
|
"workday"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "cebd41107b3d9b3a051bfe89c62ee33f9665f0a7"
|
|
30
30
|
}
|
package/popup.css
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
@keyframes animation-
|
|
13
|
+
@keyframes animation-4dht9 {
|
|
14
14
|
0% {
|
|
15
15
|
opacity: 1;
|
|
16
16
|
transform: translate(var(--cnvs-translate-position-x), var(--cnvs-translate-position-y));
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
border-radius: var(--cnvs-sys-shape-xxxl, 2rem);
|
|
40
40
|
max-height: var(--cnvs-popup-card-max-height);
|
|
41
41
|
overflow-y: auto;
|
|
42
|
-
animation-name: animation-
|
|
42
|
+
animation-name: animation-4dht9;
|
|
43
43
|
animation-duration: 150ms;
|
|
44
44
|
animation-timing-function: ease-out;
|
|
45
45
|
transform-origin: var(--cnvs-popup-card-transform-origin-vertical) var(--cnvs-popup-card-transform-origin-horizontal);
|
package/skeleton.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
@keyframes animation-
|
|
39
|
+
@keyframes animation-4908wy {
|
|
40
40
|
from {
|
|
41
41
|
opacity: 0.4;
|
|
42
42
|
}
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
.cnvs-skeleton {
|
|
51
51
|
box-sizing: border-box;
|
|
52
|
-
animation: animation-
|
|
52
|
+
animation: animation-4908wy 0.8s linear infinite alternate;
|
|
53
53
|
position: relative;
|
|
54
54
|
overflow: hidden;
|
|
55
55
|
height: 100%;
|
package/text-input.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.cnvs-text-input {
|
|
2
2
|
box-sizing: border-box;
|
|
3
|
+
--cnvs-corner-shape-shape: var(--cnvs-sys-shape-lg, 0.75rem);
|
|
3
4
|
font-family: var(--cnvs-sys-font-family-default);
|
|
4
5
|
font-size: var(--cnvs-sys-font-size-subtext-lg, var(--cnvs-sys-font-size-subtext-large, 0.875rem));
|
|
5
6
|
font-weight: var(--cnvs-sys-font-weight-normal);
|
|
@@ -8,7 +9,6 @@
|
|
|
8
9
|
display: block;
|
|
9
10
|
border: 0.0625rem solid var(--cnvs-sys-color-border-input-default);
|
|
10
11
|
background-color: var(--cnvs-sys-color-surface-default, var(--cnvs-sys-color-bg-default, oklch(1 0 0 / 1)));
|
|
11
|
-
border-radius: var(--cnvs-sys-shape-md, var(--cnvs-sys-shape-x2, 0.5rem));
|
|
12
12
|
height: var(--cnvs-sys-size-md, var(--cnvs-sys-space-x10, 2.5rem));
|
|
13
13
|
transition: 0.2s box-shadow,0.2s border-color;
|
|
14
14
|
padding: var(--cnvs-sys-padding-xs, var(--cnvs-sys-space-x2, 0.5rem));
|
|
@@ -60,7 +60,6 @@
|
|
|
60
60
|
.cnvs-text-input.error-error {
|
|
61
61
|
border-color: var(--cnvs-sys-color-brand-border-critical, oklch(0.6495 0.2369 30.04 / 1));
|
|
62
62
|
box-shadow: inset 0 0 0 0.125rem var(--cnvs-sys-color-brand-border-critical, oklch(0.6495 0.2369 30.04 / 1));
|
|
63
|
-
background-color: var(--cnvs-sys-color-brand-surface-critical-default, oklch(0.6289 0.2567 29.11 / 0.04));
|
|
64
63
|
}
|
|
65
64
|
|
|
66
65
|
.cnvs-text-input.error-error:is(:hover, .hover, :disabled, .disabled, :focus-visible:not([disabled]), .focus:not([disabled])) {
|
|
@@ -72,11 +71,18 @@
|
|
|
72
71
|
outline-offset: 0.125rem;
|
|
73
72
|
}
|
|
74
73
|
|
|
74
|
+
@media (forced-colors: active) {
|
|
75
|
+
.cnvs-text-input.error-error {
|
|
76
|
+
outline: solid 0.25rem ButtonBorder;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
|
|
75
82
|
|
|
76
83
|
.cnvs-text-input.error-caution {
|
|
77
84
|
border-color: var(--cnvs-sys-color-brand-border-caution, var(--cnvs-brand-alert-dark, oklch(0.6601 0.1537 60.7 / 1)));
|
|
78
85
|
box-shadow: inset 0 0 0 0.125rem var(--cnvs-sys-color-brand-focus-caution-inner, var(--cnvs-brand-common-alert-inner, oklch(0.7909 0.1711 70.15 / 1)));
|
|
79
|
-
background-color: var(--cnvs-sys-color-brand-surface-caution-default, oklch(0.7982 0.159 92.57 / 0.1));
|
|
80
86
|
outline-offset: 0.125rem;
|
|
81
87
|
}
|
|
82
88
|
|
|
@@ -88,6 +94,15 @@
|
|
|
88
94
|
box-shadow: inset 0 0 0 0.125rem var(--cnvs-sys-color-brand-focus-caution-inner, var(--cnvs-brand-common-alert-inner, oklch(0.7909 0.1711 70.15 / 1))),0 0 0 2px var(--cnvs-sys-color-focus-inverse, var(--cnvs-sys-color-border-input-inverse, oklch(1 0 0 / 1))),0 0 0 4px var(--cnvs-sys-color-brand-border-primary, oklch(0.6023 0.2032 255.68 / 1));
|
|
89
95
|
}
|
|
90
96
|
|
|
97
|
+
@media (forced-colors: active) {
|
|
98
|
+
.cnvs-text-input.error-caution {
|
|
99
|
+
outline: solid 0.25rem ButtonBorder;
|
|
100
|
+
outline-offset: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
}
|
|
105
|
+
|
|
91
106
|
|
|
92
107
|
.cnvs-input-group-inner {
|
|
93
108
|
--cnvs-input-group-inner-inset-inline-start: initial;
|
package/tooltip.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-1za7de {
|
|
2
2
|
0% {
|
|
3
3
|
opacity: 0;
|
|
4
4
|
transform: translate(var(--cnvs-tooltip-translate-position-x), var(--cnvs-tooltip-translate-position-y));
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
position: relative;
|
|
23
23
|
padding: var(--cnvs-sys-padding-sm, var(--cnvs-sys-space-x3, 0.75rem));
|
|
24
24
|
color: var(--cnvs-sys-color-fg-inverse);
|
|
25
|
-
animation-name: animation-
|
|
25
|
+
animation-name: animation-1za7de;
|
|
26
26
|
animation-duration: 150ms;
|
|
27
27
|
animation-timing-function: ease-out;
|
|
28
28
|
transform-origin: var(--cnvs-tooltip-container-tooltip-transform-origin-vertical) var(--cnvs-tooltip-container-tooltip-transform-origin-horizontal);
|