@icij/murmur-next 4.0.6 → 4.0.8
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 -1
- package/dist/lib/components/AccordionWrapper.vue.d.ts +2 -1
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +5 -4
- package/dist/lib/components/BrandExpansion.vue.d.ts +3 -2
- package/dist/lib/components/ConfirmButton.vue.d.ts +2 -1
- package/dist/lib/components/ContentPlaceholder.vue.d.ts +3 -2
- package/dist/lib/components/CustomPagination.vue.d.ts +6 -5
- package/dist/lib/components/DonateForm.vue.d.ts +5 -4
- package/dist/lib/components/EmbedForm.vue.d.ts +5 -4
- package/dist/lib/components/FollowUsPopover.vue.d.ts +5 -4
- package/dist/lib/components/GenericFooter.vue.d.ts +2 -1
- package/dist/lib/components/GenericHeader.vue.d.ts +232 -231
- package/dist/lib/components/HapticCopy.vue.d.ts +7 -5
- package/dist/lib/components/ImddbHeader.vue.d.ts +231 -230
- package/dist/lib/components/OrdinalLegend.vue.d.ts +2 -1
- package/dist/lib/components/RangePicker.vue.d.ts +3 -2
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +4 -2
- package/dist/lib/components/ScaleLegend.vue.d.ts +1 -1
- package/dist/lib/components/SelectableDropdown.vue.d.ts +3 -2
- package/dist/lib/components/SharingOptions.vue.d.ts +2 -1
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +2 -1
- package/dist/lib/components/SignUpForm.vue.d.ts +6 -5
- package/dist/lib/components/SlideUpDown.vue.d.ts +3 -2
- package/dist/lib/components/TexturedDeck.vue.d.ts +2 -1
- package/dist/lib/components/TinyPagination.vue.d.ts +9 -8
- package/dist/lib/composables/chart.d.ts +2 -1
- package/dist/lib/composables/resizeObserver.d.ts +2 -1
- package/dist/lib/composables/sendEmail.d.ts +2 -1
- package/dist/lib/config.d.ts +0 -1
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +2 -1
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +1 -1
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +1 -1
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +1 -1
- package/dist/lib/i18n.d.ts +2 -2
- package/dist/lib/main.d.ts +11 -4
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +2 -2
- package/dist/lib/maps/SymbolMap.vue.d.ts +2 -1
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +15996 -17076
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +52 -60
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/dist/lib/types.d.ts +6 -3
- package/dist/lib/utils/assets.d.ts +1 -1
- package/dist/lib/utils/iframe-resizer.d.ts +1 -1
- package/dist/lib/utils/placeholder.d.ts +0 -1
- package/dist/lib/utils/placeholderTypes.d.ts +3 -2
- package/lib/i18n.ts +5 -4
- package/lib/main.ts +37 -12
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
1
3
|
import { PropType } from '../../node_modules/vue';
|
|
2
4
|
import { Accordion, Step } from '../types';
|
|
3
|
-
|
|
4
5
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
5
6
|
/**
|
|
6
7
|
* Step name
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
1
3
|
import { PropType } from '../../node_modules/vue';
|
|
2
4
|
import { Step } from '../types';
|
|
3
|
-
|
|
4
5
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
5
6
|
step: {
|
|
6
7
|
type: (SymbolConstructor | StringConstructor | (() => Step))[];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
2
3
|
/**
|
|
3
4
|
* A form with tabs to offer several copy formats to users.
|
|
4
5
|
*/
|
|
@@ -69,10 +70,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
69
70
|
type: BooleanConstructor;
|
|
70
71
|
};
|
|
71
72
|
}, {
|
|
72
|
-
t: import(
|
|
73
|
-
[x: string]: import(
|
|
74
|
-
}, string, import(
|
|
75
|
-
[x: string]: import(
|
|
73
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
74
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
75
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
76
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
76
77
|
}>, never, string, string>;
|
|
77
78
|
titleOrLink: import('../../node_modules/vue').ComputedRef<string>;
|
|
78
79
|
linkAsMarkdown: import('../../node_modules/vue').ComputedRef<string>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
1
3
|
import { PropType } from '../../node_modules/vue';
|
|
2
4
|
import { BrandMode } from '../enums';
|
|
3
|
-
import { BrandExpansionStyle } from '../types';
|
|
4
|
-
|
|
5
|
+
import type { BrandExpansionStyle } from '../types';
|
|
5
6
|
/**
|
|
6
7
|
* A component to create variations of ICIJ logo with text
|
|
7
8
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
1
3
|
import { PropType } from '../../node_modules/vue';
|
|
2
|
-
import { ContentPlaceholderRows, ContentPlaceholderStyledRows } from '../utils/placeholderTypes';
|
|
3
|
-
|
|
4
|
+
import type { ContentPlaceholderRows, ContentPlaceholderStyledRows } from '../utils/placeholderTypes';
|
|
4
5
|
/**
|
|
5
6
|
* A component to fill empty spaces with animated placeholders until content is loaded.
|
|
6
7
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
1
3
|
import { PropType } from '../../node_modules/vue';
|
|
2
4
|
import { Size } from '../enums';
|
|
3
|
-
|
|
4
5
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
5
6
|
/**
|
|
6
7
|
* Total items to be stored in pages
|
|
@@ -58,10 +59,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
58
59
|
inputPlaceholder: import('../../node_modules/vue').ComputedRef<string>;
|
|
59
60
|
numberOfPages: import('../../node_modules/vue').ComputedRef<number>;
|
|
60
61
|
paginationClassList: import('../../node_modules/vue').ComputedRef<string[]>;
|
|
61
|
-
t: import(
|
|
62
|
-
[x: string]: import(
|
|
63
|
-
}, string, import(
|
|
64
|
-
[x: string]: import(
|
|
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>;
|
|
65
66
|
}>, never, string, string>;
|
|
66
67
|
applyJumpFormPage: () => void;
|
|
67
68
|
updateModelValue: (value: string | number) => void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
2
3
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
3
4
|
/**
|
|
4
5
|
* Title of the form.
|
|
@@ -7,10 +8,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
7
8
|
type: BooleanConstructor;
|
|
8
9
|
};
|
|
9
10
|
}, {
|
|
10
|
-
t: import(
|
|
11
|
-
[x: string]: import(
|
|
12
|
-
}, string, import(
|
|
13
|
-
[x: string]: import(
|
|
11
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
12
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
13
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
14
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
14
15
|
}>, never, string, string>;
|
|
15
16
|
amount: import('../../node_modules/vue').Ref<number>;
|
|
16
17
|
level: import('../../node_modules/vue').Ref<string>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
2
3
|
/**
|
|
3
4
|
* Embed Form
|
|
4
5
|
*/
|
|
@@ -51,10 +52,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
51
52
|
default: null;
|
|
52
53
|
};
|
|
53
54
|
}, {
|
|
54
|
-
t: import(
|
|
55
|
-
[x: string]: import(
|
|
56
|
-
}, string, import(
|
|
57
|
-
[x: string]: import(
|
|
55
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
56
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
57
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
58
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
58
59
|
}>, never, string, string>;
|
|
59
60
|
responsiveCheck: import('../../node_modules/vue').Ref<boolean>;
|
|
60
61
|
embedFormCode: import('../../node_modules/vue').Ref<HTMLTextAreaElement | null>;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
2
3
|
/**
|
|
3
4
|
* FollowUsPopover
|
|
4
5
|
*/
|
|
5
6
|
declare const _default: import('../../node_modules/vue').DefineComponent<{}, {
|
|
6
|
-
t: import(
|
|
7
|
-
[x: string]: import(
|
|
8
|
-
}, string, import(
|
|
9
|
-
[x: string]: import(
|
|
7
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
8
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
9
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
10
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
10
11
|
}>, never, string, string>;
|
|
11
12
|
closeSignupPopover: () => void;
|
|
12
13
|
}, {}, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, "update:close"[], "update:close", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{}>> & {
|