@icij/murmur-next 4.0.5 → 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.
Files changed (62) hide show
  1. package/dist/lib/components/AccordionStep.vue.d.ts +78 -0
  2. package/dist/lib/components/AccordionWrapper.vue.d.ts +32 -0
  3. package/dist/lib/components/ActiveTextTruncate.vue.d.ts +101 -0
  4. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +167 -0
  5. package/dist/lib/components/Brand.vue.d.ts +55 -0
  6. package/dist/lib/components/BrandExpansion.vue.d.ts +104 -0
  7. package/dist/lib/components/ConfirmButton.vue.d.ts +157 -0
  8. package/dist/lib/components/ContentPlaceholder.vue.d.ts +43 -0
  9. package/dist/lib/components/CustomPagination.vue.d.ts +129 -0
  10. package/dist/lib/components/DigitsInput.vue.d.ts +66 -0
  11. package/dist/lib/components/DonateForm.vue.d.ts +45 -0
  12. package/dist/lib/components/EmbedForm.vue.d.ts +120 -0
  13. package/dist/lib/components/EmbeddableFooter.vue.d.ts +103 -0
  14. package/dist/lib/components/FollowUsPopover.vue.d.ts +15 -0
  15. package/dist/lib/components/GenericFooter.vue.d.ts +46 -0
  16. package/dist/lib/components/GenericHeader.vue.d.ts +927 -0
  17. package/dist/lib/components/HapticCopy.vue.d.ts +154 -0
  18. package/dist/lib/components/ImddbHeader.vue.d.ts +959 -0
  19. package/dist/lib/components/OrdinalLegend.vue.d.ts +86 -0
  20. package/dist/lib/components/RangePicker.vue.d.ts +192 -0
  21. package/dist/lib/components/ResponsiveIframe.vue.d.ts +44 -0
  22. package/dist/lib/components/ScaleLegend.vue.d.ts +101 -0
  23. package/dist/lib/components/SecretInput.vue.d.ts +99 -0
  24. package/dist/lib/components/SelectableDropdown.vue.d.ts +209 -0
  25. package/dist/lib/components/SharingOptions.vue.d.ts +152 -0
  26. package/dist/lib/components/SharingOptionsLink.vue.d.ts +199 -0
  27. package/dist/lib/components/SignUpForm.vue.d.ts +140 -0
  28. package/dist/lib/components/SlideUpDown.vue.d.ts +73 -0
  29. package/dist/lib/components/TexturedDeck.vue.d.ts +88 -0
  30. package/dist/lib/components/TinyPagination.vue.d.ts +187 -0
  31. package/dist/lib/composables/chart.d.ts +47 -0
  32. package/dist/lib/composables/resizeObserver.d.ts +21 -0
  33. package/dist/lib/composables/sendEmail.d.ts +5 -0
  34. package/dist/lib/config.d.ts +20 -0
  35. package/dist/lib/config.default.d.ts +34 -0
  36. package/dist/lib/datavisualisations/BarChart.vue.d.ts +232 -0
  37. package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +407 -0
  38. package/dist/lib/datavisualisations/LineChart.vue.d.ts +208 -0
  39. package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +338 -0
  40. package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +412 -0
  41. package/dist/lib/enums.d.ts +32 -0
  42. package/dist/lib/i18n.d.ts +5 -0
  43. package/dist/lib/keys.d.ts +2 -0
  44. package/dist/lib/main.d.ts +55 -0
  45. package/dist/lib/maps/ChoroplethMap.vue.d.ts +466 -0
  46. package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +188 -0
  47. package/dist/lib/maps/SymbolMap.vue.d.ts +276 -0
  48. package/dist/lib/murmur.css +1 -0
  49. package/dist/lib/murmur.js +46019 -0
  50. package/dist/lib/murmur.js.map +1 -0
  51. package/dist/lib/murmur.umd.cjs +845 -0
  52. package/dist/lib/murmur.umd.cjs.map +1 -0
  53. package/dist/lib/types.d.ts +41 -0
  54. package/dist/lib/utils/animation.d.ts +8 -0
  55. package/dist/lib/utils/assets.d.ts +2 -0
  56. package/dist/lib/utils/clipboard.d.ts +2 -0
  57. package/dist/lib/utils/iframe-resizer.d.ts +11 -0
  58. package/dist/lib/utils/placeholder.d.ts +13 -0
  59. package/dist/lib/utils/placeholderTypes.d.ts +17 -0
  60. package/dist/lib/utils/strings.d.ts +1 -0
  61. package/lib/components/RangePicker.vue +3 -4
  62. package/package.json +6 -4
@@ -0,0 +1,209 @@
1
+ import { PropType } from '../../node_modules/vue';
2
+
3
+ type Item = any;
4
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
5
+ /**
6
+ * The items of the list.
7
+ */
8
+ items: {
9
+ type: PropType<any[]>;
10
+ default(): never[];
11
+ };
12
+ /**
13
+ * The actual selected item.
14
+ */
15
+ modelValue: {
16
+ type: PropType<any>;
17
+ default: null;
18
+ };
19
+ /**
20
+ * If true, the dropdown is hidden and deactivated.
21
+ */
22
+ hide: {
23
+ type: BooleanConstructor;
24
+ };
25
+ /**
26
+ * If true, the key events won't be propagated.
27
+ */
28
+ propagate: {
29
+ type: BooleanConstructor;
30
+ };
31
+ /**
32
+ * The user can select values.
33
+ */
34
+ multiple: {
35
+ type: BooleanConstructor;
36
+ };
37
+ /**
38
+ * A function to change the label rendering.
39
+ */
40
+ serializer: {
41
+ type: FunctionConstructor;
42
+ default: {
43
+ <T>(value: T): T;
44
+ (): undefined;
45
+ };
46
+ };
47
+ /**
48
+ * The class to apply to the list.
49
+ */
50
+ listClass: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ /**
55
+ * The class to apply to each item.
56
+ */
57
+ itemClass: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ /**
62
+ * Set to true to deactivate action when arrow keys are pressed
63
+ */
64
+ deactivateKeys: {
65
+ type: BooleanConstructor;
66
+ };
67
+ /**
68
+ * Comparison function to verify equality between selected items.
69
+ */
70
+ eq: {
71
+ type: FunctionConstructor;
72
+ default: (value: any, other: any) => boolean;
73
+ };
74
+ /**
75
+ * Display height of the items in pixels used to calculate the scroll size and position
76
+ * Default value is 32 (32px)
77
+ */
78
+ itemSize: {
79
+ type: NumberConstructor;
80
+ default: number;
81
+ };
82
+ /**
83
+ * Height of the scroll container to specify especially if using the virtual scroll feature
84
+ * Default value is 'inherit'
85
+ */
86
+ scrollerHeight: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ }, {
91
+ cssProps: import('../../node_modules/vue').ComputedRef<{
92
+ '--scroller-height': string;
93
+ }>;
94
+ items_: import('../../node_modules/vue').ComputedRef<any[]>;
95
+ keyField: import('../../node_modules/vue').ComputedRef<"recycle_scroller_id" | null>;
96
+ lastActiveItemIndex: import('../../node_modules/vue').ComputedRef<number>;
97
+ itemActivated: (item: Item) => boolean;
98
+ clickToSelectItem: (item: Item) => void;
99
+ clickToAddItem: (item: Item) => void;
100
+ clickToSelectRangeToItem: (item: Item) => void;
101
+ indexIcon: (item: Item) => import('@fortawesome/fontawesome-common-types').IconDefinition;
102
+ scroller: import('../../node_modules/vue').Ref<null>;
103
+ activeItems: import('../../node_modules/vue').Ref<any[]>;
104
+ itemId: (item: Item) => string;
105
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("click" | "update:modelValue" | "deactivate")[], "click" | "update:modelValue" | "deactivate", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
106
+ /**
107
+ * The items of the list.
108
+ */
109
+ items: {
110
+ type: PropType<any[]>;
111
+ default(): never[];
112
+ };
113
+ /**
114
+ * The actual selected item.
115
+ */
116
+ modelValue: {
117
+ type: PropType<any>;
118
+ default: null;
119
+ };
120
+ /**
121
+ * If true, the dropdown is hidden and deactivated.
122
+ */
123
+ hide: {
124
+ type: BooleanConstructor;
125
+ };
126
+ /**
127
+ * If true, the key events won't be propagated.
128
+ */
129
+ propagate: {
130
+ type: BooleanConstructor;
131
+ };
132
+ /**
133
+ * The user can select values.
134
+ */
135
+ multiple: {
136
+ type: BooleanConstructor;
137
+ };
138
+ /**
139
+ * A function to change the label rendering.
140
+ */
141
+ serializer: {
142
+ type: FunctionConstructor;
143
+ default: {
144
+ <T>(value: T): T;
145
+ (): undefined;
146
+ };
147
+ };
148
+ /**
149
+ * The class to apply to the list.
150
+ */
151
+ listClass: {
152
+ type: StringConstructor;
153
+ default: string;
154
+ };
155
+ /**
156
+ * The class to apply to each item.
157
+ */
158
+ itemClass: {
159
+ type: StringConstructor;
160
+ default: string;
161
+ };
162
+ /**
163
+ * Set to true to deactivate action when arrow keys are pressed
164
+ */
165
+ deactivateKeys: {
166
+ type: BooleanConstructor;
167
+ };
168
+ /**
169
+ * Comparison function to verify equality between selected items.
170
+ */
171
+ eq: {
172
+ type: FunctionConstructor;
173
+ default: (value: any, other: any) => boolean;
174
+ };
175
+ /**
176
+ * Display height of the items in pixels used to calculate the scroll size and position
177
+ * Default value is 32 (32px)
178
+ */
179
+ itemSize: {
180
+ type: NumberConstructor;
181
+ default: number;
182
+ };
183
+ /**
184
+ * Height of the scroll container to specify especially if using the virtual scroll feature
185
+ * Default value is 'inherit'
186
+ */
187
+ scrollerHeight: {
188
+ type: StringConstructor;
189
+ default: string;
190
+ };
191
+ }>> & {
192
+ onClick?: ((...args: any[]) => any) | undefined;
193
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
194
+ onDeactivate?: ((...args: any[]) => any) | undefined;
195
+ }, {
196
+ hide: boolean;
197
+ modelValue: any;
198
+ multiple: boolean;
199
+ items: any[];
200
+ propagate: boolean;
201
+ serializer: Function;
202
+ listClass: string;
203
+ itemClass: string;
204
+ deactivateKeys: boolean;
205
+ eq: Function;
206
+ itemSize: number;
207
+ scrollerHeight: string;
208
+ }, {}>;
209
+ export default _default;
@@ -0,0 +1,152 @@
1
+ import { CSSProperties, PropType } from '../../node_modules/vue';
2
+
3
+ /**
4
+ * SharingOptions
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
7
+ /**
8
+ * URL to be shared.
9
+ */
10
+ url: {
11
+ type: StringConstructor;
12
+ default: () => any;
13
+ };
14
+ /**
15
+ * URL to use specifically with the embed form
16
+ */
17
+ embedUrl: {
18
+ type: StringConstructor;
19
+ default: null;
20
+ };
21
+ /**
22
+ * Direction of the sharing options. Can be: <em>row</em>, <em>row-reverse</em>,
23
+ * <em>column</em> or <em>column-reverse</em>.
24
+ */
25
+ direction: {
26
+ default: string;
27
+ validator(value: string): boolean;
28
+ };
29
+ /**
30
+ * Sharing contents which can be generic (<em>title</em>, <em>description</em>, etc)
31
+ * or specific to a network (<em>twitter_title</em>, <em>facebook_description</em>, etc).
32
+ */
33
+ values: {
34
+ type: ObjectConstructor;
35
+ default: () => {};
36
+ };
37
+ /**
38
+ * The list of all the keys to automatically inject in each social button.
39
+ */
40
+ valuesKeys: {
41
+ default: () => string[];
42
+ type: PropType<string[]>;
43
+ };
44
+ /**
45
+ * Disable embed button.
46
+ */
47
+ noEmbed: {
48
+ type: BooleanConstructor;
49
+ };
50
+ /**
51
+ * Minimum height of the iframe in the embed form.
52
+ */
53
+ iframeMinHeight: {
54
+ type: NumberConstructor;
55
+ default: number;
56
+ };
57
+ /**
58
+ * Minimum width of the iframe in the embed form.
59
+ */
60
+ iframeMinWidth: {
61
+ type: NumberConstructor;
62
+ default: number;
63
+ };
64
+ /**
65
+ * Prevent from reading default value from the <code>meta</code>.
66
+ */
67
+ noMeta: {
68
+ type: BooleanConstructor;
69
+ };
70
+ }, {
71
+ style: import('../../node_modules/vue').ComputedRef<CSSProperties>;
72
+ show: () => void;
73
+ embedForm: import('../../node_modules/vue').Ref<null>;
74
+ valuesFor: (network: string) => {
75
+ [key: string]: string;
76
+ };
77
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
78
+ /**
79
+ * URL to be shared.
80
+ */
81
+ url: {
82
+ type: StringConstructor;
83
+ default: () => any;
84
+ };
85
+ /**
86
+ * URL to use specifically with the embed form
87
+ */
88
+ embedUrl: {
89
+ type: StringConstructor;
90
+ default: null;
91
+ };
92
+ /**
93
+ * Direction of the sharing options. Can be: <em>row</em>, <em>row-reverse</em>,
94
+ * <em>column</em> or <em>column-reverse</em>.
95
+ */
96
+ direction: {
97
+ default: string;
98
+ validator(value: string): boolean;
99
+ };
100
+ /**
101
+ * Sharing contents which can be generic (<em>title</em>, <em>description</em>, etc)
102
+ * or specific to a network (<em>twitter_title</em>, <em>facebook_description</em>, etc).
103
+ */
104
+ values: {
105
+ type: ObjectConstructor;
106
+ default: () => {};
107
+ };
108
+ /**
109
+ * The list of all the keys to automatically inject in each social button.
110
+ */
111
+ valuesKeys: {
112
+ default: () => string[];
113
+ type: PropType<string[]>;
114
+ };
115
+ /**
116
+ * Disable embed button.
117
+ */
118
+ noEmbed: {
119
+ type: BooleanConstructor;
120
+ };
121
+ /**
122
+ * Minimum height of the iframe in the embed form.
123
+ */
124
+ iframeMinHeight: {
125
+ type: NumberConstructor;
126
+ default: number;
127
+ };
128
+ /**
129
+ * Minimum width of the iframe in the embed form.
130
+ */
131
+ iframeMinWidth: {
132
+ type: NumberConstructor;
133
+ default: number;
134
+ };
135
+ /**
136
+ * Prevent from reading default value from the <code>meta</code>.
137
+ */
138
+ noMeta: {
139
+ type: BooleanConstructor;
140
+ };
141
+ }>>, {
142
+ direction: string;
143
+ values: Record<string, any>;
144
+ url: string;
145
+ embedUrl: string;
146
+ valuesKeys: string[];
147
+ noEmbed: boolean;
148
+ iframeMinHeight: number;
149
+ iframeMinWidth: number;
150
+ noMeta: boolean;
151
+ }, {}>;
152
+ export default _default;
@@ -0,0 +1,199 @@
1
+ import { PropType, VNode } from '../../node_modules/vue';
2
+ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
3
+
4
+ type Popup = {
5
+ instance: Window | null | undefined;
6
+ interval: undefined | ReturnType<typeof setTimeout>;
7
+ parent: (Window & typeof globalThis) | null;
8
+ };
9
+ export declare const $popup: Popup;
10
+ type SharingPlatform = {
11
+ base: string;
12
+ icon: IconDefinition;
13
+ args: {
14
+ [key: string]: string;
15
+ };
16
+ };
17
+ type Platform = 'email' | 'facebook' | 'linkedin' | 'twitter';
18
+ type SharingPlatforms = {
19
+ [key in Platform]: SharingPlatform;
20
+ };
21
+ /**
22
+ * @source https://github.com/bradvin/social-share-urls
23
+ */
24
+ export declare const networks: SharingPlatforms;
25
+ /**
26
+ * SharingOptionsLink
27
+ */
28
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
29
+ /**
30
+ * Root element type
31
+ */
32
+ tag: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ /**
37
+ * Social network to use
38
+ */
39
+ network: {
40
+ type: PropType<Platform>;
41
+ required: true;
42
+ validator(val: string): boolean;
43
+ };
44
+ /**
45
+ * Disable icon
46
+ */
47
+ noIcon: {
48
+ type: BooleanConstructor;
49
+ };
50
+ /**
51
+ * Shared URL
52
+ */
53
+ url: {
54
+ type: StringConstructor;
55
+ default: null;
56
+ };
57
+ /**
58
+ * Shared text
59
+ */
60
+ title: {
61
+ type: StringConstructor;
62
+ default: null;
63
+ };
64
+ /**
65
+ * Shared description
66
+ */
67
+ description: {
68
+ type: StringConstructor;
69
+ default: null;
70
+ };
71
+ /**
72
+ * Shared image
73
+ */
74
+ media: {
75
+ type: StringConstructor;
76
+ default: null;
77
+ };
78
+ /**
79
+ * Twitter user
80
+ */
81
+ user: {
82
+ type: StringConstructor;
83
+ default: null;
84
+ };
85
+ /**
86
+ * Shared hashtags
87
+ */
88
+ hashtags: {
89
+ type: StringConstructor;
90
+ default: null;
91
+ };
92
+ }, unknown, {
93
+ popup: {
94
+ status: string;
95
+ resizable: string;
96
+ toolbar: string;
97
+ menubar: string;
98
+ scrollbars: string;
99
+ location: string;
100
+ directories: string;
101
+ width: number;
102
+ height: number;
103
+ top: number;
104
+ left: number;
105
+ screenY: number;
106
+ screenX: number;
107
+ };
108
+ }, {
109
+ href(): string;
110
+ base(): string;
111
+ args(): {
112
+ [key: string]: string;
113
+ };
114
+ icon(): IconDefinition | null;
115
+ query(): any;
116
+ name(): string;
117
+ popupParams(): string;
118
+ }, {
119
+ click(): void;
120
+ renderIcon(): void | VNode | null;
121
+ openPopup(): void;
122
+ cleanExistingPopupInstance(): void;
123
+ cleanExistingPopupInterval(): void;
124
+ hasPopup(): boolean;
125
+ }, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
126
+ /**
127
+ * Root element type
128
+ */
129
+ tag: {
130
+ type: StringConstructor;
131
+ default: string;
132
+ };
133
+ /**
134
+ * Social network to use
135
+ */
136
+ network: {
137
+ type: PropType<Platform>;
138
+ required: true;
139
+ validator(val: string): boolean;
140
+ };
141
+ /**
142
+ * Disable icon
143
+ */
144
+ noIcon: {
145
+ type: BooleanConstructor;
146
+ };
147
+ /**
148
+ * Shared URL
149
+ */
150
+ url: {
151
+ type: StringConstructor;
152
+ default: null;
153
+ };
154
+ /**
155
+ * Shared text
156
+ */
157
+ title: {
158
+ type: StringConstructor;
159
+ default: null;
160
+ };
161
+ /**
162
+ * Shared description
163
+ */
164
+ description: {
165
+ type: StringConstructor;
166
+ default: null;
167
+ };
168
+ /**
169
+ * Shared image
170
+ */
171
+ media: {
172
+ type: StringConstructor;
173
+ default: null;
174
+ };
175
+ /**
176
+ * Twitter user
177
+ */
178
+ user: {
179
+ type: StringConstructor;
180
+ default: null;
181
+ };
182
+ /**
183
+ * Shared hashtags
184
+ */
185
+ hashtags: {
186
+ type: StringConstructor;
187
+ default: null;
188
+ };
189
+ }>>, {
190
+ tag: string;
191
+ title: string;
192
+ url: string;
193
+ description: string;
194
+ hashtags: string;
195
+ user: string;
196
+ noIcon: boolean;
197
+ media: string;
198
+ }, {}>;
199
+ export default _default;
@@ -0,0 +1,140 @@
1
+ import { PropType } from '../../node_modules/vue';
2
+
3
+ /**
4
+ * SignUpForm
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
7
+ /**
8
+ * Mailchimp URL to send the data to.
9
+ */
10
+ action: {
11
+ type: StringConstructor;
12
+ default: () => any;
13
+ };
14
+ /**
15
+ * Malchimp email field parameter
16
+ */
17
+ emailField: {
18
+ type: StringConstructor;
19
+ default: () => any;
20
+ };
21
+ /**
22
+ * Malchimp default groups. Can be an array or a commat-separated list of groups.
23
+ */
24
+ defaultGroups: {
25
+ type: PropType<string | string[]>;
26
+ default: () => any;
27
+ };
28
+ /**
29
+ * Disable the main label.
30
+ */
31
+ noLabel: {
32
+ type: BooleanConstructor;
33
+ };
34
+ /**
35
+ * Horizontal layout of the form.
36
+ */
37
+ horizontal: {
38
+ type: BooleanConstructor;
39
+ };
40
+ /**
41
+ * Mailchimp tracker tag to identify the origin.
42
+ */
43
+ tracker: {
44
+ type: StringConstructor;
45
+ default: () => any;
46
+ };
47
+ /**
48
+ * Referrer URL cant be passed explicitly
49
+ */
50
+ referrer: {
51
+ type: StringConstructor;
52
+ default: null;
53
+ };
54
+ /**
55
+ * Color variant of the sign-up button
56
+ */
57
+ variant: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ }, {
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>;
66
+ }>, never, string, string>;
67
+ email: import('../../node_modules/vue').Ref<string>;
68
+ frozen: import('../../node_modules/vue').Ref<boolean>;
69
+ response: import('../../node_modules/vue').Ref<{}>;
70
+ errorMessage: import('../../node_modules/vue').Ref<null>;
71
+ successMessage: import('../../node_modules/vue').Ref<null>;
72
+ variantColorClass: import('../../node_modules/vue').ComputedRef<string>;
73
+ subscribe: () => Promise<void>;
74
+ send: () => Promise<unknown>;
75
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
76
+ /**
77
+ * Mailchimp URL to send the data to.
78
+ */
79
+ action: {
80
+ type: StringConstructor;
81
+ default: () => any;
82
+ };
83
+ /**
84
+ * Malchimp email field parameter
85
+ */
86
+ emailField: {
87
+ type: StringConstructor;
88
+ default: () => any;
89
+ };
90
+ /**
91
+ * Malchimp default groups. Can be an array or a commat-separated list of groups.
92
+ */
93
+ defaultGroups: {
94
+ type: PropType<string | string[]>;
95
+ default: () => any;
96
+ };
97
+ /**
98
+ * Disable the main label.
99
+ */
100
+ noLabel: {
101
+ type: BooleanConstructor;
102
+ };
103
+ /**
104
+ * Horizontal layout of the form.
105
+ */
106
+ horizontal: {
107
+ type: BooleanConstructor;
108
+ };
109
+ /**
110
+ * Mailchimp tracker tag to identify the origin.
111
+ */
112
+ tracker: {
113
+ type: StringConstructor;
114
+ default: () => any;
115
+ };
116
+ /**
117
+ * Referrer URL cant be passed explicitly
118
+ */
119
+ referrer: {
120
+ type: StringConstructor;
121
+ default: null;
122
+ };
123
+ /**
124
+ * Color variant of the sign-up button
125
+ */
126
+ variant: {
127
+ type: StringConstructor;
128
+ default: string;
129
+ };
130
+ }>>, {
131
+ variant: string;
132
+ horizontal: boolean;
133
+ action: string;
134
+ referrer: string;
135
+ emailField: string;
136
+ defaultGroups: string | string[];
137
+ noLabel: boolean;
138
+ tracker: string;
139
+ }, {}>;
140
+ export default _default;