diff --git a/apps/v4/app/(app)/examples/dashboard/components/chart-area-interactive.tsx b/apps/v4/app/(app)/examples/dashboard/components/chart-area-interactive.tsx index 6c3359d836d..9e53448c377 100644 --- a/apps/v4/app/(app)/examples/dashboard/components/chart-area-interactive.tsx +++ b/apps/v4/app/(app)/examples/dashboard/components/chart-area-interactive.tsx @@ -21,6 +21,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -189,15 +190,17 @@ export function ChartAreaInteractive() { - - Last 3 months - - - Last 30 days - - - Last 7 days - + + + Last 3 months + + + Last 30 days + + + Last 7 days + + diff --git a/apps/v4/app/(app)/examples/dashboard/components/data-table.tsx b/apps/v4/app/(app)/examples/dashboard/components/data-table.tsx index def0a697fe3..3ebb4468156 100644 --- a/apps/v4/app/(app)/examples/dashboard/components/data-table.tsx +++ b/apps/v4/app/(app)/examples/dashboard/components/data-table.tsx @@ -86,6 +86,7 @@ import { Label } from "@/registry/new-york-v4/ui/label" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -275,10 +276,12 @@ const columns: ColumnDef>[] = [ - Eddie Lake - - Jamik Tashpulatov - + + Eddie Lake + + Jamik Tashpulatov + + @@ -419,10 +422,12 @@ export function DataTable({ - Outline - Past Performance - Key Personnel - Focus Documents + + Outline + Past Performance + Key Personnel + Focus Documents + @@ -552,11 +557,13 @@ export function DataTable({ /> - {[10, 20, 30, 40, 50].map((pageSize) => ( - - {pageSize} - - ))} + + {[10, 20, 30, 40, 50].map((pageSize) => ( + + {pageSize} + + ))} + @@ -735,22 +742,24 @@ function TableCellViewer({ item }: { item: z.infer }) { - - Table of Contents - - - Executive Summary - - - Technical Approach - - Design - Capabilities - - Focus Documents - - Narrative - Cover Page + + + Table of Contents + + + Executive Summary + + + Technical Approach + + Design + Capabilities + + Focus Documents + + Narrative + Cover Page + @@ -761,9 +770,11 @@ function TableCellViewer({ item }: { item: z.infer }) { - Done - In Progress - Not Started + + Done + In Progress + Not Started + @@ -785,11 +796,13 @@ function TableCellViewer({ item }: { item: z.infer }) { - Eddie Lake - - Jamik Tashpulatov - - Emily Whalen + + Eddie Lake + + Jamik Tashpulatov + + Emily Whalen + diff --git a/apps/v4/app/(app)/examples/tasks/components/data-table-pagination.tsx b/apps/v4/app/(app)/examples/tasks/components/data-table-pagination.tsx index 04cefa556a1..d3153686385 100644 --- a/apps/v4/app/(app)/examples/tasks/components/data-table-pagination.tsx +++ b/apps/v4/app/(app)/examples/tasks/components/data-table-pagination.tsx @@ -10,6 +10,7 @@ import { Button } from "@/registry/new-york-v4/ui/button" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -41,11 +42,13 @@ export function DataTablePagination({ - {[10, 20, 25, 30, 40, 50].map((pageSize) => ( - - {pageSize} - - ))} + + {[10, 20, 25, 30, 40, 50].map((pageSize) => ( + + {pageSize} + + ))} + diff --git a/apps/v4/components/cards/payment-method.tsx b/apps/v4/components/cards/payment-method.tsx index 4932e483d0f..dabdcc2283f 100644 --- a/apps/v4/components/cards/payment-method.tsx +++ b/apps/v4/components/cards/payment-method.tsx @@ -18,6 +18,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -90,18 +91,20 @@ export function CardsPaymentMethod() { - January - February - March - April - May - June - July - August - September - October - November - December + + January + February + March + April + May + June + July + August + September + October + November + December + diff --git a/apps/v4/components/cards/report-issue.tsx b/apps/v4/components/cards/report-issue.tsx index c1c96967838..ba295eca6bb 100644 --- a/apps/v4/components/cards/report-issue.tsx +++ b/apps/v4/components/cards/report-issue.tsx @@ -15,6 +15,7 @@ import { Input } from "@/registry/new-york-v4/ui/input" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -46,11 +47,13 @@ export function CardsReportIssue() { - Team - Billing - Account - Deployments - Support + + Team + Billing + Account + Deployments + Support + @@ -67,10 +70,12 @@ export function CardsReportIssue() { - Severity 1 (Highest) - Severity 2 - Severity 3 - Severity 4 (Lowest) + + Severity 1 (Highest) + Severity 2 + Severity 3 + Severity 4 (Lowest) + diff --git a/apps/v4/components/cards/share.tsx b/apps/v4/components/cards/share.tsx index 0ed232e5199..59233b53548 100644 --- a/apps/v4/components/cards/share.tsx +++ b/apps/v4/components/cards/share.tsx @@ -26,6 +26,7 @@ import { Label } from "@/registry/new-york-v4/ui/label" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -102,8 +103,10 @@ export function CardsShare() { - Can edit - Can view + + Can edit + Can view + diff --git a/apps/v4/components/color-format-selector.tsx b/apps/v4/components/color-format-selector.tsx index a1160be1732..35ed575d7f6 100644 --- a/apps/v4/components/color-format-selector.tsx +++ b/apps/v4/components/color-format-selector.tsx @@ -8,6 +8,7 @@ import { useColors } from "@/hooks/use-colors" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, } from "@/registry/new-york-v4/ui/select" @@ -41,18 +42,20 @@ export function ColorFormatSelector({ {format} - {Object.entries(formats).map(([format, value]) => ( - - {format} - - {value} - - - ))} + + {Object.entries(formats).map(([format, value]) => ( + + {format} + + {value} + + + ))} + ) diff --git a/apps/v4/examples/radix/input-form.tsx b/apps/v4/examples/radix/input-form.tsx index f0a56ee8303..b0e656cfa12 100644 --- a/apps/v4/examples/radix/input-form.tsx +++ b/apps/v4/examples/radix/input-form.tsx @@ -9,6 +9,7 @@ import { Input } from "@/styles/radix-nova/ui/input" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -46,9 +47,11 @@ export function InputForm() { - United States - United Kingdom - Canada + + United States + United Kingdom + Canada + diff --git a/apps/v4/registry/bases/base/blocks/dashboard-01/components/chart-area-interactive.tsx b/apps/v4/registry/bases/base/blocks/dashboard-01/components/chart-area-interactive.tsx index b826b4424c4..17936f6f248 100644 --- a/apps/v4/registry/bases/base/blocks/dashboard-01/components/chart-area-interactive.tsx +++ b/apps/v4/registry/bases/base/blocks/dashboard-01/components/chart-area-interactive.tsx @@ -21,6 +21,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -204,15 +205,17 @@ export function ChartAreaInteractive() { - - Last 3 months - - - Last 30 days - - - Last 7 days - + + + Last 3 months + + + Last 30 days + + + Last 7 days + + diff --git a/apps/v4/registry/bases/radix/blocks/dashboard-01/components/chart-area-interactive.tsx b/apps/v4/registry/bases/radix/blocks/dashboard-01/components/chart-area-interactive.tsx index f201fe59c03..28c0b74ef5b 100644 --- a/apps/v4/registry/bases/radix/blocks/dashboard-01/components/chart-area-interactive.tsx +++ b/apps/v4/registry/bases/radix/blocks/dashboard-01/components/chart-area-interactive.tsx @@ -21,6 +21,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -195,15 +196,17 @@ export function ChartAreaInteractive() { - - Last 3 months - - - Last 30 days - - - Last 7 days - + + + Last 3 months + + + Last 30 days + + + Last 7 days + + diff --git a/apps/v4/registry/bases/radix/examples/alert-example.tsx b/apps/v4/registry/bases/radix/examples/alert-example.tsx index 0357b93dbc4..c97fabf67d7 100644 --- a/apps/v4/registry/bases/radix/examples/alert-example.tsx +++ b/apps/v4/registry/bases/radix/examples/alert-example.tsx @@ -29,6 +29,7 @@ import { Label } from "@/registry/bases/radix/ui/label" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -284,10 +285,12 @@ function AlertExample5() { - Next.js - Remix - Astro - Nuxt + + Next.js + Remix + Astro + Nuxt + diff --git a/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/chart-area-interactive.tsx b/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/chart-area-interactive.tsx index 46c767fb922..0461b7881ef 100644 --- a/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/chart-area-interactive.tsx +++ b/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/chart-area-interactive.tsx @@ -21,6 +21,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -195,15 +196,17 @@ export function ChartAreaInteractive() { - - Last 3 months - - - Last 30 days - - - Last 7 days - + + + Last 3 months + + + Last 30 days + + + Last 7 days + + diff --git a/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/data-table.tsx b/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/data-table.tsx index def0a697fe3..3ebb4468156 100644 --- a/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/data-table.tsx +++ b/apps/v4/registry/new-york-v4/blocks/dashboard-01/components/data-table.tsx @@ -86,6 +86,7 @@ import { Label } from "@/registry/new-york-v4/ui/label" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -275,10 +276,12 @@ const columns: ColumnDef>[] = [ - Eddie Lake - - Jamik Tashpulatov - + + Eddie Lake + + Jamik Tashpulatov + + @@ -419,10 +422,12 @@ export function DataTable({ - Outline - Past Performance - Key Personnel - Focus Documents + + Outline + Past Performance + Key Personnel + Focus Documents + @@ -552,11 +557,13 @@ export function DataTable({ /> - {[10, 20, 30, 40, 50].map((pageSize) => ( - - {pageSize} - - ))} + + {[10, 20, 30, 40, 50].map((pageSize) => ( + + {pageSize} + + ))} + @@ -735,22 +742,24 @@ function TableCellViewer({ item }: { item: z.infer }) { - - Table of Contents - - - Executive Summary - - - Technical Approach - - Design - Capabilities - - Focus Documents - - Narrative - Cover Page + + + Table of Contents + + + Executive Summary + + + Technical Approach + + Design + Capabilities + + Focus Documents + + Narrative + Cover Page + @@ -761,9 +770,11 @@ function TableCellViewer({ item }: { item: z.infer }) { - Done - In Progress - Not Started + + Done + In Progress + Not Started + @@ -785,11 +796,13 @@ function TableCellViewer({ item }: { item: z.infer }) { - Eddie Lake - - Jamik Tashpulatov - - Emily Whalen + + Eddie Lake + + Jamik Tashpulatov + + Emily Whalen + diff --git a/apps/v4/registry/new-york-v4/charts/chart-area-interactive.tsx b/apps/v4/registry/new-york-v4/charts/chart-area-interactive.tsx index 8f6e69d4097..df524657cb9 100644 --- a/apps/v4/registry/new-york-v4/charts/chart-area-interactive.tsx +++ b/apps/v4/registry/new-york-v4/charts/chart-area-interactive.tsx @@ -21,6 +21,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -170,15 +171,17 @@ export function ChartAreaInteractive() { - - Last 3 months - - - Last 30 days - - - Last 7 days - + + + Last 3 months + + + Last 30 days + + + Last 7 days + + diff --git a/apps/v4/registry/new-york-v4/charts/chart-pie-interactive.tsx b/apps/v4/registry/new-york-v4/charts/chart-pie-interactive.tsx index dfe17b688b3..5d674d928c8 100644 --- a/apps/v4/registry/new-york-v4/charts/chart-pie-interactive.tsx +++ b/apps/v4/registry/new-york-v4/charts/chart-pie-interactive.tsx @@ -24,6 +24,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -117,31 +118,33 @@ export function ChartPieInteractive() { - {months.map((key) => { - const config = chartConfig[key as keyof typeof chartConfig] + + {months.map((key) => { + const config = chartConfig[key as keyof typeof chartConfig] - if (!config) { - return null - } + if (!config) { + return null + } - return ( - -
- - {config?.label} -
-
- ) - })} + return ( + +
+ + {config?.label} +
+
+ ) + })} +
diff --git a/apps/v4/registry/new-york-v4/examples/button-group-select.tsx b/apps/v4/registry/new-york-v4/examples/button-group-select.tsx index fc50518e4b9..e99bc4ba82f 100644 --- a/apps/v4/registry/new-york-v4/examples/button-group-select.tsx +++ b/apps/v4/registry/new-york-v4/examples/button-group-select.tsx @@ -9,6 +9,7 @@ import { Input } from "@/registry/new-york-v4/ui/input" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, } from "@/registry/new-york-v4/ui/select" @@ -37,12 +38,14 @@ export default function ButtonGroupSelect() { diff --git a/apps/v4/registry/new-york-v4/examples/card-with-form.tsx b/apps/v4/registry/new-york-v4/examples/card-with-form.tsx index 56558966e2d..fd6ae8bfd1d 100644 --- a/apps/v4/registry/new-york-v4/examples/card-with-form.tsx +++ b/apps/v4/registry/new-york-v4/examples/card-with-form.tsx @@ -14,6 +14,7 @@ import { Label } from "@/registry/new-york-v4/ui/label" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -40,10 +41,12 @@ export default function CardWithForm() { - Next.js - SvelteKit - Astro - Nuxt.js + + Next.js + SvelteKit + Astro + Nuxt.js + diff --git a/apps/v4/registry/new-york-v4/examples/date-picker-with-presets.tsx b/apps/v4/registry/new-york-v4/examples/date-picker-with-presets.tsx index a72a8404a6d..16dd4003d0f 100644 --- a/apps/v4/registry/new-york-v4/examples/date-picker-with-presets.tsx +++ b/apps/v4/registry/new-york-v4/examples/date-picker-with-presets.tsx @@ -15,6 +15,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -50,10 +51,12 @@ export default function DatePickerWithPresets() { - Today - Tomorrow - In 3 days - In a week + + Today + Tomorrow + In 3 days + In a week +
diff --git a/apps/v4/registry/new-york-v4/examples/field-demo.tsx b/apps/v4/registry/new-york-v4/examples/field-demo.tsx index 01c4f6f4734..b927949f258 100644 --- a/apps/v4/registry/new-york-v4/examples/field-demo.tsx +++ b/apps/v4/registry/new-york-v4/examples/field-demo.tsx @@ -13,6 +13,7 @@ import { Input } from "@/registry/new-york-v4/ui/input" import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -63,18 +64,20 @@ export default function FieldDemo() { - 01 - 02 - 03 - 04 - 05 - 06 - 07 - 08 - 09 - 10 - 11 - 12 + + 01 + 02 + 03 + 04 + 05 + 06 + 07 + 08 + 09 + 10 + 11 + 12 + @@ -87,12 +90,14 @@ export default function FieldDemo() { - 2024 - 2025 - 2026 - 2027 - 2028 - 2029 + + 2024 + 2025 + 2026 + 2027 + 2028 + 2029 + diff --git a/apps/v4/registry/new-york-v4/examples/field-select.tsx b/apps/v4/registry/new-york-v4/examples/field-select.tsx index 5c05af1eaeb..3f49707a287 100644 --- a/apps/v4/registry/new-york-v4/examples/field-select.tsx +++ b/apps/v4/registry/new-york-v4/examples/field-select.tsx @@ -6,6 +6,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -21,14 +22,16 @@ export default function FieldSelect() { - Engineering - Design - Marketing - Sales - Customer Support - Human Resources - Finance - Operations + + Engineering + Design + Marketing + Sales + Customer Support + Human Resources + Finance + Operations + diff --git a/apps/v4/registry/new-york-v4/examples/form-next-complex.tsx b/apps/v4/registry/new-york-v4/examples/form-next-complex.tsx index 5da09b25d0e..b30aa5357e2 100644 --- a/apps/v4/registry/new-york-v4/examples/form-next-complex.tsx +++ b/apps/v4/registry/new-york-v4/examples/form-next-complex.tsx @@ -26,6 +26,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -115,8 +116,10 @@ export default function FormNextComplex() { - Monthly - Yearly + + Monthly + Yearly + diff --git a/apps/v4/registry/new-york-v4/examples/form-rhf-complex.tsx b/apps/v4/registry/new-york-v4/examples/form-rhf-complex.tsx index c290cb0ab89..79833648d30 100644 --- a/apps/v4/registry/new-york-v4/examples/form-rhf-complex.tsx +++ b/apps/v4/registry/new-york-v4/examples/form-rhf-complex.tsx @@ -35,6 +35,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -197,8 +198,10 @@ export default function FormRhfComplex() { - Monthly - Yearly + + Monthly + Yearly + diff --git a/apps/v4/registry/new-york-v4/examples/form-rhf-select.tsx b/apps/v4/registry/new-york-v4/examples/form-rhf-select.tsx index 3cb5100c357..98cd3c6c5c2 100644 --- a/apps/v4/registry/new-york-v4/examples/form-rhf-select.tsx +++ b/apps/v4/registry/new-york-v4/examples/form-rhf-select.tsx @@ -26,6 +26,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectSeparator, SelectTrigger, @@ -120,13 +121,17 @@ export default function FormRhfSelect() { - Auto + + Auto + - {spokenLanguages.map((language) => ( - - {language.label} - - ))} + + {spokenLanguages.map((language) => ( + + {language.label} + + ))} + diff --git a/apps/v4/registry/new-york-v4/examples/form-tanstack-complex.tsx b/apps/v4/registry/new-york-v4/examples/form-tanstack-complex.tsx index 94736bbc186..265583e1138 100644 --- a/apps/v4/registry/new-york-v4/examples/form-tanstack-complex.tsx +++ b/apps/v4/registry/new-york-v4/examples/form-tanstack-complex.tsx @@ -28,6 +28,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectTrigger, SelectValue, @@ -198,8 +199,10 @@ export default function FormTanstackComplex() { - Monthly - Yearly + + Monthly + Yearly + diff --git a/apps/v4/registry/new-york-v4/examples/form-tanstack-select.tsx b/apps/v4/registry/new-york-v4/examples/form-tanstack-select.tsx index 844adf4dbfa..2b1e36f5498 100644 --- a/apps/v4/registry/new-york-v4/examples/form-tanstack-select.tsx +++ b/apps/v4/registry/new-york-v4/examples/form-tanstack-select.tsx @@ -25,6 +25,7 @@ import { import { Select, SelectContent, + SelectGroup, SelectItem, SelectSeparator, SelectTrigger, @@ -125,16 +126,20 @@ export default function FormTanstackSelect() { - Auto + + Auto + - {spokenLanguages.map((language) => ( - - {language.label} - - ))} + + {spokenLanguages.map((language) => ( + + {language.label} + + ))} +