Skip to content

Commit 7efafe2

Browse files
committed
fix: typecheck
1 parent 7366236 commit 7efafe2

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

packages/machines/select/src/select.props.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ import type { ItemGroupLabelProps, ItemGroupProps, ItemProps, SelectProps } from
55
export const props = createProps<SelectProps>()([
66
"closeOnSelect",
77
"collection",
8+
"composite",
9+
"defaultHighlightedValue",
10+
"defaultOpen",
11+
"defaultValue",
12+
"deselectable",
813
"dir",
914
"disabled",
10-
"deselectable",
1115
"form",
1216
"getRootNode",
1317
"highlightedValue",
@@ -22,17 +26,14 @@ export const props = createProps<SelectProps>()([
2226
"onInteractOutside",
2327
"onOpenChange",
2428
"onPointerDownOutside",
29+
"onSelect",
2530
"onValueChange",
26-
"defaultOpen",
2731
"open",
28-
"composite",
2932
"positioning",
30-
"required",
3133
"readOnly",
34+
"required",
3235
"scrollToIndexFn",
3336
"value",
34-
"defaultValue",
35-
"defaultHighlightedValue",
3637
])
3738
export const splitProps = createSplitProps<Partial<SelectProps>>(props)
3839

0 commit comments

Comments
 (0)