@icij/murmur-next 4.0.6 → 4.0.8

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.
Files changed (50) hide show
  1. package/dist/lib/components/AccordionStep.vue.d.ts +2 -1
  2. package/dist/lib/components/AccordionWrapper.vue.d.ts +2 -1
  3. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +5 -4
  4. package/dist/lib/components/BrandExpansion.vue.d.ts +3 -2
  5. package/dist/lib/components/ConfirmButton.vue.d.ts +2 -1
  6. package/dist/lib/components/ContentPlaceholder.vue.d.ts +3 -2
  7. package/dist/lib/components/CustomPagination.vue.d.ts +6 -5
  8. package/dist/lib/components/DonateForm.vue.d.ts +5 -4
  9. package/dist/lib/components/EmbedForm.vue.d.ts +5 -4
  10. package/dist/lib/components/FollowUsPopover.vue.d.ts +5 -4
  11. package/dist/lib/components/GenericFooter.vue.d.ts +2 -1
  12. package/dist/lib/components/GenericHeader.vue.d.ts +232 -231
  13. package/dist/lib/components/HapticCopy.vue.d.ts +7 -5
  14. package/dist/lib/components/ImddbHeader.vue.d.ts +231 -230
  15. package/dist/lib/components/OrdinalLegend.vue.d.ts +2 -1
  16. package/dist/lib/components/RangePicker.vue.d.ts +3 -2
  17. package/dist/lib/components/ResponsiveIframe.vue.d.ts +4 -2
  18. package/dist/lib/components/ScaleLegend.vue.d.ts +1 -1
  19. package/dist/lib/components/SelectableDropdown.vue.d.ts +3 -2
  20. package/dist/lib/components/SharingOptions.vue.d.ts +2 -1
  21. package/dist/lib/components/SharingOptionsLink.vue.d.ts +2 -1
  22. package/dist/lib/components/SignUpForm.vue.d.ts +6 -5
  23. package/dist/lib/components/SlideUpDown.vue.d.ts +3 -2
  24. package/dist/lib/components/TexturedDeck.vue.d.ts +2 -1
  25. package/dist/lib/components/TinyPagination.vue.d.ts +9 -8
  26. package/dist/lib/composables/chart.d.ts +2 -1
  27. package/dist/lib/composables/resizeObserver.d.ts +2 -1
  28. package/dist/lib/composables/sendEmail.d.ts +2 -1
  29. package/dist/lib/config.d.ts +0 -1
  30. package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +2 -1
  31. package/dist/lib/datavisualisations/LineChart.vue.d.ts +1 -1
  32. package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +1 -1
  33. package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +1 -1
  34. package/dist/lib/i18n.d.ts +2 -2
  35. package/dist/lib/main.d.ts +11 -4
  36. package/dist/lib/maps/ChoroplethMap.vue.d.ts +2 -2
  37. package/dist/lib/maps/SymbolMap.vue.d.ts +2 -1
  38. package/dist/lib/murmur.css +1 -1
  39. package/dist/lib/murmur.js +15996 -17076
  40. package/dist/lib/murmur.js.map +1 -1
  41. package/dist/lib/murmur.umd.cjs +52 -60
  42. package/dist/lib/murmur.umd.cjs.map +1 -1
  43. package/dist/lib/types.d.ts +6 -3
  44. package/dist/lib/utils/assets.d.ts +1 -1
  45. package/dist/lib/utils/iframe-resizer.d.ts +1 -1
  46. package/dist/lib/utils/placeholder.d.ts +0 -1
  47. package/dist/lib/utils/placeholderTypes.d.ts +3 -2
  48. package/lib/i18n.ts +5 -4
  49. package/lib/main.ts +37 -12
  50. package/package.json +1 -1
@@ -1,5 +1,6 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
1
3
  import { ComponentPublicInstance, PropType } from '../../node_modules/vue';
2
-
3
4
  type CssPosition = 'absolute' | 'relative' | 'fixed' | 'static';
4
5
  type ImddHeaderItem = {
5
6
  label: string;
@@ -59,10 +60,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
59
60
  default: () => any;
60
61
  };
61
62
  }, {
62
- t: import('vue-i18n').ComposerTranslation<{
63
- [x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
64
- }, string, import('@intlify/core-base').RemoveIndexSignature<{
65
- [x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
63
+ t: import("vue-i18n").ComposerTranslation<{
64
+ [x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
65
+ }, string, import("@intlify/core-base").RemoveIndexSignature<{
66
+ [x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
66
67
  }>, never, string, string>;
67
68
  root: import('../../node_modules/vue').Ref<ComponentPublicInstance | null>;
68
69
  collapseNavbar: import('../../node_modules/vue').Ref<boolean>;
@@ -85,11 +86,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
85
86
  default: undefined;
86
87
  };
87
88
  offset: {
88
- type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
89
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
89
90
  default: null;
90
91
  };
91
92
  click: {
92
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
93
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
93
94
  default: boolean;
94
95
  };
95
96
  title: {
@@ -97,11 +98,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
97
98
  default: undefined;
98
99
  };
99
100
  variant: {
100
- type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
101
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
101
102
  default: null;
102
103
  };
103
104
  html: {
104
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
105
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
105
106
  default: boolean;
106
107
  };
107
108
  target: {
@@ -119,15 +120,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
119
120
  };
120
121
  };
121
122
  tooltip: {
122
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
123
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
123
124
  default: boolean;
124
125
  };
125
126
  boundary: {
126
- type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
127
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
127
128
  default: string;
128
129
  };
129
130
  boundaryPadding: {
130
- type: PropType<import('@floating-ui/utils').Padding>;
131
+ type: PropType<import("@floating-ui/utils").Padding>;
131
132
  default: undefined;
132
133
  };
133
134
  customClass: {
@@ -141,19 +142,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
141
142
  fn: (state: {
142
143
  x: number;
143
144
  y: number;
144
- placement: import('@floating-ui/utils').Placement;
145
- strategy: import('@floating-ui/utils').Strategy;
146
- initialPlacement: import('@floating-ui/utils').Placement;
147
- middlewareData: import('@floating-ui/core').MiddlewareData;
148
- rects: import('@floating-ui/utils').ElementRects;
149
- platform: import('@floating-ui/core').Platform;
150
- elements: import('@floating-ui/dom').Elements;
151
- }) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
145
+ placement: import("@floating-ui/utils").Placement;
146
+ strategy: import("@floating-ui/utils").Strategy;
147
+ initialPlacement: import("@floating-ui/utils").Placement;
148
+ middlewareData: import("@floating-ui/core").MiddlewareData;
149
+ rects: import("@floating-ui/utils").ElementRects;
150
+ platform: import("@floating-ui/core").Platform;
151
+ elements: import("@floating-ui/dom").Elements;
152
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
152
153
  }[]>;
153
154
  default: undefined;
154
155
  };
155
156
  hide: {
156
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
157
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
157
158
  default: undefined;
158
159
  };
159
160
  id: {
@@ -161,55 +162,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
161
162
  default: undefined;
162
163
  };
163
164
  inline: {
164
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
165
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
165
166
  default: boolean;
166
167
  };
167
168
  manual: {
168
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
169
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
169
170
  default: boolean;
170
171
  };
171
172
  modelValue: {
172
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
173
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
173
174
  default: boolean;
174
175
  };
175
176
  noAutoClose: {
176
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
177
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
177
178
  default: boolean;
178
179
  };
179
180
  noFade: {
180
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
181
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
181
182
  default: boolean;
182
183
  };
183
184
  noFlip: {
184
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
185
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
185
186
  default: boolean;
186
187
  };
187
188
  noHide: {
188
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
189
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
189
190
  default: boolean;
190
191
  };
191
192
  noShift: {
192
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
193
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
193
194
  default: boolean;
194
195
  };
195
196
  noSize: {
196
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
197
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
197
198
  default: boolean;
198
199
  };
199
200
  noninteractive: {
200
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
201
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
201
202
  default: boolean;
202
203
  };
203
204
  placement: {
204
- type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
205
+ type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
205
206
  default: string;
206
207
  };
207
208
  persistent: {
208
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
209
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
209
210
  default: boolean;
210
211
  };
211
212
  realtime: {
212
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
213
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
213
214
  default: boolean;
214
215
  };
215
216
  reference: {
@@ -217,29 +218,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
217
218
  default: null;
218
219
  };
219
220
  strategy: {
220
- type: PropType<import('@floating-ui/utils').Strategy>;
221
+ type: PropType<import("@floating-ui/utils").Strategy>;
221
222
  default: string;
222
223
  };
223
224
  }>> & {
224
- onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
225
+ onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
225
226
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
226
- onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
227
- onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
227
+ onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
228
+ onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
228
229
  "onHide-prevented"?: (() => any) | undefined;
229
230
  "onShow-prevented"?: (() => any) | undefined;
230
- onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
231
+ onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
231
232
  }, {
232
233
  hide: (e: Readonly<Event>) => void;
233
234
  show: () => void;
234
235
  toggle: (e?: Event | undefined) => void;
235
236
  }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
236
- hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
237
+ hidden: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
237
238
  "update:modelValue": (value: boolean) => void;
238
- show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
239
- hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
239
+ show: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
240
+ hide: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
240
241
  "hide-prevented": () => void;
241
242
  "show-prevented": () => void;
242
- shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
243
+ shown: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
243
244
  }, import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & Readonly<import('../../node_modules/vue').ExtractPropTypes<{
244
245
  content: {
245
246
  type: PropType<string>;
@@ -250,11 +251,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
250
251
  default: undefined;
251
252
  };
252
253
  offset: {
253
- type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
254
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
254
255
  default: null;
255
256
  };
256
257
  click: {
257
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
258
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
258
259
  default: boolean;
259
260
  };
260
261
  title: {
@@ -262,11 +263,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
262
263
  default: undefined;
263
264
  };
264
265
  variant: {
265
- type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
266
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
266
267
  default: null;
267
268
  };
268
269
  html: {
269
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
270
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
270
271
  default: boolean;
271
272
  };
272
273
  target: {
@@ -284,15 +285,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
284
285
  };
285
286
  };
286
287
  tooltip: {
287
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
288
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
288
289
  default: boolean;
289
290
  };
290
291
  boundary: {
291
- type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
292
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
292
293
  default: string;
293
294
  };
294
295
  boundaryPadding: {
295
- type: PropType<import('@floating-ui/utils').Padding>;
296
+ type: PropType<import("@floating-ui/utils").Padding>;
296
297
  default: undefined;
297
298
  };
298
299
  customClass: {
@@ -306,19 +307,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
306
307
  fn: (state: {
307
308
  x: number;
308
309
  y: number;
309
- placement: import('@floating-ui/utils').Placement;
310
- strategy: import('@floating-ui/utils').Strategy;
311
- initialPlacement: import('@floating-ui/utils').Placement;
312
- middlewareData: import('@floating-ui/core').MiddlewareData;
313
- rects: import('@floating-ui/utils').ElementRects;
314
- platform: import('@floating-ui/core').Platform;
315
- elements: import('@floating-ui/dom').Elements;
316
- }) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
310
+ placement: import("@floating-ui/utils").Placement;
311
+ strategy: import("@floating-ui/utils").Strategy;
312
+ initialPlacement: import("@floating-ui/utils").Placement;
313
+ middlewareData: import("@floating-ui/core").MiddlewareData;
314
+ rects: import("@floating-ui/utils").ElementRects;
315
+ platform: import("@floating-ui/core").Platform;
316
+ elements: import("@floating-ui/dom").Elements;
317
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
317
318
  }[]>;
318
319
  default: undefined;
319
320
  };
320
321
  hide: {
321
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
322
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
322
323
  default: undefined;
323
324
  };
324
325
  id: {
@@ -326,55 +327,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
326
327
  default: undefined;
327
328
  };
328
329
  inline: {
329
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
330
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
330
331
  default: boolean;
331
332
  };
332
333
  manual: {
333
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
334
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
334
335
  default: boolean;
335
336
  };
336
337
  modelValue: {
337
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
338
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
338
339
  default: boolean;
339
340
  };
340
341
  noAutoClose: {
341
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
342
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
342
343
  default: boolean;
343
344
  };
344
345
  noFade: {
345
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
346
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
346
347
  default: boolean;
347
348
  };
348
349
  noFlip: {
349
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
350
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
350
351
  default: boolean;
351
352
  };
352
353
  noHide: {
353
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
354
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
354
355
  default: boolean;
355
356
  };
356
357
  noShift: {
357
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
358
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
358
359
  default: boolean;
359
360
  };
360
361
  noSize: {
361
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
362
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
362
363
  default: boolean;
363
364
  };
364
365
  noninteractive: {
365
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
366
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
366
367
  default: boolean;
367
368
  };
368
369
  placement: {
369
- type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
370
+ type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
370
371
  default: string;
371
372
  };
372
373
  persistent: {
373
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
374
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
374
375
  default: boolean;
375
376
  };
376
377
  realtime: {
377
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
378
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
378
379
  default: boolean;
379
380
  };
380
381
  reference: {
@@ -382,30 +383,30 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
382
383
  default: null;
383
384
  };
384
385
  strategy: {
385
- type: PropType<import('@floating-ui/utils').Strategy>;
386
+ type: PropType<import("@floating-ui/utils").Strategy>;
386
387
  default: string;
387
388
  };
388
389
  }>> & {
389
- onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
390
+ onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
390
391
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
391
- onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
392
- onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
392
+ onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
393
+ onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
393
394
  "onHide-prevented"?: (() => any) | undefined;
394
395
  "onShow-prevented"?: (() => any) | undefined;
395
- onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
396
+ onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
396
397
  }, {
397
- offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
398
+ offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
398
399
  target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
399
400
  title: string;
400
- click: import('bootstrap-vue-next/dist/src/types').Booleanish;
401
+ click: import("bootstrap-vue-next/dist/src/types").Booleanish;
401
402
  id: string;
402
- html: import('bootstrap-vue-next/dist/src/types').Booleanish;
403
- variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
404
- modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
405
- hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
406
- manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
407
- boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
408
- boundaryPadding: import('@floating-ui/utils').Padding;
403
+ html: import("bootstrap-vue-next/dist/src/types").Booleanish;
404
+ variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
405
+ modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
406
+ hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
407
+ manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
408
+ boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
409
+ boundaryPadding: import("@floating-ui/utils").Padding;
409
410
  container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
410
411
  content: string;
411
412
  customClass: any;
@@ -419,29 +420,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
419
420
  fn: (state: {
420
421
  x: number;
421
422
  y: number;
422
- placement: import('@floating-ui/utils').Placement;
423
- strategy: import('@floating-ui/utils').Strategy;
424
- initialPlacement: import('@floating-ui/utils').Placement;
423
+ placement: import("@floating-ui/utils").Placement;
424
+ strategy: import("@floating-ui/utils").Strategy;
425
+ initialPlacement: import("@floating-ui/utils").Placement;
425
426
  middlewareData: any;
426
- rects: import('@floating-ui/utils').ElementRects;
427
+ rects: import("@floating-ui/utils").ElementRects;
427
428
  platform: any;
428
- elements: import('@floating-ui/dom').Elements;
429
+ elements: import("@floating-ui/dom").Elements;
429
430
  }) => any;
430
431
  }[];
431
- inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
432
- noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
433
- noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
434
- noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
435
- noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
436
- noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
437
- noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
438
- noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
439
- placement: import('bootstrap-vue-next').PopoverPlacement;
440
- persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
441
- realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
432
+ inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
433
+ noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
434
+ noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
435
+ noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
436
+ noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
437
+ noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
438
+ noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
439
+ noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
440
+ placement: import("bootstrap-vue-next").PopoverPlacement;
441
+ persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
442
+ realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
442
443
  reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
443
- strategy: import('@floating-ui/utils').Strategy;
444
- tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
444
+ strategy: import("@floating-ui/utils").Strategy;
445
+ tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
445
446
  }, true, {}, {}, {
446
447
  P: {};
447
448
  B: {};
@@ -459,11 +460,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
459
460
  default: undefined;
460
461
  };
461
462
  offset: {
462
- type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
463
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
463
464
  default: null;
464
465
  };
465
466
  click: {
466
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
467
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
467
468
  default: boolean;
468
469
  };
469
470
  title: {
@@ -471,11 +472,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
471
472
  default: undefined;
472
473
  };
473
474
  variant: {
474
- type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
475
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
475
476
  default: null;
476
477
  };
477
478
  html: {
478
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
479
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
479
480
  default: boolean;
480
481
  };
481
482
  target: {
@@ -493,15 +494,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
493
494
  };
494
495
  };
495
496
  tooltip: {
496
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
497
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
497
498
  default: boolean;
498
499
  };
499
500
  boundary: {
500
- type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
501
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
501
502
  default: string;
502
503
  };
503
504
  boundaryPadding: {
504
- type: PropType<import('@floating-ui/utils').Padding>;
505
+ type: PropType<import("@floating-ui/utils").Padding>;
505
506
  default: undefined;
506
507
  };
507
508
  customClass: {
@@ -515,19 +516,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
515
516
  fn: (state: {
516
517
  x: number;
517
518
  y: number;
518
- placement: import('@floating-ui/utils').Placement;
519
- strategy: import('@floating-ui/utils').Strategy;
520
- initialPlacement: import('@floating-ui/utils').Placement;
521
- middlewareData: import('@floating-ui/core').MiddlewareData;
522
- rects: import('@floating-ui/utils').ElementRects;
523
- platform: import('@floating-ui/core').Platform;
524
- elements: import('@floating-ui/dom').Elements;
525
- }) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
519
+ placement: import("@floating-ui/utils").Placement;
520
+ strategy: import("@floating-ui/utils").Strategy;
521
+ initialPlacement: import("@floating-ui/utils").Placement;
522
+ middlewareData: import("@floating-ui/core").MiddlewareData;
523
+ rects: import("@floating-ui/utils").ElementRects;
524
+ platform: import("@floating-ui/core").Platform;
525
+ elements: import("@floating-ui/dom").Elements;
526
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
526
527
  }[]>;
527
528
  default: undefined;
528
529
  };
529
530
  hide: {
530
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
531
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
531
532
  default: undefined;
532
533
  };
533
534
  id: {
@@ -535,55 +536,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
535
536
  default: undefined;
536
537
  };
537
538
  inline: {
538
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
539
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
539
540
  default: boolean;
540
541
  };
541
542
  manual: {
542
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
543
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
543
544
  default: boolean;
544
545
  };
545
546
  modelValue: {
546
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
547
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
547
548
  default: boolean;
548
549
  };
549
550
  noAutoClose: {
550
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
551
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
551
552
  default: boolean;
552
553
  };
553
554
  noFade: {
554
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
555
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
555
556
  default: boolean;
556
557
  };
557
558
  noFlip: {
558
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
559
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
559
560
  default: boolean;
560
561
  };
561
562
  noHide: {
562
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
563
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
563
564
  default: boolean;
564
565
  };
565
566
  noShift: {
566
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
567
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
567
568
  default: boolean;
568
569
  };
569
570
  noSize: {
570
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
571
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
571
572
  default: boolean;
572
573
  };
573
574
  noninteractive: {
574
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
575
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
575
576
  default: boolean;
576
577
  };
577
578
  placement: {
578
- type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
579
+ type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
579
580
  default: string;
580
581
  };
581
582
  persistent: {
582
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
583
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
583
584
  default: boolean;
584
585
  };
585
586
  realtime: {
586
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
587
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
587
588
  default: boolean;
588
589
  };
589
590
  reference: {
@@ -591,34 +592,34 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
591
592
  default: null;
592
593
  };
593
594
  strategy: {
594
- type: PropType<import('@floating-ui/utils').Strategy>;
595
+ type: PropType<import("@floating-ui/utils").Strategy>;
595
596
  default: string;
596
597
  };
597
598
  }>> & {
598
- onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
599
+ onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
599
600
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
600
- onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
601
- onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
601
+ onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
602
+ onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
602
603
  "onHide-prevented"?: (() => any) | undefined;
603
604
  "onShow-prevented"?: (() => any) | undefined;
604
- onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
605
+ onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
605
606
  }, {
606
607
  hide: (e: Readonly<Event>) => void;
607
608
  show: () => void;
608
609
  toggle: (e?: Event | undefined) => void;
609
610
  }, {}, {}, {}, {
610
- offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
611
+ offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
611
612
  target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
612
613
  title: string;
613
- click: import('bootstrap-vue-next/dist/src/types').Booleanish;
614
+ click: import("bootstrap-vue-next/dist/src/types").Booleanish;
614
615
  id: string;
615
- html: import('bootstrap-vue-next/dist/src/types').Booleanish;
616
- variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
617
- modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
618
- hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
619
- manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
620
- boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
621
- boundaryPadding: import('@floating-ui/utils').Padding;
616
+ html: import("bootstrap-vue-next/dist/src/types").Booleanish;
617
+ variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
618
+ modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
619
+ hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
620
+ manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
621
+ boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
622
+ boundaryPadding: import("@floating-ui/utils").Padding;
622
623
  container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
623
624
  content: string;
624
625
  customClass: any;
@@ -632,29 +633,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
632
633
  fn: (state: {
633
634
  x: number;
634
635
  y: number;
635
- placement: import('@floating-ui/utils').Placement;
636
- strategy: import('@floating-ui/utils').Strategy;
637
- initialPlacement: import('@floating-ui/utils').Placement;
636
+ placement: import("@floating-ui/utils").Placement;
637
+ strategy: import("@floating-ui/utils").Strategy;
638
+ initialPlacement: import("@floating-ui/utils").Placement;
638
639
  middlewareData: any;
639
- rects: import('@floating-ui/utils').ElementRects;
640
+ rects: import("@floating-ui/utils").ElementRects;
640
641
  platform: any;
641
- elements: import('@floating-ui/dom').Elements;
642
+ elements: import("@floating-ui/dom").Elements;
642
643
  }) => any;
643
644
  }[];
644
- inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
645
- noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
646
- noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
647
- noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
648
- noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
649
- noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
650
- noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
651
- noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
652
- placement: import('bootstrap-vue-next').PopoverPlacement;
653
- persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
654
- realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
645
+ inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
646
+ noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
647
+ noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
648
+ noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
649
+ noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
650
+ noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
651
+ noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
652
+ noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
653
+ placement: import("bootstrap-vue-next").PopoverPlacement;
654
+ persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
655
+ realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
655
656
  reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
656
- strategy: import('@floating-ui/utils').Strategy;
657
- tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
657
+ strategy: import("@floating-ui/utils").Strategy;
658
+ tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
658
659
  }>;
659
660
  __isFragment?: undefined;
660
661
  __isTeleport?: undefined;
@@ -669,11 +670,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
669
670
  default: undefined;
670
671
  };
671
672
  offset: {
672
- type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
673
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Numberish | null>;
673
674
  default: null;
674
675
  };
675
676
  click: {
676
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
677
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
677
678
  default: boolean;
678
679
  };
679
680
  title: {
@@ -681,11 +682,11 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
681
682
  default: undefined;
682
683
  };
683
684
  variant: {
684
- type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
685
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
685
686
  default: null;
686
687
  };
687
688
  html: {
688
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
689
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
689
690
  default: boolean;
690
691
  };
691
692
  target: {
@@ -703,15 +704,15 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
703
704
  };
704
705
  };
705
706
  tooltip: {
706
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
707
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
707
708
  default: boolean;
708
709
  };
709
710
  boundary: {
710
- type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
711
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
711
712
  default: string;
712
713
  };
713
714
  boundaryPadding: {
714
- type: PropType<import('@floating-ui/utils').Padding>;
715
+ type: PropType<import("@floating-ui/utils").Padding>;
715
716
  default: undefined;
716
717
  };
717
718
  customClass: {
@@ -725,19 +726,19 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
725
726
  fn: (state: {
726
727
  x: number;
727
728
  y: number;
728
- placement: import('@floating-ui/utils').Placement;
729
- strategy: import('@floating-ui/utils').Strategy;
730
- initialPlacement: import('@floating-ui/utils').Placement;
731
- middlewareData: import('@floating-ui/core').MiddlewareData;
732
- rects: import('@floating-ui/utils').ElementRects;
733
- platform: import('@floating-ui/core').Platform;
734
- elements: import('@floating-ui/dom').Elements;
735
- }) => import('@floating-ui/core').MiddlewareReturn | Promise<import('@floating-ui/core').MiddlewareReturn>;
729
+ placement: import("@floating-ui/utils").Placement;
730
+ strategy: import("@floating-ui/utils").Strategy;
731
+ initialPlacement: import("@floating-ui/utils").Placement;
732
+ middlewareData: import("@floating-ui/core").MiddlewareData;
733
+ rects: import("@floating-ui/utils").ElementRects;
734
+ platform: import("@floating-ui/core").Platform;
735
+ elements: import("@floating-ui/dom").Elements;
736
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
736
737
  }[]>;
737
738
  default: undefined;
738
739
  };
739
740
  hide: {
740
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
741
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
741
742
  default: undefined;
742
743
  };
743
744
  id: {
@@ -745,55 +746,55 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
745
746
  default: undefined;
746
747
  };
747
748
  inline: {
748
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
749
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
749
750
  default: boolean;
750
751
  };
751
752
  manual: {
752
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
753
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
753
754
  default: boolean;
754
755
  };
755
756
  modelValue: {
756
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
757
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
757
758
  default: boolean;
758
759
  };
759
760
  noAutoClose: {
760
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
761
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
761
762
  default: boolean;
762
763
  };
763
764
  noFade: {
764
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
765
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
765
766
  default: boolean;
766
767
  };
767
768
  noFlip: {
768
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
769
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
769
770
  default: boolean;
770
771
  };
771
772
  noHide: {
772
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
773
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
773
774
  default: boolean;
774
775
  };
775
776
  noShift: {
776
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
777
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
777
778
  default: boolean;
778
779
  };
779
780
  noSize: {
780
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
781
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
781
782
  default: boolean;
782
783
  };
783
784
  noninteractive: {
784
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
785
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
785
786
  default: boolean;
786
787
  };
787
788
  placement: {
788
- type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
789
+ type: PropType<import("bootstrap-vue-next").PopoverPlacement>;
789
790
  default: string;
790
791
  };
791
792
  persistent: {
792
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
793
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
793
794
  default: boolean;
794
795
  };
795
796
  realtime: {
796
- type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
797
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
797
798
  default: boolean;
798
799
  };
799
800
  reference: {
@@ -801,42 +802,42 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
801
802
  default: null;
802
803
  };
803
804
  strategy: {
804
- type: PropType<import('@floating-ui/utils').Strategy>;
805
+ type: PropType<import("@floating-ui/utils").Strategy>;
805
806
  default: string;
806
807
  };
807
808
  }>> & {
808
- onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
809
+ onHidden?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
809
810
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
810
- onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
811
- onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
811
+ onShow?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
812
+ onHide?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
812
813
  "onHide-prevented"?: (() => any) | undefined;
813
814
  "onShow-prevented"?: (() => any) | undefined;
814
- onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
815
+ onShown?: ((value: import("bootstrap-vue-next").BvTriggerableEvent) => any) | undefined;
815
816
  }, {
816
817
  hide: (e: Readonly<Event>) => void;
817
818
  show: () => void;
818
819
  toggle: (e?: Event | undefined) => void;
819
820
  }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
820
- hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
821
+ hidden: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
821
822
  "update:modelValue": (value: boolean) => void;
822
- show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
823
- hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
823
+ show: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
824
+ hide: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
824
825
  "hide-prevented": () => void;
825
826
  "show-prevented": () => void;
826
- shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
827
+ shown: (value: import("bootstrap-vue-next").BvTriggerableEvent) => void;
827
828
  }, string, {
828
- offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
829
+ offset: import("bootstrap-vue-next/dist/src/types").Numberish | null;
829
830
  target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
830
831
  title: string;
831
- click: import('bootstrap-vue-next/dist/src/types').Booleanish;
832
+ click: import("bootstrap-vue-next/dist/src/types").Booleanish;
832
833
  id: string;
833
- html: import('bootstrap-vue-next/dist/src/types').Booleanish;
834
- variant: keyof import('bootstrap-vue-next').BaseColorVariant | null;
835
- modelValue: import('bootstrap-vue-next/dist/src/types').Booleanish;
836
- hide: import('bootstrap-vue-next/dist/src/types').Booleanish;
837
- manual: import('bootstrap-vue-next/dist/src/types').Booleanish;
838
- boundary: Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document";
839
- boundaryPadding: import('@floating-ui/utils').Padding;
834
+ html: import("bootstrap-vue-next/dist/src/types").Booleanish;
835
+ variant: keyof import("bootstrap-vue-next").BaseColorVariant | null;
836
+ modelValue: import("bootstrap-vue-next/dist/src/types").Booleanish;
837
+ hide: import("bootstrap-vue-next/dist/src/types").Booleanish;
838
+ manual: import("bootstrap-vue-next/dist/src/types").Booleanish;
839
+ boundary: Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document";
840
+ boundaryPadding: import("@floating-ui/utils").Padding;
840
841
  container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
841
842
  content: string;
842
843
  customClass: any;
@@ -850,29 +851,29 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
850
851
  fn: (state: {
851
852
  x: number;
852
853
  y: number;
853
- placement: import('@floating-ui/utils').Placement;
854
- strategy: import('@floating-ui/utils').Strategy;
855
- initialPlacement: import('@floating-ui/utils').Placement;
854
+ placement: import("@floating-ui/utils").Placement;
855
+ strategy: import("@floating-ui/utils").Strategy;
856
+ initialPlacement: import("@floating-ui/utils").Placement;
856
857
  middlewareData: any;
857
- rects: import('@floating-ui/utils').ElementRects;
858
+ rects: import("@floating-ui/utils").ElementRects;
858
859
  platform: any;
859
- elements: import('@floating-ui/dom').Elements;
860
+ elements: import("@floating-ui/dom").Elements;
860
861
  }) => any;
861
862
  }[];
862
- inline: import('bootstrap-vue-next/dist/src/types').Booleanish;
863
- noAutoClose: import('bootstrap-vue-next/dist/src/types').Booleanish;
864
- noFade: import('bootstrap-vue-next/dist/src/types').Booleanish;
865
- noFlip: import('bootstrap-vue-next/dist/src/types').Booleanish;
866
- noHide: import('bootstrap-vue-next/dist/src/types').Booleanish;
867
- noShift: import('bootstrap-vue-next/dist/src/types').Booleanish;
868
- noSize: import('bootstrap-vue-next/dist/src/types').Booleanish;
869
- noninteractive: import('bootstrap-vue-next/dist/src/types').Booleanish;
870
- placement: import('bootstrap-vue-next').PopoverPlacement;
871
- persistent: import('bootstrap-vue-next/dist/src/types').Booleanish;
872
- realtime: import('bootstrap-vue-next/dist/src/types').Booleanish;
863
+ inline: import("bootstrap-vue-next/dist/src/types").Booleanish;
864
+ noAutoClose: import("bootstrap-vue-next/dist/src/types").Booleanish;
865
+ noFade: import("bootstrap-vue-next/dist/src/types").Booleanish;
866
+ noFlip: import("bootstrap-vue-next/dist/src/types").Booleanish;
867
+ noHide: import("bootstrap-vue-next/dist/src/types").Booleanish;
868
+ noShift: import("bootstrap-vue-next/dist/src/types").Booleanish;
869
+ noSize: import("bootstrap-vue-next/dist/src/types").Booleanish;
870
+ noninteractive: import("bootstrap-vue-next/dist/src/types").Booleanish;
871
+ placement: import("bootstrap-vue-next").PopoverPlacement;
872
+ persistent: import("bootstrap-vue-next/dist/src/types").Booleanish;
873
+ realtime: import("bootstrap-vue-next/dist/src/types").Booleanish;
873
874
  reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
874
- strategy: import('@floating-ui/utils').Strategy;
875
- tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
875
+ strategy: import("@floating-ui/utils").Strategy;
876
+ tooltip: import("bootstrap-vue-next/dist/src/types").Booleanish;
876
877
  }, {}, string, {}> & import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & (new () => {
877
878
  $slots: Readonly<{
878
879
  default?: ((props: Record<string, never>) => any) | undefined;