@bluepic/embed 0.4.0-next.168 → 0.4.0-next.169
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 +137 -137
- package/dist/bluepic-embed.umd.js +153 -153
- package/dist/components/BxTable.vue.d.ts +3 -1
- package/dist/components/TemplateEditor/BatchEditor.vue.d.ts +8 -2
- package/dist/main.cjs +89 -89
- package/dist/main.mjs +13744 -13709
- package/dist/style.css +1 -1
- package/dist/theme.cjs +1 -1
- package/dist/theme.mjs +9 -5
- package/package.json +1 -1
|
@@ -81,8 +81,10 @@ type __VLS_Slots = {
|
|
|
81
81
|
}) => VNode[] | VNode;
|
|
82
82
|
};
|
|
83
83
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
84
|
-
/** The
|
|
84
|
+
/** The outer box — query rows from here (`scrollIntoView` finds the scroller itself). */
|
|
85
85
|
wrapperRef: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
86
|
+
/** BxScrollbar's inner container: the element that actually scrolls. */
|
|
87
|
+
scrollEl: import("vue").ComputedRef<HTMLElement | undefined>;
|
|
86
88
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
87
89
|
fill: boolean;
|
|
88
90
|
bordered: boolean;
|
|
@@ -11,6 +11,8 @@ import type { BatchRowsModel } from '../../util/batch/useBatchRows';
|
|
|
11
11
|
type __VLS_Props = {
|
|
12
12
|
serial?: Template.Serial;
|
|
13
13
|
batch: BatchRowsModel;
|
|
14
|
+
/** The editor's resolved layout. Mobile drops the card chrome and goes full-bleed. */
|
|
15
|
+
layout?: 'mobile' | 'desktop';
|
|
14
16
|
};
|
|
15
17
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
16
18
|
tableRef: import("vue").Ref<({
|
|
@@ -59,6 +61,7 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
|
59
61
|
};
|
|
60
62
|
}> & Readonly<{}>, {
|
|
61
63
|
wrapperRef: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
64
|
+
scrollEl: import("vue").ComputedRef<HTMLElement | undefined>;
|
|
62
65
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
63
66
|
fill: boolean;
|
|
64
67
|
bordered: boolean;
|
|
@@ -121,8 +124,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
|
121
124
|
left?: number;
|
|
122
125
|
right?: number;
|
|
123
126
|
};
|
|
124
|
-
}> & Readonly<{}>, "wrapperRef" | ("fill" | "bordered" | "hoverable" | "radius" | "maxHeight" | "variant" | "columns" | "dense" | "stickyHeader" | "stickyColumns")> & {
|
|
127
|
+
}> & Readonly<{}>, "wrapperRef" | ("fill" | "bordered" | "hoverable" | "radius" | "maxHeight" | "variant" | "columns" | "dense" | "stickyHeader" | "stickyColumns") | "scrollEl"> & {
|
|
125
128
|
wrapperRef: HTMLDivElement | undefined;
|
|
129
|
+
scrollEl: HTMLElement | undefined;
|
|
126
130
|
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
127
131
|
$slots: {
|
|
128
132
|
default?: () => import("vue").VNode[] | import("vue").VNode;
|
|
@@ -177,6 +181,7 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
|
177
181
|
};
|
|
178
182
|
}> & Readonly<{}>, {
|
|
179
183
|
wrapperRef: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
184
|
+
scrollEl: import("vue").ComputedRef<HTMLElement | undefined>;
|
|
180
185
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
181
186
|
fill: boolean;
|
|
182
187
|
bordered: boolean;
|
|
@@ -239,8 +244,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {
|
|
|
239
244
|
left?: number;
|
|
240
245
|
right?: number;
|
|
241
246
|
};
|
|
242
|
-
}> & Readonly<{}>, "wrapperRef" | ("fill" | "bordered" | "hoverable" | "radius" | "maxHeight" | "variant" | "columns" | "dense" | "stickyHeader" | "stickyColumns")> & {
|
|
247
|
+
}> & Readonly<{}>, "wrapperRef" | ("fill" | "bordered" | "hoverable" | "radius" | "maxHeight" | "variant" | "columns" | "dense" | "stickyHeader" | "stickyColumns") | "scrollEl"> & {
|
|
243
248
|
wrapperRef: HTMLDivElement | undefined;
|
|
249
|
+
scrollEl: HTMLElement | undefined;
|
|
244
250
|
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
245
251
|
$slots: {
|
|
246
252
|
default?: () => import("vue").VNode[] | import("vue").VNode;
|