feat: update drawer docs

This commit is contained in:
p-sw 2024-08-04 15:25:54 +09:00
parent 898b8a15a9
commit ff202e4678
3 changed files with 11 additions and 4 deletions

View File

@ -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

View File

@ -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",
},
}, },
}); });

View File

@ -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>