src/components/button-toolbar/README.md
Group a series of button-groups and/or input-groups together on a single line, with optional keyboard navigation
Example 1: with button groups & Keyboard navigation
<div>
<b-button-toolbar key-nav aria-label="Toolbar with button groups">
<b-button-group class="mx-1">
<b-button>«</b-button>
<b-button>‹</b-button>
</b-button-group>
<b-button-group class="mx-1">
<b-button>Edit</b-button>
<b-button>Undo</b-button>
<b-button>Redo</b-button>
</b-button-group>
<b-button-group class="mx-1">
<b-button>›</b-button>
<b-button>»</b-button>
</b-button-group>
</b-button-toolbar>
</div>
<!-- b-button-toolbar.vue -->
Example 2: with mixture of small button group and small input group
<div>
<b-button-toolbar aria-label="Toolbar with button groups and input groups">
<b-button-group size="sm" class="mr-1">
<b-button>Save</b-button>
<b-button>Cancel</b-button>
</b-button-group>
<b-input-group size="sm" prepend="$" append=".00">
<b-form-input value="100" class="text-right"></b-form-input>
</b-input-group>
</b-button-toolbar>
</div>
<!-- b-button-toolbar-input.vue -->
Example 3: with button groups and dropdown menu
<div>
<b-button-toolbar aria-label="Toolbar with button groups and dropdown menu">
<b-button-group class="mx-1">
<b-button>New</b-button>
<b-button>Edit</b-button>
<b-button>Undo</b-button>
</b-button-group>
<b-dropdown class="mx-1" right text="menu">
<b-dropdown-item>Item 1</b-dropdown-item>
<b-dropdown-item>Item 2</b-dropdown-item>
<b-dropdown-item>Item 3</b-dropdown-item>
</b-dropdown>
<b-button-group class="mx-1">
<b-button>Save</b-button>
<b-button>Cancel</b-button>
</b-button-group>
</b-button-toolbar>
</div>
<!-- b-button-toolbar-dropdown.vue -->
Feel free to mix input groups and dropdowns with button groups in your toolbars. Similar to the example above, you'll likely need some utility classes though to space things properly.
Note, if you want smaller or larger buttons or controls, set the size prop directly on the
<b-button-group>, <b-input-group>, and <b-dropdown> components.
Make the toolbar span the maximum available width, by increasing spacing between the button groups,
input groups and dropdowns, by setting the prop justify.
Enable optional keyboard navigation by setting the prop key-nav.
| Keypress | Action |
|---|---|
| <kbd>Left</kbd> or <kbd>Up</kbd> | Move to the previous non-disabled item in the toolbar |
| <kbd>Right</kbd> or <kbd>Down</kbd> | Move to the next non-disabled item in the toolbar |
| <kbd>Shift</kbd>+<kbd>Left</kbd> or <kbd>Shift</kbd>+<kbd>Up</kbd> | Move to the first non-disabled item in the toolbar |
| <kbd>Shift</kbd>+<kbd>Right</kbd> or <kbd>Shift</kbd>+<kbd>Down</kbd> | Move to the last non-disabled item in the toolbar |
| <kbd>Tab</kbd> | Move to the next control on the page |
| <kbd>Shift</kbd>+<kbd>Tab</kbd> | Move to the previous control on the page |
Caution: If you have text or text-like inputs in your toolbar, leave keyboard navigation off, as it is not possible to use key presses to jump out of a text (or test-like) inputs.