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