A directive that groups toolbar widgets, used for more complex widgets like radio groups that have their own internal navigation.
API
class ToolbarWidgetGroup<V> { readonly element: HTMLElement; readonly @Input() disabled: InputSignalWithTransform<boolean, unknown>; readonly @Input() multi: InputSignalWithTransform<boolean, unknown>;}
element
HTMLElementA reference to the host element.
disabled
InputSignalWithTransform<boolean, unknown>Whether the widget group is disabled.
multi
InputSignalWithTransform<boolean, unknown>Whether the group allows multiple widgets to be selected.
Jump to details