interface TabsConfiguration {
    group: string;
    navSelector: string;
    contentSelector: string;
    initial: string;
    callback: Function;
}

Properties

group: string

The name of the tabs group

navSelector: string

The CSS selector used to target the navigation element for these tabs

contentSelector: string

The CSS selector used to target the content container for these tabs

initial: string

The tab name of the initially active tab

callback: Function

An optional callback function that executes when the active tab is changed