@codeplex-sac/layout 0.0.10 → 0.0.12
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 +16 -2
- package/package.json +4 -3
package/index.js
CHANGED
|
@@ -4653,11 +4653,25 @@ const Et = Se(/* @__PURE__ */ h("path", {
|
|
|
4653
4653
|
/* @__PURE__ */ h(
|
|
4654
4654
|
je,
|
|
4655
4655
|
{
|
|
4656
|
-
|
|
4656
|
+
sx: {
|
|
4657
|
+
mr: 2,
|
|
4658
|
+
display: { md: "none" },
|
|
4659
|
+
position: "fixed",
|
|
4660
|
+
top: 12,
|
|
4661
|
+
left: 16,
|
|
4662
|
+
zIndex: (O) => O.zIndex.drawer + 3,
|
|
4663
|
+
// Ensure it's above everything (Header is drawer + 1)
|
|
4664
|
+
color: "text.primary",
|
|
4665
|
+
// Force visible color
|
|
4666
|
+
bgcolor: "background.paper",
|
|
4667
|
+
// Optional: Ensure contrast if needed, but transparent is standard.
|
|
4668
|
+
"&:hover": {
|
|
4669
|
+
bgcolor: "action.hover"
|
|
4670
|
+
}
|
|
4671
|
+
},
|
|
4657
4672
|
"aria-label": "open drawer",
|
|
4658
4673
|
edge: "start",
|
|
4659
4674
|
onClick: R,
|
|
4660
|
-
sx: { mr: 2, display: { md: "none" }, position: "fixed", top: 12, left: 16, zIndex: 1100 },
|
|
4661
4675
|
children: /* @__PURE__ */ h(Tt, {})
|
|
4662
4676
|
}
|
|
4663
4677
|
),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeplex-sac/layout",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@emotion/react": "^11.14.0",
|
|
26
26
|
"@emotion/styled": "^11.14.1",
|
|
27
|
-
"@mui/icons-material": "^7.3.
|
|
28
|
-
"@mui/material": "^7.3.
|
|
27
|
+
"@mui/icons-material": "^7.3.7",
|
|
28
|
+
"@mui/material": "^7.3.7",
|
|
29
|
+
"@mui/system": "^7.3.7"
|
|
29
30
|
}
|
|
30
31
|
}
|