@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,43 @@
1
+ import { PropType } from '../../node_modules/vue';
2
+ import { ContentPlaceholderRows, ContentPlaceholderStyledRows } from '../utils/placeholderTypes';
3
+
4
+ /**
5
+ * A component to fill empty spaces with animated placeholders until content is loaded.
6
+ */
7
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
8
+ /**
9
+ * An array of lines describing a series of cell sizes and margin sizes.
10
+ */
11
+ rows: {
12
+ type: PropType<ContentPlaceholderRows>;
13
+ default: () => any;
14
+ };
15
+ /**
16
+ * The size of the background gradient with the elapsing effect.
17
+ */
18
+ size: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ }, {
23
+ formattedRows: import('../../node_modules/vue').ComputedRef<ContentPlaceholderStyledRows>;
24
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
25
+ /**
26
+ * An array of lines describing a series of cell sizes and margin sizes.
27
+ */
28
+ rows: {
29
+ type: PropType<ContentPlaceholderRows>;
30
+ default: () => any;
31
+ };
32
+ /**
33
+ * The size of the background gradient with the elapsing effect.
34
+ */
35
+ size: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ }>>, {
40
+ size: string;
41
+ rows: ContentPlaceholderRows;
42
+ }, {}>;
43
+ export default _default;
@@ -0,0 +1,129 @@
1
+ import { PropType } from '../../node_modules/vue';
2
+ import { Size } from '../enums';
3
+
4
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
5
+ /**
6
+ * Total items to be stored in pages
7
+ */
8
+ totalRows: {
9
+ type: NumberConstructor;
10
+ default: number;
11
+ };
12
+ /**
13
+ * Sets the quantity of items per page
14
+ */
15
+ perPage: {
16
+ type: NumberConstructor;
17
+ default: number;
18
+ };
19
+ /**
20
+ * Grabs and syncs the currentPage variable passed down from the parent in v-model
21
+ */
22
+ modelValue: {
23
+ type: NumberConstructor;
24
+ default: number;
25
+ };
26
+ /**
27
+ * Displays the pagination element in pills styling as opposed to the default boxes
28
+ */
29
+ pills: {
30
+ type: BooleanConstructor;
31
+ };
32
+ /**
33
+ * Set the size of the input: 'sm', 'md' (default), or 'lg'.
34
+ */
35
+ size: {
36
+ type: PropType<Size>;
37
+ default: Size;
38
+ validator: (value: Size) => boolean;
39
+ };
40
+ /**
41
+ * Compact layout
42
+ */
43
+ compact: {
44
+ type: BooleanConstructor;
45
+ };
46
+ /**
47
+ * (Optional) Number of page. Property `size` is required for this to work
48
+ * properly. If `pages` is empty, it will be calculated using the size.
49
+ */
50
+ pages: {
51
+ type: (NumberConstructor | StringConstructor)[];
52
+ default: null;
53
+ };
54
+ }, {
55
+ customPaginationForm: import('../../node_modules/vue').Ref<HTMLFormElement | null>;
56
+ currentPageInput: import('../../node_modules/vue').Ref<string>;
57
+ errors: import('../../node_modules/vue').Ref<string[]>;
58
+ inputPlaceholder: import('../../node_modules/vue').ComputedRef<string>;
59
+ numberOfPages: import('../../node_modules/vue').ComputedRef<number>;
60
+ paginationClassList: import('../../node_modules/vue').ComputedRef<string[]>;
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>;
65
+ }>, never, string, string>;
66
+ applyJumpFormPage: () => void;
67
+ updateModelValue: (value: string | number) => void;
68
+ }, 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<{
69
+ /**
70
+ * Total items to be stored in pages
71
+ */
72
+ totalRows: {
73
+ type: NumberConstructor;
74
+ default: number;
75
+ };
76
+ /**
77
+ * Sets the quantity of items per page
78
+ */
79
+ perPage: {
80
+ type: NumberConstructor;
81
+ default: number;
82
+ };
83
+ /**
84
+ * Grabs and syncs the currentPage variable passed down from the parent in v-model
85
+ */
86
+ modelValue: {
87
+ type: NumberConstructor;
88
+ default: number;
89
+ };
90
+ /**
91
+ * Displays the pagination element in pills styling as opposed to the default boxes
92
+ */
93
+ pills: {
94
+ type: BooleanConstructor;
95
+ };
96
+ /**
97
+ * Set the size of the input: 'sm', 'md' (default), or 'lg'.
98
+ */
99
+ size: {
100
+ type: PropType<Size>;
101
+ default: Size;
102
+ validator: (value: Size) => boolean;
103
+ };
104
+ /**
105
+ * Compact layout
106
+ */
107
+ compact: {
108
+ type: BooleanConstructor;
109
+ };
110
+ /**
111
+ * (Optional) Number of page. Property `size` is required for this to work
112
+ * properly. If `pages` is empty, it will be calculated using the size.
113
+ */
114
+ pages: {
115
+ type: (NumberConstructor | StringConstructor)[];
116
+ default: null;
117
+ };
118
+ }>> & {
119
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
120
+ }, {
121
+ size: Size;
122
+ modelValue: number;
123
+ pills: boolean;
124
+ compact: boolean;
125
+ perPage: number;
126
+ totalRows: number;
127
+ pages: string | number;
128
+ }, {}>;
129
+ 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,45 @@
1
+ /// <reference types="@/shims-vue" />
2
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
3
+ /**
4
+ * Title of the form.
5
+ */
6
+ noTitle: {
7
+ type: BooleanConstructor;
8
+ };
9
+ }, {
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>;
14
+ }>, never, string, string>;
15
+ amount: import('../../node_modules/vue').Ref<number>;
16
+ level: import('../../node_modules/vue').Ref<string>;
17
+ campaign: import('../../node_modules/vue').Ref<any>;
18
+ labelForChange: import('../../node_modules/vue').Ref<{
19
+ monthly: {
20
+ 1: string;
21
+ 15: string;
22
+ 50: string;
23
+ };
24
+ yearly: {
25
+ 1: string;
26
+ 180: string;
27
+ 600: string;
28
+ };
29
+ }>;
30
+ installmentPeriod: import('../../node_modules/vue').Ref<string>;
31
+ changeThe: import('../../node_modules/vue').ComputedRef<null>;
32
+ listBenefits: import('../../node_modules/vue').Ref<any>;
33
+ selectLevel: (levelSelected: any) => void;
34
+ amountIsNotPristine: () => void;
35
+ }, any, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
36
+ /**
37
+ * Title of the form.
38
+ */
39
+ noTitle: {
40
+ type: BooleanConstructor;
41
+ };
42
+ }>>, {
43
+ noTitle: boolean;
44
+ }, {}>;
45
+ export default _default;
@@ -0,0 +1,120 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /**
3
+ * Embed Form
4
+ */
5
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
6
+ /**
7
+ * Hide the form title
8
+ */
9
+ noTitle: {
10
+ type: BooleanConstructor;
11
+ };
12
+ /**
13
+ * Hide the preview panel
14
+ */
15
+ noPreview: {
16
+ type: BooleanConstructor;
17
+ };
18
+ /**
19
+ * Default width of the iframe code
20
+ */
21
+ width: {
22
+ type: (NumberConstructor | StringConstructor)[];
23
+ default: string;
24
+ };
25
+ /**
26
+ * Default height of the iframe code
27
+ */
28
+ height: {
29
+ type: NumberConstructor;
30
+ default: () => number;
31
+ };
32
+ /**
33
+ * Default minimal width of the iframe code (if extract from window\'s size)
34
+ */
35
+ minWidth: {
36
+ type: NumberConstructor;
37
+ default: number;
38
+ };
39
+ /**
40
+ * Default minimal height of the iframe code (if extract from window\'s size)
41
+ */
42
+ minHeight: {
43
+ type: NumberConstructor;
44
+ default: number;
45
+ };
46
+ /**
47
+ * URL of the iframe code
48
+ */
49
+ url: {
50
+ type: StringConstructor;
51
+ default: null;
52
+ };
53
+ }, {
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>;
58
+ }>, never, string, string>;
59
+ responsiveCheck: import('../../node_modules/vue').Ref<boolean>;
60
+ embedFormCode: import('../../node_modules/vue').Ref<HTMLTextAreaElement | null>;
61
+ selectCode: () => void;
62
+ embedCode: (withPym?: boolean) => string;
63
+ }, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
64
+ /**
65
+ * Hide the form title
66
+ */
67
+ noTitle: {
68
+ type: BooleanConstructor;
69
+ };
70
+ /**
71
+ * Hide the preview panel
72
+ */
73
+ noPreview: {
74
+ type: BooleanConstructor;
75
+ };
76
+ /**
77
+ * Default width of the iframe code
78
+ */
79
+ width: {
80
+ type: (NumberConstructor | StringConstructor)[];
81
+ default: string;
82
+ };
83
+ /**
84
+ * Default height of the iframe code
85
+ */
86
+ height: {
87
+ type: NumberConstructor;
88
+ default: () => number;
89
+ };
90
+ /**
91
+ * Default minimal width of the iframe code (if extract from window\'s size)
92
+ */
93
+ minWidth: {
94
+ type: NumberConstructor;
95
+ default: number;
96
+ };
97
+ /**
98
+ * Default minimal height of the iframe code (if extract from window\'s size)
99
+ */
100
+ minHeight: {
101
+ type: NumberConstructor;
102
+ default: number;
103
+ };
104
+ /**
105
+ * URL of the iframe code
106
+ */
107
+ url: {
108
+ type: StringConstructor;
109
+ default: null;
110
+ };
111
+ }>>, {
112
+ height: number;
113
+ minHeight: number;
114
+ minWidth: number;
115
+ width: string | number;
116
+ url: string;
117
+ noTitle: boolean;
118
+ noPreview: boolean;
119
+ }, {}>;
120
+ 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,15 @@
1
+ /// <reference types="@/shims-vue" />
2
+ /**
3
+ * FollowUsPopover
4
+ */
5
+ declare const _default: import('../../node_modules/vue').DefineComponent<{}, {
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>;
10
+ }>, never, string, string>;
11
+ closeSignupPopover: () => void;
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<{}>> & {
13
+ "onUpdate:close"?: ((...args: any[]) => any) | undefined;
14
+ }, {}, {}>;
15
+ export default _default;
@@ -0,0 +1,46 @@
1
+ import { BrandMode } from '../enums';
2
+
3
+ /**
4
+ * GenericFooter
5
+ */
6
+ declare const _default: import('../../node_modules/vue').DefineComponent<{
7
+ /**
8
+ * Version of the app to display in the bottom-right corner of the footer
9
+ */
10
+ version: {
11
+ type: StringConstructor;
12
+ default: null;
13
+ };
14
+ /**
15
+ * Whether to show the About Us column or not
16
+ */
17
+ showAboutUs: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ }, unknown, {
22
+ mode: BrandMode;
23
+ }, {
24
+ year(): number;
25
+ contactEmail(): string;
26
+ contactEmailMailto(): string;
27
+ }, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
28
+ /**
29
+ * Version of the app to display in the bottom-right corner of the footer
30
+ */
31
+ version: {
32
+ type: StringConstructor;
33
+ default: null;
34
+ };
35
+ /**
36
+ * Whether to show the About Us column or not
37
+ */
38
+ showAboutUs: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ }>>, {
43
+ version: string;
44
+ showAboutUs: boolean;
45
+ }, {}>;
46
+ export default _default;