packages/eui/packages/components/eui-button-group/eui-button-group.component.ts
Component for grouping multiple buttons together with optional checkbox or radio button behavior.
AfterContentInit
changeDetection | ChangeDetectionStrategy.OnPush |
selector | eui-button-group |
styleUrls | ./eui-button-group.scss |
template |
|
Properties |
Inputs |
Outputs |
HostBindings |
Accessors |
isCheckboxButtons |
Type : boolean
|
Default value : false
|
Whether the buttons should behave like checkboxes (multiple selection) |
isRadioButtons |
Type : boolean
|
Default value : false
|
Whether the buttons should behave like radio buttons (single selection) |
buttonClick |
Type : EventEmitter<EuiButtonComponent>
|
Event emitted when any button in the group is clicked Emits the clicked EuiButtonComponent instance |
class |
Type : string
|
CSS classes applied to the host element |
buttons |
Type : QueryList<EuiButtonComponent>
|
Decorators :
@ContentChildren(undefined)
|
Query list of all EuiButtonComponent instances within the group |
cssClasses |
getcssClasses()
|
CSS classes applied to the host element
Returns :
string
|