@umbraco-cms/backoffice
    Preparing search index...

    Arguments for displaying an error peek notification. UmbPeekErrorArgs

    interface UmbPeekErrorArgs {
        color?: UmbNotificationColor;
        detail?: string;
        details?: Record<string, string[]>;
        errors?: Record<string, string[]>;
        headline?: string;
        message: string;
        structuredList?: Record<string, unknown[]>;
        whitespace?: "pre" | "normal" | "pre-line" | "pre-wrap" | "nowrap";
    }

    Hierarchy (View Summary)

    Index

    Properties

    The notification color. Defaults to 'danger'.

    detail?: string

    A human-readable explanation of the error (from ProblemDetails.detail).

    details?: Record<string, string[]>

    Validation errors keyed by field name (from ProblemDetails.errors).

    Use errors instead. Scheduled for removal in Umbraco 19.

    errors?: Record<string, string[]>

    Validation errors keyed by field name (from ProblemDetails.errors).

    headline?: string
    message: string
    structuredList?: Record<string, unknown[]>

    Use UmbPeekErrorArgs instead. Scheduled for removal in Umbraco 19.

    whitespace?: "pre" | "normal" | "pre-line" | "pre-wrap" | "nowrap"