@icij/murmur-next 4.0.13 → 4.0.15
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/ActiveTextTruncate.vue.d.ts +0 -2
- package/dist/lib/components/AdvancedLinkForm.vue.d.ts +2 -3
- package/dist/lib/components/Brand.vue.d.ts +1 -3
- package/dist/lib/components/DigitsInput.vue.d.ts +0 -2
- package/dist/lib/components/DonateForm.vue.d.ts +0 -1
- package/dist/lib/components/EmbedForm.vue.d.ts +0 -1
- package/dist/lib/components/EmbeddableFooter.vue.d.ts +0 -2
- package/dist/lib/components/FollowUsPopover.vue.d.ts +0 -1
- package/dist/lib/components/GenericHeader.vue.d.ts +340 -361
- package/dist/lib/components/HapticCopy.vue.d.ts +1 -0
- package/dist/lib/components/ImddbHeader.vue.d.ts +340 -361
- package/dist/lib/components/RangePicker.vue.d.ts +4 -4
- package/dist/lib/components/ScaleLegend.vue.d.ts +2 -4
- package/dist/lib/components/SecretInput.vue.d.ts +0 -2
- package/dist/lib/components/SelectableDropdown.vue.d.ts +5 -5
- package/dist/lib/components/SharingOptions.vue.d.ts +1 -1
- package/dist/lib/components/SignUpForm.vue.d.ts +1 -1
- package/dist/lib/components/TinyPagination.vue.d.ts +3 -2
- package/dist/lib/datavisualisations/BarChart.vue.d.ts +8 -16
- package/dist/lib/datavisualisations/ColumnChart.vue.d.ts +8 -12
- package/dist/lib/datavisualisations/LineChart.vue.d.ts +6 -16
- package/dist/lib/datavisualisations/StackedBarChart.vue.d.ts +6 -8
- package/dist/lib/datavisualisations/StackedColumnChart.vue.d.ts +4 -6
- package/dist/lib/main.d.ts +1 -1
- package/dist/lib/maps/ChoroplethMap.vue.d.ts +4 -12
- package/dist/lib/maps/ChoroplethMapAnnotation.vue.d.ts +0 -2
- package/dist/lib/maps/SymbolMap.vue.d.ts +4 -4
- package/dist/lib/murmur.css +1 -1
- package/dist/lib/murmur.js +10057 -10583
- package/dist/lib/murmur.js.map +1 -1
- package/dist/lib/murmur.umd.cjs +34 -38
- package/dist/lib/murmur.umd.cjs.map +1 -1
- package/lib/assets/images/murmur-textured.png +0 -0
- package/lib/components/AdvancedLinkForm.vue +22 -32
- package/lib/components/HapticCopy.vue +21 -12
- package/lib/components/SecretInput.vue +12 -15
- package/lib/components/SharingOptions.vue +10 -20
- package/package.json +12 -14
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
1
|
/**
|
|
3
2
|
* A form with tabs to offer several copy formats to users.
|
|
4
3
|
*/
|
|
@@ -156,12 +155,12 @@ declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
|
156
155
|
link: string;
|
|
157
156
|
small: boolean;
|
|
158
157
|
title: string;
|
|
159
|
-
vertical: boolean;
|
|
160
158
|
modelValue: number;
|
|
161
159
|
noFade: boolean;
|
|
162
|
-
|
|
160
|
+
vertical: boolean;
|
|
163
161
|
card: boolean;
|
|
164
162
|
pills: boolean;
|
|
163
|
+
activeNavItemClass: string;
|
|
165
164
|
forms: unknown[];
|
|
166
165
|
}, {}>;
|
|
167
166
|
export default _default;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/// <reference types="@/shims-vue" />
|
|
2
|
-
/// <reference types="vue-i18n" />
|
|
3
1
|
interface BrandProps {
|
|
4
2
|
/**
|
|
5
3
|
* Add a balancing effect to the globe
|
|
@@ -33,7 +31,7 @@ declare const _default: import('../../node_modules/vue').DefineComponent<__VLS_W
|
|
|
33
31
|
}>>>, {
|
|
34
32
|
color: string;
|
|
35
33
|
background: string;
|
|
36
|
-
size:
|
|
34
|
+
size: number | string;
|
|
37
35
|
}, {}>;
|
|
38
36
|
export default _default;
|
|
39
37
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|