Member Junction
    Preparing search index...

    Responsive Card Grid container that manages responsive layout and card maximization state.

    Implements

    • OnChanges
    Index

    Constructors

    Properties

    CardMaximized: EventEmitter<string> = ...

    Emits the card ID when a card is maximized.

    CardRestored: EventEmitter<void> = ...

    Emits when the maximized card is restored back to the grid view.

    Columns: string | number = 2

    Number of columns for standard layout (defaults to 2).

    Gap: string = 'var(--mj-space-4, 16px)'

    CSS gap between cards (defaults to var(--mj-space-4)).

    maximizedCard$: BehaviorSubject<string | null> = ...

    Stream of the currently maximized card ID across all children.

    MaximizedCardId: string | null = null

    Currently maximized card ID. When set, only this card is shown full-width.

    MaximizedCardIdChange: EventEmitter<string | null> = ...

    Emits when the maximized card ID changes (two-way binding support).

    Methods

    • A callback method that is invoked immediately after the default change detector has checked data-bound properties if at least one has changed, and before the view and content children are checked.

      Parameters

      • changes: { [propName: string]: SimpleChange<any> }

        The changed properties.

      Returns void