-
Notifications
You must be signed in to change notification settings - Fork 9
feat(combobox): implement multiple #816
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
Conversation
packages/examples/webpack-app/src/app/components/formNative/FormNative.tsx
Show resolved
Hide resolved
...ds-react/src/components/combobox/src/components/combobox-control/comboboxControl.module.scss
Outdated
Show resolved
Hide resolved
...ds-react/src/components/combobox/src/components/combobox-control/comboboxControl.module.scss
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/components/combobox-tags/ComboboxTags.tsx
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/components/combobox-tags/ComboboxTags.tsx
Outdated
Show resolved
Hide resolved
92b0f76
to
f4d9891
Compare
f4d9891
to
21ea968
Compare
packages/ods-react/src/components/combobox/src/components/combobox-tags/ComboboxTags.tsx
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/contexts/useCombobox.tsx
Outdated
Show resolved
Hide resolved
focusedIndex: number | null; | ||
resetTagFocus: () => void; | ||
setTagIndex: (index: number | null) => void; | ||
}; | ||
|
||
type ComboboxContextType = ComboboxProp & { | ||
filteredItems?: ComboboxItemOrGroup[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
used?
packages/ods-react/src/components/combobox/src/contexts/useCombobox.tsx
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/components/combobox-control/ComboboxControl.tsx
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/components/combobox-control/ComboboxControl.tsx
Outdated
Show resolved
Hide resolved
packages/ods-react/src/components/combobox/src/components/combobox-control/ComboboxControl.tsx
Outdated
Show resolved
Hide resolved
…d clean up unused handlers
546e412
to
a663bee
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When in readonly mode, keyboard navigation should be disabled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With Voiceover, Combobox is recognized as a "list box pop-up, button", not a "list box pop-up, combo box" as it is in the original lib. It causes accessibility issues since when the user is typing, nothing is vocalized and the same goes for the list of options.
No description provided.