You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
599 B
21 lines
599 B
1 year ago
|
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||
|
export default class TabPanel extends SuperComponent {
|
||
|
externalClasses: string[];
|
||
|
relations: RelationsOptions;
|
||
|
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;
|
||
|
}
|