Axinom Mosaic Libraries
    Preparing search index...

    Interface NavigationActionData

    Properties necessary for navigation type action to render an anchor tag

    interface NavigationActionData {
        confirmationConfig?: undefined;
        confirmationMode?: undefined;
        icon?: IconName;
        isDisabled?: boolean;
        label: string;
        onActionSelected?: undefined;
        openInNewTab?: boolean;
        path: LocationDescriptor<unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    confirmationConfig?: undefined

    Optional text overrides for the confirmation pop up.

    confirmationMode?: undefined

    If set to 'Simple', the action will require confirmation. If set to 'Advanced', action will require confirmation via a confirmation pop up. (default: 'None')

    icon?: IconName

    Optional icon (default: 'IconName.ChevronRight')

    isDisabled?: boolean

    Renders an un-clickable button if true.

    label: string

    The label of the action.

    onActionSelected?: undefined

    Callback emitted when a user clicks on the Action.

    openInNewTab?: boolean

    If set to true, the link will open in a new tab.

    path: LocationDescriptor<unknown>

    Where to navigate to when the action is clicked.