24 lines
653 B
TypeScript
24 lines
653 B
TypeScript
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
|
export default class TabPanel extends SuperComponent {
|
|
externalClasses: string[];
|
|
relations: RelationsOptions;
|
|
options: {
|
|
multipleSlots: boolean;
|
|
};
|
|
properties: import("./type").TdTabPanelProps;
|
|
data: {
|
|
prefix: string;
|
|
classPrefix: string;
|
|
active: boolean;
|
|
hide: boolean;
|
|
id: string;
|
|
};
|
|
setId(id: any): void;
|
|
observers: {
|
|
'label, badgeProps, disabled, icon, panel, value'(): void;
|
|
};
|
|
getComputedName(): string;
|
|
update(): void;
|
|
render(active: Boolean, parent: any): void;
|
|
}
|