@sinco/react 1.0.14-rc.34 → 1.0.14-rc.36
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/index.js +6 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -10545,11 +10545,7 @@ const components = {
|
|
|
10545
10545
|
MuiDrawer: {
|
|
10546
10546
|
styleOverrides: {
|
|
10547
10547
|
root: {
|
|
10548
|
-
boxShadow: "0px 3px 1px -2px rgba(24, 39, 75, 0.20), 0px 2px 2px 0px rgba(24, 39, 75, 0.14), 0px 1px 5px 0px rgba(24, 39, 75, 0.12)"
|
|
10549
|
-
"&.MuiDrawer-root": {
|
|
10550
|
-
backgroundColor: "#f0f0f099",
|
|
10551
|
-
backdropFilter: "blur(4px) !important"
|
|
10552
|
-
}
|
|
10548
|
+
boxShadow: "0px 3px 1px -2px rgba(24, 39, 75, 0.20), 0px 2px 2px 0px rgba(24, 39, 75, 0.14), 0px 1px 5px 0px rgba(24, 39, 75, 0.12)"
|
|
10553
10549
|
}
|
|
10554
10550
|
}
|
|
10555
10551
|
},
|
|
@@ -16518,7 +16514,11 @@ const DrawerComponent = ({
|
|
|
16518
16514
|
return /*#__PURE__*/React__default.createElement(Drawer$1, {
|
|
16519
16515
|
anchor: position,
|
|
16520
16516
|
open: open,
|
|
16521
|
-
onClose: onClose
|
|
16517
|
+
onClose: onClose,
|
|
16518
|
+
sx: {
|
|
16519
|
+
backgroundColor: '#f0f0f099',
|
|
16520
|
+
backdropFilter: 'blur(4px) !important'
|
|
16521
|
+
}
|
|
16522
16522
|
}, /*#__PURE__*/React__default.createElement(Box$2, {
|
|
16523
16523
|
sx: DrawerContainer,
|
|
16524
16524
|
width: width
|