fis-component 0.0.20 → 0.0.21
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/cjs/index.js +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +9 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -2
package/dist/esm/index.js
CHANGED
|
@@ -3704,11 +3704,17 @@ const ButtonSC = dt.button `
|
|
|
3704
3704
|
cursor: not-allowed;
|
|
3705
3705
|
}
|
|
3706
3706
|
|
|
3707
|
+
&:focus {
|
|
3708
|
+
outline: none;
|
|
3709
|
+
box-shadow: none;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3707
3712
|
&:focus-visible {
|
|
3708
3713
|
box-shadow:
|
|
3709
3714
|
0px 0px 0px ${getTheme("sem/dimension/stroke-width/divider/lg")}
|
|
3710
3715
|
${getTheme("com/focus-mark/color-gap-spacing")},
|
|
3711
|
-
0px 0px 0px
|
|
3716
|
+
0px 0px 0px ${getTheme("com/focus-mark/corner-radius-default")}
|
|
3717
|
+
${getTheme("com/focus-mark/color-stroke")} !important;
|
|
3712
3718
|
outline: none;
|
|
3713
3719
|
}
|
|
3714
3720
|
|
|
@@ -3826,6 +3832,8 @@ const ButtonSC = dt.button `
|
|
|
3826
3832
|
${SpanIconSC} {
|
|
3827
3833
|
color: ${getTheme("com/button/primary/icon/color-icon/pressed")};
|
|
3828
3834
|
}
|
|
3835
|
+
outline: none;
|
|
3836
|
+
box-shadow: none;
|
|
3829
3837
|
}
|
|
3830
3838
|
|
|
3831
3839
|
${props.$active &&
|