@icij/murmur-next 4.0.5 → 4.0.6

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 (62) hide show
  1. package/dist/lib/components/AccordionStep.vue.d.ts +78 -0
  2. package/dist/lib/components/AccordionWrapper.vue.d.ts +32 -0
  3. package/dist/lib/components/ActiveTextTruncate.vue.d.ts +101 -0
  4. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +167 -0
  5. package/dist/lib/components/Brand.vue.d.ts +55 -0
  6. package/dist/lib/components/BrandExpansion.vue.d.ts +104 -0
  7. package/dist/lib/components/ConfirmButton.vue.d.ts +157 -0
  8. package/dist/lib/components/ContentPlaceholder.vue.d.ts +43 -0
  9. package/dist/lib/components/CustomPagination.vue.d.ts +129 -0
  10. package/dist/lib/components/DigitsInput.vue.d.ts +66 -0
  11. package/dist/lib/components/DonateForm.vue.d.ts +45 -0
  12. package/dist/lib/components/EmbedForm.vue.d.ts +120 -0
  13. package/dist/lib/components/EmbeddableFooter.vue.d.ts +103 -0
  14. package/dist/lib/components/FollowUsPopover.vue.d.ts +15 -0
  15. package/dist/lib/components/GenericFooter.vue.d.ts +46 -0
  16. package/dist/lib/components/GenericHeader.vue.d.ts +927 -0
  17. package/dist/lib/components/HapticCopy.vue.d.ts +154 -0
  18. package/dist/lib/components/ImddbHeader.vue.d.ts +959 -0
  19. package/dist/lib/components/OrdinalLegend.vue.d.ts +86 -0
  20. package/dist/lib/components/RangePicker.vue.d.ts +192 -0
  21. package/dist/lib/components/ResponsiveIframe.vue.d.ts +44 -0
  22. package/dist/lib/components/ScaleLegend.vue.d.ts +101 -0
  23. package/dist/lib/components/SecretInput.vue.d.ts +99 -0
  24. package/dist/lib/components/SelectableDropdown.vue.d.ts +209 -0
  25. package/dist/lib/components/SharingOptions.vue.d.ts +152 -0
  26. package/dist/lib/components/SharingOptionsLink.vue.d.ts +199 -0
  27. package/dist/lib/components/SignUpForm.vue.d.ts +140 -0
  28. package/dist/lib/components/SlideUpDown.vue.d.ts +73 -0
  29. package/dist/lib/components/TexturedDeck.vue.d.ts +88 -0
  30. package/dist/lib/components/TinyPagination.vue.d.ts +187 -0
  31. package/dist/lib/composables/chart.d.ts +47 -0
  32. package/dist/lib/composables/resizeObserver.d.ts +21 -0
  33. package/dist/lib/composables/sendEmail.d.ts +5 -0
  34. package/dist/lib/config.d.ts +20 -0
  35. package/dist/lib/config.default.d.ts +34 -0
  36. package/dist/lib/datavisualisations/BarChart.vue.d.ts +232 -0
  37. package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +407 -0
  38. package/dist/lib/datavisualisations/LineChart.vue.d.ts +208 -0
  39. package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +338 -0
  40. package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +412 -0
  41. package/dist/lib/enums.d.ts +32 -0
  42. package/dist/lib/i18n.d.ts +5 -0
  43. package/dist/lib/keys.d.ts +2 -0
  44. package/dist/lib/main.d.ts +55 -0
  45. package/dist/lib/maps/ChoroplethMap.vue.d.ts +466 -0
  46. package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +188 -0
  47. package/dist/lib/maps/SymbolMap.vue.d.ts +276 -0
  48. package/dist/lib/murmur.css +1 -0
  49. package/dist/lib/murmur.js +46019 -0
  50. package/dist/lib/murmur.js.map +1 -0
  51. package/dist/lib/murmur.umd.cjs +845 -0
  52. package/dist/lib/murmur.umd.cjs.map +1 -0
  53. package/dist/lib/types.d.ts +41 -0
  54. package/dist/lib/utils/animation.d.ts +8 -0
  55. package/dist/lib/utils/assets.d.ts +2 -0
  56. package/dist/lib/utils/clipboard.d.ts +2 -0
  57. package/dist/lib/utils/iframe-resizer.d.ts +11 -0
  58. package/dist/lib/utils/placeholder.d.ts +13 -0
  59. package/dist/lib/utils/placeholderTypes.d.ts +17 -0
  60. package/dist/lib/utils/strings.d.ts +1 -0
  61. package/lib/components/RangePicker.vue +3 -4
  62. package/package.json +6 -4
@@ -0,0 +1,927 @@
1
+ import { PropType, ComponentPublicInstance } from '../../node_modules/vue';
2
+ import { BrandMode } from '../enums';
3
+
4
+ type BrandOptions = {
5
+ noBorder: boolean;
6
+ size: number;
7
+ color: string;
8
+ background: string;
9
+ };
10
+ /**
11
+ * GenericHeader
12
+ */
13
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
14
+ /**
15
+ * CSS position of the header. Can be <em>absolute</em>, <em>relative</em>, <em>static</em> or <em>fixed</em> (default).
16
+ */
17
+ position: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ /**
22
+ * Disable Headroom for hiding header until needed.
23
+ */
24
+ noHeadroom: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ /**
29
+ * Target link of the ICIJ logo and project name.
30
+ */
31
+ homeUrl: {
32
+ type: StringConstructor;
33
+ default: () => any;
34
+ };
35
+ /**
36
+ * Default options to pass to the brand component
37
+ */
38
+ brandOptions: {
39
+ type: PropType<BrandOptions>;
40
+ default: () => {};
41
+ };
42
+ /**
43
+ * Target link of the donate button.
44
+ */
45
+ donateUrl: {
46
+ type: StringConstructor;
47
+ default: () => any;
48
+ };
49
+ }, {
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>;
54
+ }>, never, string, string>;
55
+ rootElement: import('../../node_modules/vue').ComputedRef<string>;
56
+ showFollowUsPopover: import('../../node_modules/vue').Ref<boolean>;
57
+ followUsPopover: import('../../node_modules/vue').Ref<ComponentPublicInstance<{
58
+ new (...args: any[]): import('../../node_modules/vue').CreateComponentPublicInstance<Readonly<import('../../node_modules/vue').ExtractPropTypes<{
59
+ content: {
60
+ type: PropType<string>;
61
+ default: undefined;
62
+ };
63
+ container: {
64
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement>>;
65
+ default: undefined;
66
+ };
67
+ offset: {
68
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
69
+ default: null;
70
+ };
71
+ click: {
72
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
73
+ default: boolean;
74
+ };
75
+ title: {
76
+ type: PropType<string>;
77
+ default: undefined;
78
+ };
79
+ variant: {
80
+ type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
81
+ default: null;
82
+ };
83
+ html: {
84
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
85
+ default: boolean;
86
+ };
87
+ target: {
88
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
89
+ default: null;
90
+ };
91
+ delay: {
92
+ type: PropType<number | Readonly<{
93
+ show: number;
94
+ hide: number;
95
+ }>>;
96
+ default: () => {
97
+ show: number;
98
+ hide: number;
99
+ };
100
+ };
101
+ tooltip: {
102
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
103
+ default: boolean;
104
+ };
105
+ boundary: {
106
+ type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
107
+ default: string;
108
+ };
109
+ boundaryPadding: {
110
+ type: PropType<import('@floating-ui/utils').Padding>;
111
+ default: undefined;
112
+ };
113
+ customClass: {
114
+ type: PropType<any>;
115
+ default: string;
116
+ };
117
+ floatingMiddleware: {
118
+ type: PropType<{
119
+ name: string;
120
+ options?: any;
121
+ fn: (state: {
122
+ x: number;
123
+ y: number;
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>;
132
+ }[]>;
133
+ default: undefined;
134
+ };
135
+ hide: {
136
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
137
+ default: undefined;
138
+ };
139
+ id: {
140
+ type: PropType<string>;
141
+ default: undefined;
142
+ };
143
+ inline: {
144
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
145
+ default: boolean;
146
+ };
147
+ manual: {
148
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
149
+ default: boolean;
150
+ };
151
+ modelValue: {
152
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
153
+ default: boolean;
154
+ };
155
+ noAutoClose: {
156
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
157
+ default: boolean;
158
+ };
159
+ noFade: {
160
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
161
+ default: boolean;
162
+ };
163
+ noFlip: {
164
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
165
+ default: boolean;
166
+ };
167
+ noHide: {
168
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
169
+ default: boolean;
170
+ };
171
+ noShift: {
172
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
173
+ default: boolean;
174
+ };
175
+ noSize: {
176
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
177
+ default: boolean;
178
+ };
179
+ noninteractive: {
180
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
181
+ default: boolean;
182
+ };
183
+ placement: {
184
+ type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
185
+ default: string;
186
+ };
187
+ persistent: {
188
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
189
+ default: boolean;
190
+ };
191
+ realtime: {
192
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
193
+ default: boolean;
194
+ };
195
+ reference: {
196
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
197
+ default: null;
198
+ };
199
+ strategy: {
200
+ type: PropType<import('@floating-ui/utils').Strategy>;
201
+ default: string;
202
+ };
203
+ }>> & {
204
+ onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
205
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
206
+ onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
207
+ onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
208
+ "onHide-prevented"?: (() => any) | undefined;
209
+ "onShow-prevented"?: (() => any) | undefined;
210
+ onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
211
+ }, {
212
+ hide: (e: Readonly<Event>) => void;
213
+ show: () => void;
214
+ toggle: (e?: Event | undefined) => void;
215
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
216
+ hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
217
+ "update:modelValue": (value: boolean) => void;
218
+ show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
219
+ hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
220
+ "hide-prevented": () => void;
221
+ "show-prevented": () => void;
222
+ shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
223
+ }, import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & Readonly<import('../../node_modules/vue').ExtractPropTypes<{
224
+ content: {
225
+ type: PropType<string>;
226
+ default: undefined;
227
+ };
228
+ container: {
229
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement>>;
230
+ default: undefined;
231
+ };
232
+ offset: {
233
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
234
+ default: null;
235
+ };
236
+ click: {
237
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
238
+ default: boolean;
239
+ };
240
+ title: {
241
+ type: PropType<string>;
242
+ default: undefined;
243
+ };
244
+ variant: {
245
+ type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
246
+ default: null;
247
+ };
248
+ html: {
249
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
250
+ default: boolean;
251
+ };
252
+ target: {
253
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
254
+ default: null;
255
+ };
256
+ delay: {
257
+ type: PropType<number | Readonly<{
258
+ show: number;
259
+ hide: number;
260
+ }>>;
261
+ default: () => {
262
+ show: number;
263
+ hide: number;
264
+ };
265
+ };
266
+ tooltip: {
267
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
268
+ default: boolean;
269
+ };
270
+ boundary: {
271
+ type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
272
+ default: string;
273
+ };
274
+ boundaryPadding: {
275
+ type: PropType<import('@floating-ui/utils').Padding>;
276
+ default: undefined;
277
+ };
278
+ customClass: {
279
+ type: PropType<any>;
280
+ default: string;
281
+ };
282
+ floatingMiddleware: {
283
+ type: PropType<{
284
+ name: string;
285
+ options?: any;
286
+ fn: (state: {
287
+ x: number;
288
+ y: number;
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>;
297
+ }[]>;
298
+ default: undefined;
299
+ };
300
+ hide: {
301
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
302
+ default: undefined;
303
+ };
304
+ id: {
305
+ type: PropType<string>;
306
+ default: undefined;
307
+ };
308
+ inline: {
309
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
310
+ default: boolean;
311
+ };
312
+ manual: {
313
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
314
+ default: boolean;
315
+ };
316
+ modelValue: {
317
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
318
+ default: boolean;
319
+ };
320
+ noAutoClose: {
321
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
322
+ default: boolean;
323
+ };
324
+ noFade: {
325
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
326
+ default: boolean;
327
+ };
328
+ noFlip: {
329
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
330
+ default: boolean;
331
+ };
332
+ noHide: {
333
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
334
+ default: boolean;
335
+ };
336
+ noShift: {
337
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
338
+ default: boolean;
339
+ };
340
+ noSize: {
341
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
342
+ default: boolean;
343
+ };
344
+ noninteractive: {
345
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
346
+ default: boolean;
347
+ };
348
+ placement: {
349
+ type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
350
+ default: string;
351
+ };
352
+ persistent: {
353
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
354
+ default: boolean;
355
+ };
356
+ realtime: {
357
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
358
+ default: boolean;
359
+ };
360
+ reference: {
361
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
362
+ default: null;
363
+ };
364
+ strategy: {
365
+ type: PropType<import('@floating-ui/utils').Strategy>;
366
+ default: string;
367
+ };
368
+ }>> & {
369
+ onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
370
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
371
+ onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
372
+ onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
373
+ "onHide-prevented"?: (() => any) | undefined;
374
+ "onShow-prevented"?: (() => any) | undefined;
375
+ onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
376
+ }, {
377
+ offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
378
+ target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
379
+ title: string;
380
+ click: import('bootstrap-vue-next/dist/src/types').Booleanish;
381
+ id: string;
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;
389
+ container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
390
+ content: string;
391
+ customClass: any;
392
+ delay: number | Readonly<{
393
+ show: number;
394
+ hide: number;
395
+ }>;
396
+ floatingMiddleware: {
397
+ name: string;
398
+ options?: any;
399
+ fn: (state: {
400
+ x: number;
401
+ y: number;
402
+ placement: import('@floating-ui/utils').Placement;
403
+ strategy: import('@floating-ui/utils').Strategy;
404
+ initialPlacement: import('@floating-ui/utils').Placement;
405
+ middlewareData: any;
406
+ rects: import('@floating-ui/utils').ElementRects;
407
+ platform: any;
408
+ elements: import('@floating-ui/dom').Elements;
409
+ }) => any;
410
+ }[];
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;
422
+ reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
423
+ strategy: import('@floating-ui/utils').Strategy;
424
+ tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
425
+ }, true, {}, {}, {
426
+ P: {};
427
+ B: {};
428
+ D: {};
429
+ C: {};
430
+ M: {};
431
+ Defaults: {};
432
+ }, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
433
+ content: {
434
+ type: PropType<string>;
435
+ default: undefined;
436
+ };
437
+ container: {
438
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement>>;
439
+ default: undefined;
440
+ };
441
+ offset: {
442
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
443
+ default: null;
444
+ };
445
+ click: {
446
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
447
+ default: boolean;
448
+ };
449
+ title: {
450
+ type: PropType<string>;
451
+ default: undefined;
452
+ };
453
+ variant: {
454
+ type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
455
+ default: null;
456
+ };
457
+ html: {
458
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
459
+ default: boolean;
460
+ };
461
+ target: {
462
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
463
+ default: null;
464
+ };
465
+ delay: {
466
+ type: PropType<number | Readonly<{
467
+ show: number;
468
+ hide: number;
469
+ }>>;
470
+ default: () => {
471
+ show: number;
472
+ hide: number;
473
+ };
474
+ };
475
+ tooltip: {
476
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
477
+ default: boolean;
478
+ };
479
+ boundary: {
480
+ type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
481
+ default: string;
482
+ };
483
+ boundaryPadding: {
484
+ type: PropType<import('@floating-ui/utils').Padding>;
485
+ default: undefined;
486
+ };
487
+ customClass: {
488
+ type: PropType<any>;
489
+ default: string;
490
+ };
491
+ floatingMiddleware: {
492
+ type: PropType<{
493
+ name: string;
494
+ options?: any;
495
+ fn: (state: {
496
+ x: number;
497
+ y: number;
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>;
506
+ }[]>;
507
+ default: undefined;
508
+ };
509
+ hide: {
510
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
511
+ default: undefined;
512
+ };
513
+ id: {
514
+ type: PropType<string>;
515
+ default: undefined;
516
+ };
517
+ inline: {
518
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
519
+ default: boolean;
520
+ };
521
+ manual: {
522
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
523
+ default: boolean;
524
+ };
525
+ modelValue: {
526
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
527
+ default: boolean;
528
+ };
529
+ noAutoClose: {
530
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
531
+ default: boolean;
532
+ };
533
+ noFade: {
534
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
535
+ default: boolean;
536
+ };
537
+ noFlip: {
538
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
539
+ default: boolean;
540
+ };
541
+ noHide: {
542
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
543
+ default: boolean;
544
+ };
545
+ noShift: {
546
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
547
+ default: boolean;
548
+ };
549
+ noSize: {
550
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
551
+ default: boolean;
552
+ };
553
+ noninteractive: {
554
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
555
+ default: boolean;
556
+ };
557
+ placement: {
558
+ type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
559
+ default: string;
560
+ };
561
+ persistent: {
562
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
563
+ default: boolean;
564
+ };
565
+ realtime: {
566
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
567
+ default: boolean;
568
+ };
569
+ reference: {
570
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
571
+ default: null;
572
+ };
573
+ strategy: {
574
+ type: PropType<import('@floating-ui/utils').Strategy>;
575
+ default: string;
576
+ };
577
+ }>> & {
578
+ onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
579
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
580
+ onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
581
+ onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
582
+ "onHide-prevented"?: (() => any) | undefined;
583
+ "onShow-prevented"?: (() => any) | undefined;
584
+ onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
585
+ }, {
586
+ hide: (e: Readonly<Event>) => void;
587
+ show: () => void;
588
+ toggle: (e?: Event | undefined) => void;
589
+ }, {}, {}, {}, {
590
+ offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
591
+ target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
592
+ title: string;
593
+ click: import('bootstrap-vue-next/dist/src/types').Booleanish;
594
+ id: string;
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;
602
+ container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
603
+ content: string;
604
+ customClass: any;
605
+ delay: number | Readonly<{
606
+ show: number;
607
+ hide: number;
608
+ }>;
609
+ floatingMiddleware: {
610
+ name: string;
611
+ options?: any;
612
+ fn: (state: {
613
+ x: number;
614
+ y: number;
615
+ placement: import('@floating-ui/utils').Placement;
616
+ strategy: import('@floating-ui/utils').Strategy;
617
+ initialPlacement: import('@floating-ui/utils').Placement;
618
+ middlewareData: any;
619
+ rects: import('@floating-ui/utils').ElementRects;
620
+ platform: any;
621
+ elements: import('@floating-ui/dom').Elements;
622
+ }) => any;
623
+ }[];
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;
635
+ reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
636
+ strategy: import('@floating-ui/utils').Strategy;
637
+ tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
638
+ }>;
639
+ __isFragment?: undefined;
640
+ __isTeleport?: undefined;
641
+ __isSuspense?: undefined;
642
+ } & import('../../node_modules/vue').ComponentOptionsBase<Readonly<import('../../node_modules/vue').ExtractPropTypes<{
643
+ content: {
644
+ type: PropType<string>;
645
+ default: undefined;
646
+ };
647
+ container: {
648
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement>>;
649
+ default: undefined;
650
+ };
651
+ offset: {
652
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Numberish | null>;
653
+ default: null;
654
+ };
655
+ click: {
656
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
657
+ default: boolean;
658
+ };
659
+ title: {
660
+ type: PropType<string>;
661
+ default: undefined;
662
+ };
663
+ variant: {
664
+ type: PropType<keyof import('bootstrap-vue-next').BaseColorVariant | null>;
665
+ default: null;
666
+ };
667
+ html: {
668
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
669
+ default: boolean;
670
+ };
671
+ target: {
672
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
673
+ default: null;
674
+ };
675
+ delay: {
676
+ type: PropType<number | Readonly<{
677
+ show: number;
678
+ hide: number;
679
+ }>>;
680
+ default: () => {
681
+ show: number;
682
+ hide: number;
683
+ };
684
+ };
685
+ tooltip: {
686
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
687
+ default: boolean;
688
+ };
689
+ boundary: {
690
+ type: PropType<Element | "clippingAncestors" | Element[] | import('@floating-ui/utils').Rect | "viewport" | "document">;
691
+ default: string;
692
+ };
693
+ boundaryPadding: {
694
+ type: PropType<import('@floating-ui/utils').Padding>;
695
+ default: undefined;
696
+ };
697
+ customClass: {
698
+ type: PropType<any>;
699
+ default: string;
700
+ };
701
+ floatingMiddleware: {
702
+ type: PropType<{
703
+ name: string;
704
+ options?: any;
705
+ fn: (state: {
706
+ x: number;
707
+ y: number;
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>;
716
+ }[]>;
717
+ default: undefined;
718
+ };
719
+ hide: {
720
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
721
+ default: undefined;
722
+ };
723
+ id: {
724
+ type: PropType<string>;
725
+ default: undefined;
726
+ };
727
+ inline: {
728
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
729
+ default: boolean;
730
+ };
731
+ manual: {
732
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
733
+ default: boolean;
734
+ };
735
+ modelValue: {
736
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
737
+ default: boolean;
738
+ };
739
+ noAutoClose: {
740
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
741
+ default: boolean;
742
+ };
743
+ noFade: {
744
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
745
+ default: boolean;
746
+ };
747
+ noFlip: {
748
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
749
+ default: boolean;
750
+ };
751
+ noHide: {
752
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
753
+ default: boolean;
754
+ };
755
+ noShift: {
756
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
757
+ default: boolean;
758
+ };
759
+ noSize: {
760
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
761
+ default: boolean;
762
+ };
763
+ noninteractive: {
764
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
765
+ default: boolean;
766
+ };
767
+ placement: {
768
+ type: PropType<import('bootstrap-vue-next').PopoverPlacement>;
769
+ default: string;
770
+ };
771
+ persistent: {
772
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
773
+ default: boolean;
774
+ };
775
+ realtime: {
776
+ type: PropType<import('bootstrap-vue-next/dist/src/types').Booleanish>;
777
+ default: boolean;
778
+ };
779
+ reference: {
780
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
781
+ default: null;
782
+ };
783
+ strategy: {
784
+ type: PropType<import('@floating-ui/utils').Strategy>;
785
+ default: string;
786
+ };
787
+ }>> & {
788
+ onHidden?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
789
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
790
+ onShow?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
791
+ onHide?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
792
+ "onHide-prevented"?: (() => any) | undefined;
793
+ "onShow-prevented"?: (() => any) | undefined;
794
+ onShown?: ((value: import('bootstrap-vue-next').BvTriggerableEvent) => any) | undefined;
795
+ }, {
796
+ hide: (e: Readonly<Event>) => void;
797
+ show: () => void;
798
+ toggle: (e?: Event | undefined) => void;
799
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {
800
+ hidden: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
801
+ "update:modelValue": (value: boolean) => void;
802
+ show: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
803
+ hide: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
804
+ "hide-prevented": () => void;
805
+ "show-prevented": () => void;
806
+ shown: (value: import('bootstrap-vue-next').BvTriggerableEvent) => void;
807
+ }, string, {
808
+ offset: import('bootstrap-vue-next/dist/src/types').Numberish | null;
809
+ target: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
810
+ title: string;
811
+ click: import('bootstrap-vue-next/dist/src/types').Booleanish;
812
+ id: string;
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;
820
+ container: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>>;
821
+ content: string;
822
+ customClass: any;
823
+ delay: number | Readonly<{
824
+ show: number;
825
+ hide: number;
826
+ }>;
827
+ floatingMiddleware: {
828
+ name: string;
829
+ options?: any;
830
+ fn: (state: {
831
+ x: number;
832
+ y: number;
833
+ placement: import('@floating-ui/utils').Placement;
834
+ strategy: import('@floating-ui/utils').Strategy;
835
+ initialPlacement: import('@floating-ui/utils').Placement;
836
+ middlewareData: any;
837
+ rects: import('@floating-ui/utils').ElementRects;
838
+ platform: any;
839
+ elements: import('@floating-ui/dom').Elements;
840
+ }) => any;
841
+ }[];
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;
853
+ reference: string | Readonly<HTMLElement> | Readonly<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('../../node_modules/vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>> | null;
854
+ strategy: import('@floating-ui/utils').Strategy;
855
+ tooltip: import('bootstrap-vue-next/dist/src/types').Booleanish;
856
+ }, {}, string, {}> & import('../../node_modules/vue').VNodeProps & import('../../node_modules/vue').AllowedComponentProps & import('../../node_modules/vue').ComponentCustomProps & (new () => {
857
+ $slots: Readonly<{
858
+ default?: ((props: Record<string, never>) => any) | undefined;
859
+ target?: ((props: {
860
+ show: () => void;
861
+ hide: (e: Event) => void;
862
+ toggle: (e: Event) => void;
863
+ showState: boolean;
864
+ }) => any) | undefined;
865
+ title?: ((props: Record<string, never>) => any) | undefined;
866
+ }> & {
867
+ default?: ((props: Record<string, never>) => any) | undefined;
868
+ target?: ((props: {
869
+ show: () => void;
870
+ hide: (e: Event) => void;
871
+ toggle: (e: Event) => void;
872
+ showState: boolean;
873
+ }) => any) | undefined;
874
+ title?: ((props: Record<string, never>) => any) | undefined;
875
+ };
876
+ })> | null>;
877
+ collapseNavbar: import('../../node_modules/vue').Ref<boolean>;
878
+ shortMode: import('../../node_modules/vue').Ref<BrandMode>;
879
+ longMode: import('../../node_modules/vue').Ref<BrandMode>;
880
+ appliedBrandOptions: import('../../node_modules/vue').ComputedRef<BrandOptions>;
881
+ closable: import('../../node_modules/vue').Ref<boolean>;
882
+ closeFollowUsPopover: () => void;
883
+ toggleNavbar: () => void;
884
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
885
+ /**
886
+ * CSS position of the header. Can be <em>absolute</em>, <em>relative</em>, <em>static</em> or <em>fixed</em> (default).
887
+ */
888
+ position: {
889
+ type: StringConstructor;
890
+ default: string;
891
+ };
892
+ /**
893
+ * Disable Headroom for hiding header until needed.
894
+ */
895
+ noHeadroom: {
896
+ type: BooleanConstructor;
897
+ default: boolean;
898
+ };
899
+ /**
900
+ * Target link of the ICIJ logo and project name.
901
+ */
902
+ homeUrl: {
903
+ type: StringConstructor;
904
+ default: () => any;
905
+ };
906
+ /**
907
+ * Default options to pass to the brand component
908
+ */
909
+ brandOptions: {
910
+ type: PropType<BrandOptions>;
911
+ default: () => {};
912
+ };
913
+ /**
914
+ * Target link of the donate button.
915
+ */
916
+ donateUrl: {
917
+ type: StringConstructor;
918
+ default: () => any;
919
+ };
920
+ }>>, {
921
+ position: string;
922
+ homeUrl: string;
923
+ noHeadroom: boolean;
924
+ brandOptions: BrandOptions;
925
+ donateUrl: string;
926
+ }, {}>;
927
+ export default _default;