Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: Update styles json and tsx files according to new combobox file
  • Loading branch information
yogesh200002 committed Apr 1, 2026
commit d8959792efdb0240d744f283696aedd7ccbba7e4
2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-luma/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-lyra/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-maia/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-mira/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-nova/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/base-vega/combobox.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/v4/public/r/styles/new-york-v4/combobox.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion apps/v4/styles/base-luma/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-luma/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-lyra/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-lyra/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-maia/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-maia/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-mira/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-mira/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-nova/ui-rtl/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-nova/ui-rtl/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-nova/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-nova/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down
6 changes: 5 additions & 1 deletion apps/v4/styles/base-vega/ui/combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import {
InputGroupInput,
} from "@/styles/base-vega/ui/input-group"

const Combobox = ComboboxPrimitive.Root
function Combobox<Value, Multiple extends boolean | undefined = false>(
props: ComboboxPrimitive.Root.Props<Value, Multiple>
) {
return <ComboboxPrimitive.Root {...props} />
}

function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props) {
return <ComboboxPrimitive.Value data-slot="combobox-value" {...props} />
Expand Down