feat: update drawer docs
This commit is contained in:
parent
898b8a15a9
commit
ff202e4678
@ -85,9 +85,10 @@ import {
|
|||||||
|
|
||||||
#### Variants
|
#### Variants
|
||||||
|
|
||||||
| Prop | Type | Default | Description |
|
| Prop | Type | Default | Description |
|
||||||
|:-----------|:-----------------------------------------|:---------|:---------------------------|
|
|:-----------|:-----------------------------------------|:---------|:--------------------------------------------|
|
||||||
| `position` | `"top" \| "bottom" \| "left" \| "right"` | `"left"` | The position of the drawer |
|
| `position` | `"top" \| "bottom" \| "left" \| "right"` | `"left"` | The position of the drawer |
|
||||||
|
| `maxSize` | `"sm" \| "md" \| "lg" \| "xl"` | `"sm"` | max width ignored on top or bottom position |
|
||||||
|
|
||||||
#### Special
|
#### Special
|
||||||
|
|
||||||
|
@ -19,6 +19,11 @@ export default function DrawerPlayground() {
|
|||||||
options: ["top", "bottom", "left", "right"],
|
options: ["top", "bottom", "left", "right"],
|
||||||
value: "left",
|
value: "left",
|
||||||
},
|
},
|
||||||
|
maxSize: {
|
||||||
|
type: "select",
|
||||||
|
options: ["sm", "md", "lg", "xl"],
|
||||||
|
value: "sm",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@ export interface DrawerDemoPlaygroundProps {
|
|||||||
};
|
};
|
||||||
DrawerContentProps: {
|
DrawerContentProps: {
|
||||||
position: "top" | "bottom" | "left" | "right";
|
position: "top" | "bottom" | "left" | "right";
|
||||||
|
maxSize: "sm" | "md" | "lg" | "xl";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
/* end */
|
/* end */
|
||||||
@ -34,8 +35,8 @@ export function DrawerDemo() {
|
|||||||
</DrawerTrigger>
|
</DrawerTrigger>
|
||||||
<DrawerOverlay className="z-[99]">
|
<DrawerOverlay className="z-[99]">
|
||||||
<DrawerContent
|
<DrawerContent
|
||||||
className="max-w-[320px]"
|
|
||||||
position={DrawerContentProps.position}
|
position={DrawerContentProps.position}
|
||||||
|
maxSize={DrawerContentProps.maxSize}
|
||||||
>
|
>
|
||||||
<DrawerHeader>
|
<DrawerHeader>
|
||||||
<h1 className="text-2xl font-bold">Drawer</h1>
|
<h1 className="text-2xl font-bold">Drawer</h1>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user