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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Autocomplete for search fields can be implemented using the [<datalist>](h
* Support for controlled and uncontrolled options, selection, input value, and open state
* Support for custom filter functions
* Async loading and infinite scrolling support
* Support for virtualized scrolling for performance with long lists
* Support for use with virtualized lists
* Exposed to assistive technology as a `combobox` with ARIA
* Labeling support for accessibility
* Required and invalid states exposed to assistive technology via ARIA
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-aria/combobox/docs/useComboBox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ A combo box can be built using the [<datalist>](https://developer.mozilla.
* Support for controlled and uncontrolled options, selection, input value, and open state
* Support for custom filter functions
* Async loading and infinite scrolling support
* Support for virtualized scrolling for performance with long lists
* Support for use with virtualized lists
* Exposed to assistive technology as a `combobox` with ARIA
* Labeling support for accessibility
* Required and invalid states exposed to assistive technology via ARIA
Expand Down
2 changes: 1 addition & 1 deletion packages/@react-aria/listbox/docs/useListBox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Note: `useListBox` only handles the list itself. For a dropdown similar to a `<s
* Keyboard navigation support including arrow keys, home/end, page up/down, select all, and clear
* Automatic scrolling support during keyboard navigation
* Typeahead to allow focusing options by typing text
* Virtualized scrolling support for performance with long lists
* Support for use with virtualized lists

## Anatomy

Expand Down
2 changes: 1 addition & 1 deletion packages/@react-aria/menu/docs/useMenu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ help achieve accessible menu components that can be styled as needed.
* Keyboard support for opening the menu using the arrow keys, including automatically focusing
the first or last item accordingly
* Typeahead to allow focusing items by typing text
* Virtualized scrolling support for performance with long lists
* Support for use with virtualized lists

## Anatomy

Expand Down
2 changes: 1 addition & 1 deletion packages/@react-aria/table/docs/useTable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ HTML tables are meant for static content, rather than tables with rich interacti
* Support for marking columns as [row headers](https://www.w3.org/TR/wai-aria-1.1/#rowheader), which will be read when navigating the rows with a screen reader
* Ensures that selections are announced using an ARIA live region
* Support for using HTML table elements, or custom element types (e.g. `<div>`) for layout flexibility
* Virtualized scrolling support for performance with large tables
* Support for use with virtualized lists
* Support for resizable columns

## Anatomy
Expand Down