@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
30 lines (29 loc) • 1.06 kB
TypeScript
/**
* Automatically handle horizontally overflowing content by placing it in a NeonSwiper component allowing for smooth
* horizontal scrolling with all input devices.
*/
declare const _default: import("vue").DefineComponent<{
/**
* Display fade in / fade out styling when there is an overflow.
*/
fade: {
type: BooleanConstructor;
default: boolean;
};
}, {
isOverflowing: import("vue").Ref<boolean>;
isScrollStart: import("vue").Ref<boolean>;
isScrollEnd: import("vue").Ref<boolean>;
scrollable: import("vue").Ref<HTMLElement | null>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Display fade in / fade out styling when there is an overflow.
*/
fade: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
fade: boolean;
}, {}>;
export default _default;