Split Button
Split Buttons are dual-function menu buttons with two components: a label and an arrow; clicking on the label selects a default action, and clicking on the arrow opens up a list of other possible actions: the alternatives.
Label and icon
You can set label and icon for the action button by using label
and icon
attributes.
<qtm-split-button icon="reply" label="Reply"></qtm-split-button>
Options
Option list in dropdown overlay can be passed through the options property. An options in this list must be have value, label properties and/or icon, disabled properties.
const options = [
{
value: 'reply-all',
icon: 'replay',
label: 'Reply all',
},
{
value: 'forward',
icon: 'forward',
label: 'Forward',
},
{
value: 'reply-delete',
icon: 'reply',
label: 'Reply & Delete',
},
{
value: 'forward-delete',
icon: 'forward',
label: 'Forward & Delete',
},
{
value: 'delete',
icon: 'delete',
label: 'Delete',
disabled: true,
},
];
<qtm-split-button
icon="reply"
label="Reply"
:options="options"
></qtm-split-button>
Sizes
Split buttons are available in three sizes to cater for the diverse range of use cases and devices that our business uses.
By default menu and buttons in split button are medium.
<qtm-split-button
:options="options"
size="small"
visible
icon="reply"
label="Reply"
></qtm-split-button>
<qtm-split-button
:options="options"
size="medium"
visible
icon="reply"
label="Reply"
></qtm-split-button>
<qtm-split-button
:options="options"
size="large"
visible
icon="reply"
label="Reply"
></qtm-split-button>
Placement
You can set placement attribute to 'bottom-left', 'bottom-center', 'bottom-right', 'top-left', 'top-center' or 'top-right' to place the dropdown overlay. By default, the dropdown overlay is 'bottom-right'
<qtm-split-button
:options="options"
visible
icon="reply"
label="Reply"
placement="top-center"
></qtm-split-button>
Color variations
Buttons in split button can be Filled primary, Ghost neutral or Ghost primary. By default, they are filled primary.
<qtm-split-button
:options="options"
variant="filled-primary"
visible
icon="reply"
label="Reply"
></qtm-split-button>
<qtm-split-button
:options="options"
variant="ghost-neutral"
visible
icon="reply"
label="Reply"
></qtm-split-button>
<qtm-split-button
:options="options"
variant="ghost-primary"
visible
icon="reply"
label="Reply"
></qtm-split-button>
Disabled
<qtm-split-button
:options="options"
variant="ghost-primary"
disabled
icon="reply"
label="Reply"
></qtm-split-button>
...