@icij/murmur-next 4.0.5 → 4.0.7

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