@icij/murmur-next 4.0.0 → 4.0.3

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 (334) hide show
  1. package/README.md +15 -19
  2. package/dist/lib/components/AccordionStep.vue.d.ts +79 -0
  3. package/dist/lib/components/AccordionWrapper.vue.d.ts +33 -0
  4. package/dist/lib/components/ActiveTextTruncate.vue.d.ts +101 -0
  5. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +168 -0
  6. package/dist/lib/components/Brand.vue.d.ts +55 -0
  7. package/dist/lib/components/BrandExpansion.vue.d.ts +105 -0
  8. package/dist/lib/components/ConfirmButton.vue.d.ts +158 -0
  9. package/dist/lib/components/ContentPlaceholder.vue.d.ts +44 -0
  10. package/dist/lib/components/CustomPagination.vue.d.ts +130 -0
  11. package/dist/lib/components/DigitsInput.vue.d.ts +66 -0
  12. package/dist/lib/components/DonateForm.vue.d.ts +46 -0
  13. package/dist/lib/components/EmbedForm.vue.d.ts +121 -0
  14. package/dist/lib/components/EmbeddableFooter.vue.d.ts +103 -0
  15. package/dist/lib/components/FollowUsPopover.vue.d.ts +16 -0
  16. package/dist/lib/components/GenericFooter.vue.d.ts +47 -0
  17. package/dist/lib/components/GenericHeader.vue.d.ts +928 -0
  18. package/dist/lib/components/HapticCopy.vue.d.ts +156 -0
  19. package/dist/lib/components/ImddbHeader.vue.d.ts +960 -0
  20. package/dist/lib/components/OrdinalLegend.vue.d.ts +87 -0
  21. package/dist/lib/components/RangePicker.vue.d.ts +196 -0
  22. package/dist/lib/components/ResponsiveIframe.vue.d.ts +45 -0
  23. package/dist/lib/components/ScaleLegend.vue.d.ts +101 -0
  24. package/dist/lib/components/SecretInput.vue.d.ts +99 -0
  25. package/dist/lib/components/SelectableDropdown.vue.d.ts +210 -0
  26. package/dist/lib/components/SharingOptions.vue.d.ts +153 -0
  27. package/dist/lib/components/SharingOptionsLink.vue.d.ts +200 -0
  28. package/dist/lib/components/SignUpForm.vue.d.ts +141 -0
  29. package/dist/lib/components/SlideUpDown.vue.d.ts +74 -0
  30. package/dist/lib/components/TexturedDeck.vue.d.ts +89 -0
  31. package/dist/lib/components/TinyPagination.vue.d.ts +188 -0
  32. package/dist/lib/composables/chart.d.ts +48 -0
  33. package/dist/lib/composables/resizeObserver.d.ts +22 -0
  34. package/dist/lib/composables/sendEmail.d.ts +6 -0
  35. package/dist/lib/config.d.ts +19 -0
  36. package/dist/lib/config.default.d.ts +34 -0
  37. package/dist/lib/datavisualisations/BarChart.vue.d.ts +234 -0
  38. package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +404 -0
  39. package/dist/lib/datavisualisations/LineChart.vue.d.ts +200 -0
  40. package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +342 -0
  41. package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +412 -0
  42. package/dist/lib/enums.d.ts +32 -0
  43. package/dist/lib/i18n.d.ts +4 -0
  44. package/dist/lib/keys.d.ts +2 -0
  45. package/dist/lib/main.d.ts +52 -0
  46. package/dist/lib/maps/ChoroplethMap.vue.d.ts +460 -0
  47. package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +188 -0
  48. package/dist/lib/maps/SymbolMap.vue.d.ts +276 -0
  49. package/dist/lib/murmur.css +1 -0
  50. package/dist/lib/murmur.js +44661 -0
  51. package/dist/lib/murmur.js.map +1 -0
  52. package/dist/lib/murmur.umd.cjs +837 -0
  53. package/dist/lib/murmur.umd.cjs.map +1 -0
  54. package/dist/lib/types.d.ts +44 -0
  55. package/dist/lib/utils/animation.d.ts +8 -0
  56. package/dist/lib/utils/assets.d.ts +2 -0
  57. package/dist/lib/utils/clipboard.d.ts +2 -0
  58. package/dist/lib/utils/iframe-resizer.d.ts +10 -0
  59. package/dist/lib/utils/placeholder.d.ts +12 -0
  60. package/dist/lib/utils/placeholderTypes.d.ts +18 -0
  61. package/dist/lib/utils/strings.d.ts +1 -0
  62. package/lib/components/AccordionStep.vue +53 -42
  63. package/lib/components/AccordionWrapper.vue +25 -24
  64. package/lib/components/ActiveTextTruncate.vue +44 -22
  65. package/lib/components/AdvancedLinkForm.vue +96 -46
  66. package/lib/components/Brand.vue +30 -23
  67. package/lib/components/BrandExpansion.vue +12 -3
  68. package/lib/components/ConfirmButton.vue +30 -26
  69. package/lib/components/ContentPlaceholder.vue +11 -7
  70. package/lib/components/CustomPagination.vue +50 -32
  71. package/lib/components/DigitsInput.vue +64 -60
  72. package/lib/components/DonateForm.vue +112 -83
  73. package/lib/components/EmbedForm.vue +37 -21
  74. package/lib/components/EmbeddableFooter.vue +14 -10
  75. package/lib/components/FollowUsPopover.vue +42 -40
  76. package/lib/components/GenericFooter.vue +98 -23
  77. package/lib/components/GenericHeader.vue +66 -29
  78. package/lib/components/HapticCopy.vue +41 -29
  79. package/lib/components/ImddbHeader.vue +113 -92
  80. package/lib/components/OrdinalLegend.vue +43 -20
  81. package/lib/components/RangePicker.vue +63 -42
  82. package/lib/components/ResponsiveIframe.vue +9 -2
  83. package/lib/components/ScaleLegend.vue +56 -18
  84. package/lib/components/SecretInput.vue +7 -8
  85. package/lib/components/SelectableDropdown.vue +119 -74
  86. package/lib/components/SharingOptions.vue +93 -36
  87. package/lib/components/SharingOptionsLink.vue +11 -5
  88. package/lib/components/SignUpForm.vue +44 -23
  89. package/lib/components/SlideUpDown.vue +7 -2
  90. package/lib/components/TexturedDeck.vue +24 -14
  91. package/lib/components/TinyPagination.vue +35 -22
  92. package/lib/composables/chart.ts +174 -157
  93. package/lib/composables/resizeObserver.ts +29 -29
  94. package/lib/composables/sendEmail.ts +53 -42
  95. package/lib/config.default.ts +17 -10
  96. package/lib/config.ts +34 -27
  97. package/lib/datavisualisations/BarChart.vue +48 -42
  98. package/lib/datavisualisations/ColumnChart.vue +133 -89
  99. package/lib/datavisualisations/LineChart.vue +79 -57
  100. package/lib/datavisualisations/StackedBarChart.vue +116 -68
  101. package/lib/datavisualisations/StackedColumnChart.vue +196 -115
  102. package/lib/enums.ts +25 -15
  103. package/lib/i18n.ts +3 -3
  104. package/lib/keys.ts +2 -2
  105. package/lib/main.ts +14 -10
  106. package/lib/maps/ChoroplethMap.vue +299 -160
  107. package/lib/maps/ChoroplethMapAnnotation.vue +29 -18
  108. package/lib/maps/SymbolMap.vue +194 -123
  109. package/lib/shims-bootstrap-vue.d.ts +1 -1
  110. package/lib/shims-vue.d.ts +3 -3
  111. package/lib/styles/functions.scss +10 -6
  112. package/lib/styles/lib.scss +2 -4
  113. package/lib/styles/mixins.scss +8 -8
  114. package/lib/styles/utilities.scss +1 -1
  115. package/lib/styles/variables.scss +24 -18
  116. package/lib/types.ts +26 -10
  117. package/lib/utils/animation.ts +4 -4
  118. package/lib/utils/assets.ts +31 -28
  119. package/lib/utils/clipboard.ts +16 -10
  120. package/lib/utils/iframe-resizer.ts +18 -13
  121. package/lib/utils/placeholder.ts +54 -23
  122. package/lib/utils/placeholderTypes.ts +3 -3
  123. package/package.json +21 -2
  124. package/.github/workflows/deploy-github-pages.yaml +0 -50
  125. package/.storybook/app.scss +0 -14
  126. package/.storybook/doc_variables.scss +0 -20
  127. package/.storybook/main.ts +0 -35
  128. package/.storybook/preview-head.html +0 -2
  129. package/.storybook/preview.ts +0 -32
  130. package/deploy.js +0 -15
  131. package/docs/components/ApiTable.vue +0 -171
  132. package/docs/components/App.vue +0 -146
  133. package/docs/components/CollapsibleBlock.vue +0 -122
  134. package/docs/components/DocsHeader.vue +0 -68
  135. package/docs/components/DocsMenu.vue +0 -201
  136. package/docs/components/DocsMenuSection.vue +0 -109
  137. package/docs/components/EditLink.vue +0 -49
  138. package/docs/components/OutboundLink.vue +0 -13
  139. package/docs/components/PalettePresenter.vue +0 -96
  140. package/docs/components/RepositoryLink.vue +0 -28
  141. package/docs/components/SampleCard.vue +0 -119
  142. package/docs/main.js +0 -42
  143. package/docs/pages/components/accordion/doc.md +0 -96
  144. package/docs/pages/components/active-text-truncate/doc.md +0 -44
  145. package/docs/pages/components/advanced-link-form/doc.md +0 -105
  146. package/docs/pages/components/brand/doc.md +0 -30
  147. package/docs/pages/components/brand-expansion/doc.md +0 -70
  148. package/docs/pages/components/confirm-button/doc.md +0 -91
  149. package/docs/pages/components/content-placeholder/doc.md +0 -16
  150. package/docs/pages/components/custom-pagination/doc.md +0 -61
  151. package/docs/pages/components/digits-input/doc.md +0 -28
  152. package/docs/pages/components/donate-form/doc.md +0 -20
  153. package/docs/pages/components/embed-form/doc.md +0 -22
  154. package/docs/pages/components/embeddable-footer/doc.md +0 -60
  155. package/docs/pages/components/follow-us-popover/doc.md +0 -5
  156. package/docs/pages/components/generic-footer/doc.md +0 -21
  157. package/docs/pages/components/generic-header/doc.md +0 -24
  158. package/docs/pages/components/haptic-copy/doc.md +0 -27
  159. package/docs/pages/components/imddb-header/doc.md +0 -23
  160. package/docs/pages/components/ordinal-legend/doc.md +0 -44
  161. package/docs/pages/components/range-picker/doc.md +0 -86
  162. package/docs/pages/components/responsive-iframe/doc.md +0 -13
  163. package/docs/pages/components/scale-legend/doc.md +0 -65
  164. package/docs/pages/components/secret-input/doc.md +0 -12
  165. package/docs/pages/components/selectable-dropdown/doc.md +0 -156
  166. package/docs/pages/components/sharing-options/doc.md +0 -13
  167. package/docs/pages/components/sharing-options-link/doc.md +0 -36
  168. package/docs/pages/components/sign-up-form/doc.md +0 -13
  169. package/docs/pages/components/slide-up-down/doc.md +0 -28
  170. package/docs/pages/components/textured-deck/doc.md +0 -78
  171. package/docs/pages/components/tiny-pagination/doc.md +0 -92
  172. package/docs/pages/datavisualisation/bars/doc.md +0 -110
  173. package/docs/pages/datavisualisation/columns/doc.md +0 -165
  174. package/docs/pages/datavisualisation/lines/doc.md +0 -139
  175. package/docs/pages/datavisualisation/stacked-bar/doc.md +0 -160
  176. package/docs/pages/datavisualisation/stacked-column/doc.md +0 -191
  177. package/docs/pages/getting-started/about-icij/doc.md +0 -13
  178. package/docs/pages/getting-started/custom-bootstrap/doc.md +0 -36
  179. package/docs/pages/getting-started/installation-guide/doc.md +0 -59
  180. package/docs/pages/getting-started/internationalization/doc.md +0 -74
  181. package/docs/pages/maps/choropleth-map/doc.md +0 -420
  182. package/docs/pages/maps/choropleth-map-annotation/doc.md +0 -373
  183. package/docs/pages/maps/symbol-map/doc.md +0 -203
  184. package/docs/pages/structure/breakpoints/doc.md +0 -3
  185. package/docs/pages/structure/grid/doc.md +0 -3
  186. package/docs/pages/utilities/assets/doc.md +0 -138
  187. package/docs/pages/utilities/config/doc.md +0 -52
  188. package/docs/pages/utilities/iframes/doc.md +0 -3
  189. package/docs/pages/visual/colors/doc.md +0 -31
  190. package/docs/pages/visual/iconography/doc.md +0 -56
  191. package/docs/pages/visual/states/doc.md +0 -77
  192. package/docs/pages/visual/themes/doc.md +0 -3
  193. package/docs/pages/visual/typography/doc.md +0 -71
  194. package/docs/routes.js +0 -25
  195. package/docs/store/index.js +0 -21
  196. package/docs/styles/app.scss +0 -36
  197. package/docs/styles/variables.scss +0 -20
  198. package/loaders/highlight-loader.js +0 -13
  199. package/loaders/markdown-loader.js +0 -91
  200. package/loaders/metadata-loader.js +0 -18
  201. package/loaders/sass-extract-loader.js +0 -14
  202. package/loaders/vue-docgen-loader.js +0 -14
  203. package/plugins/MdPluginTypes.ts +0 -10
  204. package/plugins/docs.ts +0 -50
  205. package/plugins/front-matter.ts +0 -36
  206. package/plugins/highlight.ts +0 -27
  207. package/plugins/markdown-it/api-table.ts +0 -25
  208. package/plugins/markdown-it/sample-card.ts +0 -31
  209. package/plugins/plugin-delete.ts +0 -47
  210. package/plugins/plugin-docgen.ts +0 -23
  211. package/plugins/sass-vars.ts +0 -25
  212. package/plugins/vue-docgen.ts +0 -29
  213. package/public/android-chrome-192x192.png +0 -0
  214. package/public/android-chrome-512x512.png +0 -0
  215. package/public/apple-touch-icon.png +0 -0
  216. package/public/assets/img/arrow-bottom.svg +0 -3
  217. package/public/assets/img/texture-brick-black.jpg +0 -0
  218. package/public/assets/img/texture-brick.jpg +0 -0
  219. package/public/assets/img/texture-carbon-black.jpg +0 -0
  220. package/public/assets/img/texture-carbon.jpg +0 -0
  221. package/public/assets/img/texture-crack-black.jpg +0 -0
  222. package/public/assets/img/texture-crack.jpg +0 -0
  223. package/public/assets/img/texture-rock-black.jpg +0 -0
  224. package/public/assets/img/texture-rock.jpg +0 -0
  225. package/public/assets/img/texture-sand-black.jpg +0 -0
  226. package/public/assets/img/texture-sand.jpg +0 -0
  227. package/public/assets/img/texture-silk-black.jpg +0 -0
  228. package/public/assets/img/texture-silk.jpg +0 -0
  229. package/public/assets/topojson/france-departments.json +0 -1
  230. package/public/assets/topojson/paris-arrondissements.json +0 -1
  231. package/public/assets/topojson/world-countries-sans-antarctica.json +0 -1
  232. package/public/favicon-16x16.png +0 -0
  233. package/public/favicon-32x32.png +0 -0
  234. package/public/favicon.ico +0 -0
  235. package/public/site.webmanifest +0 -1
  236. package/stories/assets/code-brackets.svg +0 -1
  237. package/stories/assets/colors.svg +0 -1
  238. package/stories/assets/comments.svg +0 -1
  239. package/stories/assets/direction.svg +0 -1
  240. package/stories/assets/flow.svg +0 -1
  241. package/stories/assets/plugin.svg +0 -1
  242. package/stories/assets/repo.svg +0 -1
  243. package/stories/assets/stackalt.svg +0 -1
  244. package/stories/getting-started/about-icij.mdx +0 -14
  245. package/stories/getting-started/custom-bootstrap.mdx +0 -23
  246. package/stories/getting-started/installation-guide.mdx +0 -62
  247. package/stories/getting-started/internationalization.mdx +0 -63
  248. package/stories/murmur/components/AccordionStep.stories.ts +0 -33
  249. package/stories/murmur/components/AccordionWrapper.stories.ts +0 -69
  250. package/stories/murmur/components/ActiveTextTruncate.stories.ts +0 -32
  251. package/stories/murmur/components/AdvancedLinkForm.stories.ts +0 -77
  252. package/stories/murmur/components/Brand.stories.ts +0 -30
  253. package/stories/murmur/components/BrandExpansion.stories.ts +0 -41
  254. package/stories/murmur/components/ConfirmButton.stories.ts +0 -40
  255. package/stories/murmur/components/ContentPlaceholder.stories.ts +0 -41
  256. package/stories/murmur/components/CustomPagination.stories.ts +0 -42
  257. package/stories/murmur/components/DigitsInput.stories.ts +0 -29
  258. package/stories/murmur/components/DonateForm.stories.ts +0 -29
  259. package/stories/murmur/components/EmbedForm.stories.ts +0 -35
  260. package/stories/murmur/components/EmbeddableFooter.stories.ts +0 -59
  261. package/stories/murmur/components/FollowUsPopover.stories.ts +0 -24
  262. package/stories/murmur/components/GenericFooter.stories.ts +0 -27
  263. package/stories/murmur/components/GenericHeader.stories.ts +0 -27
  264. package/stories/murmur/components/HapticCopy.stories.ts +0 -40
  265. package/stories/murmur/components/ImddbHeader.stories.ts +0 -27
  266. package/stories/murmur/components/OrdinalLegend.stories.ts +0 -49
  267. package/stories/murmur/components/RangePicker.stories.ts +0 -98
  268. package/stories/murmur/components/ResponsiveIframe.stories.ts +0 -24
  269. package/stories/murmur/components/ScaleLegend.stories.ts +0 -65
  270. package/stories/murmur/components/SecretInput.stories.ts +0 -60
  271. package/stories/murmur/components/SelectableDropdown.stories.ts +0 -143
  272. package/stories/murmur/components/SharingOptions.stories.ts +0 -32
  273. package/stories/murmur/components/SharingOptionsLink.stories.ts +0 -53
  274. package/stories/murmur/components/SignUpForm.stories.ts +0 -51
  275. package/stories/murmur/components/SlideUpDown.stories.ts +0 -32
  276. package/stories/murmur/components/TexturedDeck.stories.ts +0 -83
  277. package/stories/murmur/components/TinyPagination.stories.ts +0 -65
  278. package/stories/murmur/datavisualisations/BarChart.stories.ts +0 -54
  279. package/stories/murmur/datavisualisations/ColumnChart.stories.ts +0 -88
  280. package/stories/murmur/datavisualisations/LineChart.stories.ts +0 -139
  281. package/stories/murmur/datavisualisations/StackedBarChart.stories.ts +0 -199
  282. package/stories/murmur/datavisualisations/StackedColumnChart.stories.ts +0 -136
  283. package/stories/murmur/decorators.ts +0 -108
  284. package/stories/murmur/maps/ChoroplethMap.stories.ts +0 -440
  285. package/stories/murmur/maps/ChoroplethMapAnnotation.stories.ts +0 -26
  286. package/stories/murmur/maps/SymbolMap.stories.ts +0 -24
  287. package/stories/murmur/utils.ts +0 -7
  288. package/tests/unit/components/AccordionStep.spec.ts +0 -157
  289. package/tests/unit/components/AccordionWrapper.spec.ts +0 -57
  290. package/tests/unit/components/ActiveTextTruncate.spec.js +0 -30
  291. package/tests/unit/components/AdvancedLinkForm.spec.js +0 -124
  292. package/tests/unit/components/Brand.spec.js +0 -50
  293. package/tests/unit/components/ContentPlaceholder.spec.js +0 -29
  294. package/tests/unit/components/CustomPagination.spec.js +0 -72
  295. package/tests/unit/components/DigitsInput.spec.ts +0 -157
  296. package/tests/unit/components/DonateForm.spec.js +0 -149
  297. package/tests/unit/components/EmbedForm.spec.js +0 -108
  298. package/tests/unit/components/EmbeddableFooter.spec.js +0 -11
  299. package/tests/unit/components/Fa.spec.js +0 -18
  300. package/tests/unit/components/FollowUsPopover.spec.js +0 -29
  301. package/tests/unit/components/GenericFooter.spec.js +0 -29
  302. package/tests/unit/components/GenericHeader.spec.js +0 -104
  303. package/tests/unit/components/HapticCopy.spec.js +0 -123
  304. package/tests/unit/components/ImddbHeader.spec.js +0 -96
  305. package/tests/unit/components/OrdinalLegend.spec.js +0 -120
  306. package/tests/unit/components/RangePicker.spec.ts +0 -87
  307. package/tests/unit/components/ResponsiveIframe.spec.js +0 -20
  308. package/tests/unit/components/ScaleLegend.spec.js +0 -139
  309. package/tests/unit/components/SecretInput.spec.js +0 -81
  310. package/tests/unit/components/SelectableDropdown.spec.js +0 -160
  311. package/tests/unit/components/SharingOptions.spec.js +0 -125
  312. package/tests/unit/components/SharingOptionsLink.spec.js +0 -184
  313. package/tests/unit/components/SignUpForm.spec.js +0 -145
  314. package/tests/unit/components/SlideUpDown.spec.js +0 -59
  315. package/tests/unit/components/TinyPagination.spec.js +0 -46
  316. package/tests/unit/config.spec.js +0 -136
  317. package/tests/unit/datavisualisations/BarChart.spec.js +0 -63
  318. package/tests/unit/datavisualisations/ColumnChart.spec.js +0 -344
  319. package/tests/unit/datavisualisations/LineChart.spec.js +0 -155
  320. package/tests/unit/datavisualisations/StackedBarChart.spec.js +0 -294
  321. package/tests/unit/datavisualisations/StackedColumnChart.spec.js +0 -443
  322. package/tests/unit/i18n.spec.ts +0 -19
  323. package/tests/unit/main.spec.js +0 -82
  324. package/tests/unit/maps/ChoroplethMap.spec.js +0 -214
  325. package/tests/unit/maps/ChoroplethMapAnnotation.spec.ts +0 -186
  326. package/tests/unit/maps/SymbolMap.spec.js +0 -92
  327. package/tests/unit/require.spec.js +0 -22
  328. package/tests/unit/setup.js +0 -13
  329. package/tests/unit/utils/assets.spec.js +0 -61
  330. package/tests/unit/utils/clipboard.spec.js +0 -18
  331. package/tests/unit/utils/iframe-resizer.spec.js +0 -71
  332. package/tsconfig.json +0 -35
  333. package/vite.config.ts +0 -79
  334. package/vitest.config.ts +0 -19
@@ -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
+ title: {
93
+ type: PropType<string>;
94
+ default: undefined;
95
+ };
96
+ variant: {
97
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
98
+ default: null;
99
+ };
100
+ html: {
101
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
102
+ default: boolean;
103
+ };
104
+ id: {
105
+ type: PropType<string>;
106
+ default: undefined;
107
+ };
108
+ modelValue: {
109
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
110
+ default: boolean;
111
+ };
112
+ target: {
113
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
114
+ default: null;
115
+ };
116
+ hide: {
117
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
118
+ default: undefined;
119
+ };
120
+ click: {
121
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
122
+ default: boolean;
123
+ };
124
+ delay: {
125
+ type: PropType<number | Readonly<{
126
+ show: number;
127
+ hide: number;
128
+ }>>;
129
+ default: () => {
130
+ show: number;
131
+ hide: number;
132
+ };
133
+ };
134
+ tooltip: {
135
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
136
+ default: boolean;
137
+ };
138
+ boundary: {
139
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
140
+ default: string;
141
+ };
142
+ boundaryPadding: {
143
+ type: PropType<import("@floating-ui/utils").Padding>;
144
+ default: undefined;
145
+ };
146
+ customClass: {
147
+ type: PropType<any>;
148
+ default: string;
149
+ };
150
+ floatingMiddleware: {
151
+ type: PropType<{
152
+ name: string;
153
+ options?: any;
154
+ fn: (state: {
155
+ x: number;
156
+ y: number;
157
+ placement: import("@floating-ui/utils").Placement;
158
+ strategy: import("@floating-ui/utils").Strategy;
159
+ initialPlacement: import("@floating-ui/utils").Placement;
160
+ middlewareData: import("@floating-ui/core").MiddlewareData;
161
+ rects: import("@floating-ui/utils").ElementRects;
162
+ platform: import("@floating-ui/core").Platform;
163
+ elements: import("@floating-ui/dom").Elements;
164
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
165
+ }[]>;
166
+ default: undefined;
167
+ };
168
+ inline: {
169
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
170
+ default: boolean;
171
+ };
172
+ manual: {
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
+ title: {
258
+ type: PropType<string>;
259
+ default: undefined;
260
+ };
261
+ variant: {
262
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
263
+ default: null;
264
+ };
265
+ html: {
266
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
267
+ default: boolean;
268
+ };
269
+ id: {
270
+ type: PropType<string>;
271
+ default: undefined;
272
+ };
273
+ modelValue: {
274
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
275
+ default: boolean;
276
+ };
277
+ target: {
278
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
279
+ default: null;
280
+ };
281
+ hide: {
282
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
283
+ default: undefined;
284
+ };
285
+ click: {
286
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
287
+ default: boolean;
288
+ };
289
+ delay: {
290
+ type: PropType<number | Readonly<{
291
+ show: number;
292
+ hide: number;
293
+ }>>;
294
+ default: () => {
295
+ show: number;
296
+ hide: number;
297
+ };
298
+ };
299
+ tooltip: {
300
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
301
+ default: boolean;
302
+ };
303
+ boundary: {
304
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
305
+ default: string;
306
+ };
307
+ boundaryPadding: {
308
+ type: PropType<import("@floating-ui/utils").Padding>;
309
+ default: undefined;
310
+ };
311
+ customClass: {
312
+ type: PropType<any>;
313
+ default: string;
314
+ };
315
+ floatingMiddleware: {
316
+ type: PropType<{
317
+ name: string;
318
+ options?: any;
319
+ fn: (state: {
320
+ x: number;
321
+ y: number;
322
+ placement: import("@floating-ui/utils").Placement;
323
+ strategy: import("@floating-ui/utils").Strategy;
324
+ initialPlacement: import("@floating-ui/utils").Placement;
325
+ middlewareData: import("@floating-ui/core").MiddlewareData;
326
+ rects: import("@floating-ui/utils").ElementRects;
327
+ platform: import("@floating-ui/core").Platform;
328
+ elements: import("@floating-ui/dom").Elements;
329
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
330
+ }[]>;
331
+ default: undefined;
332
+ };
333
+ inline: {
334
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
335
+ default: boolean;
336
+ };
337
+ manual: {
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
+ title: {
467
+ type: PropType<string>;
468
+ default: undefined;
469
+ };
470
+ variant: {
471
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
472
+ default: null;
473
+ };
474
+ html: {
475
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
476
+ default: boolean;
477
+ };
478
+ id: {
479
+ type: PropType<string>;
480
+ default: undefined;
481
+ };
482
+ modelValue: {
483
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
484
+ default: boolean;
485
+ };
486
+ target: {
487
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
488
+ default: null;
489
+ };
490
+ hide: {
491
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
492
+ default: undefined;
493
+ };
494
+ click: {
495
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
496
+ default: boolean;
497
+ };
498
+ delay: {
499
+ type: PropType<number | Readonly<{
500
+ show: number;
501
+ hide: number;
502
+ }>>;
503
+ default: () => {
504
+ show: number;
505
+ hide: number;
506
+ };
507
+ };
508
+ tooltip: {
509
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
510
+ default: boolean;
511
+ };
512
+ boundary: {
513
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
514
+ default: string;
515
+ };
516
+ boundaryPadding: {
517
+ type: PropType<import("@floating-ui/utils").Padding>;
518
+ default: undefined;
519
+ };
520
+ customClass: {
521
+ type: PropType<any>;
522
+ default: string;
523
+ };
524
+ floatingMiddleware: {
525
+ type: PropType<{
526
+ name: string;
527
+ options?: any;
528
+ fn: (state: {
529
+ x: number;
530
+ y: number;
531
+ placement: import("@floating-ui/utils").Placement;
532
+ strategy: import("@floating-ui/utils").Strategy;
533
+ initialPlacement: import("@floating-ui/utils").Placement;
534
+ middlewareData: import("@floating-ui/core").MiddlewareData;
535
+ rects: import("@floating-ui/utils").ElementRects;
536
+ platform: import("@floating-ui/core").Platform;
537
+ elements: import("@floating-ui/dom").Elements;
538
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
539
+ }[]>;
540
+ default: undefined;
541
+ };
542
+ inline: {
543
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
544
+ default: boolean;
545
+ };
546
+ manual: {
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
+ title: {
677
+ type: PropType<string>;
678
+ default: undefined;
679
+ };
680
+ variant: {
681
+ type: PropType<keyof import("bootstrap-vue-next").BaseColorVariant | null>;
682
+ default: null;
683
+ };
684
+ html: {
685
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
686
+ default: boolean;
687
+ };
688
+ id: {
689
+ type: PropType<string>;
690
+ default: undefined;
691
+ };
692
+ modelValue: {
693
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
694
+ default: boolean;
695
+ };
696
+ target: {
697
+ type: PropType<string | Readonly<ComponentPublicInstance> | Readonly<HTMLElement> | null>;
698
+ default: null;
699
+ };
700
+ hide: {
701
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
702
+ default: undefined;
703
+ };
704
+ click: {
705
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
706
+ default: boolean;
707
+ };
708
+ delay: {
709
+ type: PropType<number | Readonly<{
710
+ show: number;
711
+ hide: number;
712
+ }>>;
713
+ default: () => {
714
+ show: number;
715
+ hide: number;
716
+ };
717
+ };
718
+ tooltip: {
719
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
720
+ default: boolean;
721
+ };
722
+ boundary: {
723
+ type: PropType<Element | "clippingAncestors" | Element[] | import("@floating-ui/utils").Rect | "viewport" | "document">;
724
+ default: string;
725
+ };
726
+ boundaryPadding: {
727
+ type: PropType<import("@floating-ui/utils").Padding>;
728
+ default: undefined;
729
+ };
730
+ customClass: {
731
+ type: PropType<any>;
732
+ default: string;
733
+ };
734
+ floatingMiddleware: {
735
+ type: PropType<{
736
+ name: string;
737
+ options?: any;
738
+ fn: (state: {
739
+ x: number;
740
+ y: number;
741
+ placement: import("@floating-ui/utils").Placement;
742
+ strategy: import("@floating-ui/utils").Strategy;
743
+ initialPlacement: import("@floating-ui/utils").Placement;
744
+ middlewareData: import("@floating-ui/core").MiddlewareData;
745
+ rects: import("@floating-ui/utils").ElementRects;
746
+ platform: import("@floating-ui/core").Platform;
747
+ elements: import("@floating-ui/dom").Elements;
748
+ }) => import("@floating-ui/core").MiddlewareReturn | Promise<import("@floating-ui/core").MiddlewareReturn>;
749
+ }[]>;
750
+ default: undefined;
751
+ };
752
+ inline: {
753
+ type: PropType<import("bootstrap-vue-next/dist/src/types").Booleanish>;
754
+ default: boolean;
755
+ };
756
+ manual: {
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;