2024-01-29 09:26:07 +08:00
|
|
|
import { type PropType } from 'vue';
|
|
|
|
import type { ExtractPublicPropTypes } from '../../_utils';
|
|
|
|
export declare const collapseItemProps: {
|
|
|
|
readonly title: StringConstructor;
|
|
|
|
readonly name: PropType<string | number>;
|
|
|
|
readonly disabled: BooleanConstructor;
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly displayDirective: PropType<"if" | "show">;
|
2024-01-29 09:26:07 +08:00
|
|
|
};
|
|
|
|
export type CollapseItemProps = ExtractPublicPropTypes<typeof collapseItemProps>;
|
|
|
|
declare const _default: import("vue").DefineComponent<{
|
|
|
|
readonly title: StringConstructor;
|
|
|
|
readonly name: PropType<string | number>;
|
|
|
|
readonly disabled: BooleanConstructor;
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly displayDirective: PropType<"if" | "show">;
|
2024-01-29 09:26:07 +08:00
|
|
|
}, {
|
|
|
|
rtlEnabled: import("vue").Ref<import("../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
|
|
|
|
collapseSlots: Readonly<{
|
|
|
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
|
|
}>;
|
|
|
|
randomName: string;
|
|
|
|
mergedClsPrefix: import("vue").Ref<string>;
|
|
|
|
collapsed: import("vue").ComputedRef<boolean>;
|
|
|
|
triggerAreas: import("vue").Ref<("extra" | "main" | "arrow")[]>;
|
|
|
|
mergedDisplayDirective: import("vue").ComputedRef<"show" | "if">;
|
|
|
|
arrowPlacement: import("vue").ComputedRef<"left" | "right">;
|
|
|
|
handleClick(e: MouseEvent): void;
|
2024-08-02 18:19:39 +08:00
|
|
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
2024-01-29 09:26:07 +08:00
|
|
|
readonly title: StringConstructor;
|
|
|
|
readonly name: PropType<string | number>;
|
|
|
|
readonly disabled: BooleanConstructor;
|
2024-08-02 18:19:39 +08:00
|
|
|
readonly displayDirective: PropType<"if" | "show">;
|
2024-01-29 09:26:07 +08:00
|
|
|
}>>, {
|
|
|
|
readonly disabled: boolean;
|
|
|
|
}, {}>;
|
|
|
|
export default _default;
|