@max-ts/components 1.1.4 → 1.1.5
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/lib/index.mjs +7 -4
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -3680,7 +3680,7 @@ const Ad = ({
|
|
|
3680
3680
|
overflow: hidden;
|
|
3681
3681
|
display: flex;
|
|
3682
3682
|
flex-direction: column;
|
|
3683
|
-
|
|
3683
|
+
padding: ${({ theme: e }) => e.spacing(2, 2, 2, 0)};
|
|
3684
3684
|
`, Wd = ({ children: e, className: t }) => /* @__PURE__ */ l.jsx(Fd, { className: t, children: e }), Nd = "16rem", Id = "54px", Rd = m("aside", {
|
|
3685
3685
|
label: "Sidebar",
|
|
3686
3686
|
shouldForwardProp(e) {
|
|
@@ -3692,7 +3692,6 @@ const Ad = ({
|
|
|
3692
3692
|
display: grid;
|
|
3693
3693
|
grid-template-rows: auto 1fr auto;
|
|
3694
3694
|
grid-template-areas: 'header' 'content' 'footer';
|
|
3695
|
-
border-right: 1px solid ${({ theme: e }) => e.palette.grey[200]};
|
|
3696
3695
|
overflow: hidden auto;
|
|
3697
3696
|
background-color: transparent;
|
|
3698
3697
|
transition: ${({ theme: e }) => e.transitions.create("width", {
|
|
@@ -3746,13 +3745,14 @@ const Ad = ({
|
|
|
3746
3745
|
);
|
|
3747
3746
|
}, Hd = "dashboard::collapsedIn", Yd = m("div")`
|
|
3748
3747
|
width: 100%;
|
|
3748
|
+
max-width: 1200px;
|
|
3749
3749
|
height: 100%;
|
|
3750
3750
|
margin: auto;
|
|
3751
3751
|
display: grid;
|
|
3752
3752
|
grid-template-columns: auto 1fr;
|
|
3753
3753
|
grid-template-areas: 'sidebar main';
|
|
3754
3754
|
border: 1px solid ${({ theme: e }) => e.palette.grey[200]};
|
|
3755
|
-
border-radius: ${({ theme: e }) => e.shape.
|
|
3755
|
+
border-radius: ${({ theme: e }) => e.shape.large};
|
|
3756
3756
|
background-color: #FAFAFA;
|
|
3757
3757
|
`, Ni = ({
|
|
3758
3758
|
children: e,
|
|
@@ -9581,7 +9581,10 @@ const Uo = ({
|
|
|
9581
9581
|
}, bv = m("div")`
|
|
9582
9582
|
display: grid;
|
|
9583
9583
|
grid-template-columns: 1fr auto;
|
|
9584
|
-
grid-template-rows:
|
|
9584
|
+
grid-template-rows: repeat(3, auto);
|
|
9585
|
+
border: 1px solid ${({ theme: e }) => e.palette.grey[200]};
|
|
9586
|
+
border-radius: ${({ theme: e }) => e.shape.large};
|
|
9587
|
+
background-color: ${({ theme: e }) => e.palette.background.paper};
|
|
9585
9588
|
grid-template-areas: 'header header' 'content aside' 'footer aside';
|
|
9586
9589
|
flex-grow: 1;
|
|
9587
9590
|
|