hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface ICollectionViewRowSettings

    Interface for row settings in a collection view. Extends IStyleDictionary.

    interface ICollectionViewRowSettings {
        cellSettingsKey?: string;
        cellSize?: [number, number];
        contentOffset?: [number, number];
        customViewType?: string;
        focusSettings?: ICollectionViewFocusSettings;
        headerSettings?: ICollectionViewHeaderSettings;
        height?: number;
        numCols?: number;
        rowType?: string;
        screenPosition?: [number, number];
        spacing?: number;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    cellSettingsKey?: string

    Key for cell settings within the row.

    cellSize?: [number, number]

    Size of the cell.

    contentOffset?: [number, number]

    Offset for content within the row.

    customViewType?: string

    Class name of the custom view to use, if any.

    Focus-specific styling options.

    Optional header settings.

    height?: number

    Height of the row.

    numCols?: number

    Number of columns in the row.

    rowType?: string

    Type of the row.

    screenPosition?: [number, number]

    Position on screen for focused row.

    spacing?: number

    Space between items.