@icij/murmur-next 4.0.5 → 4.0.7

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 (64) hide show
  1. package/dist/lib/components/AccordionStep.vue.d.ts +79 -0
  2. package/dist/lib/components/AccordionWrapper.vue.d.ts +33 -0
  3. package/dist/lib/components/ActiveTextTruncate.vue.d.ts +101 -0
  4. package/dist/lib/components/AdvancedLinkForm.vue.d.ts +168 -0
  5. package/dist/lib/components/Brand.vue.d.ts +55 -0
  6. package/dist/lib/components/BrandExpansion.vue.d.ts +105 -0
  7. package/dist/lib/components/ConfirmButton.vue.d.ts +158 -0
  8. package/dist/lib/components/ContentPlaceholder.vue.d.ts +44 -0
  9. package/dist/lib/components/CustomPagination.vue.d.ts +130 -0
  10. package/dist/lib/components/DigitsInput.vue.d.ts +66 -0
  11. package/dist/lib/components/DonateForm.vue.d.ts +46 -0
  12. package/dist/lib/components/EmbedForm.vue.d.ts +121 -0
  13. package/dist/lib/components/EmbeddableFooter.vue.d.ts +103 -0
  14. package/dist/lib/components/FollowUsPopover.vue.d.ts +16 -0
  15. package/dist/lib/components/GenericFooter.vue.d.ts +47 -0
  16. package/dist/lib/components/GenericHeader.vue.d.ts +928 -0
  17. package/dist/lib/components/HapticCopy.vue.d.ts +156 -0
  18. package/dist/lib/components/ImddbHeader.vue.d.ts +960 -0
  19. package/dist/lib/components/OrdinalLegend.vue.d.ts +87 -0
  20. package/dist/lib/components/RangePicker.vue.d.ts +193 -0
  21. package/dist/lib/components/ResponsiveIframe.vue.d.ts +46 -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 +210 -0
  25. package/dist/lib/components/SharingOptions.vue.d.ts +153 -0
  26. package/dist/lib/components/SharingOptionsLink.vue.d.ts +200 -0
  27. package/dist/lib/components/SignUpForm.vue.d.ts +141 -0
  28. package/dist/lib/components/SlideUpDown.vue.d.ts +74 -0
  29. package/dist/lib/components/TexturedDeck.vue.d.ts +89 -0
  30. package/dist/lib/components/TinyPagination.vue.d.ts +188 -0
  31. package/dist/lib/composables/chart.d.ts +48 -0
  32. package/dist/lib/composables/resizeObserver.d.ts +22 -0
  33. package/dist/lib/composables/sendEmail.d.ts +6 -0
  34. package/dist/lib/config.d.ts +19 -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 +408 -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 +61 -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 +277 -0
  48. package/dist/lib/murmur.css +1 -0
  49. package/dist/lib/murmur.js +44934 -0
  50. package/dist/lib/murmur.js.map +1 -0
  51. package/dist/lib/murmur.umd.cjs +837 -0
  52. package/dist/lib/murmur.umd.cjs.map +1 -0
  53. package/dist/lib/types.d.ts +44 -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 +12 -0
  59. package/dist/lib/utils/placeholderTypes.d.ts +18 -0
  60. package/dist/lib/utils/strings.d.ts +1 -0
  61. package/lib/components/RangePicker.vue +3 -4
  62. package/lib/i18n.ts +5 -4
  63. package/lib/main.ts +22 -6
  64. package/package.json +6 -4
@@ -0,0 +1,44 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ import { PropType } from '../../node_modules/vue';
4
+ import type { ContentPlaceholderRows, ContentPlaceholderStyledRows } from '../utils/placeholderTypes';
5
+ /**
6
+ * A component to fill empty spaces with animated placeholders until content is loaded.
7
+ */
8
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
9
+ /**
10
+ * An array of lines describing a series of cell sizes and margin sizes.
11
+ */
12
+ rows: {
13
+ type: PropType<ContentPlaceholderRows>;
14
+ default: () => any;
15
+ };
16
+ /**
17
+ * The size of the background gradient with the elapsing effect.
18
+ */
19
+ size: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ }, {
24
+ formattedRows: import('../../node_modules/vue').ComputedRef<ContentPlaceholderStyledRows>;
25
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
26
+ /**
27
+ * An array of lines describing a series of cell sizes and margin sizes.
28
+ */
29
+ rows: {
30
+ type: PropType<ContentPlaceholderRows>;
31
+ default: () => any;
32
+ };
33
+ /**
34
+ * The size of the background gradient with the elapsing effect.
35
+ */
36
+ size: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ }>>, {
41
+ size: string;
42
+ rows: ContentPlaceholderRows;
43
+ }, {}>;
44
+ export default _default;
@@ -0,0 +1,130 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ import { PropType } from '../../node_modules/vue';
4
+ import { Size } from '../enums';
5
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
6
+ /**
7
+ * Total items to be stored in pages
8
+ */
9
+ totalRows: {
10
+ type: NumberConstructor;
11
+ default: number;
12
+ };
13
+ /**
14
+ * Sets the quantity of items per page
15
+ */
16
+ perPage: {
17
+ type: NumberConstructor;
18
+ default: number;
19
+ };
20
+ /**
21
+ * Grabs and syncs the currentPage variable passed down from the parent in v-model
22
+ */
23
+ modelValue: {
24
+ type: NumberConstructor;
25
+ default: number;
26
+ };
27
+ /**
28
+ * Displays the pagination element in pills styling as opposed to the default boxes
29
+ */
30
+ pills: {
31
+ type: BooleanConstructor;
32
+ };
33
+ /**
34
+ * Set the size of the input: 'sm', 'md' (default), or 'lg'.
35
+ */
36
+ size: {
37
+ type: PropType<Size>;
38
+ default: Size;
39
+ validator: (value: Size) => boolean;
40
+ };
41
+ /**
42
+ * Compact layout
43
+ */
44
+ compact: {
45
+ type: BooleanConstructor;
46
+ };
47
+ /**
48
+ * (Optional) Number of page. Property `size` is required for this to work
49
+ * properly. If `pages` is empty, it will be calculated using the size.
50
+ */
51
+ pages: {
52
+ type: (NumberConstructor | StringConstructor)[];
53
+ default: null;
54
+ };
55
+ }, {
56
+ customPaginationForm: import('../../node_modules/vue').Ref<HTMLFormElement | null>;
57
+ currentPageInput: import('../../node_modules/vue').Ref<string>;
58
+ errors: import('../../node_modules/vue').Ref<string[]>;
59
+ inputPlaceholder: import('../../node_modules/vue').ComputedRef<string>;
60
+ numberOfPages: import('../../node_modules/vue').ComputedRef<number>;
61
+ paginationClassList: import('../../node_modules/vue').ComputedRef<string[]>;
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
+ applyJumpFormPage: () => void;
68
+ updateModelValue: (value: string | number) => void;
69
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
70
+ /**
71
+ * Total items to be stored in pages
72
+ */
73
+ totalRows: {
74
+ type: NumberConstructor;
75
+ default: number;
76
+ };
77
+ /**
78
+ * Sets the quantity of items per page
79
+ */
80
+ perPage: {
81
+ type: NumberConstructor;
82
+ default: number;
83
+ };
84
+ /**
85
+ * Grabs and syncs the currentPage variable passed down from the parent in v-model
86
+ */
87
+ modelValue: {
88
+ type: NumberConstructor;
89
+ default: number;
90
+ };
91
+ /**
92
+ * Displays the pagination element in pills styling as opposed to the default boxes
93
+ */
94
+ pills: {
95
+ type: BooleanConstructor;
96
+ };
97
+ /**
98
+ * Set the size of the input: 'sm', 'md' (default), or 'lg'.
99
+ */
100
+ size: {
101
+ type: PropType<Size>;
102
+ default: Size;
103
+ validator: (value: Size) => boolean;
104
+ };
105
+ /**
106
+ * Compact layout
107
+ */
108
+ compact: {
109
+ type: BooleanConstructor;
110
+ };
111
+ /**
112
+ * (Optional) Number of page. Property `size` is required for this to work
113
+ * properly. If `pages` is empty, it will be calculated using the size.
114
+ */
115
+ pages: {
116
+ type: (NumberConstructor | StringConstructor)[];
117
+ default: null;
118
+ };
119
+ }>> & {
120
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
121
+ }, {
122
+ size: Size;
123
+ modelValue: number;
124
+ pills: boolean;
125
+ compact: boolean;
126
+ perPage: number;
127
+ totalRows: number;
128
+ pages: string | number;
129
+ }, {}>;
130
+ export default _default;
@@ -0,0 +1,66 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ /**
4
+ * Create an input for digits.
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
7
+ /**
8
+ * Number of digits to display
9
+ */
10
+ length: {
11
+ type: NumberConstructor;
12
+ default: number;
13
+ };
14
+ /**
15
+ * Value of the input
16
+ */
17
+ modelValue: {
18
+ type: (NumberConstructor | StringConstructor)[];
19
+ default: string;
20
+ };
21
+ /**
22
+ * Name of the input
23
+ */
24
+ name: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ }, {
29
+ values: import('../../node_modules/vue').Ref<string[]>;
30
+ joinedValues: import('../../node_modules/vue').ComputedRef<string>;
31
+ inputs: import('../../node_modules/vue').Ref<HTMLInputElement[]>;
32
+ nextInput: import('../../node_modules/vue').ComputedRef<HTMLInputElement | null>;
33
+ hasNextInput: import('../../node_modules/vue').ComputedRef<boolean>;
34
+ lastInput: import('../../node_modules/vue').ComputedRef<HTMLElement | null>;
35
+ focusToPreviousWhenEmpty: (d: number) => void;
36
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("update:modelValue" | "update:values")[], "update:modelValue" | "update:values", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
37
+ /**
38
+ * Number of digits to display
39
+ */
40
+ length: {
41
+ type: NumberConstructor;
42
+ default: number;
43
+ };
44
+ /**
45
+ * Value of the input
46
+ */
47
+ modelValue: {
48
+ type: (NumberConstructor | StringConstructor)[];
49
+ default: string;
50
+ };
51
+ /**
52
+ * Name of the input
53
+ */
54
+ name: {
55
+ type: StringConstructor;
56
+ default: string;
57
+ };
58
+ }>> & {
59
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
60
+ "onUpdate:values"?: ((...args: any[]) => any) | undefined;
61
+ }, {
62
+ name: string;
63
+ length: number;
64
+ modelValue: string | number;
65
+ }, {}>;
66
+ export default _default;
@@ -0,0 +1,46 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
4
+ /**
5
+ * Title of the form.
6
+ */
7
+ noTitle: {
8
+ type: BooleanConstructor;
9
+ };
10
+ }, {
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>;
15
+ }>, never, string, string>;
16
+ amount: import('../../node_modules/vue').Ref<number>;
17
+ level: import('../../node_modules/vue').Ref<string>;
18
+ campaign: import('../../node_modules/vue').Ref<any>;
19
+ labelForChange: import('../../node_modules/vue').Ref<{
20
+ monthly: {
21
+ 1: string;
22
+ 15: string;
23
+ 50: string;
24
+ };
25
+ yearly: {
26
+ 1: string;
27
+ 180: string;
28
+ 600: string;
29
+ };
30
+ }>;
31
+ installmentPeriod: import('../../node_modules/vue').Ref<string>;
32
+ changeThe: import('../../node_modules/vue').ComputedRef<null>;
33
+ listBenefits: import('../../node_modules/vue').Ref<any>;
34
+ selectLevel: (levelSelected: any) => void;
35
+ amountIsNotPristine: () => void;
36
+ }, any, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
37
+ /**
38
+ * Title of the form.
39
+ */
40
+ noTitle: {
41
+ type: BooleanConstructor;
42
+ };
43
+ }>>, {
44
+ noTitle: boolean;
45
+ }, {}>;
46
+ export default _default;
@@ -0,0 +1,121 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ /**
4
+ * Embed Form
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
7
+ /**
8
+ * Hide the form title
9
+ */
10
+ noTitle: {
11
+ type: BooleanConstructor;
12
+ };
13
+ /**
14
+ * Hide the preview panel
15
+ */
16
+ noPreview: {
17
+ type: BooleanConstructor;
18
+ };
19
+ /**
20
+ * Default width of the iframe code
21
+ */
22
+ width: {
23
+ type: (NumberConstructor | StringConstructor)[];
24
+ default: string;
25
+ };
26
+ /**
27
+ * Default height of the iframe code
28
+ */
29
+ height: {
30
+ type: NumberConstructor;
31
+ default: () => number;
32
+ };
33
+ /**
34
+ * Default minimal width of the iframe code (if extract from window\'s size)
35
+ */
36
+ minWidth: {
37
+ type: NumberConstructor;
38
+ default: number;
39
+ };
40
+ /**
41
+ * Default minimal height of the iframe code (if extract from window\'s size)
42
+ */
43
+ minHeight: {
44
+ type: NumberConstructor;
45
+ default: number;
46
+ };
47
+ /**
48
+ * URL of the iframe code
49
+ */
50
+ url: {
51
+ type: StringConstructor;
52
+ default: null;
53
+ };
54
+ }, {
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>;
59
+ }>, never, string, string>;
60
+ responsiveCheck: import('../../node_modules/vue').Ref<boolean>;
61
+ embedFormCode: import('../../node_modules/vue').Ref<HTMLTextAreaElement | null>;
62
+ selectCode: () => void;
63
+ embedCode: (withPym?: boolean) => string;
64
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
65
+ /**
66
+ * Hide the form title
67
+ */
68
+ noTitle: {
69
+ type: BooleanConstructor;
70
+ };
71
+ /**
72
+ * Hide the preview panel
73
+ */
74
+ noPreview: {
75
+ type: BooleanConstructor;
76
+ };
77
+ /**
78
+ * Default width of the iframe code
79
+ */
80
+ width: {
81
+ type: (NumberConstructor | StringConstructor)[];
82
+ default: string;
83
+ };
84
+ /**
85
+ * Default height of the iframe code
86
+ */
87
+ height: {
88
+ type: NumberConstructor;
89
+ default: () => number;
90
+ };
91
+ /**
92
+ * Default minimal width of the iframe code (if extract from window\'s size)
93
+ */
94
+ minWidth: {
95
+ type: NumberConstructor;
96
+ default: number;
97
+ };
98
+ /**
99
+ * Default minimal height of the iframe code (if extract from window\'s size)
100
+ */
101
+ minHeight: {
102
+ type: NumberConstructor;
103
+ default: number;
104
+ };
105
+ /**
106
+ * URL of the iframe code
107
+ */
108
+ url: {
109
+ type: StringConstructor;
110
+ default: null;
111
+ };
112
+ }>>, {
113
+ height: number;
114
+ minHeight: number;
115
+ minWidth: number;
116
+ width: string | number;
117
+ url: string;
118
+ noTitle: boolean;
119
+ noPreview: boolean;
120
+ }, {}>;
121
+ export default _default;
@@ -0,0 +1,103 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ type EmbeddableFooterData = {
4
+ showShareOptions: boolean;
5
+ };
6
+ /**
7
+ * EmbeddableFooter
8
+ */
9
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
10
+ /**
11
+ * Title to display next to ICIJ logo.
12
+ */
13
+ title: {
14
+ type: StringConstructor;
15
+ default: () => any;
16
+ };
17
+ /**
18
+ * Lead sentence to display next to the title.
19
+ */
20
+ lead: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ /**
25
+ * Minimum height for the iframe generated in the embed form.
26
+ */
27
+ iframeMinHeight: {
28
+ type: NumberConstructor;
29
+ default: number;
30
+ };
31
+ /**
32
+ * Minimum width for the iframe generated in the embed form.
33
+ */
34
+ iframeMinWidth: {
35
+ type: NumberConstructor;
36
+ default: number;
37
+ };
38
+ /**
39
+ * Target of the ICIJ logo and title links.
40
+ */
41
+ homeUrl: {
42
+ type: StringConstructor;
43
+ default: () => any;
44
+ };
45
+ /**
46
+ * Sharing option values to bind to the sharing-options component in the bottom-right corner.
47
+ */
48
+ sharingOptionsValues: {
49
+ type: ObjectConstructor;
50
+ default: () => {};
51
+ };
52
+ }, unknown, EmbeddableFooterData, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
53
+ /**
54
+ * Title to display next to ICIJ logo.
55
+ */
56
+ title: {
57
+ type: StringConstructor;
58
+ default: () => any;
59
+ };
60
+ /**
61
+ * Lead sentence to display next to the title.
62
+ */
63
+ lead: {
64
+ type: StringConstructor;
65
+ default: string;
66
+ };
67
+ /**
68
+ * Minimum height for the iframe generated in the embed form.
69
+ */
70
+ iframeMinHeight: {
71
+ type: NumberConstructor;
72
+ default: number;
73
+ };
74
+ /**
75
+ * Minimum width for the iframe generated in the embed form.
76
+ */
77
+ iframeMinWidth: {
78
+ type: NumberConstructor;
79
+ default: number;
80
+ };
81
+ /**
82
+ * Target of the ICIJ logo and title links.
83
+ */
84
+ homeUrl: {
85
+ type: StringConstructor;
86
+ default: () => any;
87
+ };
88
+ /**
89
+ * Sharing option values to bind to the sharing-options component in the bottom-right corner.
90
+ */
91
+ sharingOptionsValues: {
92
+ type: ObjectConstructor;
93
+ default: () => {};
94
+ };
95
+ }>>, {
96
+ title: string;
97
+ iframeMinHeight: number;
98
+ iframeMinWidth: number;
99
+ lead: string;
100
+ homeUrl: string;
101
+ sharingOptionsValues: Record<string, any>;
102
+ }, {}>;
103
+ export default _default;
@@ -0,0 +1,16 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ /**
4
+ * FollowUsPopover
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{}, {
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>;
11
+ }>, never, string, string>;
12
+ closeSignupPopover: () => void;
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<{}>> & {
14
+ "onUpdate:close"?: ((...args: any[]) => any) | undefined;
15
+ }, {}, {}>;
16
+ export default _default;
@@ -0,0 +1,47 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /// <reference types="vue-i18n" />
3
+ import { BrandMode } from '../enums';
4
+ /**
5
+ * GenericFooter
6
+ */
7
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
8
+ /**
9
+ * Version of the app to display in the bottom-right corner of the footer
10
+ */
11
+ version: {
12
+ type: StringConstructor;
13
+ default: null;
14
+ };
15
+ /**
16
+ * Whether to show the About Us column or not
17
+ */
18
+ showAboutUs: {
19
+ type: BooleanConstructor;
20
+ default: boolean;
21
+ };
22
+ }, unknown, {
23
+ mode: BrandMode;
24
+ }, {
25
+ year(): number;
26
+ contactEmail(): string;
27
+ contactEmailMailto(): string;
28
+ }, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
29
+ /**
30
+ * Version of the app to display in the bottom-right corner of the footer
31
+ */
32
+ version: {
33
+ type: StringConstructor;
34
+ default: null;
35
+ };
36
+ /**
37
+ * Whether to show the About Us column or not
38
+ */
39
+ showAboutUs: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ }>>, {
44
+ version: string;
45
+ showAboutUs: boolean;
46
+ }, {}>;
47
+ export default _default;