@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.
- package/dist/lib/components/AccordionStep.vue.d.ts +79 -0
- package/dist/lib/components/AccordionWrapper.vue.d.ts +33 -0
- package/dist/lib/components/ActiveTextTruncate.vue.d.ts +101 -0
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +168 -0
- package/dist/lib/components/Brand.vue.d.ts +55 -0
- package/dist/lib/components/BrandExpansion.vue.d.ts +105 -0
- package/dist/lib/components/ConfirmButton.vue.d.ts +158 -0
- package/dist/lib/components/ContentPlaceholder.vue.d.ts +44 -0
- package/dist/lib/components/CustomPagination.vue.d.ts +130 -0
- package/dist/lib/components/DigitsInput.vue.d.ts +66 -0
- package/dist/lib/components/DonateForm.vue.d.ts +46 -0
- package/dist/lib/components/EmbedForm.vue.d.ts +121 -0
- package/dist/lib/components/EmbeddableFooter.vue.d.ts +103 -0
- package/dist/lib/components/FollowUsPopover.vue.d.ts +16 -0
- package/dist/lib/components/GenericFooter.vue.d.ts +47 -0
- package/dist/lib/components/GenericHeader.vue.d.ts +928 -0
- package/dist/lib/components/HapticCopy.vue.d.ts +156 -0
- package/dist/lib/components/ImddbHeader.vue.d.ts +960 -0
- package/dist/lib/components/OrdinalLegend.vue.d.ts +87 -0
- package/dist/lib/components/RangePicker.vue.d.ts +193 -0
- package/dist/lib/components/ResponsiveIframe.vue.d.ts +46 -0
- package/dist/lib/components/ScaleLegend.vue.d.ts +101 -0
- package/dist/lib/components/SecretInput.vue.d.ts +99 -0
- package/dist/lib/components/SelectableDropdown.vue.d.ts +210 -0
- package/dist/lib/components/SharingOptions.vue.d.ts +153 -0
- package/dist/lib/components/SharingOptionsLink.vue.d.ts +200 -0
- package/dist/lib/components/SignUpForm.vue.d.ts +141 -0
- package/dist/lib/components/SlideUpDown.vue.d.ts +74 -0
- package/dist/lib/components/TexturedDeck.vue.d.ts +89 -0
- package/dist/lib/components/TinyPagination.vue.d.ts +188 -0
- package/dist/lib/composables/chart.d.ts +48 -0
- package/dist/lib/composables/resizeObserver.d.ts +22 -0
- package/dist/lib/composables/sendEmail.d.ts +6 -0
- package/dist/lib/config.d.ts +19 -0
- package/dist/lib/config.default.d.ts +34 -0
- package/dist/lib/datavisualisations/BarChart.vue.d.ts +232 -0
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +408 -0
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +208 -0
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +338 -0
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +412 -0
- package/dist/lib/enums.d.ts +32 -0
- package/dist/lib/i18n.d.ts +5 -0
- package/dist/lib/keys.d.ts +2 -0
- package/dist/lib/main.d.ts +61 -0
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +466 -0
- package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +188 -0
- package/dist/lib/maps/SymbolMap.vue.d.ts +277 -0
- package/dist/lib/murmur.css +1 -0
- package/dist/lib/murmur.js +44934 -0
- package/dist/lib/murmur.js.map +1 -0
- package/dist/lib/murmur.umd.cjs +837 -0
- package/dist/lib/murmur.umd.cjs.map +1 -0
- package/dist/lib/types.d.ts +44 -0
- package/dist/lib/utils/animation.d.ts +8 -0
- package/dist/lib/utils/assets.d.ts +2 -0
- package/dist/lib/utils/clipboard.d.ts +2 -0
- package/dist/lib/utils/iframe-resizer.d.ts +11 -0
- package/dist/lib/utils/placeholder.d.ts +12 -0
- package/dist/lib/utils/placeholderTypes.d.ts +18 -0
- package/dist/lib/utils/strings.d.ts +1 -0
- package/lib/components/RangePicker.vue +3 -4
- package/lib/i18n.ts +5 -4
- package/lib/main.ts +22 -6
- package/package.json +6 -4
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
/// <reference types="@/shims-vue" />
|
|
3
|
+
/// <reference types="vue-i18n" />
|
|
4
|
+
import { PopoverPlacement } from 'bootstrap-vue-next';
|
|
5
|
+
import { ComponentPublicInstance, PropType } from '../../node_modules/vue';
|
|
6
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
7
|
+
/**
|
|
8
|
+
* Text to copy to the clipboard
|
|
9
|
+
*/
|
|
10
|
+
text: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: null;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Plain text to use as an alternative text for HTML copy (uses `text` by default)
|
|
16
|
+
*/
|
|
17
|
+
plain: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: null;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Hide the button label (still visible for screen reader)
|
|
23
|
+
*/
|
|
24
|
+
hideLabel: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Button label
|
|
29
|
+
*/
|
|
30
|
+
label: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: null;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Delay after which we hide the tooltip
|
|
36
|
+
*/
|
|
37
|
+
tooltipHideDelay: {
|
|
38
|
+
type: NumberConstructor;
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Placement of the tooltip. Can be: top, topleft, topright, right,<br />
|
|
43
|
+
* righttop, rightbottom, bottom, bottomleft, bottomright, left, lefttop,
|
|
44
|
+
* and leftbottom.
|
|
45
|
+
*/
|
|
46
|
+
tooltipPlacement: {
|
|
47
|
+
type: PropType<PopoverPlacement>;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Copy HTML content
|
|
52
|
+
*/
|
|
53
|
+
html: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Deactivate haptic tooltip display
|
|
58
|
+
*/
|
|
59
|
+
noTooltip: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
};
|
|
62
|
+
}, {
|
|
63
|
+
t: import("vue-i18n").ComposerTranslation<{
|
|
64
|
+
[x: string]: import("@intlify/core-base").LocaleMessage<import("vue-i18n").VueMessageType>;
|
|
65
|
+
}, string, import("@intlify/core-base").RemoveIndexSignature<{
|
|
66
|
+
[x: string]: import("vue-i18n").LocaleMessageValue<import("vue-i18n").VueMessageType>;
|
|
67
|
+
}>, never, string, string>;
|
|
68
|
+
tooltip: import('../../node_modules/vue').Ref<ComponentPublicInstance | null>;
|
|
69
|
+
el: import('../../node_modules/vue').Ref<ComponentPublicInstance<HTMLElement> | null>;
|
|
70
|
+
showClipboardTooltip: import('../../node_modules/vue').Ref<boolean>;
|
|
71
|
+
tooltipContainer: import('../../node_modules/vue').ComputedRef<string | null>;
|
|
72
|
+
tooltipContent: import('../../node_modules/vue').Ref<string>;
|
|
73
|
+
tooltipTimeout: import('../../node_modules/vue').Ref<{
|
|
74
|
+
ref: () => NodeJS.Timeout;
|
|
75
|
+
unref: () => NodeJS.Timeout;
|
|
76
|
+
hasRef: () => boolean;
|
|
77
|
+
refresh: () => NodeJS.Timeout;
|
|
78
|
+
[Symbol.toPrimitive]: () => number;
|
|
79
|
+
[Symbol.dispose]: () => void;
|
|
80
|
+
} | undefined>;
|
|
81
|
+
copy: () => Promise<void>;
|
|
82
|
+
closeTooltip: () => Promise<void>;
|
|
83
|
+
openTooltip: (msg?: string) => Promise<void>;
|
|
84
|
+
nextTimeout: (fn?: (...args: any[]) => void, delay?: number) => Promise<void>;
|
|
85
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("error" | "success" | "attempt" | "hideClipboardTooltip")[], "error" | "success" | "attempt" | "hideClipboardTooltip", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
86
|
+
/**
|
|
87
|
+
* Text to copy to the clipboard
|
|
88
|
+
*/
|
|
89
|
+
text: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: null;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Plain text to use as an alternative text for HTML copy (uses `text` by default)
|
|
95
|
+
*/
|
|
96
|
+
plain: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: null;
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Hide the button label (still visible for screen reader)
|
|
102
|
+
*/
|
|
103
|
+
hideLabel: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Button label
|
|
108
|
+
*/
|
|
109
|
+
label: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: null;
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Delay after which we hide the tooltip
|
|
115
|
+
*/
|
|
116
|
+
tooltipHideDelay: {
|
|
117
|
+
type: NumberConstructor;
|
|
118
|
+
default: number;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Placement of the tooltip. Can be: top, topleft, topright, right,<br />
|
|
122
|
+
* righttop, rightbottom, bottom, bottomleft, bottomright, left, lefttop,
|
|
123
|
+
* and leftbottom.
|
|
124
|
+
*/
|
|
125
|
+
tooltipPlacement: {
|
|
126
|
+
type: PropType<PopoverPlacement>;
|
|
127
|
+
default: string;
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* Copy HTML content
|
|
131
|
+
*/
|
|
132
|
+
html: {
|
|
133
|
+
type: BooleanConstructor;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Deactivate haptic tooltip display
|
|
137
|
+
*/
|
|
138
|
+
noTooltip: {
|
|
139
|
+
type: BooleanConstructor;
|
|
140
|
+
};
|
|
141
|
+
}>> & {
|
|
142
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
143
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
144
|
+
onAttempt?: ((...args: any[]) => any) | undefined;
|
|
145
|
+
onHideClipboardTooltip?: ((...args: any[]) => any) | undefined;
|
|
146
|
+
}, {
|
|
147
|
+
html: boolean;
|
|
148
|
+
label: string;
|
|
149
|
+
text: string;
|
|
150
|
+
plain: string;
|
|
151
|
+
hideLabel: boolean;
|
|
152
|
+
tooltipHideDelay: number;
|
|
153
|
+
tooltipPlacement: PopoverPlacement;
|
|
154
|
+
noTooltip: boolean;
|
|
155
|
+
}, {}>;
|
|
156
|
+
export default _default;
|