@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
@@ -2710,7 +2710,7 @@ var components = {
|
|
2710
2710
|
var palette = _ref3.theme.palette;
|
2711
2711
|
var secondaryColor = palette.secondary[500] || palette.secondary.A100;
|
2712
2712
|
var textColor = palette.textColor[900] || palette.textColor.A80;
|
2713
|
-
var hoverColor = palette.secondary[
|
2713
|
+
var hoverColor = palette.secondary[400] || colorManipulator_js.darken(palette.secondary.A100, 0.05);
|
2714
2714
|
return {
|
2715
2715
|
backgroundColor: palette.mode === 'light' ? secondaryColor : palette.secondary.A60,
|
2716
2716
|
color: palette.mode === 'light' ? textColor : palette.textColor.A0,
|
@@ -2718,11 +2718,11 @@ var components = {
|
|
2718
2718
|
backgroundColor: palette.mode === 'light' ? hoverColor : palette.secondary.A60
|
2719
2719
|
},
|
2720
2720
|
'&:active': {
|
2721
|
-
backgroundColor: palette.mode === 'light' ? palette.secondary[
|
2721
|
+
backgroundColor: palette.mode === 'light' ? palette.secondary[400] || colorManipulator_js.darken(palette.secondary.A100, 0.05) : palette.secondary.A60,
|
2722
2722
|
boxShadow: '0px 0px 0px 4px #0000000D'
|
2723
2723
|
},
|
2724
2724
|
'&:focused': {
|
2725
|
-
backgroundColor: palette.mode === 'light' ? palette.secondary[
|
2725
|
+
backgroundColor: palette.mode === 'light' ? palette.secondary[400] || colorManipulator_js.darken(palette.secondary.A100, 0.05) : palette.secondary.A60,
|
2726
2726
|
boxShadow: '0px 0px 0px 4px #0000000D'
|
2727
2727
|
},
|
2728
2728
|
'&.Mui-disabled': {
|
@@ -4805,8 +4805,8 @@ var RabexModal = {
|
|
4805
4805
|
var theme = _ref.theme;
|
4806
4806
|
return {
|
4807
4807
|
'&:not(.MuiMenu-root, .MuiPopover-root) .MuiBackdrop-root': {
|
4808
|
-
backdropFilter: 'blur(2px)',
|
4809
|
-
backgroundColor: colorManipulator_js.alpha(theme.palette.
|
4808
|
+
// backdropFilter: 'blur(2px)',
|
4809
|
+
backgroundColor: colorManipulator_js.alpha(theme.palette.base[600] || '', 0.7)
|
4810
4810
|
}
|
4811
4811
|
};
|
4812
4812
|
}
|