@icij/murmur-next 4.0.10 → 4.0.13

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