primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
67 lines (66 loc) • 1.51 kB
TypeScript
import { BaseStyle } from 'primeng/base';
import * as i0 from "@angular/core";
export declare class TabsStyle extends BaseStyle {
name: string;
theme: ({ dt }: {
dt: any;
}) => string;
classes: {
root: ({ props }: {
props: any;
}) => (string | {
'p-tabs-scrollable': any;
})[];
};
static ɵfac: i0.ɵɵFactoryDeclaration<TabsStyle, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TabsStyle>;
}
/**
*
* Tabs facilitates seamless switching between different views.
*
* [Live Demo](https://www.primeng.org/tabs/)
*
* @module tabsstyle
*
*/
export declare enum TabsClasses {
/**
* Class name of the root element
*/
root = "p-tabs",
/**
* Class name of the wrapper element
*/
list = "p-tablist",
/**
* Class name of the content element
*/
content = "p-tablist-content",
/**
* Class name of the tab list element
*/
tablist = "p-tablist-tab-list",
/**
* Class name of the tab list element
*/
tab = "p-tab",
/**
* Class name of the inkbar element
*/
inkbar = "p-tablist-active-bar",
/**
* Class name of the navigation buttons
*/
button = "p-tablist-nav-button",
/**
* Class name of the tab panels wrapper
*/
tabpanels = "p-tabpanels",
/**
* Class name of the tab panel element
*/
tabpanel = "p-tabs-panel"
}
export interface TabsStyle extends BaseStyle {
}