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