123456789101112131415161718192021222324252627 |
- 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;
- };
- }
|