@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,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
|
|
@@ -73,7 +72,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
73
72
|
"onPrevious-step"?: ((...args: any[]) => any) | undefined;
|
|
74
73
|
}, {
|
|
75
74
|
content: string;
|
|
76
|
-
title: string;
|
|
77
75
|
active: boolean | undefined;
|
|
76
|
+
title: string;
|
|
78
77
|
}, {}>;
|
|
79
78
|
export default _default;
|
|
@@ -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))[];
|
|
@@ -48,7 +48,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
48
48
|
textOffsetTransitionDelay: import('../../node_modules/vue').ComputedRef<string>;
|
|
49
49
|
textFinalOffset: import('../../node_modules/vue').ComputedRef<string>;
|
|
50
50
|
resetTextLivePosition: () => void;
|
|
51
|
-
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("
|
|
51
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("cancel" | "start" | "end")[], "cancel" | "start" | "end", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
52
52
|
/**
|
|
53
53
|
* Number of Pixel Per Millisecond for the text transition.
|
|
54
54
|
*/
|
|
@@ -88,9 +88,9 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
88
88
|
validator: (value: string) => boolean;
|
|
89
89
|
};
|
|
90
90
|
}>> & {
|
|
91
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
91
92
|
onStart?: ((...args: any[]) => any) | undefined;
|
|
92
93
|
onEnd?: ((...args: any[]) => any) | undefined;
|
|
93
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
direction: string;
|
|
96
96
|
ppms: number;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
2
|
/**
|
|
4
3
|
* A form with tabs to offer several copy formats to users.
|
|
5
4
|
*/
|
|
@@ -70,10 +69,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
70
69
|
type: BooleanConstructor;
|
|
71
70
|
};
|
|
72
71
|
}, {
|
|
73
|
-
t: import(
|
|
74
|
-
[x: string]: import(
|
|
75
|
-
}, string, import(
|
|
76
|
-
[x: string]: import(
|
|
72
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
73
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
74
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
75
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
77
76
|
}>, never, string, string>;
|
|
78
77
|
titleOrLink: import('../../node_modules/vue').ComputedRef<string>;
|
|
79
78
|
linkAsMarkdown: import('../../node_modules/vue').ComputedRef<string>;
|
|
@@ -157,8 +156,8 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
157
156
|
link: string;
|
|
158
157
|
small: boolean;
|
|
159
158
|
title: string;
|
|
160
|
-
modelValue: number;
|
|
161
159
|
vertical: boolean;
|
|
160
|
+
modelValue: number;
|
|
162
161
|
noFade: boolean;
|
|
163
162
|
activeNavItemClass: string;
|
|
164
163
|
card: boolean;
|
|
@@ -8,11 +8,11 @@ interface BrandProps {
|
|
|
8
8
|
/**
|
|
9
9
|
* Monochromatic logo's color
|
|
10
10
|
*/
|
|
11
|
-
color?: string |
|
|
11
|
+
color?: string | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Logo's background color
|
|
14
14
|
*/
|
|
15
|
-
background?: string |
|
|
15
|
+
background?: string | undefined;
|
|
16
16
|
/**
|
|
17
17
|
* Logo's size
|
|
18
18
|
*/
|
|
@@ -23,16 +23,16 @@ interface BrandProps {
|
|
|
23
23
|
square?: boolean;
|
|
24
24
|
}
|
|
25
25
|
declare const _default: import('../../node_modules/vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BrandProps>, {
|
|
26
|
-
color:
|
|
27
|
-
background:
|
|
26
|
+
color: undefined;
|
|
27
|
+
background: undefined;
|
|
28
28
|
size: string;
|
|
29
29
|
}>, {}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<BrandProps>, {
|
|
30
|
-
color:
|
|
31
|
-
background:
|
|
30
|
+
color: undefined;
|
|
31
|
+
background: undefined;
|
|
32
32
|
size: string;
|
|
33
33
|
}>>>, {
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
color: string;
|
|
35
|
+
background: string;
|
|
36
36
|
size: string | number;
|
|
37
37
|
}, {}>;
|
|
38
38
|
export default _default;
|
|
@@ -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
|
*/
|
|
@@ -31,7 +30,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
31
30
|
* Logo's size
|
|
32
31
|
*/
|
|
33
32
|
size: {
|
|
34
|
-
type: (
|
|
33
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
35
34
|
default: string;
|
|
36
35
|
};
|
|
37
36
|
/**
|
|
@@ -78,7 +77,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
78
77
|
* Logo's size
|
|
79
78
|
*/
|
|
80
79
|
size: {
|
|
81
|
-
type: (
|
|
80
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
82
81
|
default: string;
|
|
83
82
|
};
|
|
84
83
|
/**
|
|
@@ -95,10 +94,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
95
94
|
type: BooleanConstructor;
|
|
96
95
|
};
|
|
97
96
|
}>>, {
|
|
98
|
-
background: string;
|
|
99
97
|
color: string;
|
|
100
|
-
|
|
98
|
+
background: string;
|
|
101
99
|
size: string | number;
|
|
100
|
+
dark: boolean;
|
|
102
101
|
animated: boolean;
|
|
103
102
|
mode: BrandMode;
|
|
104
103
|
}, {}>;
|
|
@@ -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
|
|
@@ -49,7 +48,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
49
48
|
* properly. If `pages` is empty, it will be calculated using the size.
|
|
50
49
|
*/
|
|
51
50
|
pages: {
|
|
52
|
-
type: (
|
|
51
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
53
52
|
default: null;
|
|
54
53
|
};
|
|
55
54
|
}, {
|
|
@@ -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;
|
|
@@ -113,18 +112,18 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
113
112
|
* properly. If `pages` is empty, it will be calculated using the size.
|
|
114
113
|
*/
|
|
115
114
|
pages: {
|
|
116
|
-
type: (
|
|
115
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
117
116
|
default: null;
|
|
118
117
|
};
|
|
119
118
|
}>> & {
|
|
120
119
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
121
120
|
}, {
|
|
122
|
-
modelValue: number;
|
|
123
121
|
size: Size;
|
|
122
|
+
modelValue: number;
|
|
124
123
|
pills: boolean;
|
|
124
|
+
compact: boolean;
|
|
125
125
|
perPage: number;
|
|
126
126
|
totalRows: number;
|
|
127
|
-
compact: boolean;
|
|
128
127
|
pages: string | number;
|
|
129
128
|
}, {}>;
|
|
130
129
|
export default _default;
|
|
@@ -15,7 +15,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
15
15
|
* Value of the input
|
|
16
16
|
*/
|
|
17
17
|
modelValue: {
|
|
18
|
-
type: (
|
|
18
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
19
19
|
default: string;
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
@@ -45,7 +45,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
45
45
|
* Value of the input
|
|
46
46
|
*/
|
|
47
47
|
modelValue: {
|
|
48
|
-
type: (
|
|
48
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
49
49
|
default: string;
|
|
50
50
|
};
|
|
51
51
|
/**
|
|
@@ -59,8 +59,8 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
59
59
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
60
60
|
"onUpdate:values"?: ((...args: any[]) => any) | undefined;
|
|
61
61
|
}, {
|
|
62
|
+
name: string;
|
|
62
63
|
length: number;
|
|
63
64
|
modelValue: string | number;
|
|
64
|
-
name: string;
|
|
65
65
|
}, {}>;
|
|
66
66
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
2
|
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
4
3
|
/**
|
|
5
4
|
* Title of the form.
|
|
@@ -8,10 +7,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
8
7
|
type: BooleanConstructor;
|
|
9
8
|
};
|
|
10
9
|
}, {
|
|
11
|
-
t: import(
|
|
12
|
-
[x: string]: import(
|
|
13
|
-
}, string, import(
|
|
14
|
-
[x: string]: import(
|
|
10
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
11
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
12
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
13
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
15
14
|
}>, never, string, string>;
|
|
16
15
|
amount: import('../../node_modules/vue').Ref<number>;
|
|
17
16
|
level: import('../../node_modules/vue').Ref<string>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
2
|
/**
|
|
4
3
|
* Embed Form
|
|
5
4
|
*/
|
|
@@ -20,7 +19,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
20
19
|
* Default width of the iframe code
|
|
21
20
|
*/
|
|
22
21
|
width: {
|
|
23
|
-
type: (
|
|
22
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
24
23
|
default: string;
|
|
25
24
|
};
|
|
26
25
|
/**
|
|
@@ -52,10 +51,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
52
51
|
default: null;
|
|
53
52
|
};
|
|
54
53
|
}, {
|
|
55
|
-
t: import(
|
|
56
|
-
[x: string]: import(
|
|
57
|
-
}, string, import(
|
|
58
|
-
[x: string]: import(
|
|
54
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
55
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
56
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
57
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
59
58
|
}>, never, string, string>;
|
|
60
59
|
responsiveCheck: import('../../node_modules/vue').Ref<boolean>;
|
|
61
60
|
embedFormCode: import('../../node_modules/vue').Ref<HTMLTextAreaElement | null>;
|
|
@@ -78,7 +77,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
78
77
|
* Default width of the iframe code
|
|
79
78
|
*/
|
|
80
79
|
width: {
|
|
81
|
-
type: (
|
|
80
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
82
81
|
default: string;
|
|
83
82
|
};
|
|
84
83
|
/**
|
|
@@ -110,10 +109,10 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
110
109
|
default: null;
|
|
111
110
|
};
|
|
112
111
|
}>>, {
|
|
113
|
-
width: string | number;
|
|
114
112
|
height: number;
|
|
115
113
|
minHeight: number;
|
|
116
114
|
minWidth: number;
|
|
115
|
+
width: string | number;
|
|
117
116
|
url: string;
|
|
118
117
|
noTitle: boolean;
|
|
119
118
|
noPreview: boolean;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
2
|
/**
|
|
4
3
|
* FollowUsPopover
|
|
5
4
|
*/
|
|
6
5
|
declare const _default: import('../../node_modules/vue').DefineComponent<{}, {
|
|
7
|
-
t: import(
|
|
8
|
-
[x: string]: import(
|
|
9
|
-
}, string, import(
|
|
10
|
-
[x: string]: import(
|
|
6
|
+
t: import('vue-i18n').ComposerTranslation<{
|
|
7
|
+
[x: string]: import('@intlify/core-base').LocaleMessage<import('vue-i18n').VueMessageType>;
|
|
8
|
+
}, string, import('@intlify/core-base').RemoveIndexSignature<{
|
|
9
|
+
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
11
10
|
}>, never, string, string>;
|
|
12
11
|
closeSignupPopover: () => void;
|
|
13
12
|
}, {}, {}, {}, 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<{}>> & {
|