-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add Autocomplete wrapper for Menu and ListBox #7181
base: main
Are you sure you want to change the base?
Commits on Oct 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c33ac96 - Browse repository at this point
Copy the full SHA c33ac96View commit details -
Configuration menu - View commit details
-
Copy full SHA for a185473 - Browse repository at this point
Copy the full SHA a185473View commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e6fa7c1 - Browse repository at this point
Copy the full SHA e6fa7c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61aab83 - Browse repository at this point
Copy the full SHA 61aab83View commit details
Commits on Oct 11, 2024
-
rough working version of Menu instead of Listbox in autocomplete
issues outlined in various comments, basically boils down to ideally using the wrapped collection components state
Configuration menu - View commit details
-
Copy full SHA for 66fecc8 - Browse repository at this point
Copy the full SHA 66fecc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 779309b - Browse repository at this point
Copy the full SHA 779309bView commit details
Commits on Oct 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 78de7f8 - Browse repository at this point
Copy the full SHA 78de7f8View commit details
Commits on Oct 22, 2024
-
fix keyboard interactions, and clean up
ended up going with dispatching events to the menu/menuitem so we can piggyback off of useSelectableCollection and menus press handling for submenutriggers, onAction, and link handling
Configuration menu - View commit details
-
Copy full SHA for e0f098a - Browse repository at this point
Copy the full SHA e0f098aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5914d11 - Browse repository at this point
Copy the full SHA 5914d11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12480fd - Browse repository at this point
Copy the full SHA 12480fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad8942a - Browse repository at this point
Copy the full SHA ad8942aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 70c2d0f - Browse repository at this point
Copy the full SHA 70c2d0fView commit details
Commits on Oct 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9812c3c - Browse repository at this point
Copy the full SHA 9812c3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8478937 - Browse repository at this point
Copy the full SHA 8478937View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fbd35f - Browse repository at this point
Copy the full SHA 3fbd35fView commit details
Commits on Oct 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e15d999 - Browse repository at this point
Copy the full SHA e15d999View commit details -
Configuration menu - View commit details
-
Copy full SHA for 368a677 - Browse repository at this point
Copy the full SHA 368a677View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82b3120 - Browse repository at this point
Copy the full SHA 82b3120View commit details -
Configuration menu - View commit details
-
Copy full SHA for 423b73c - Browse repository at this point
Copy the full SHA 423b73cView commit details
Commits on Oct 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6c498f1 - Browse repository at this point
Copy the full SHA 6c498f1View commit details
Commits on Oct 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fe5bfbe - Browse repository at this point
Copy the full SHA fe5bfbeView commit details
Commits on Nov 1, 2024
-
update interaction pattern as per discussion
for now we will have first item auto focus, no custom announcements, and clear focus on backspace or arrow left/right. See https://docs.google.com/spreadsheets/d/12M--aeeNK4Kruzg8GnO7L-_DUsQE29_bWJzu4yI4-UA/edit?gid=1690380375#gid=1690380375 for a testing matrix
Configuration menu - View commit details
-
Copy full SHA for 477ca7f - Browse repository at this point
Copy the full SHA 477ca7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a58613 - Browse repository at this point
Copy the full SHA 9a58613View commit details
Commits on Nov 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 574bd67 - Browse repository at this point
Copy the full SHA 574bd67View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae7a00f - Browse repository at this point
Copy the full SHA ae7a00fView commit details -
fix lint and scrap custom announcements
complications making the custom announcements for safari have a delay for when typing ahead but not when using the arrow keys to move through the options, so stashed it for now
Configuration menu - View commit details
-
Copy full SHA for 7b11c5d - Browse repository at this point
Copy the full SHA 7b11c5dView commit details
Commits on Nov 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 04e8777 - Browse repository at this point
Copy the full SHA 04e8777View commit details -
Configuration menu - View commit details
-
Copy full SHA for 79c9064 - Browse repository at this point
Copy the full SHA 79c9064View commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b20b626 - Browse repository at this point
Copy the full SHA b20b626View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28afe21 - Browse repository at this point
Copy the full SHA 28afe21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d0a15f - Browse repository at this point
Copy the full SHA 2d0a15fView commit details
Commits on Nov 20, 2024
-
(WIP) Refactor autocomplete logic to use custom events to update virt…
…ual focus (#7378) * get clear and focus first working with custom events * fix delayed id update and update id on item hover * refactor logic to use custom events to move virtual focus instead of a callback ref * move logic out of menu and down into selection hooks * use useEvent didnt use it in autocomplete hook since the ref might not initially exist which is a problem for useEvent (it wont setup the listener)
Configuration menu - View commit details
-
Copy full SHA for c87a507 - Browse repository at this point
Copy the full SHA c87a507View commit details -
Configuration menu - View commit details
-
Copy full SHA for 682357f - Browse repository at this point
Copy the full SHA 682357fView commit details
Commits on Nov 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3871e7b - Browse repository at this point
Copy the full SHA 3871e7bView commit details
Commits on Nov 23, 2024
-
refactor so that we defer to the child input as much as possible for …
…behavior also removes the delay event, readd if we find there can be a batch case where we need to be more careful about the event that is being delayed
Configuration menu - View commit details
-
Copy full SHA for e3c3c35 - Browse repository at this point
Copy the full SHA e3c3c35View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04d9a8b - Browse repository at this point
Copy the full SHA 04d9a8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0757832 - Browse repository at this point
Copy the full SHA 0757832View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd709a2 - Browse repository at this point
Copy the full SHA fd709a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9eede0c - Browse repository at this point
Copy the full SHA 9eede0cView commit details
Commits on Nov 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6bd5270 - Browse repository at this point
Copy the full SHA 6bd5270View commit details -
Configuration menu - View commit details
-
Copy full SHA for 150bd7e - Browse repository at this point
Copy the full SHA 150bd7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c13544b - Browse repository at this point
Copy the full SHA c13544bView commit details
Commits on Nov 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0d68f68 - Browse repository at this point
Copy the full SHA 0d68f68View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8c5259 - Browse repository at this point
Copy the full SHA d8c5259View commit details
Commits on Nov 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 00f67ad - Browse repository at this point
Copy the full SHA 00f67adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a26d79 - Browse repository at this point
Copy the full SHA 1a26d79View commit details -
Configuration menu - View commit details
-
Copy full SHA for 435c6dc - Browse repository at this point
Copy the full SHA 435c6dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for df03339 - Browse repository at this point
Copy the full SHA df03339View commit details