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