@icij/murmur-next 4.0.4 → 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.
- package/dist/lib/components/AccordionStep.vue.d.ts +2 -3
- package/dist/lib/components/AccordionWrapper.vue.d.ts +1 -2
- package/dist/lib/components/ActiveTextTruncate.vue.d.ts +2 -2
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +5 -6
- package/dist/lib/components/Brand.vue.d.ts +8 -8
- package/dist/lib/components/BrandExpansion.vue.d.ts +6 -7
- package/dist/lib/components/ConfirmButton.vue.d.ts +1 -2
- package/dist/lib/components/ContentPlaceholder.vue.d.ts +2 -3
- package/dist/lib/components/CustomPagination.vue.d.ts +9 -10
- package/dist/lib/components/DigitsInput.vue.d.ts +3 -3
- package/dist/lib/components/DonateForm.vue.d.ts +4 -5
- package/dist/lib/components/EmbedForm.vue.d.ts +7 -8
- package/dist/lib/components/FollowUsPopover.vue.d.ts +4 -5
- package/dist/lib/components/GenericFooter.vue.d.ts +1 -2
- package/dist/lib/components/GenericHeader.vue.d.ts +283 -284
- package/dist/lib/components/HapticCopy.vue.d.ts +6 -8
- package/dist/lib/components/ImddbHeader.vue.d.ts +282 -283
- package/dist/lib/components/OrdinalLegend.vue.d.ts +8 -9
- package/dist/lib/components/RangePicker.vue.d.ts +10 -14
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +2 -3
- package/dist/lib/components/ScaleLegend.vue.d.ts +2 -2
- package/dist/lib/components/SecretInput.vue.d.ts +3 -3
- package/dist/lib/components/SelectableDropdown.vue.d.ts +6 -7
- package/dist/lib/components/SharingOptions.vue.d.ts +1 -2
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +2 -3
- package/dist/lib/components/SignUpForm.vue.d.ts +5 -6
- package/dist/lib/components/SlideUpDown.vue.d.ts +3 -4
- package/dist/lib/components/TexturedDeck.vue.d.ts +3 -4
- package/dist/lib/components/TinyPagination.vue.d.ts +15 -16
- package/dist/lib/composables/chart.d.ts +7 -8
- package/dist/lib/composables/resizeObserver.d.ts +1 -2
- package/dist/lib/composables/sendEmail.d.ts +1 -2
- package/dist/lib/config.d.ts +3 -2
- package/dist/lib/datavisualisations/BarChart.vue.d.ts +6 -8
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +7 -4
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +17 -9
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +4 -8
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +4 -4
- package/dist/lib/i18n.d.ts +1 -0
- package/dist/lib/main.d.ts +11 -8
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +10 -4
- package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +3 -3
- package/dist/lib/maps/SymbolMap.vue.d.ts +8 -8
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +17563 -16205
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +60 -52
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/dist/lib/types.d.ts +4 -7
- package/dist/lib/utils/assets.d.ts +1 -1
- package/dist/lib/utils/iframe-resizer.d.ts +1 -0
- package/dist/lib/utils/placeholder.d.ts +1 -0
- package/dist/lib/utils/placeholderTypes.d.ts +2 -3
- package/lib/components/Brand.vue +9 -9
- package/lib/components/OrdinalLegend.vue +1 -1
- package/lib/components/RangePicker.vue +15 -9
- package/lib/composables/chart.ts +10 -7
- package/lib/composables/resizeObserver.ts +1 -1
- package/lib/composables/sendEmail.ts +0 -1
- package/lib/config.ts +2 -2
- package/lib/locales/en.json +1 -1
- package/lib/locales/fr.json +1 -1
- package/lib/main.ts +18 -12
- package/lib/maps/ChoroplethMap.vue +1 -1
- package/lib/maps/ChoroplethMapAnnotation.vue +2 -2
- package/lib/maps/SymbolMap.vue +5 -4
- package/lib/shims-pym.d.ts +7 -0
- package/lib/shims-vue.d.ts +1 -1
- package/lib/types.ts +5 -5
- package/lib/utils/iframe-resizer.ts +1 -1
- package/lib/utils/placeholder.ts +0 -1
- package/package.json +49 -43
- package/lib/locales/locales/en.json +0 -140
- package/lib/locales/locales/fr.json +0 -117
|
@@ -1,8 +1,6 @@
|
|
|
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
|
|
@@ -60,10 +58,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
60
58
|
type: BooleanConstructor;
|
|
61
59
|
};
|
|
62
60
|
}, {
|
|
63
|
-
t: import(
|
|
64
|
-
[x: string]: import(
|
|
65
|
-
}, string, import(
|
|
66
|
-
[x: string]: import(
|
|
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>;
|
|
@@ -82,7 +80,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
82
80
|
closeTooltip: () => Promise<void>;
|
|
83
81
|
openTooltip: (msg?: string) => Promise<void>;
|
|
84
82
|
nextTimeout: (fn?: (...args: any[]) => void, delay?: number) => Promise<void>;
|
|
85
|
-
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("
|
|
83
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("error" | "success" | "attempt" | "hideClipboardTooltip")[], "error" | "success" | "attempt" | "hideClipboardTooltip", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
86
84
|
/**
|
|
87
85
|
* Text to copy to the clipboard
|
|
88
86
|
*/
|