@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Container component that collects UIToolbarItem content children and re-emits their itemAction events through its own toolAction output.

    Items are discovered via DI token forwarding — each concrete tool component provides { provide: UIToolbarItem, useExisting: forwardRef(...) }.

    <ui-toolbar (toolAction)="onAction($event)">
    <ui-button-tool id="save" label="Save" [icon]="UIIcons.Lucide.File.Save" />
    <ui-separator-tool id="sep1" />
    <ui-toggle-tool id="bold" label="Bold" [(checked)]="isBold" />
    </ui-toolbar>
    Index

    Constructors

    Properties

    Constructors

    • Returns UIToolbar

    Properties

    items: Signal<readonly UIToolbarItem[]> = ...

    All direct UIToolbarItem content children discovered via DI token. Descendants inside group tools are not included (default descendants: false).

    orientation: InputSignal<ToolbarOrientation> = ...

    Layout orientation of the toolbar.

    toolAction: OutputEmitterRef<ToolActionEvent> = ...

    Emitted when any direct toolbar item fires an action.