beeple-toolkit 1.0.47 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,6 +7,7 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
declare const __VLS_base: import("vue").DefineComponent<ScrollbarProps, {
|
|
8
8
|
scrollToTop: () => void;
|
|
9
9
|
scrollTo: (options: ScrollToOptions) => void;
|
|
10
|
+
recalculate: () => void;
|
|
10
11
|
viewport: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
11
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
13
|
scroll: (event: Event) => any;
|
|
@@ -18,6 +19,8 @@ declare const __VLS_base: import("vue").DefineComponent<ScrollbarProps, {
|
|
|
18
19
|
direction: import("..").ScrollbarDirection;
|
|
19
20
|
showScrolledIndicator: boolean;
|
|
20
21
|
idleTimeout: number;
|
|
22
|
+
observeMutations: boolean;
|
|
23
|
+
observeResize: boolean;
|
|
21
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -193,6 +193,10 @@ export interface ScrollbarProps {
|
|
|
193
193
|
direction?: ScrollbarDirection;
|
|
194
194
|
showScrolledIndicator?: boolean;
|
|
195
195
|
idleTimeout?: number;
|
|
196
|
+
/** Observe deep DOM mutations of the viewport to recompute the thumb. Disable for perf on large, frequently-mutating content and call recalculate() manually. */
|
|
197
|
+
observeMutations?: boolean;
|
|
198
|
+
/** Observe viewport resize to recompute the thumb. */
|
|
199
|
+
observeResize?: boolean;
|
|
196
200
|
}
|
|
197
201
|
export interface TooltipProps {
|
|
198
202
|
title?: string;
|