@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.
- package/dist/lib/components/AccordionStep.vue.d.ts +1 -2
- package/dist/lib/components/AccordionWrapper.vue.d.ts +1 -2
- package/dist/lib/components/ActiveTextTruncate.vue.d.ts +0 -2
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +6 -8
- package/dist/lib/components/Brand.vue.d.ts +1 -3
- package/dist/lib/components/BrandExpansion.vue.d.ts +2 -3
- 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 +5 -6
- package/dist/lib/components/DigitsInput.vue.d.ts +0 -2
- package/dist/lib/components/DonateForm.vue.d.ts +4 -6
- package/dist/lib/components/EmbedForm.vue.d.ts +4 -6
- package/dist/lib/components/EmbeddableFooter.vue.d.ts +0 -2
- package/dist/lib/components/FollowUsPopover.vue.d.ts +4 -6
- package/dist/lib/components/GenericFooter.vue.d.ts +1 -2
- package/dist/lib/components/GenericHeader.vue.d.ts +399 -421
- package/dist/lib/components/HapticCopy.vue.d.ts +9 -10
- package/dist/lib/components/ImddbHeader.vue.d.ts +398 -420
- package/dist/lib/components/OrdinalLegend.vue.d.ts +1 -2
- package/dist/lib/components/RangePicker.vue.d.ts +6 -7
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +2 -4
- package/dist/lib/components/ScaleLegend.vue.d.ts +3 -5
- package/dist/lib/components/SecretInput.vue.d.ts +0 -2
- package/dist/lib/components/SelectableDropdown.vue.d.ts +8 -8
- package/dist/lib/components/SharingOptions.vue.d.ts +2 -3
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +1 -2
- package/dist/lib/components/SignUpForm.vue.d.ts +6 -7
- package/dist/lib/components/SlideUpDown.vue.d.ts +2 -3
- package/dist/lib/components/TexturedDeck.vue.d.ts +1 -2
- package/dist/lib/components/TinyPagination.vue.d.ts +9 -9
- package/dist/lib/composables/chart.d.ts +1 -2
- package/dist/lib/composables/resizeObserver.d.ts +1 -2
- package/dist/lib/composables/sendEmail.d.ts +1 -2
- package/dist/lib/config.d.ts +1 -0
- package/dist/lib/datavisualisations/BarChart.vue.d.ts +27 -21
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +9 -14
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +7 -17
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +7 -9
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +5 -7
- package/dist/lib/i18n.d.ts +1 -0
- package/dist/lib/main.d.ts +4 -5
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +6 -14
- package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +0 -2
- package/dist/lib/maps/SymbolMap.vue.d.ts +5 -6
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +14002 -13433
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +46 -42
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/dist/lib/types.d.ts +3 -6
- 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 +1 -0
- package/dist/lib/utils/placeholderTypes.d.ts +2 -3
- package/lib/assets/images/murmur-textured.png +0 -0
- package/lib/components/AdvancedLinkForm.vue +22 -32
- package/lib/components/HapticCopy.vue +10 -3
- package/lib/components/SecretInput.vue +12 -15
- package/lib/components/SelectableDropdown.vue +24 -18
- package/lib/components/SharingOptions.vue +10 -20
- package/lib/datavisualisations/BarChart.vue +15 -10
- package/package.json +13 -14
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { PropType } from '../../node_modules/vue';
|
|
4
2
|
import { Accordion, Step } from '../types';
|
|
3
|
+
|
|
5
4
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
6
5
|
/**
|
|
7
6
|
* Step name
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { PropType } from '../../node_modules/vue';
|
|
4
2
|
import { Step } from '../types';
|
|
3
|
+
|
|
5
4
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
6
5
|
step: {
|
|
7
6
|
type: (SymbolConstructor | StringConstructor | (() => Step))[];
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
/**
|
|
4
2
|
* A form with tabs to offer several copy formats to users.
|
|
5
3
|
*/
|
|
@@ -70,10 +68,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
70
68
|
type: BooleanConstructor;
|
|
71
69
|
};
|
|
72
70
|
}, {
|
|
73
|
-
t: import(
|
|
74
|
-
[x: string]: import(
|
|
75
|
-
}, string, import(
|
|
76
|
-
[x: string]: import(
|
|
71
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
72
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
73
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
74
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
77
75
|
}>, never, string, string>;
|
|
78
76
|
titleOrLink: import('../../node_modules/vue').ComputedRef<string>;
|
|
79
77
|
linkAsMarkdown: import('../../node_modules/vue').ComputedRef<string>;
|
|
@@ -157,12 +155,12 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
157
155
|
link: string;
|
|
158
156
|
small: boolean;
|
|
159
157
|
title: string;
|
|
160
|
-
vertical: boolean;
|
|
161
158
|
modelValue: number;
|
|
162
159
|
noFade: boolean;
|
|
163
|
-
|
|
160
|
+
vertical: boolean;
|
|
164
161
|
card: boolean;
|
|
165
162
|
pills: boolean;
|
|
163
|
+
activeNavItemClass: string;
|
|
166
164
|
forms: unknown[];
|
|
167
165
|
}, {}>;
|
|
168
166
|
export default _default;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
interface BrandProps {
|
|
4
2
|
/**
|
|
5
3
|
* Add a balancing effect to the globe
|
|
@@ -33,7 +31,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<__VLS_W
|
|
|
33
31
|
}>>>, {
|
|
34
32
|
color: string;
|
|
35
33
|
background: string;
|
|
36
|
-
size:
|
|
34
|
+
size: number | string;
|
|
37
35
|
}, {}>;
|
|
38
36
|
export default _default;
|
|
39
37
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { PropType } from '../../node_modules/vue';
|
|
4
2
|
import { BrandMode } from '../enums';
|
|
5
|
-
import
|
|
3
|
+
import { BrandExpansionStyle } from '../types';
|
|
4
|
+
|
|
6
5
|
/**
|
|
7
6
|
* A component to create variations of ICIJ logo with text
|
|
8
7
|
*/
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { PropType } from '../../node_modules/vue';
|
|
4
|
-
import
|
|
2
|
+
import { ContentPlaceholderRows, ContentPlaceholderStyledRows } from '../utils/placeholderTypes';
|
|
3
|
+
|
|
5
4
|
/**
|
|
6
5
|
* A component to fill empty spaces with animated placeholders until content is loaded.
|
|
7
6
|
*/
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
import { PropType } from '../../node_modules/vue';
|
|
4
2
|
import { Size } from '../enums';
|
|
3
|
+
|
|
5
4
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
6
5
|
/**
|
|
7
6
|
* Total items to be stored in pages
|
|
@@ -59,10 +58,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
59
58
|
inputPlaceholder: import('../../node_modules/vue').ComputedRef<string>;
|
|
60
59
|
numberOfPages: import('../../node_modules/vue').ComputedRef<number>;
|
|
61
60
|
paginationClassList: import('../../node_modules/vue').ComputedRef<string[]>;
|
|
62
|
-
t: import(
|
|
63
|
-
[x: string]: import(
|
|
64
|
-
}, string, import(
|
|
65
|
-
[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>;
|
|
66
65
|
}>, never, string, string>;
|
|
67
66
|
applyJumpFormPage: () => void;
|
|
68
67
|
updateModelValue: (value: string | number) => void;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
4
2
|
/**
|
|
5
3
|
* Title of the form.
|
|
@@ -8,10 +6,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
8
6
|
type: BooleanConstructor;
|
|
9
7
|
};
|
|
10
8
|
}, {
|
|
11
|
-
t: import(
|
|
12
|
-
[x: string]: import(
|
|
13
|
-
}, string, import(
|
|
14
|
-
[x: string]: import(
|
|
9
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
10
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
11
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
12
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
15
13
|
}>, never, string, string>;
|
|
16
14
|
amount: import('../../node_modules/vue').Ref<number>;
|
|
17
15
|
level: import('../../node_modules/vue').Ref<string>;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
/**
|
|
4
2
|
* Embed Form
|
|
5
3
|
*/
|
|
@@ -52,10 +50,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
52
50
|
default: null;
|
|
53
51
|
};
|
|
54
52
|
}, {
|
|
55
|
-
t: import(
|
|
56
|
-
[x: string]: import(
|
|
57
|
-
}, string, import(
|
|
58
|
-
[x: string]: import(
|
|
53
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
54
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
55
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
56
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
59
57
|
}>, never, string, string>;
|
|
60
58
|
responsiveCheck: import('../../node_modules/vue').Ref<boolean>;
|
|
61
59
|
embedFormCode: import('../../node_modules/vue').Ref<HTMLTextAreaElement | null>;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
/**
|
|
4
2
|
* FollowUsPopover
|
|
5
3
|
*/
|
|
6
4
|
declare const _default: import('../../node_modules/vue').DefineComponent<{}, {
|
|
7
|
-
t: import(
|
|
8
|
-
[x: string]: import(
|
|
9
|
-
}, string, import(
|
|
10
|
-
[x: string]: import(
|
|
5
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
6
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
7
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
8
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
11
9
|
}>, never, string, string>;
|
|
12
10
|
closeSignupPopover: () => void;
|
|
13
11
|
}, {}, {}, {}, 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<{}>> & {
|