@sinco/react 1.0.14-rc.35 → 1.0.14-rc.37
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 +5 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -16514,7 +16514,11 @@ const DrawerComponent = ({
|
|
|
16514
16514
|
return /*#__PURE__*/React__default.createElement(Drawer$1, {
|
|
16515
16515
|
anchor: position,
|
|
16516
16516
|
open: open,
|
|
16517
|
-
onClose: onClose
|
|
16517
|
+
onClose: onClose,
|
|
16518
|
+
sx: {
|
|
16519
|
+
backgroundColor: '#f0f0f099 !important',
|
|
16520
|
+
backdropFilter: 'blur(4px) !important'
|
|
16521
|
+
}
|
|
16518
16522
|
}, /*#__PURE__*/React__default.createElement(Box$2, {
|
|
16519
16523
|
sx: DrawerContainer,
|
|
16520
16524
|
width: width
|
|
@@ -16522,8 +16526,6 @@ const DrawerComponent = ({
|
|
|
16522
16526
|
sx: DrawerHeader
|
|
16523
16527
|
}, /*#__PURE__*/React__default.createElement(Typography$1, {
|
|
16524
16528
|
sx: Object.assign({}, SincoTheme.typography.h6, {
|
|
16525
|
-
backgroundColor: "#f0f0f099",
|
|
16526
|
-
backdropFilter: "blur(4px) !important",
|
|
16527
16529
|
color: sx
|
|
16528
16530
|
}),
|
|
16529
16531
|
variant: "h6"
|