@icij/murmur-next 4.0.12 → 4.0.14

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 +1 -2
  2. package/dist/lib/components/AccordionWrapper.vue.d.ts +1 -2
  3. package/dist/lib/components/ActiveTextTruncate.vue.d.ts +0 -2
  4. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +6 -8
  5. package/dist/lib/components/Brand.vue.d.ts +1 -3
  6. package/dist/lib/components/BrandExpansion.vue.d.ts +2 -3
  7. package/dist/lib/components/ConfirmButton.vue.d.ts +1 -2
  8. package/dist/lib/components/ContentPlaceholder.vue.d.ts +2 -3
  9. package/dist/lib/components/CustomPagination.vue.d.ts +5 -6
  10. package/dist/lib/components/DigitsInput.vue.d.ts +0 -2
  11. package/dist/lib/components/DonateForm.vue.d.ts +4 -6
  12. package/dist/lib/components/EmbedForm.vue.d.ts +4 -6
  13. package/dist/lib/components/EmbeddableFooter.vue.d.ts +0 -2
  14. package/dist/lib/components/FollowUsPopover.vue.d.ts +4 -6
  15. package/dist/lib/components/GenericFooter.vue.d.ts +1 -2
  16. package/dist/lib/components/GenericHeader.vue.d.ts +399 -421
  17. package/dist/lib/components/HapticCopy.vue.d.ts +9 -10
  18. package/dist/lib/components/ImddbHeader.vue.d.ts +398 -420
  19. package/dist/lib/components/OrdinalLegend.vue.d.ts +1 -2
  20. package/dist/lib/components/RangePicker.vue.d.ts +6 -7
  21. package/dist/lib/components/ResponsiveIframe.vue.d.ts +2 -4
  22. package/dist/lib/components/ScaleLegend.vue.d.ts +3 -5
  23. package/dist/lib/components/SecretInput.vue.d.ts +0 -2
  24. package/dist/lib/components/SelectableDropdown.vue.d.ts +8 -8
  25. package/dist/lib/components/SharingOptions.vue.d.ts +2 -3
  26. package/dist/lib/components/SharingOptionsLink.vue.d.ts +1 -2
  27. package/dist/lib/components/SignUpForm.vue.d.ts +6 -7
  28. package/dist/lib/components/SlideUpDown.vue.d.ts +2 -3
  29. package/dist/lib/components/TexturedDeck.vue.d.ts +1 -2
  30. package/dist/lib/components/TinyPagination.vue.d.ts +9 -9
  31. package/dist/lib/composables/chart.d.ts +1 -2
  32. package/dist/lib/composables/resizeObserver.d.ts +1 -2
  33. package/dist/lib/composables/sendEmail.d.ts +1 -2
  34. package/dist/lib/config.d.ts +1 -0
  35. package/dist/lib/datavisualisations/BarChart.vue.d.ts +27 -21
  36. package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +9 -14
  37. package/dist/lib/datavisualisations/LineChart.vue.d.ts +7 -17
  38. package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +7 -9
  39. package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +5 -7
  40. package/dist/lib/i18n.d.ts +1 -0
  41. package/dist/lib/main.d.ts +4 -5
  42. package/dist/lib/maps/ChoroplethMap.vue.d.ts +6 -14
  43. package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +0 -2
  44. package/dist/lib/maps/SymbolMap.vue.d.ts +5 -6
  45. package/dist/lib/murmur.css +1 -1
  46. package/dist/lib/murmur.js +14002 -13433
  47. package/dist/lib/murmur.js.map +1 -1
  48. package/dist/lib/murmur.umd.cjs +46 -42
  49. package/dist/lib/murmur.umd.cjs.map +1 -1
  50. package/dist/lib/types.d.ts +3 -6
  51. package/dist/lib/utils/assets.d.ts +1 -1
  52. package/dist/lib/utils/iframe-resizer.d.ts +1 -1
  53. package/dist/lib/utils/placeholder.d.ts +1 -0
  54. package/dist/lib/utils/placeholderTypes.d.ts +2 -3
  55. package/lib/assets/images/murmur-textured.png +0 -0
  56. package/lib/components/AdvancedLinkForm.vue +22 -32
  57. package/lib/components/HapticCopy.vue +10 -3
  58. package/lib/components/SecretInput.vue +12 -15
  59. package/lib/components/SelectableDropdown.vue +24 -18
  60. package/lib/components/SharingOptions.vue +10 -20
  61. package/lib/datavisualisations/BarChart.vue +15 -10
  62. package/package.json +13 -14
@@ -1,14 +1,12 @@
1
- /// <reference types="node" />
2
- /// <reference types="@/shims-vue" />
3
- /// <reference types="vue-i18n" />
4
1
  import { PopoverPlacement } from 'bootstrap-vue-next';
5
2
  import { ComponentPublicInstance, PropType } from '../../node_modules/vue';
3
+
6
4
  declare const _default: import('../../node_modules/vue').DefineComponent<{
7
5
  /**
8
6
  * Text to copy to the clipboard
9
7
  */
10
8
  text: {
11
- type: StringConstructor;
9
+ type: (NumberConstructor | StringConstructor)[];
12
10
  default: null;
13
11
  };
14
12
  /**
@@ -60,13 +58,14 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
60
58
  type: BooleanConstructor;
61
59
  };
62
60
  }, {
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>;
61
+ t: import('vue-i18n').ComposerTranslation<{
62
+ [x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
63
+ }, string, import('@intlify/core-base').RemoveIndexSignature<{
64
+ [x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
67
65
  }>, never, string, string>;
68
66
  tooltip: import('../../node_modules/vue').Ref<ComponentPublicInstance | null>;
69
67
  el: import('../../node_modules/vue').Ref<ComponentPublicInstance<HTMLElement> | null>;
68
+ buttonId: import('../../node_modules/vue').ComputedRef<string>;
70
69
  showClipboardTooltip: import('../../node_modules/vue').Ref<boolean>;
71
70
  tooltipContainer: import('../../node_modules/vue').ComputedRef<string | null>;
72
71
  tooltipContent: import('../../node_modules/vue').Ref<string>;
@@ -87,7 +86,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
87
86
  * Text to copy to the clipboard
88
87
  */
89
88
  text: {
90
- type: StringConstructor;
89
+ type: (NumberConstructor | StringConstructor)[];
91
90
  default: null;
92
91
  };
93
92
  /**
@@ -146,7 +145,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
146
145
  }, {
147
146
  html: boolean;
148
147
  label: string;
149
- text: string;
148
+ text: string | number;
150
149
  plain: string;
151
150
  hideLabel: boolean;
152
151
  tooltipHideDelay: number;