You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Toolbar component should have two separate active parts:
action button - that should invoke active action
arrow button - that should open dropdown panel
The keyboard/mouse actions should act:
click on button executes command
click on arrow opens dropdown
enter on button executes command
enter or arrow up/dwon on arrow opens dropdown
It should be extensible and allows to implement different UI panels inside dropdown. But the the first implementation should allow to implement highlight UI. As such it should expose a way to:
change active command/icon and represent it's state (active/enabled).
The text was updated successfully, but these errors were encountered:
Other: Introduced `SplitButtonView` and new dropdown creation helpers (`createDropdown()`, `addListToDropdown()` and `addToolbarToDropdown()`) Closes #344. Closes #356.
BREAKING CHANGE: Removed `DropdownModel` interface – you can use dropdown properties directly now. See #356.
BREAKING CHANGE: Removed `createButtonDropdown()` and `ButtonDropdownView`. See #356.
BREAKING CHANGE: Removed `createListDropdown()` and `ListDropdownView`. See #356.
This UI Component should look like option 2 from dropdown button reasearch:
enter
on button executes commandenter
orarrow up/dwon
on arrow opens dropdownThe text was updated successfully, but these errors were encountered: