@snack-uikit/stepper 0.8.22 → 0.8.23-preview-ef227a87.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.
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
background-color:transparent;
|
|
59
59
|
border:none;
|
|
60
60
|
}
|
|
61
|
-
.statusContainer:focus-visible{
|
|
61
|
+
.statusContainer:focus, .statusContainer:focus-visible{
|
|
62
62
|
outline-width:var(--border-state-focus-s-border-width, 2px);
|
|
63
63
|
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
64
64
|
outline-color:var(--border-state-focus-s-border-color, );
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
.statusContainer:not([disabled]){
|
|
69
69
|
cursor:pointer;
|
|
70
70
|
}
|
|
71
|
-
.statusContainer:not([disabled]):focus-visible, .statusContainer:not([disabled]):hover{
|
|
71
|
+
.statusContainer:not([disabled]):focus, .statusContainer:not([disabled]):focus-visible, .statusContainer:not([disabled]):hover{
|
|
72
72
|
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
73
73
|
}
|
|
74
74
|
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
background-color:transparent;
|
|
59
59
|
border:none;
|
|
60
60
|
}
|
|
61
|
-
.statusContainer:focus-visible{
|
|
61
|
+
.statusContainer:focus, .statusContainer:focus-visible{
|
|
62
62
|
outline-width:var(--border-state-focus-s-border-width, 2px);
|
|
63
63
|
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
64
64
|
outline-color:var(--border-state-focus-s-border-color, );
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
.statusContainer:not([disabled]){
|
|
69
69
|
cursor:pointer;
|
|
70
70
|
}
|
|
71
|
-
.statusContainer:not([disabled]):focus-visible, .statusContainer:not([disabled]):hover{
|
|
71
|
+
.statusContainer:not([disabled]):focus, .statusContainer:not([disabled]):focus-visible, .statusContainer:not([disabled]):hover{
|
|
72
72
|
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
73
73
|
}
|
|
74
74
|
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Stepper",
|
|
7
|
-
"version": "0.8.
|
|
7
|
+
"version": "0.8.23-preview-ef227a87.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@snack-uikit/icons": "0.26.2",
|
|
40
40
|
"@snack-uikit/loaders": "0.9.3",
|
|
41
|
-
"@snack-uikit/truncate-string": "0.6.
|
|
41
|
+
"@snack-uikit/truncate-string": "0.6.19-preview-ef227a87.0",
|
|
42
42
|
"@snack-uikit/typography": "0.8.6",
|
|
43
43
|
"@snack-uikit/utils": "3.8.1",
|
|
44
44
|
"classnames": "2.5.1"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "6364766107f054b3b701396967b92eef49fe9b0f"
|
|
47
47
|
}
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
background-color: transparent;
|
|
67
67
|
border: none;
|
|
68
68
|
|
|
69
|
+
&:focus,
|
|
69
70
|
&:focus-visible {
|
|
70
71
|
@include styles-tokens-stepper.outline-var(styles-tokens-element.$container-focused-s);
|
|
71
72
|
|
|
@@ -75,7 +76,9 @@
|
|
|
75
76
|
|
|
76
77
|
&:not([disabled]) {
|
|
77
78
|
cursor: pointer;
|
|
78
|
-
&:focus
|
|
79
|
+
&:focus,
|
|
80
|
+
&:focus-visible,
|
|
81
|
+
&:hover {
|
|
79
82
|
color: styles-tokens-stepper.$sys-neutral-text-light;
|
|
80
83
|
}
|
|
81
84
|
}
|
|
@@ -90,4 +93,3 @@
|
|
|
90
93
|
.icon {
|
|
91
94
|
flex-shrink: 0;
|
|
92
95
|
}
|
|
93
|
-
|