diff --git a/packages/react/src/App.tsx b/packages/react/src/App.tsx
index 10d0df7..d039fce 100644
--- a/packages/react/src/App.tsx
+++ b/packages/react/src/App.tsx
@@ -24,6 +24,9 @@ import ComponentsButton, {
import ComponentsCheckbox, {
tableOfContents as componentsCheckboxToc,
} from "./docs/components/Checkbox.mdx";
+import ComponentsDialog, {
+ tableOfContents as componentsDialogToc,
+} from "./docs/components/Dialog.mdx";
const overrideComponents = {
pre: (props: any) =>
,
@@ -79,6 +82,13 @@ const router = createBrowserRouter(
}
/>
+
+
+
+ }
/>
diff --git a/packages/react/src/RouteObject.ts b/packages/react/src/RouteObject.ts
index c841c89..8460b44 100644
--- a/packages/react/src/RouteObject.ts
+++ b/packages/react/src/RouteObject.ts
@@ -39,6 +39,11 @@ export default {
path: "/docs/components/checkbox",
name: "Checkbox",
eq: (pathname: string) => pathname === "/docs/components/checkbox"
+ },
+ {
+ path: "/docs/components/dialog",
+ name: "Dialog",
+ eq: (pathname: string) => pathname === "/docs/components/dialog"
}
]
}
diff --git a/packages/react/src/docs/components/Dialog.mdx b/packages/react/src/docs/components/Dialog.mdx
new file mode 100644
index 0000000..52d83d8
--- /dev/null
+++ b/packages/react/src/docs/components/Dialog.mdx
@@ -0,0 +1,454 @@
+import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
+import { Button } from "@components/Button";
+import { Story } from "@/components/Story";
+import { LoadedCode } from "@/components/LoadedCode";
+import {
+ DialogClose,
+ DialogContent,
+ DialogFooter,
+ DialogHeader,
+ DialogOverlay,
+ DialogRoot,
+ DialogSubtitle,
+ DialogTitle,
+ DialogTrigger,
+} from "@components/Dialog";
+import {
+ Input
+} from "@components/Input";
+import {
+ useToast,
+} from "@components/Toast";
+
+
+# Dialog
+A modal window that prompts the user to take an action or provides critical information.
+
+
+
+ Preview
+ Code
+
+
+
+
+
+
+
+
+
+
+ Dialog Title
+ Dialog Subtitle
+
+ Laborum non adipisicing enim enim culpa esse anim esse consequat Lorem incididunt.
+ Enim mollit laborum sunt cillum voluptate est officia nostrud non consequat adipisicing
+ cupidatat aliquip magna. Voluptate nisi cupidatat qui nisi in pariatur. Sint consequat
+ labore pariatur mollit sint nostrud tempor commodo pariatur ea laboris.
+
+
+
+
+
+
+
+
+
+
+
+ ```tsx
+ import {
+ DialogRoot,
+ DialogTrigger,
+ DialogOverlay,
+ DialogContent,
+ DialogHeader,
+ DialogTitle,
+ DialogSubtitle,
+ DialogFooter,
+ DialogClose,
+ } from "@components/Dialog";
+ import { Button } from "@components/Button";
+
+ export function DialogDemo() {
+ return (
+
+
+
+
+
+
+
+ Dialog Title
+ Dialog Subtitle
+
+
+ Laborum non adipisicing enim enim culpa esse anim esse consequat Lorem incididunt.
+ Enim mollit laborum sunt cillum voluptate est officia nostrud non consequat adipisicing
+ cupidatat aliquip magna. Voluptate nisi cupidatat qui nisi in pariatur. Sint consequat
+ labore pariatur mollit sint nostrud tempor commodo pariatur ea laboris.
+
+
+
+
+
+
+
+
+
+ )
+ }
+ ```
+
+
+
+## Installation
+
+1. Create a new file `Dialog.tsx` in your component folder.
+2. Copy and paste the following code into the file.
+
+
+
+## Usage
+
+```tsx
+import {
+ DialogRoot,
+ DialogTrigger,
+ DialogOverlay,
+ DialogContent,
+ DialogHeader,
+ DialogTitle,
+ DialogSubtitle,
+ DialogFooter,
+ DialogClose,
+} from "@components/Dialog";
+```
+
+```html
+
+
+
+
+
+
+
+ Dialog Title
+ Dialog Subtitle
+
+ {/* Main Contents */}
+
+
+
+
+
+
+
+
+```
+
+> Note:
+>
+> DialogTrigger and DialogClose will merge its onClick event handler to its children.
+> Also, there is no default element for those.
+> So you always have to provide the clickable children for DialogTrigger and DialogClose.
+>
+> It is easier to understand if you think of this component as always having the `asChild` prop applied to it.
+
+## Props
+
+### DialogOverlay
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `blur` | `"sm" \| "md" \| "lg"` | `md` | Whether the background of dialog is blurred |
+| `darken` | `"sm" \| "md" \| "lg"` | `md` | Whether the background of dialog is darkened |
+| `padding` | `"sm" \| "md" \| "lg"` | `md` | Minimum margin of the dialog |
+
+#### Special
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `closeOnClick` | `boolean` | `false` | Whether the dialog will be closed when clicked |
+
+### DialogContent
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `size` | `"fit" \| "fullSm" \| "fullMd" \| "fullLg" \| "fullXl" \| "full2xl"` | `fit` | Size of the dialog - width and max width |
+| `rounded` | `"sm" \| "md" \| "lg" \| "xl"` | `md` | Roundness of the dialog |
+| `padding` | `"sm" \| "md" \| "lg"` | `md` | Padding of the dialog |
+| `gap` | `"sm" \| "md" \| "lg"` | `md` | Works like flex's gap - space between children |
+
+### DialogHeader
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `gap` | `"sm" \| "md" \| "lg"` | `sm` | Gap between the children - title and subtitle |
+
+### DialogTitle
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `size` | `"sm" \| "md" \| "lg"` | `md` | Size of the title |
+| `weight` | `"sm" \| "md" \| "lg"` | `lg` | Weight of the title |
+
+### DialogSubtitle
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `size` | `"sm" \| "md" \| "lg"` | `sm` | Size of the subtitle |
+| `weight` | `"sm" \| "md" \| "lg"` | `md` | Weight of the subtitle |
+| `opacity` | `"sm" \| "md" \| "lg"` | `sm` | Opacity of the subtitle |
+
+### DialogFooter
+
+#### Variants
+
+| Prop | Type | Default | Description |
+| :--- | :--- | :------ | :---------- |
+| `gap` | `"sm" \| "md" \| "lg"` | `sm` | Gap between the children |
+
+## Examples
+
+### Basic Informational Dialog
+
+
+
+ Preview
+ Code
+
+
+
+
+
+
+
+
+
+
+ Dialog Title
+ Dialog Subtitle
+
+ This is a dialog. You can put the information you want to show.
+
+
+
+
+
+
+
+
+
+
+
+ ```tsx
+ import {
+ DialogRoot,
+ DialogTrigger,
+ DialogOverlay,
+ DialogContent,
+ DialogHeader,
+ DialogTitle,
+ DialogSubtitle,
+ DialogFooter,
+ DialogClose,
+ } from "@components/Dialog";
+
+ export function DialogDemo() {
+ return (
+
+
+
+
+
+
+
+ Dialog Title
+ Dialog Subtitle
+
+
+ This is a dialog. You can put the information you want to show.
+