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