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.
28 lines
716 B
28 lines
716 B
1 year ago
|
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||
|
import type { CollapseValue, TdCollapseProps } from './type';
|
||
|
export interface CollapseProps extends TdCollapseProps {
|
||
|
}
|
||
|
export default class Collapse extends SuperComponent {
|
||
|
options: {
|
||
|
addGlobalClass: boolean;
|
||
|
};
|
||
|
externalClasses: string[];
|
||
|
relations: RelationsOptions;
|
||
|
controlledProps: {
|
||
|
key: string;
|
||
|
event: string;
|
||
|
}[];
|
||
|
properties: TdCollapseProps;
|
||
|
data: {
|
||
|
prefix: string;
|
||
|
classPrefix: string;
|
||
|
};
|
||
|
observers: {
|
||
|
'value, expandMutex '(): void;
|
||
|
};
|
||
|
methods: {
|
||
|
updateExpanded(): void;
|
||
|
switch(panelValue: CollapseValue): void;
|
||
|
};
|
||
|
}
|