Files
shadcn-ui/apps/v4/public/r/styles/base-nova/label-example.json
shadcn 86d9b00084 chore: update deps (#9022)
* feat: init

* fix

* fix

* fix

* feat

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: implement icons

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: update init command

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: dialog

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add registry:base item type

* feat: rename frame to canva

* fix

* feat

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fi

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add all colors

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* feat: add outfit font

* fix

* fix

* fix

* fix

* fix

* chore: changeset

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix
2025-12-12 21:01:44 +04:00

21 lines
2.1 KiB
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "label-example",
"title": "Label",
"registryDependencies": [
"checkbox",
"field",
"input",
"label",
"textarea",
"example"
],
"files": [
{
"path": "registry/base-nova/examples/label-example.tsx",
"content": "import {\n Example,\n ExampleWrapper,\n} from \"@/registry/bases/base/components/example\"\nimport { Checkbox } from \"@/registry/bases/base/ui/checkbox\"\nimport { Field } from \"@/registry/bases/base/ui/field\"\nimport { Input } from \"@/registry/bases/base/ui/input\"\nimport { Label } from \"@/registry/bases/base/ui/label\"\nimport { Textarea } from \"@/registry/bases/base/ui/textarea\"\n\nexport default function LabelExample() {\n return (\n <ExampleWrapper>\n <LabelWithCheckbox />\n <LabelWithInput />\n <LabelDisabled />\n <LabelWithTextarea />\n </ExampleWrapper>\n )\n}\n\nfunction LabelWithCheckbox() {\n return (\n <Example title=\"With Checkbox\">\n <Field orientation=\"horizontal\">\n <Checkbox id=\"label-demo-terms\" />\n <Label htmlFor=\"label-demo-terms\">Accept terms and conditions</Label>\n </Field>\n </Example>\n )\n}\n\nfunction LabelWithInput() {\n return (\n <Example title=\"With Input\">\n <Field>\n <Label htmlFor=\"label-demo-username\">Username</Label>\n <Input id=\"label-demo-username\" placeholder=\"Username\" />\n </Field>\n </Example>\n )\n}\n\nfunction LabelDisabled() {\n return (\n <Example title=\"Disabled\">\n <Field data-disabled={true}>\n <Label htmlFor=\"label-demo-disabled\">Disabled</Label>\n <Input id=\"label-demo-disabled\" placeholder=\"Disabled\" disabled />\n </Field>\n </Example>\n )\n}\n\nfunction LabelWithTextarea() {\n return (\n <Example title=\"With Textarea\">\n <Field>\n <Label htmlFor=\"label-demo-message\">Message</Label>\n <Textarea id=\"label-demo-message\" placeholder=\"Message\" />\n </Field>\n </Example>\n )\n}\n",
"type": "registry:example"
}
],
"type": "registry:example"
}