Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions packages/@react-stately/select/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
Expand All @@ -13,4 +13,4 @@
export {useSelectState} from './useSelectState';

export type {SelectProps} from '@react-types/select';
export type {SelectState} from './useSelectState';
export type {SelectState, SelectStateOptions} from './useSelectState';
2 changes: 1 addition & 1 deletion packages/react-stately/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type {MenuTriggerProps, MenuTriggerState} from '@react-stately/menu';
export type {OverlayTriggerProps, OverlayTriggerState} from '@react-stately/overlays';
export type {RadioGroupProps, RadioGroupState} from '@react-stately/radio';
export type {SearchFieldProps, SearchFieldState} from '@react-stately/searchfield';
export type {SelectProps, SelectState} from '@react-stately/select';
export type {SelectProps, SelectState, SelectStateOptions} from '@react-stately/select';
export type {SliderState, SliderStateOptions} from '@react-stately/slider';
export type {MultipleSelectionManager, MultipleSelectionState, SingleSelectionState} from '@react-stately/selection';
export type {NumberFieldState, NumberFieldStateOptions} from '@react-stately/numberfield';
Expand Down