@icij/murmur-next 4.0.6 → 4.0.7
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/lib/components/AccordionStep.vue.d.ts +2 -1
- package/dist/lib/components/AccordionWrapper.vue.d.ts +2 -1
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +5 -4
- package/dist/lib/components/BrandExpansion.vue.d.ts +3 -2
- package/dist/lib/components/ConfirmButton.vue.d.ts +2 -1
- package/dist/lib/components/ContentPlaceholder.vue.d.ts +3 -2
- package/dist/lib/components/CustomPagination.vue.d.ts +6 -5
- package/dist/lib/components/DonateForm.vue.d.ts +5 -4
- package/dist/lib/components/EmbedForm.vue.d.ts +5 -4
- package/dist/lib/components/FollowUsPopover.vue.d.ts +5 -4
- package/dist/lib/components/GenericFooter.vue.d.ts +2 -1
- package/dist/lib/components/GenericHeader.vue.d.ts +232 -231
- package/dist/lib/components/HapticCopy.vue.d.ts +7 -5
- package/dist/lib/components/ImddbHeader.vue.d.ts +231 -230
- package/dist/lib/components/OrdinalLegend.vue.d.ts +2 -1
- package/dist/lib/components/RangePicker.vue.d.ts +3 -2
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +4 -2
- package/dist/lib/components/ScaleLegend.vue.d.ts +1 -1
- package/dist/lib/components/SelectableDropdown.vue.d.ts +3 -2
- package/dist/lib/components/SharingOptions.vue.d.ts +2 -1
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +2 -1
- package/dist/lib/components/SignUpForm.vue.d.ts +6 -5
- package/dist/lib/components/SlideUpDown.vue.d.ts +3 -2
- package/dist/lib/components/TexturedDeck.vue.d.ts +2 -1
- package/dist/lib/components/TinyPagination.vue.d.ts +9 -8
- package/dist/lib/composables/chart.d.ts +2 -1
- package/dist/lib/composables/resizeObserver.d.ts +2 -1
- package/dist/lib/composables/sendEmail.d.ts +2 -1
- package/dist/lib/config.d.ts +0 -1
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +2 -1
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +1 -1
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +1 -1
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +1 -1
- package/dist/lib/i18n.d.ts +2 -2
- package/dist/lib/main.d.ts +10 -4
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +2 -2
- package/dist/lib/maps/SymbolMap.vue.d.ts +2 -1
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +15991 -17076
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +52 -60
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/dist/lib/types.d.ts +6 -3
- package/dist/lib/utils/assets.d.ts +1 -1
- package/dist/lib/utils/iframe-resizer.d.ts +1 -1
- package/dist/lib/utils/placeholder.d.ts +0 -1
- package/dist/lib/utils/placeholderTypes.d.ts +3 -2
- package/lib/i18n.ts +5 -4
- package/lib/main.ts +22 -6
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
3
|
+
import { type PropType, ComponentPublicInstance } from '../../node_modules/vue';
|
|
2
4
|
import { BrandMode } from '../enums';
|
|
3
|
-
|
|
4
5
|
type BrandOptions = {
|
|
5
6
|
noBorder: boolean;
|
|
6
7
|
size: number;
|
|
@@ -47,10 +48,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
47
48
|
default: () => any;
|
|
48
49
|
};
|
|
49
50
|
}, {
|
|
50
|
-
t: import(
|
|
51
|
-
[x: string]: import(
|
|
52
|
-
}, string, import(
|
|
53
|
-
[x: string]: import(
|
|
51
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
52
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
53
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
54
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
54
55
|
}>, never, string, string>;
|
|
55
56
|
rootElement: import('../../node_modules/vue').ComputedRef<string>;
|
|
56
57
|
showFollowUsPopover: import('../../node_modules/vue').Ref<boolean>;
|
|
@@ -65,11 +66,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
65
66
|
default: undefined;
|
|
66
67
|
};
|
|
67
68
|
offset: {
|
|
68
|
-
type: PropType<import(
|
|
69
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
|
|
69
70
|
default: null;
|
|
70
71
|
};
|
|
71
72
|
click: {
|
|
72
|
-
type: PropType<import(
|
|
73
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
73
74
|
default: boolean;
|
|
74
75
|
};
|
|
75
76
|
title: {
|
|
@@ -77,11 +78,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
77
78
|
default: undefined;
|
|
78
79
|
};
|
|
79
80
|
variant: {
|
|
80
|
-
type: PropType<keyof import(
|
|
81
|
+
type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
|
|
81
82
|
default: null;
|
|
82
83
|
};
|
|
83
84
|
html: {
|
|
84
|
-
type: PropType<import(
|
|
85
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
85
86
|
default: boolean;
|
|
86
87
|
};
|
|
87
88
|
target: {
|
|
@@ -99,15 +100,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
99
100
|
};
|
|
100
101
|
};
|
|
101
102
|
tooltip: {
|
|
102
|
-
type: PropType<import(
|
|
103
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
103
104
|
default: boolean;
|
|
104
105
|
};
|
|
105
106
|
boundary: {
|
|
106
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
107
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
|
|
107
108
|
default: string;
|
|
108
109
|
};
|
|
109
110
|
boundaryPadding: {
|
|
110
|
-
type: PropType<import(
|
|
111
|
+
type: PropType<import("@floating-ui/utils").Padding>;
|
|
111
112
|
default: undefined;
|
|
112
113
|
};
|
|
113
114
|
customClass: {
|
|
@@ -121,19 +122,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
121
122
|
fn: (state: {
|
|
122
123
|
x: number;
|
|
123
124
|
y: number;
|
|
124
|
-
placement: import(
|
|
125
|
-
strategy: import(
|
|
126
|
-
initialPlacement: import(
|
|
127
|
-
middlewareData: import(
|
|
128
|
-
rects: import(
|
|
129
|
-
platform: import(
|
|
130
|
-
elements: import(
|
|
131
|
-
}) => import(
|
|
125
|
+
placement: import("@floating-ui/utils").Placement;
|
|
126
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
127
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
128
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
129
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
130
|
+
platform: import("@floating-ui/core").Platform;
|
|
131
|
+
elements: import("@floating-ui/dom").Elements;
|
|
132
|
+
}) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
|
|
132
133
|
}[]>;
|
|
133
134
|
default: undefined;
|
|
134
135
|
};
|
|
135
136
|
hide: {
|
|
136
|
-
type: PropType<import(
|
|
137
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
137
138
|
default: undefined;
|
|
138
139
|
};
|
|
139
140
|
id: {
|
|
@@ -141,55 +142,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
141
142
|
default: undefined;
|
|
142
143
|
};
|
|
143
144
|
inline: {
|
|
144
|
-
type: PropType<import(
|
|
145
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
145
146
|
default: boolean;
|
|
146
147
|
};
|
|
147
148
|
manual: {
|
|
148
|
-
type: PropType<import(
|
|
149
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
149
150
|
default: boolean;
|
|
150
151
|
};
|
|
151
152
|
modelValue: {
|
|
152
|
-
type: PropType<import(
|
|
153
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
153
154
|
default: boolean;
|
|
154
155
|
};
|
|
155
156
|
noAutoClose: {
|
|
156
|
-
type: PropType<import(
|
|
157
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
157
158
|
default: boolean;
|
|
158
159
|
};
|
|
159
160
|
noFade: {
|
|
160
|
-
type: PropType<import(
|
|
161
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
161
162
|
default: boolean;
|
|
162
163
|
};
|
|
163
164
|
noFlip: {
|
|
164
|
-
type: PropType<import(
|
|
165
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
165
166
|
default: boolean;
|
|
166
167
|
};
|
|
167
168
|
noHide: {
|
|
168
|
-
type: PropType<import(
|
|
169
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
169
170
|
default: boolean;
|
|
170
171
|
};
|
|
171
172
|
noShift: {
|
|
172
|
-
type: PropType<import(
|
|
173
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
173
174
|
default: boolean;
|
|
174
175
|
};
|
|
175
176
|
noSize: {
|
|
176
|
-
type: PropType<import(
|
|
177
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
177
178
|
default: boolean;
|
|
178
179
|
};
|
|
179
180
|
noninteractive: {
|
|
180
|
-
type: PropType<import(
|
|
181
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
181
182
|
default: boolean;
|
|
182
183
|
};
|
|
183
184
|
placement: {
|
|
184
|
-
type: PropType<import(
|
|
185
|
+
type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
|
|
185
186
|
default: string;
|
|
186
187
|
};
|
|
187
188
|
persistent: {
|
|
188
|
-
type: PropType<import(
|
|
189
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
189
190
|
default: boolean;
|
|
190
191
|
};
|
|
191
192
|
realtime: {
|
|
192
|
-
type: PropType<import(
|
|
193
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
193
194
|
default: boolean;
|
|
194
195
|
};
|
|
195
196
|
reference: {
|
|
@@ -197,29 +198,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
197
198
|
default: null;
|
|
198
199
|
};
|
|
199
200
|
strategy: {
|
|
200
|
-
type: PropType<import(
|
|
201
|
+
type: PropType<import("@floating-ui/utils").Strategy>;
|
|
201
202
|
default: string;
|
|
202
203
|
};
|
|
203
204
|
}>> & {
|
|
204
|
-
onHidden?: ((value: import(
|
|
205
|
+
onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
205
206
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
206
|
-
onShow?: ((value: import(
|
|
207
|
-
onHide?: ((value: import(
|
|
207
|
+
onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
208
|
+
onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
208
209
|
"onHide-prevented"?: (() => any) | undefined;
|
|
209
210
|
"onShow-prevented"?: (() => any) | undefined;
|
|
210
|
-
onShown?: ((value: import(
|
|
211
|
+
onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
211
212
|
}, {
|
|
212
213
|
hide: (e: Readonly<Event>) => void;
|
|
213
214
|
show: () => void;
|
|
214
215
|
toggle: (e?: Event | undefined) => void;
|
|
215
216
|
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
|
|
216
|
-
hidden: (value: import(
|
|
217
|
+
hidden: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
217
218
|
"update:modelValue": (value: boolean) => void;
|
|
218
|
-
show: (value: import(
|
|
219
|
-
hide: (value: import(
|
|
219
|
+
show: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
220
|
+
hide: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
220
221
|
"hide-prevented": () => void;
|
|
221
222
|
"show-prevented": () => void;
|
|
222
|
-
shown: (value: import(
|
|
223
|
+
shown: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
223
224
|
}, import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
224
225
|
content: {
|
|
225
226
|
type: PropType<string>;
|
|
@@ -230,11 +231,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
230
231
|
default: undefined;
|
|
231
232
|
};
|
|
232
233
|
offset: {
|
|
233
|
-
type: PropType<import(
|
|
234
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
|
|
234
235
|
default: null;
|
|
235
236
|
};
|
|
236
237
|
click: {
|
|
237
|
-
type: PropType<import(
|
|
238
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
238
239
|
default: boolean;
|
|
239
240
|
};
|
|
240
241
|
title: {
|
|
@@ -242,11 +243,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
242
243
|
default: undefined;
|
|
243
244
|
};
|
|
244
245
|
variant: {
|
|
245
|
-
type: PropType<keyof import(
|
|
246
|
+
type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
|
|
246
247
|
default: null;
|
|
247
248
|
};
|
|
248
249
|
html: {
|
|
249
|
-
type: PropType<import(
|
|
250
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
250
251
|
default: boolean;
|
|
251
252
|
};
|
|
252
253
|
target: {
|
|
@@ -264,15 +265,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
264
265
|
};
|
|
265
266
|
};
|
|
266
267
|
tooltip: {
|
|
267
|
-
type: PropType<import(
|
|
268
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
268
269
|
default: boolean;
|
|
269
270
|
};
|
|
270
271
|
boundary: {
|
|
271
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
272
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
|
|
272
273
|
default: string;
|
|
273
274
|
};
|
|
274
275
|
boundaryPadding: {
|
|
275
|
-
type: PropType<import(
|
|
276
|
+
type: PropType<import("@floating-ui/utils").Padding>;
|
|
276
277
|
default: undefined;
|
|
277
278
|
};
|
|
278
279
|
customClass: {
|
|
@@ -286,19 +287,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
286
287
|
fn: (state: {
|
|
287
288
|
x: number;
|
|
288
289
|
y: number;
|
|
289
|
-
placement: import(
|
|
290
|
-
strategy: import(
|
|
291
|
-
initialPlacement: import(
|
|
292
|
-
middlewareData: import(
|
|
293
|
-
rects: import(
|
|
294
|
-
platform: import(
|
|
295
|
-
elements: import(
|
|
296
|
-
}) => import(
|
|
290
|
+
placement: import("@floating-ui/utils").Placement;
|
|
291
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
292
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
293
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
294
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
295
|
+
platform: import("@floating-ui/core").Platform;
|
|
296
|
+
elements: import("@floating-ui/dom").Elements;
|
|
297
|
+
}) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
|
|
297
298
|
}[]>;
|
|
298
299
|
default: undefined;
|
|
299
300
|
};
|
|
300
301
|
hide: {
|
|
301
|
-
type: PropType<import(
|
|
302
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
302
303
|
default: undefined;
|
|
303
304
|
};
|
|
304
305
|
id: {
|
|
@@ -306,55 +307,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
306
307
|
default: undefined;
|
|
307
308
|
};
|
|
308
309
|
inline: {
|
|
309
|
-
type: PropType<import(
|
|
310
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
310
311
|
default: boolean;
|
|
311
312
|
};
|
|
312
313
|
manual: {
|
|
313
|
-
type: PropType<import(
|
|
314
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
314
315
|
default: boolean;
|
|
315
316
|
};
|
|
316
317
|
modelValue: {
|
|
317
|
-
type: PropType<import(
|
|
318
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
318
319
|
default: boolean;
|
|
319
320
|
};
|
|
320
321
|
noAutoClose: {
|
|
321
|
-
type: PropType<import(
|
|
322
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
322
323
|
default: boolean;
|
|
323
324
|
};
|
|
324
325
|
noFade: {
|
|
325
|
-
type: PropType<import(
|
|
326
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
326
327
|
default: boolean;
|
|
327
328
|
};
|
|
328
329
|
noFlip: {
|
|
329
|
-
type: PropType<import(
|
|
330
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
330
331
|
default: boolean;
|
|
331
332
|
};
|
|
332
333
|
noHide: {
|
|
333
|
-
type: PropType<import(
|
|
334
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
334
335
|
default: boolean;
|
|
335
336
|
};
|
|
336
337
|
noShift: {
|
|
337
|
-
type: PropType<import(
|
|
338
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
338
339
|
default: boolean;
|
|
339
340
|
};
|
|
340
341
|
noSize: {
|
|
341
|
-
type: PropType<import(
|
|
342
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
342
343
|
default: boolean;
|
|
343
344
|
};
|
|
344
345
|
noninteractive: {
|
|
345
|
-
type: PropType<import(
|
|
346
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
346
347
|
default: boolean;
|
|
347
348
|
};
|
|
348
349
|
placement: {
|
|
349
|
-
type: PropType<import(
|
|
350
|
+
type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
|
|
350
351
|
default: string;
|
|
351
352
|
};
|
|
352
353
|
persistent: {
|
|
353
|
-
type: PropType<import(
|
|
354
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
354
355
|
default: boolean;
|
|
355
356
|
};
|
|
356
357
|
realtime: {
|
|
357
|
-
type: PropType<import(
|
|
358
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
358
359
|
default: boolean;
|
|
359
360
|
};
|
|
360
361
|
reference: {
|
|
@@ -362,30 +363,30 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
362
363
|
default: null;
|
|
363
364
|
};
|
|
364
365
|
strategy: {
|
|
365
|
-
type: PropType<import(
|
|
366
|
+
type: PropType<import("@floating-ui/utils").Strategy>;
|
|
366
367
|
default: string;
|
|
367
368
|
};
|
|
368
369
|
}>> & {
|
|
369
|
-
onHidden?: ((value: import(
|
|
370
|
+
onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
370
371
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
371
|
-
onShow?: ((value: import(
|
|
372
|
-
onHide?: ((value: import(
|
|
372
|
+
onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
373
|
+
onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
373
374
|
"onHide-prevented"?: (() => any) | undefined;
|
|
374
375
|
"onShow-prevented"?: (() => any) | undefined;
|
|
375
|
-
onShown?: ((value: import(
|
|
376
|
+
onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
376
377
|
}, {
|
|
377
|
-
offset: import(
|
|
378
|
+
offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
|
|
378
379
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
379
380
|
title: string;
|
|
380
|
-
click: import(
|
|
381
|
+
click: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
381
382
|
id: string;
|
|
382
|
-
html: import(
|
|
383
|
-
variant: keyof import(
|
|
384
|
-
modelValue: import(
|
|
385
|
-
hide: import(
|
|
386
|
-
manual: import(
|
|
387
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
388
|
-
boundaryPadding: import(
|
|
383
|
+
html: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
384
|
+
variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
|
|
385
|
+
modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
386
|
+
hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
387
|
+
manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
388
|
+
boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
|
|
389
|
+
boundaryPadding: import("@floating-ui/utils").Padding;
|
|
389
390
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
390
391
|
content: string;
|
|
391
392
|
customClass: any;
|
|
@@ -399,29 +400,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
399
400
|
fn: (state: {
|
|
400
401
|
x: number;
|
|
401
402
|
y: number;
|
|
402
|
-
placement: import(
|
|
403
|
-
strategy: import(
|
|
404
|
-
initialPlacement: import(
|
|
403
|
+
placement: import("@floating-ui/utils").Placement;
|
|
404
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
405
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
405
406
|
middlewareData: any;
|
|
406
|
-
rects: import(
|
|
407
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
407
408
|
platform: any;
|
|
408
|
-
elements: import(
|
|
409
|
+
elements: import("@floating-ui/dom").Elements;
|
|
409
410
|
}) => any;
|
|
410
411
|
}[];
|
|
411
|
-
inline: import(
|
|
412
|
-
noAutoClose: import(
|
|
413
|
-
noFade: import(
|
|
414
|
-
noFlip: import(
|
|
415
|
-
noHide: import(
|
|
416
|
-
noShift: import(
|
|
417
|
-
noSize: import(
|
|
418
|
-
noninteractive: import(
|
|
419
|
-
placement: import(
|
|
420
|
-
persistent: import(
|
|
421
|
-
realtime: import(
|
|
412
|
+
inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
413
|
+
noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
414
|
+
noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
415
|
+
noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
416
|
+
noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
417
|
+
noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
418
|
+
noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
419
|
+
noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
420
|
+
placement: import("bootstrap-vue-next").PopoverPlacement;
|
|
421
|
+
persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
422
|
+
realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
422
423
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
423
|
-
strategy: import(
|
|
424
|
-
tooltip: import(
|
|
424
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
425
|
+
tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
425
426
|
}, true, {}, {}, {
|
|
426
427
|
P: {};
|
|
427
428
|
B: {};
|
|
@@ -439,11 +440,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
439
440
|
default: undefined;
|
|
440
441
|
};
|
|
441
442
|
offset: {
|
|
442
|
-
type: PropType<import(
|
|
443
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
|
|
443
444
|
default: null;
|
|
444
445
|
};
|
|
445
446
|
click: {
|
|
446
|
-
type: PropType<import(
|
|
447
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
447
448
|
default: boolean;
|
|
448
449
|
};
|
|
449
450
|
title: {
|
|
@@ -451,11 +452,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
451
452
|
default: undefined;
|
|
452
453
|
};
|
|
453
454
|
variant: {
|
|
454
|
-
type: PropType<keyof import(
|
|
455
|
+
type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
|
|
455
456
|
default: null;
|
|
456
457
|
};
|
|
457
458
|
html: {
|
|
458
|
-
type: PropType<import(
|
|
459
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
459
460
|
default: boolean;
|
|
460
461
|
};
|
|
461
462
|
target: {
|
|
@@ -473,15 +474,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
473
474
|
};
|
|
474
475
|
};
|
|
475
476
|
tooltip: {
|
|
476
|
-
type: PropType<import(
|
|
477
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
477
478
|
default: boolean;
|
|
478
479
|
};
|
|
479
480
|
boundary: {
|
|
480
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
481
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
|
|
481
482
|
default: string;
|
|
482
483
|
};
|
|
483
484
|
boundaryPadding: {
|
|
484
|
-
type: PropType<import(
|
|
485
|
+
type: PropType<import("@floating-ui/utils").Padding>;
|
|
485
486
|
default: undefined;
|
|
486
487
|
};
|
|
487
488
|
customClass: {
|
|
@@ -495,19 +496,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
495
496
|
fn: (state: {
|
|
496
497
|
x: number;
|
|
497
498
|
y: number;
|
|
498
|
-
placement: import(
|
|
499
|
-
strategy: import(
|
|
500
|
-
initialPlacement: import(
|
|
501
|
-
middlewareData: import(
|
|
502
|
-
rects: import(
|
|
503
|
-
platform: import(
|
|
504
|
-
elements: import(
|
|
505
|
-
}) => import(
|
|
499
|
+
placement: import("@floating-ui/utils").Placement;
|
|
500
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
501
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
502
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
503
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
504
|
+
platform: import("@floating-ui/core").Platform;
|
|
505
|
+
elements: import("@floating-ui/dom").Elements;
|
|
506
|
+
}) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
|
|
506
507
|
}[]>;
|
|
507
508
|
default: undefined;
|
|
508
509
|
};
|
|
509
510
|
hide: {
|
|
510
|
-
type: PropType<import(
|
|
511
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
511
512
|
default: undefined;
|
|
512
513
|
};
|
|
513
514
|
id: {
|
|
@@ -515,55 +516,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
515
516
|
default: undefined;
|
|
516
517
|
};
|
|
517
518
|
inline: {
|
|
518
|
-
type: PropType<import(
|
|
519
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
519
520
|
default: boolean;
|
|
520
521
|
};
|
|
521
522
|
manual: {
|
|
522
|
-
type: PropType<import(
|
|
523
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
523
524
|
default: boolean;
|
|
524
525
|
};
|
|
525
526
|
modelValue: {
|
|
526
|
-
type: PropType<import(
|
|
527
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
527
528
|
default: boolean;
|
|
528
529
|
};
|
|
529
530
|
noAutoClose: {
|
|
530
|
-
type: PropType<import(
|
|
531
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
531
532
|
default: boolean;
|
|
532
533
|
};
|
|
533
534
|
noFade: {
|
|
534
|
-
type: PropType<import(
|
|
535
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
535
536
|
default: boolean;
|
|
536
537
|
};
|
|
537
538
|
noFlip: {
|
|
538
|
-
type: PropType<import(
|
|
539
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
539
540
|
default: boolean;
|
|
540
541
|
};
|
|
541
542
|
noHide: {
|
|
542
|
-
type: PropType<import(
|
|
543
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
543
544
|
default: boolean;
|
|
544
545
|
};
|
|
545
546
|
noShift: {
|
|
546
|
-
type: PropType<import(
|
|
547
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
547
548
|
default: boolean;
|
|
548
549
|
};
|
|
549
550
|
noSize: {
|
|
550
|
-
type: PropType<import(
|
|
551
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
551
552
|
default: boolean;
|
|
552
553
|
};
|
|
553
554
|
noninteractive: {
|
|
554
|
-
type: PropType<import(
|
|
555
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
555
556
|
default: boolean;
|
|
556
557
|
};
|
|
557
558
|
placement: {
|
|
558
|
-
type: PropType<import(
|
|
559
|
+
type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
|
|
559
560
|
default: string;
|
|
560
561
|
};
|
|
561
562
|
persistent: {
|
|
562
|
-
type: PropType<import(
|
|
563
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
563
564
|
default: boolean;
|
|
564
565
|
};
|
|
565
566
|
realtime: {
|
|
566
|
-
type: PropType<import(
|
|
567
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
567
568
|
default: boolean;
|
|
568
569
|
};
|
|
569
570
|
reference: {
|
|
@@ -571,34 +572,34 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
571
572
|
default: null;
|
|
572
573
|
};
|
|
573
574
|
strategy: {
|
|
574
|
-
type: PropType<import(
|
|
575
|
+
type: PropType<import("@floating-ui/utils").Strategy>;
|
|
575
576
|
default: string;
|
|
576
577
|
};
|
|
577
578
|
}>> & {
|
|
578
|
-
onHidden?: ((value: import(
|
|
579
|
+
onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
579
580
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
580
|
-
onShow?: ((value: import(
|
|
581
|
-
onHide?: ((value: import(
|
|
581
|
+
onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
582
|
+
onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
582
583
|
"onHide-prevented"?: (() => any) | undefined;
|
|
583
584
|
"onShow-prevented"?: (() => any) | undefined;
|
|
584
|
-
onShown?: ((value: import(
|
|
585
|
+
onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
585
586
|
}, {
|
|
586
587
|
hide: (e: Readonly<Event>) => void;
|
|
587
588
|
show: () => void;
|
|
588
589
|
toggle: (e?: Event | undefined) => void;
|
|
589
590
|
}, {}, {}, {}, {
|
|
590
|
-
offset: import(
|
|
591
|
+
offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
|
|
591
592
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
592
593
|
title: string;
|
|
593
|
-
click: import(
|
|
594
|
+
click: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
594
595
|
id: string;
|
|
595
|
-
html: import(
|
|
596
|
-
variant: keyof import(
|
|
597
|
-
modelValue: import(
|
|
598
|
-
hide: import(
|
|
599
|
-
manual: import(
|
|
600
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
601
|
-
boundaryPadding: import(
|
|
596
|
+
html: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
597
|
+
variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
|
|
598
|
+
modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
599
|
+
hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
600
|
+
manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
601
|
+
boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
|
|
602
|
+
boundaryPadding: import("@floating-ui/utils").Padding;
|
|
602
603
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
603
604
|
content: string;
|
|
604
605
|
customClass: any;
|
|
@@ -612,29 +613,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
612
613
|
fn: (state: {
|
|
613
614
|
x: number;
|
|
614
615
|
y: number;
|
|
615
|
-
placement: import(
|
|
616
|
-
strategy: import(
|
|
617
|
-
initialPlacement: import(
|
|
616
|
+
placement: import("@floating-ui/utils").Placement;
|
|
617
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
618
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
618
619
|
middlewareData: any;
|
|
619
|
-
rects: import(
|
|
620
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
620
621
|
platform: any;
|
|
621
|
-
elements: import(
|
|
622
|
+
elements: import("@floating-ui/dom").Elements;
|
|
622
623
|
}) => any;
|
|
623
624
|
}[];
|
|
624
|
-
inline: import(
|
|
625
|
-
noAutoClose: import(
|
|
626
|
-
noFade: import(
|
|
627
|
-
noFlip: import(
|
|
628
|
-
noHide: import(
|
|
629
|
-
noShift: import(
|
|
630
|
-
noSize: import(
|
|
631
|
-
noninteractive: import(
|
|
632
|
-
placement: import(
|
|
633
|
-
persistent: import(
|
|
634
|
-
realtime: import(
|
|
625
|
+
inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
626
|
+
noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
627
|
+
noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
628
|
+
noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
629
|
+
noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
630
|
+
noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
631
|
+
noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
632
|
+
noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
633
|
+
placement: import("bootstrap-vue-next").PopoverPlacement;
|
|
634
|
+
persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
635
|
+
realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
635
636
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
636
|
-
strategy: import(
|
|
637
|
-
tooltip: import(
|
|
637
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
638
|
+
tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
638
639
|
}>;
|
|
639
640
|
__isFragment?: undefined;
|
|
640
641
|
__isTeleport?: undefined;
|
|
@@ -649,11 +650,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
649
650
|
default: undefined;
|
|
650
651
|
};
|
|
651
652
|
offset: {
|
|
652
|
-
type: PropType<import(
|
|
653
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
|
|
653
654
|
default: null;
|
|
654
655
|
};
|
|
655
656
|
click: {
|
|
656
|
-
type: PropType<import(
|
|
657
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
657
658
|
default: boolean;
|
|
658
659
|
};
|
|
659
660
|
title: {
|
|
@@ -661,11 +662,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
661
662
|
default: undefined;
|
|
662
663
|
};
|
|
663
664
|
variant: {
|
|
664
|
-
type: PropType<keyof import(
|
|
665
|
+
type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
|
|
665
666
|
default: null;
|
|
666
667
|
};
|
|
667
668
|
html: {
|
|
668
|
-
type: PropType<import(
|
|
669
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
669
670
|
default: boolean;
|
|
670
671
|
};
|
|
671
672
|
target: {
|
|
@@ -683,15 +684,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
683
684
|
};
|
|
684
685
|
};
|
|
685
686
|
tooltip: {
|
|
686
|
-
type: PropType<import(
|
|
687
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
687
688
|
default: boolean;
|
|
688
689
|
};
|
|
689
690
|
boundary: {
|
|
690
|
-
type: PropType<Element | "clippingAncestors" | Element[] | import(
|
|
691
|
+
type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
|
|
691
692
|
default: string;
|
|
692
693
|
};
|
|
693
694
|
boundaryPadding: {
|
|
694
|
-
type: PropType<import(
|
|
695
|
+
type: PropType<import("@floating-ui/utils").Padding>;
|
|
695
696
|
default: undefined;
|
|
696
697
|
};
|
|
697
698
|
customClass: {
|
|
@@ -705,19 +706,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
705
706
|
fn: (state: {
|
|
706
707
|
x: number;
|
|
707
708
|
y: number;
|
|
708
|
-
placement: import(
|
|
709
|
-
strategy: import(
|
|
710
|
-
initialPlacement: import(
|
|
711
|
-
middlewareData: import(
|
|
712
|
-
rects: import(
|
|
713
|
-
platform: import(
|
|
714
|
-
elements: import(
|
|
715
|
-
}) => import(
|
|
709
|
+
placement: import("@floating-ui/utils").Placement;
|
|
710
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
711
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
712
|
+
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
713
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
714
|
+
platform: import("@floating-ui/core").Platform;
|
|
715
|
+
elements: import("@floating-ui/dom").Elements;
|
|
716
|
+
}) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
|
|
716
717
|
}[]>;
|
|
717
718
|
default: undefined;
|
|
718
719
|
};
|
|
719
720
|
hide: {
|
|
720
|
-
type: PropType<import(
|
|
721
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
721
722
|
default: undefined;
|
|
722
723
|
};
|
|
723
724
|
id: {
|
|
@@ -725,55 +726,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
725
726
|
default: undefined;
|
|
726
727
|
};
|
|
727
728
|
inline: {
|
|
728
|
-
type: PropType<import(
|
|
729
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
729
730
|
default: boolean;
|
|
730
731
|
};
|
|
731
732
|
manual: {
|
|
732
|
-
type: PropType<import(
|
|
733
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
733
734
|
default: boolean;
|
|
734
735
|
};
|
|
735
736
|
modelValue: {
|
|
736
|
-
type: PropType<import(
|
|
737
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
737
738
|
default: boolean;
|
|
738
739
|
};
|
|
739
740
|
noAutoClose: {
|
|
740
|
-
type: PropType<import(
|
|
741
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
741
742
|
default: boolean;
|
|
742
743
|
};
|
|
743
744
|
noFade: {
|
|
744
|
-
type: PropType<import(
|
|
745
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
745
746
|
default: boolean;
|
|
746
747
|
};
|
|
747
748
|
noFlip: {
|
|
748
|
-
type: PropType<import(
|
|
749
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
749
750
|
default: boolean;
|
|
750
751
|
};
|
|
751
752
|
noHide: {
|
|
752
|
-
type: PropType<import(
|
|
753
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
753
754
|
default: boolean;
|
|
754
755
|
};
|
|
755
756
|
noShift: {
|
|
756
|
-
type: PropType<import(
|
|
757
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
757
758
|
default: boolean;
|
|
758
759
|
};
|
|
759
760
|
noSize: {
|
|
760
|
-
type: PropType<import(
|
|
761
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
761
762
|
default: boolean;
|
|
762
763
|
};
|
|
763
764
|
noninteractive: {
|
|
764
|
-
type: PropType<import(
|
|
765
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
765
766
|
default: boolean;
|
|
766
767
|
};
|
|
767
768
|
placement: {
|
|
768
|
-
type: PropType<import(
|
|
769
|
+
type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
|
|
769
770
|
default: string;
|
|
770
771
|
};
|
|
771
772
|
persistent: {
|
|
772
|
-
type: PropType<import(
|
|
773
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
773
774
|
default: boolean;
|
|
774
775
|
};
|
|
775
776
|
realtime: {
|
|
776
|
-
type: PropType<import(
|
|
777
|
+
type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
|
|
777
778
|
default: boolean;
|
|
778
779
|
};
|
|
779
780
|
reference: {
|
|
@@ -781,42 +782,42 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
781
782
|
default: null;
|
|
782
783
|
};
|
|
783
784
|
strategy: {
|
|
784
|
-
type: PropType<import(
|
|
785
|
+
type: PropType<import("@floating-ui/utils").Strategy>;
|
|
785
786
|
default: string;
|
|
786
787
|
};
|
|
787
788
|
}>> & {
|
|
788
|
-
onHidden?: ((value: import(
|
|
789
|
+
onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
789
790
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
790
|
-
onShow?: ((value: import(
|
|
791
|
-
onHide?: ((value: import(
|
|
791
|
+
onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
792
|
+
onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
792
793
|
"onHide-prevented"?: (() => any) | undefined;
|
|
793
794
|
"onShow-prevented"?: (() => any) | undefined;
|
|
794
|
-
onShown?: ((value: import(
|
|
795
|
+
onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
|
|
795
796
|
}, {
|
|
796
797
|
hide: (e: Readonly<Event>) => void;
|
|
797
798
|
show: () => void;
|
|
798
799
|
toggle: (e?: Event | undefined) => void;
|
|
799
800
|
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
|
|
800
|
-
hidden: (value: import(
|
|
801
|
+
hidden: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
801
802
|
"update:modelValue": (value: boolean) => void;
|
|
802
|
-
show: (value: import(
|
|
803
|
-
hide: (value: import(
|
|
803
|
+
show: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
804
|
+
hide: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
804
805
|
"hide-prevented": () => void;
|
|
805
806
|
"show-prevented": () => void;
|
|
806
|
-
shown: (value: import(
|
|
807
|
+
shown: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
|
|
807
808
|
}, string, {
|
|
808
|
-
offset: import(
|
|
809
|
+
offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
|
|
809
810
|
target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
810
811
|
title: string;
|
|
811
|
-
click: import(
|
|
812
|
+
click: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
812
813
|
id: string;
|
|
813
|
-
html: import(
|
|
814
|
-
variant: keyof import(
|
|
815
|
-
modelValue: import(
|
|
816
|
-
hide: import(
|
|
817
|
-
manual: import(
|
|
818
|
-
boundary: Element | "clippingAncestors" | Element[] | import(
|
|
819
|
-
boundaryPadding: import(
|
|
814
|
+
html: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
815
|
+
variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
|
|
816
|
+
modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
817
|
+
hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
818
|
+
manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
819
|
+
boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
|
|
820
|
+
boundaryPadding: import("@floating-ui/utils").Padding;
|
|
820
821
|
container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
|
|
821
822
|
content: string;
|
|
822
823
|
customClass: any;
|
|
@@ -830,29 +831,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
830
831
|
fn: (state: {
|
|
831
832
|
x: number;
|
|
832
833
|
y: number;
|
|
833
|
-
placement: import(
|
|
834
|
-
strategy: import(
|
|
835
|
-
initialPlacement: import(
|
|
834
|
+
placement: import("@floating-ui/utils").Placement;
|
|
835
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
836
|
+
initialPlacement: import("@floating-ui/utils").Placement;
|
|
836
837
|
middlewareData: any;
|
|
837
|
-
rects: import(
|
|
838
|
+
rects: import("@floating-ui/utils").ElementRects;
|
|
838
839
|
platform: any;
|
|
839
|
-
elements: import(
|
|
840
|
+
elements: import("@floating-ui/dom").Elements;
|
|
840
841
|
}) => any;
|
|
841
842
|
}[];
|
|
842
|
-
inline: import(
|
|
843
|
-
noAutoClose: import(
|
|
844
|
-
noFade: import(
|
|
845
|
-
noFlip: import(
|
|
846
|
-
noHide: import(
|
|
847
|
-
noShift: import(
|
|
848
|
-
noSize: import(
|
|
849
|
-
noninteractive: import(
|
|
850
|
-
placement: import(
|
|
851
|
-
persistent: import(
|
|
852
|
-
realtime: import(
|
|
843
|
+
inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
844
|
+
noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
845
|
+
noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
846
|
+
noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
847
|
+
noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
848
|
+
noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
849
|
+
noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
850
|
+
noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
851
|
+
placement: import("bootstrap-vue-next").PopoverPlacement;
|
|
852
|
+
persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
853
|
+
realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
853
854
|
reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
|
|
854
|
-
strategy: import(
|
|
855
|
-
tooltip: import(
|
|
855
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
856
|
+
tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
|
|
856
857
|
}, {}, string, {}> & import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & (new () => {
|
|
857
858
|
$slots: Readonly<{
|
|
858
859
|
default?: ((props: Record<string, never>) => any) | undefined;
|