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.
18 lines
1004 B
18 lines
1004 B
import type { ExtractPropTypes } from 'vue';
|
|
import type { ZIndexProperty } from 'csstype';
|
|
export declare const affixProps: {
|
|
readonly zIndex: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<ZIndexProperty>, 100, unknown, unknown, unknown>;
|
|
readonly target: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>;
|
|
readonly offset: import("element-plus/es/utils/props").BuildPropReturn<NumberConstructor, 0, unknown, unknown, unknown>;
|
|
readonly position: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "top", unknown, "top" | "bottom", unknown>;
|
|
};
|
|
export declare type AffixProps = ExtractPropTypes<typeof affixProps>;
|
|
export declare const affixEmits: {
|
|
scroll: ({ scrollTop, fixed }: {
|
|
scrollTop: number;
|
|
fixed: boolean;
|
|
}) => boolean;
|
|
change: (fixed: boolean) => boolean;
|
|
};
|
|
export declare type AffixEmits = typeof affixEmits;
|