| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import type { CollapsibleType } from './commonProps';
- import { collapseProps } from './commonProps';
- import type { ExtractPropTypes } from 'vue';
- import type { CollapsePanelProps } from './CollapsePanel';
- import type { CustomSlotsType } from '../_util/type';
- export { collapseProps };
- export type CollapseProps = Partial<ExtractPropTypes<ReturnType<typeof collapseProps>>>;
- declare const _default: import("vue").DefineComponent<{
- prefixCls: StringConstructor;
- activeKey: {
- type: import("vue").PropType<import("./commonProps").ActiveKeyType>;
- default: import("./commonProps").ActiveKeyType;
- };
- defaultActiveKey: {
- type: import("vue").PropType<import("./commonProps").ActiveKeyType>;
- default: import("./commonProps").ActiveKeyType;
- };
- accordion: {
- type: BooleanConstructor;
- default: boolean;
- };
- destroyInactivePanel: {
- type: BooleanConstructor;
- default: boolean;
- };
- bordered: {
- type: BooleanConstructor;
- default: boolean;
- };
- expandIcon: {
- type: import("vue").PropType<(panelProps: import("./commonProps").PanelProps) => any>;
- default: (panelProps: import("./commonProps").PanelProps) => any;
- };
- openAnimation: import("vue-types").VueTypeValidableDef<{
- [key: string]: any;
- }> & {
- default: () => {
- [key: string]: any;
- };
- };
- expandIconPosition: {
- type: import("vue").PropType<"end" | "start">;
- default: "end" | "start";
- };
- collapsible: {
- type: import("vue").PropType<CollapsibleType>;
- default: CollapsibleType;
- };
- ghost: {
- type: BooleanConstructor;
- default: boolean;
- };
- onChange: {
- type: import("vue").PropType<(key: import("../_util/type").Key | import("../_util/type").Key[]) => void>;
- default: (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- };
- 'onUpdate:activeKey': {
- type: import("vue").PropType<(key: import("../_util/type").Key | import("../_util/type").Key[]) => void>;
- default: (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- };
- }, () => import("../_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
- prefixCls: StringConstructor;
- activeKey: {
- type: import("vue").PropType<import("./commonProps").ActiveKeyType>;
- default: import("./commonProps").ActiveKeyType;
- };
- defaultActiveKey: {
- type: import("vue").PropType<import("./commonProps").ActiveKeyType>;
- default: import("./commonProps").ActiveKeyType;
- };
- accordion: {
- type: BooleanConstructor;
- default: boolean;
- };
- destroyInactivePanel: {
- type: BooleanConstructor;
- default: boolean;
- };
- bordered: {
- type: BooleanConstructor;
- default: boolean;
- };
- expandIcon: {
- type: import("vue").PropType<(panelProps: import("./commonProps").PanelProps) => any>;
- default: (panelProps: import("./commonProps").PanelProps) => any;
- };
- openAnimation: import("vue-types").VueTypeValidableDef<{
- [key: string]: any;
- }> & {
- default: () => {
- [key: string]: any;
- };
- };
- expandIconPosition: {
- type: import("vue").PropType<"end" | "start">;
- default: "end" | "start";
- };
- collapsible: {
- type: import("vue").PropType<CollapsibleType>;
- default: CollapsibleType;
- };
- ghost: {
- type: BooleanConstructor;
- default: boolean;
- };
- onChange: {
- type: import("vue").PropType<(key: import("../_util/type").Key | import("../_util/type").Key[]) => void>;
- default: (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- };
- 'onUpdate:activeKey': {
- type: import("vue").PropType<(key: import("../_util/type").Key | import("../_util/type").Key[]) => void>;
- default: (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- };
- }>>, {
- onChange: (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- expandIcon: (panelProps: import("./commonProps").PanelProps) => any;
- activeKey: import("./commonProps").ActiveKeyType;
- 'onUpdate:activeKey': (key: import("../_util/type").Key | import("../_util/type").Key[]) => void;
- ghost: boolean;
- bordered: boolean;
- openAnimation: {
- [key: string]: any;
- };
- defaultActiveKey: import("./commonProps").ActiveKeyType;
- destroyInactivePanel: boolean;
- accordion: boolean;
- collapsible: CollapsibleType;
- expandIconPosition: "end" | "start";
- }, CustomSlotsType<{
- default?: any;
- expandIcon?: CollapsePanelProps;
- }>>;
- export default _default;
|