interface CategoryBrowserConfiguration {
    initialCategory: null | string;
    packageList: boolean;
    subtemplates: {
        category: string;
        filters: null | string;
        sidebarFooter: null | string;
    };
}

Properties

initialCategory: null | string

The initial category tab: a null value will result in an initial active tab that corresponds with the first category by insertion order.

packageList: boolean

Where this application displays is a list of tagged FVTT packages

subtemplates: {
    category: string;
    filters: null | string;
    sidebarFooter: null | string;
}

Additional Template partials for specific use with this class

Type declaration

  • category: string

    The markup used for each category: required to be set by any subclass

  • filters: null | string

    Optional template for secondary filtering (aside from text search)

  • sidebarFooter: null | string

    Optional sidebar footer content