Axinom Mosaic Libraries
    Preparing search index...

    Interface PageHeaderActionsGroupProps

    interface PageHeaderActionsGroupProps {
        actions: PageHeaderActionProps[];
        availableActionSpace?: number;
        className?: string;
        disabled?: boolean;
        groupActionsDisabled?: boolean;
        icon?: string | IconName;
        label: string;
        onActionsGroupToggled?: (expanded: boolean) => Promise<void>;
        openActionsGroupOnStart?: boolean;
    }
    Index

    Properties

    Array of Actions to be rendered (default: [])

    availableActionSpace?: number

    The number of actions that can be displayed in the group. (default: actions.length)

    className?: string

    CSS Class name for additional styles

    disabled?: boolean

    Whether group is disabled (default: false)

    groupActionsDisabled?: boolean

    Whether actions in the group are disabled or not (default: false)

    icon?: string | IconName

    Optional built in icon. This prop also accepts an img src.

    label: string

    The label of the action.

    onActionsGroupToggled?: (expanded: boolean) => Promise<void>

    Callback to emit when Group Actions is toggled The expanded state is supplied as an argument

    openActionsGroupOnStart?: boolean

    Whether group actions are shown by default. (default: false)