Skip to content

Commit

Permalink
add missing props
Browse files Browse the repository at this point in the history
  • Loading branch information
Akiyamka committed Jan 19, 2024
1 parent 39213f1 commit 0aea4cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/ui-kit/src/Autocomplete/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export interface AutocompleteProps {
onChange?: (changes: UseComboboxStateChange<AutocompleteItemType>) => void;
onSelect?: (selection: AutocompleteItemType | AutocompleteItemType[] | null | undefined) => void;
children?: string;
placeholder?: string;
}

export const Autocomplete = forwardRef(
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-kit/src/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export interface SelectProps {
onSelect?: (selection: SelectableItem | SelectableItem[] | null | undefined) => void;
onClose?: (selection: SelectableItem | SelectableItem[] | null | undefined) => void;
onReset?: () => void;
placeholder: string;
placeholder?: string;
alwaysShowPlaceholder?: boolean;
}

Expand Down

0 comments on commit 0aea4cd

Please sign in to comment.