@rabex-kit/rabex-ui 0.2.30 → 0.2.31
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/Theme/Modal/index.d.ts +0 -1
- package/dist/rabex-ui.cjs.development.js +5 -5
- package/dist/rabex-ui.cjs.development.js.map +1 -1
- package/dist/rabex-ui.cjs.production.min.js +1 -1
- package/dist/rabex-ui.cjs.production.min.js.map +1 -1
- package/dist/rabex-ui.esm.js +5 -5
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/rabex-ui.esm.js
CHANGED
@@ -2706,7 +2706,7 @@ var components = {
|
|
2706
2706
|
var palette = _ref3.theme.palette;
|
2707
2707
|
var secondaryColor = palette.secondary[500] || palette.secondary.A100;
|
2708
2708
|
var textColor = palette.textColor[900] || palette.textColor.A80;
|
2709
|
-
var hoverColor = palette.secondary[
|
2709
|
+
var hoverColor = palette.secondary[400] || darken(palette.secondary.A100, 0.05);
|
2710
2710
|
return {
|
2711
2711
|
backgroundColor: palette.mode === 'light' ? secondaryColor : palette.secondary.A60,
|
2712
2712
|
color: palette.mode === 'light' ? textColor : palette.textColor.A0,
|
@@ -2714,11 +2714,11 @@ var components = {
|
|
2714
2714
|
backgroundColor: palette.mode === 'light' ? hoverColor : palette.secondary.A60
|
2715
2715
|
},
|
2716
2716
|
'&:active': {
|
2717
|
-
backgroundColor: palette.mode === 'light' ? palette.secondary[
|
2717
|
+
backgroundColor: palette.mode === 'light' ? palette.secondary[400] || darken(palette.secondary.A100, 0.05) : palette.secondary.A60,
|
2718
2718
|
boxShadow: '0px 0px 0px 4px #0000000D'
|
2719
2719
|
},
|
2720
2720
|
'&:focused': {
|
2721
|
-
backgroundColor: palette.mode === 'light' ? palette.secondary[
|
2721
|
+
backgroundColor: palette.mode === 'light' ? palette.secondary[400] || darken(palette.secondary.A100, 0.05) : palette.secondary.A60,
|
2722
2722
|
boxShadow: '0px 0px 0px 4px #0000000D'
|
2723
2723
|
},
|
2724
2724
|
'&.Mui-disabled': {
|
@@ -4801,8 +4801,8 @@ var RabexModal = {
|
|
4801
4801
|
var theme = _ref.theme;
|
4802
4802
|
return {
|
4803
4803
|
'&:not(.MuiMenu-root, .MuiPopover-root) .MuiBackdrop-root': {
|
4804
|
-
backdropFilter: 'blur(2px)',
|
4805
|
-
backgroundColor: alpha(theme.palette.
|
4804
|
+
// backdropFilter: 'blur(2px)',
|
4805
|
+
backgroundColor: alpha(theme.palette.base[600] || '', 0.7)
|
4806
4806
|
}
|
4807
4807
|
};
|
4808
4808
|
}
|