refactor(docs/Dialog): update prop section following latest version

This commit is contained in:
p-sw 2024-07-12 18:49:53 +09:00
parent bc6533bf01
commit 24260fe375

View File

@ -1,10 +1,16 @@
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs"; import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
import { Story } from "@/components/Story"; import { Story } from "@/components/Story";
import { LoadedCode, GITHUB_DIR_COMP, GITHUB_COMP_PREVIEW, GITHUB_STORY } from "@/components/LoadedCode"; import {
LoadedCode,
GITHUB_DIR_COMP,
GITHUB_COMP_PREVIEW,
GITHUB_STORY,
} from "@/components/LoadedCode";
import { DialogDemo } from "./DialogBlocks/Preview"; import { DialogDemo } from "./DialogBlocks/Preview";
import Examples from "./DialogBlocks/Examples"; import Examples from "./DialogBlocks/Examples";
# Dialog # Dialog
A modal window that prompts the user to take an action or provides critical information. A modal window that prompts the user to take an action or provides critical information.
<TabProvider defaultName="preview"> <TabProvider defaultName="preview">
@ -26,11 +32,12 @@ A modal window that prompts the user to take an action or provides critical info
1. Create a new directory named `Dialog` in your component folder. 1. Create a new directory named `Dialog` in your component folder.
2. Create following files in the folder, and paste the code into the file. 2. Create following files in the folder, and paste the code into the file.
* `index.ts`
- `index.ts`
<LoadedCode from={GITHUB_DIR_COMP("Dialog", "index.ts")} /> <LoadedCode from={GITHUB_DIR_COMP("Dialog", "index.ts")} />
* `Context.ts` - `Context.ts`
<LoadedCode from={GITHUB_DIR_COMP("Dialog", "Context.ts")} /> <LoadedCode from={GITHUB_DIR_COMP("Dialog", "Context.ts")} />
* `Component.tsx` - `Component.tsx`
<LoadedCode from={GITHUB_DIR_COMP("Dialog", "Component.tsx")} /> <LoadedCode from={GITHUB_DIR_COMP("Dialog", "Component.tsx")} />
## Usage ## Usage
@ -52,7 +59,7 @@ import {
```html ```html
<DialogRoot> <DialogRoot>
<DialogTrigger> <DialogTrigger>
<Button>Open Dialog</Button> <button>Open Dialog</button>
</DialogTrigger> </DialogTrigger>
<DialogOverlay> <DialogOverlay>
<DialogContent> <DialogContent>
@ -63,7 +70,7 @@ import {
{/* Main Contents */} {/* Main Contents */}
<DialogFooter> <DialogFooter>
<DialogClose> <DialogClose>
<Button>Close</Button> <button>Close</button>
</DialogClose> </DialogClose>
</DialogFooter> </DialogFooter>
</DialogContent> </DialogContent>
@ -83,66 +90,12 @@ import {
### DialogOverlay ### 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 #### Special
| Prop | Type | Default | Description | | Prop | Type | Default | Description |
|:---------------|:----------|:--------|:-----------------------------------------------| | :------------- | :-------- | :------ | :--------------------------------------------- |
| `closeOnClick` | `boolean` | `false` | Whether the dialog will be closed when clicked | | `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 ## Examples
### Basic Informational Dialog ### Basic Informational Dialog
@ -178,4 +131,3 @@ import {
<LoadedCode from={GITHUB_STORY("Dialog", "DeletingItem")} /> <LoadedCode from={GITHUB_STORY("Dialog", "DeletingItem")} />
</TabContent> </TabContent>
</TabProvider> </TabProvider>