interface ApplicationTabsConfiguration {
    initial?: string;
    labelPrefix?: string;
    tabs: {
        cssClass?: string;
        icon?: string;
        id: string;
        label?: string;
        tooltip?: string;
    }[];
}

Properties

initial?: string

The tab in this group that will be active on first render

labelPrefix?: string

A localization path prefix for all tabs in the group: if set, a label is generated for each tab using a full path of ${labelPrefix}.${tabId}.

tabs: {
    cssClass?: string;
    icon?: string;
    id: string;
    label?: string;
    tooltip?: string;
}[]

An array of tab configuration data