Skip to content

Commit fe1ad32

Browse files
authored
Add ListView to monopackages (#3451)
1 parent eca34eb commit fe1ad32

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

packages/@adobe/react-spectrum/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"@react-spectrum/image": "^3.3.0",
4040
"@react-spectrum/layout": "^3.4.0",
4141
"@react-spectrum/link": "^3.4.0",
42+
"@react-spectrum/list": "3.0.0-rc.0",
4243
"@react-spectrum/listbox": "^3.7.0",
4344
"@react-spectrum/menu": "^3.8.0",
4445
"@react-spectrum/meter": "^3.3.0",

packages/@adobe/react-spectrum/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export {Image} from '@react-spectrum/image';
2828
export {Flex, Grid, fitContent, minmax, repeat} from '@react-spectrum/layout';
2929
export {Link} from '@react-spectrum/link';
3030
export {ListBox} from '@react-spectrum/listbox';
31+
export {ListView} from '@react-spectrum/list';
3132
export {ActionMenu, Menu, MenuTrigger} from '@react-spectrum/menu';
3233
export {Meter} from '@react-spectrum/meter';
3334
export {NumberField} from '@react-spectrum/numberfield';
@@ -73,6 +74,7 @@ export type {SpectrumImageProps} from '@react-spectrum/image';
7374
export type {DimensionValue, FlexProps, GridProps} from '@react-spectrum/layout';
7475
export type {SpectrumLinkProps} from '@react-spectrum/link';
7576
export type {SpectrumListBoxProps} from '@react-spectrum/listbox';
77+
export type {SpectrumListViewProps} from '@react-spectrum/list';
7678
export type {SpectrumActionMenuProps, SpectrumMenuProps, SpectrumMenuTriggerProps} from '@react-spectrum/menu';
7779
export type {SpectrumMeterProps} from '@react-spectrum/meter';
7880
export type {SpectrumNumberFieldProps} from '@react-spectrum/numberfield';

packages/react-aria/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"@react-aria/datepicker": "^3.1.0",
2828
"@react-aria/dialog": "^3.3.0",
2929
"@react-aria/focus": "^3.7.0",
30+
"@react-aria/gridlist": "3.0.0-rc.0",
3031
"@react-aria/i18n": "^3.5.0",
3132
"@react-aria/interactions": "^3.10.0",
3233
"@react-aria/label": "^3.4.0",

packages/react-aria/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export {FocusRing, FocusScope, useFocusManager, useFocusRing, useFocusable} from
2121
export {I18nProvider, useCollator, useDateFormatter, useFilter, useLocale, useLocalizedStringFormatter, useMessageFormatter, useNumberFormatter} from '@react-aria/i18n';
2222
export {useFocus, useFocusVisible, useFocusWithin, useHover, useInteractOutside, useKeyboard, useMove, usePress, useLongPress} from '@react-aria/interactions';
2323
export {useField, useLabel} from '@react-aria/label';
24+
export {useGridList, useGridListItem, useGridListSelectionCheckbox} from '@react-aria/gridlist';
2425
export {useLink} from '@react-aria/link';
2526
export {useListBox, useListBoxSection, useOption} from '@react-aria/listbox';
2627
export {useMenu, useMenuItem, useMenuSection, useMenuTrigger} from '@react-aria/menu';
@@ -55,6 +56,7 @@ export type {FocusProps, FocusResult, FocusVisibleResult, FocusWithinProps, Focu
5556
export type {AriaFieldProps, FieldAria, LabelAria, LabelAriaProps} from '@react-aria/label';
5657
export type {AriaLinkOptions, LinkAria} from '@react-aria/link';
5758
export type {AriaListBoxOptions, AriaListBoxSectionProps, AriaOptionProps, ListBoxAria, ListBoxSectionAria, OptionAria} from '@react-aria/listbox';
59+
export type {AriaGridListOptions, GridListAria, AriaGridListItemOptions, GridListItemAria, AriaGridSelectionCheckboxProps, GridSelectionCheckboxAria} from '@react-aria/gridlist';
5860
export type {AriaMenuItemProps, AriaMenuOptions, AriaMenuSectionProps, AriaMenuTriggerProps, MenuAria, MenuItemAria, MenuSectionAria, MenuTriggerAria} from '@react-aria/menu';
5961
export type {AriaMeterProps, MeterAria} from '@react-aria/meter';
6062
export type {AriaNumberFieldProps, NumberFieldAria} from '@react-aria/numberfield';

0 commit comments

Comments
 (0)