@bluepic/embed 0.4.0-next.210 → 0.4.0-next.212
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.
- package/dist/bluepic-embed.iife.js +128 -128
- package/dist/bluepic-embed.umd.js +132 -132
- package/dist/components/BxScrollbar.vue.d.ts +7 -0
- package/dist/components/PopoverElement.vue.d.ts +3 -1
- package/dist/main.cjs +81 -81
- package/dist/main.mjs +11977 -11878
- package/dist/style.css +1 -1
- package/dist/util/fieldHints/useFieldHitboxes.d.ts +30 -0
- package/package.json +1 -1
|
@@ -5,6 +5,12 @@ type __VLS_Props = {
|
|
|
5
5
|
scrollDelay?: number;
|
|
6
6
|
/** Delay in ms before the scrollbar fades out after mouse leaves */
|
|
7
7
|
leaveDelay?: number;
|
|
8
|
+
/**
|
|
9
|
+
* Briefly reveal the rail the first time the content turns out to be
|
|
10
|
+
* scrollable. The rails are otherwise hover/scroll-only, which on a touch
|
|
11
|
+
* screen means a clipped list gives no cue at all that there is more.
|
|
12
|
+
*/
|
|
13
|
+
hintScrollable?: boolean;
|
|
8
14
|
};
|
|
9
15
|
declare var __VLS_1: {};
|
|
10
16
|
type __VLS_Slots = {} & {
|
|
@@ -18,6 +24,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
18
24
|
xScrollable: boolean;
|
|
19
25
|
scrollDelay: number;
|
|
20
26
|
leaveDelay: number;
|
|
27
|
+
hintScrollable: boolean;
|
|
21
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
29
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
30
|
export default _default;
|
|
@@ -21,9 +21,11 @@ type __VLS_Props = {
|
|
|
21
21
|
capturedContext?: Record<string | symbol, any>;
|
|
22
22
|
popoverMaxHeight?: string;
|
|
23
23
|
};
|
|
24
|
-
declare var __VLS_1: {};
|
|
24
|
+
declare var __VLS_1: {}, __VLS_6: {};
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
26
|
default?: (props: typeof __VLS_1) => any;
|
|
27
|
+
} & {
|
|
28
|
+
default?: (props: typeof __VLS_6) => any;
|
|
27
29
|
};
|
|
28
30
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
31
|
close: () => any;
|