Backstage
    Preparing search index...

    Props for root catalog pages.

    interface DefaultCatalogPageProps {
        actions?: (
            | Action<CatalogTableRow>
            | ((rowData: CatalogTableRow) => Action<CatalogTableRow>)
            | {
                action: (rowData: CatalogTableRow) => Action<CatalogTableRow>;
                position: string;
            }
        )[];
        columns?: TableColumn<CatalogTableRow>[]
        | CatalogTableColumnsFunc;
        emptyContent?: ReactNode;
        filters?: ReactNode;
        initialKind?: string;
        initiallySelectedFilter?: UserListFilterKind;
        initiallySelectedNamespaces?: string[];
        ownerPickerMode?: "all" | "owners-only";
        pagination?: EntityListPagination;
        tableOptions?: Options<CatalogTableRow>;
    }
    Index

    Properties

    actions?: (
        | Action<CatalogTableRow>
        | ((rowData: CatalogTableRow) => Action<CatalogTableRow>)
        | {
            action: (rowData: CatalogTableRow) => Action<CatalogTableRow>;
            position: string;
        }
    )[]
    emptyContent?: ReactNode
    filters?: ReactNode
    initialKind?: string
    initiallySelectedFilter?: UserListFilterKind
    initiallySelectedNamespaces?: string[]
    ownerPickerMode?: "all" | "owners-only"
    tableOptions?: Options<CatalogTableRow>