fix: update html-for to for

This commit is contained in:
Lucas Bois 2024-04-03 11:27:43 -03:00
parent eacabcf78b
commit 043c2e442e
3 changed files with 27 additions and 27 deletions

View File

@ -1168,14 +1168,14 @@ export const Index = {
"Dashboard06": { "Dashboard06": {
name: "Dashboard06", name: "Dashboard06",
type: "components:block", type: "components:block",
registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","table","tabs","tooltip"],
component: () => import("../src/lib/registry/default/block/Dashboard05.vue").then((m) => m.default), component: () => import("../src/lib/registry/default/block/Dashboard06.vue").then((m) => m.default),
files: ["../src/lib/registry/default/block/Dashboard06.vue"], files: ["../src/lib/registry/default/block/Dashboard06.vue"],
}, },
"Dashboard07": { "Dashboard07": {
name: "Dashboard07", name: "Dashboard07",
type: "components:block", type: "components:block",
registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], registryDependencies: ["badge","button","card","dropdown-menu","input","textarea","label","toggle-group","breadcrumb","sheet","table","select","tooltip"],
component: () => import("../src/lib/registry/default/block/Dashboard07.vue").then((m) => m.default), component: () => import("../src/lib/registry/default/block/Dashboard07.vue").then((m) => m.default),
files: ["../src/lib/registry/default/block/Dashboard07.vue"], files: ["../src/lib/registry/default/block/Dashboard07.vue"],
}, },
@ -2345,14 +2345,14 @@ export const Index = {
"Dashboard06": { "Dashboard06": {
name: "Dashboard06", name: "Dashboard06",
type: "components:block", type: "components:block",
registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","table","tabs","tooltip"],
component: () => import("../src/lib/registry/new-york/block/Dashboard06.vue").then((m) => m.default), component: () => import("../src/lib/registry/new-york/block/Dashboard06.vue").then((m) => m.default),
files: ["../src/lib/registry/new-york/block/Dashboard06.vue"], files: ["../src/lib/registry/new-york/block/Dashboard06.vue"],
}, },
"Dashboard07": { "Dashboard07": {
name: "Dashboard07", name: "Dashboard07",
type: "components:block", type: "components:block",
registryDependencies: ["badge","button","card","dropdown-menu","input","breadcrumb","sheet","pagination","progress","separator","table","tabs","tooltip","checkbox"], registryDependencies: ["badge","button","card","dropdown-menu","input","textarea","label","toggle-group","breadcrumb","sheet","table","select","tooltip"],
component: () => import("../src/lib/registry/new-york/block/Dashboard07.vue").then((m) => m.default), component: () => import("../src/lib/registry/new-york/block/Dashboard07.vue").then((m) => m.default),
files: ["../src/lib/registry/new-york/block/Dashboard07.vue"], files: ["../src/lib/registry/new-york/block/Dashboard07.vue"],
}, },

View File

@ -293,7 +293,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6"> <div class="grid gap-6">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="name">Name</Label> <Label for="name">Name</Label>
<Input <Input
id="name" id="name"
type="text" type="text"
@ -302,7 +302,7 @@ import {
/> />
</div> </div>
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="description">Description</Label> <Label for="description">Description</Label>
<Textarea <Textarea
id="description" id="description"
default-value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nisl nec ultricies ultricies, nunc nisl ultricies nunc, nec ultricies nunc nisl nec nunc." default-value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nisl nec ultricies ultricies, nunc nisl ultricies nunc, nec ultricies nunc nisl nec nunc."
@ -339,7 +339,7 @@ import {
GGPC-001 GGPC-001
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-1" class="sr-only"> <Label for="stock-1" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -349,7 +349,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-1" class="sr-only"> <Label for="price-1" class="sr-only">
Price Price
</Label> </Label>
<Input <Input
@ -381,7 +381,7 @@ import {
GGPC-002 GGPC-002
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-2" class="sr-only"> <Label for="stock-2" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -391,7 +391,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-2" class="sr-only"> <Label for="price-2" class="sr-only">
Price Price
</Label> </Label>
<Input <Input
@ -423,7 +423,7 @@ import {
GGPC-003 GGPC-003
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-3" class="sr-only"> <Label for="stock-3" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -433,7 +433,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-3" class="sr-only"> <Label for="price-3" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -477,7 +477,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6 sm:grid-cols-3"> <div class="grid gap-6 sm:grid-cols-3">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="category">Category</Label> <Label for="category">Category</Label>
<Select> <Select>
<SelectTrigger <SelectTrigger
id="category" id="category"
@ -499,7 +499,7 @@ import {
</Select> </Select>
</div> </div>
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="subcategory"> <Label for="subcategory">
Subcategory (optional) Subcategory (optional)
</Label> </Label>
<Select> <Select>
@ -534,7 +534,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6"> <div class="grid gap-6">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="status">Status</Label> <Label for="status">Status</Label>
<Select> <Select>
<SelectTrigger id="status" aria-label="Select status"> <SelectTrigger id="status" aria-label="Select status">
<SelectValue placeholder="Select status" /> <SelectValue placeholder="Select status" />

View File

@ -293,7 +293,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6"> <div class="grid gap-6">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="name">Name</Label> <Label for="name">Name</Label>
<Input <Input
id="name" id="name"
type="text" type="text"
@ -302,7 +302,7 @@ import {
/> />
</div> </div>
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="description">Description</Label> <Label for="description">Description</Label>
<Textarea <Textarea
id="description" id="description"
default-value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nisl nec ultricies ultricies, nunc nisl ultricies nunc, nec ultricies nunc nisl nec nunc." default-value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nisl nec ultricies ultricies, nunc nisl ultricies nunc, nec ultricies nunc nisl nec nunc."
@ -339,7 +339,7 @@ import {
GGPC-001 GGPC-001
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-1" class="sr-only"> <Label for="stock-1" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -349,7 +349,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-1" class="sr-only"> <Label for="price-1" class="sr-only">
Price Price
</Label> </Label>
<Input <Input
@ -381,7 +381,7 @@ import {
GGPC-002 GGPC-002
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-2" class="sr-only"> <Label for="stock-2" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -391,7 +391,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-2" class="sr-only"> <Label for="price-2" class="sr-only">
Price Price
</Label> </Label>
<Input <Input
@ -423,7 +423,7 @@ import {
GGPC-003 GGPC-003
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="stock-3" class="sr-only"> <Label for="stock-3" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -433,7 +433,7 @@ import {
/> />
</TableCell> </TableCell>
<TableCell> <TableCell>
<Label html-for="price-3" class="sr-only"> <Label for="price-3" class="sr-only">
Stock Stock
</Label> </Label>
<Input <Input
@ -477,7 +477,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6 sm:grid-cols-3"> <div class="grid gap-6 sm:grid-cols-3">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="category">Category</Label> <Label for="category">Category</Label>
<Select> <Select>
<SelectTrigger <SelectTrigger
id="category" id="category"
@ -499,7 +499,7 @@ import {
</Select> </Select>
</div> </div>
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="subcategory"> <Label for="subcategory">
Subcategory (optional) Subcategory (optional)
</Label> </Label>
<Select> <Select>
@ -534,7 +534,7 @@ import {
<CardContent> <CardContent>
<div class="grid gap-6"> <div class="grid gap-6">
<div class="grid gap-3"> <div class="grid gap-3">
<Label html-for="status">Status</Label> <Label for="status">Status</Label>
<Select> <Select>
<SelectTrigger id="status" aria-label="Select status"> <SelectTrigger id="status" aria-label="Select status">
<SelectValue placeholder="Select status" /> <SelectValue placeholder="Select status" />