diff --git a/packages/react/src/App.tsx b/packages/react/src/App.tsx index 4ba7358..78fd287 100644 --- a/packages/react/src/App.tsx +++ b/packages/react/src/App.tsx @@ -30,6 +30,9 @@ import ComponentsDialog, { import ComponentsDrawer, { tableOfContents as componentsDrawerToc, } from "./docs/components/Drawer.mdx"; +import ComponentsInput, { + tableOfContents as componentsInputToc, +} from "./docs/components/Input.mdx"; import ComponentsLabel, { tableOfContents as componentsLabelToc, } from "./docs/components/Label.mdx"; @@ -186,6 +189,14 @@ const router = createBrowserRouter( } /> + + + + } + /> pathname === "/docs/components/drawer" }, + { + path: "/docs/components/input", + name: "Input", + eq: (pathname: string) => pathname === "/docs/components/input" + }, { path: "/docs/components/label", name: "Label", diff --git a/packages/react/src/docs/components/Input.mdx b/packages/react/src/docs/components/Input.mdx new file mode 100644 index 0000000..3c14580 --- /dev/null +++ b/packages/react/src/docs/components/Input.mdx @@ -0,0 +1,123 @@ +import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"; +import { Story } from "@/components/Story"; +import { LoadedCode, GITHUB } from "@/components/LoadedCode"; +import { InputDemo } from "./InputBlocks/Preview"; +import { InputFrameDemo } from "./InputFrameBlocks/Preview"; +import InputExamples from "./InputBlocks/Examples"; + +# Input +Element that captures user's input. + + + + Preview + Code + + + + + + + + + + + +## Installation + +1. Create a new file `Input.tsx` in your component folder. +2. Copy and paste the following code into the file. + + + +## Usage + +```tsx +import { Input } from "@components/Input"; +``` + +```html + +``` + +## Props + +### Variants + +| Prop | Type | Default | Description | +| :--- | :--- | :------ | :---------- | +| `unstyled` | `boolean` | `false` | Remove style of input, so it can be real transparent input. Mostly used with InputFrame. | +| `full` | `boolean` | `false` | Make input take full width of its container. | + +## Examples + +### Invalid + + + + Preview + Code + + + + + + + + + + + +### Disabled + + + + Preview + Code + + + + + + + + + + + +# InputFrame +Label with input's style. + + + + Preview + Code + + + + + + + + + + + +## Installation + +**Included in `Input.tsx`.** + +## Usage + +```tsx +import { + Input, + InputFrame, +} from "@components/Input"; +``` + +```html + + + +``` \ No newline at end of file diff --git a/packages/react/src/docs/components/InputBlocks/Examples/Disabled.tsx b/packages/react/src/docs/components/InputBlocks/Examples/Disabled.tsx new file mode 100644 index 0000000..e81c9db --- /dev/null +++ b/packages/react/src/docs/components/InputBlocks/Examples/Disabled.tsx @@ -0,0 +1,5 @@ +import { Input } from "@components/Input"; + +export function Disabled() { + return ; +} diff --git a/packages/react/src/docs/components/InputBlocks/Examples/Invalid.tsx b/packages/react/src/docs/components/InputBlocks/Examples/Invalid.tsx new file mode 100644 index 0000000..27fb355 --- /dev/null +++ b/packages/react/src/docs/components/InputBlocks/Examples/Invalid.tsx @@ -0,0 +1,5 @@ +import { Input } from "@components/Input"; + +export function Invalid() { + return ; +} diff --git a/packages/react/src/docs/components/InputBlocks/Examples/index.ts b/packages/react/src/docs/components/InputBlocks/Examples/index.ts new file mode 100644 index 0000000..5c43f37 --- /dev/null +++ b/packages/react/src/docs/components/InputBlocks/Examples/index.ts @@ -0,0 +1,5 @@ +import { Invalid } from "./Invalid"; +import { Disabled } from "./Disabled"; + +export default { Invalid, Disabled }; + diff --git a/packages/react/src/docs/components/InputBlocks/Preview.tsx b/packages/react/src/docs/components/InputBlocks/Preview.tsx new file mode 100644 index 0000000..b066653 --- /dev/null +++ b/packages/react/src/docs/components/InputBlocks/Preview.tsx @@ -0,0 +1,5 @@ +import { Input } from "@components/Input"; + +export function InputDemo() { + return ; +} diff --git a/packages/react/src/docs/components/InputFrameBlocks/Preview.tsx b/packages/react/src/docs/components/InputFrameBlocks/Preview.tsx new file mode 100644 index 0000000..1068c34 --- /dev/null +++ b/packages/react/src/docs/components/InputFrameBlocks/Preview.tsx @@ -0,0 +1,23 @@ +import { Button } from "@components/Button"; +import { Input, InputFrame } from "@components/Input"; + +export function InputFrameDemo() { + return ( + + + + + ); +}