Member Junction
    Preparing search index...

    Interface FormPanelRegistrationMetadata

    Shape of the metadata object every BaseFormPanel registration MUST attach via @RegisterClass(BaseFormPanel, { metadata: {...} }). The <mj-form-panel-slot> host filters registrations by matching against this shape — registrations without it are silently ignored.

    • entity — the exact entity name (case-sensitive equality enforced by the slot host), OR the wildcard '*' to register an entity-agnostic panel that mounts on EVERY entity's form. Wildcard panels are expected to self-hide (render nothing) when they don't apply to the current record, so the cross-cutting registration stays unobtrusive on forms it has no business on.
    • slot — which slot the panel renders into.
    • sortKey— higher = earlier within the slot. Defaults to 0 if omitted. Use ranges (e.g., 100/50/10) so future panels can wedge in without recomputing every neighbor's sort.
    interface FormPanelRegistrationMetadata {
        entity: string;
        slot: FormPanelSlot;
        sortKey?: number;
        [key: string]: unknown;
    }

    Hierarchy

    • Record<string, unknown>
      • FormPanelRegistrationMetadata

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    entity: string
    sortKey?: number