@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,87 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
3
|
+
import { PropType } from '../../node_modules/vue';
|
|
4
|
+
type Datum = {
|
|
5
|
+
id?: string;
|
|
6
|
+
color: string;
|
|
7
|
+
path?: string;
|
|
8
|
+
label: string;
|
|
9
|
+
};
|
|
10
|
+
type Category = 'id' | 'color' | 'path' | 'label';
|
|
11
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
12
|
+
data: {
|
|
13
|
+
type: PropType<Datum[]>;
|
|
14
|
+
default: () => never[];
|
|
15
|
+
};
|
|
16
|
+
horizontal: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
};
|
|
19
|
+
markerPath: {
|
|
20
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
categoryObjectsPath: {
|
|
24
|
+
type: PropType<Category>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
highlight: {
|
|
28
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
29
|
+
default: null;
|
|
30
|
+
};
|
|
31
|
+
value: {
|
|
32
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
33
|
+
default: null;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
classList: import('../../node_modules/vue').ComputedRef<{
|
|
37
|
+
'ordinal-legend--horizontal': boolean;
|
|
38
|
+
'ordinal-legend--has-highlight': boolean;
|
|
39
|
+
'ordinal-legend--has-value': boolean;
|
|
40
|
+
}>;
|
|
41
|
+
markerViewbox: import('../../node_modules/vue').ComputedRef<string>;
|
|
42
|
+
updateHighlight: (d?: {}) => void;
|
|
43
|
+
itemClassList: (d: {
|
|
44
|
+
[key: string]: string;
|
|
45
|
+
}) => {
|
|
46
|
+
[x: string]: boolean;
|
|
47
|
+
'ordinal-legend__item--highlighted': boolean;
|
|
48
|
+
'ordinal-legend__item--selected': boolean;
|
|
49
|
+
};
|
|
50
|
+
markerPathFunction: (d?: Datum) => string;
|
|
51
|
+
update: (d: Datum) => void;
|
|
52
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, ("update" | "update:highlight")[], "update" | "update:highlight", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
53
|
+
data: {
|
|
54
|
+
type: PropType<Datum[]>;
|
|
55
|
+
default: () => never[];
|
|
56
|
+
};
|
|
57
|
+
horizontal: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
};
|
|
60
|
+
markerPath: {
|
|
61
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
categoryObjectsPath: {
|
|
65
|
+
type: PropType<Category>;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
highlight: {
|
|
69
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
70
|
+
default: null;
|
|
71
|
+
};
|
|
72
|
+
value: {
|
|
73
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
74
|
+
default: null;
|
|
75
|
+
};
|
|
76
|
+
}>> & {
|
|
77
|
+
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
"onUpdate:highlight"?: ((...args: any[]) => any) | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
data: Datum[];
|
|
81
|
+
value: string | number;
|
|
82
|
+
horizontal: boolean;
|
|
83
|
+
markerPath: string | Function;
|
|
84
|
+
categoryObjectsPath: Category;
|
|
85
|
+
highlight: string | number;
|
|
86
|
+
}, {}>;
|
|
87
|
+
export default _default;
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
3
|
+
import { PropType } from '../../node_modules/vue';
|
|
4
|
+
import type { Variant } from '../types';
|
|
5
|
+
type DragDropValue = {
|
|
6
|
+
detail: number;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* A component to wrap an HTML element with a range picker overlay.
|
|
10
|
+
*/
|
|
11
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
12
|
+
/**
|
|
13
|
+
* Initial values of the range bounds. Should contain two numbers.
|
|
14
|
+
* indicating the start and end of the range.
|
|
15
|
+
*/
|
|
16
|
+
range: {
|
|
17
|
+
type: PropType<[number, number]>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Enables hover styling on rows.
|
|
22
|
+
*/
|
|
23
|
+
hover: {
|
|
24
|
+
type: PropType<boolean>;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Offset from the left side of the component
|
|
29
|
+
* where the dragging for the start value begins.
|
|
30
|
+
*/
|
|
31
|
+
startOffset: {
|
|
32
|
+
type: PropType<string | number>;
|
|
33
|
+
default: number;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Offset from the right side of the component where
|
|
37
|
+
* the dragging for the end value ends.
|
|
38
|
+
*/
|
|
39
|
+
endOffset: {
|
|
40
|
+
type: PropType<string | number>;
|
|
41
|
+
default: number;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Number of decimal places to which values should be rounded.
|
|
45
|
+
*/
|
|
46
|
+
precision: {
|
|
47
|
+
type: PropType<number>;
|
|
48
|
+
default: number;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Snap increment value. For instance,
|
|
52
|
+
* if snap is 0.1, values will snap to 0, 0.1, 0.2, and so on.
|
|
53
|
+
*/
|
|
54
|
+
snap: {
|
|
55
|
+
type: PropType<number>;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Minimum distance between the two range bounds to ensure they
|
|
60
|
+
* don't get too close to each other.
|
|
61
|
+
*/
|
|
62
|
+
minDistance: {
|
|
63
|
+
type: PropType<number>;
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Variant style of the component. Expected to be one
|
|
68
|
+
* of the predefined Bootstrap theme (e.g., 'primary', 'secondary', etc).
|
|
69
|
+
*/
|
|
70
|
+
variant: {
|
|
71
|
+
type: PropType<Variant>;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Rounds corner edges of the range boundaries. If
|
|
76
|
+
* true, the component will have rounded corners.
|
|
77
|
+
*/
|
|
78
|
+
rounded: {
|
|
79
|
+
type: PropType<boolean>;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
}, {
|
|
83
|
+
rangePickerBounds: import('../../node_modules/vue').Ref<HTMLElement | null>;
|
|
84
|
+
start: import('../../node_modules/vue').Ref<number>;
|
|
85
|
+
end: import('../../node_modules/vue').Ref<number>;
|
|
86
|
+
classList: import('../../node_modules/vue').ComputedRef<{
|
|
87
|
+
[key: string]: boolean;
|
|
88
|
+
}>;
|
|
89
|
+
disabled: import('../../node_modules/vue').ComputedRef<boolean>;
|
|
90
|
+
overlayStyle: import('../../node_modules/vue').ComputedRef<{
|
|
91
|
+
left: string;
|
|
92
|
+
right: string;
|
|
93
|
+
}>;
|
|
94
|
+
boundsStyle: import('../../node_modules/vue').ComputedRef<{
|
|
95
|
+
left: string;
|
|
96
|
+
right: string;
|
|
97
|
+
}>;
|
|
98
|
+
rangeWidth: () => number;
|
|
99
|
+
startBoundStyle: import('../../node_modules/vue').ComputedRef<{
|
|
100
|
+
left: string;
|
|
101
|
+
}>;
|
|
102
|
+
endBoundStyle: import('../../node_modules/vue').ComputedRef<{
|
|
103
|
+
left: string;
|
|
104
|
+
}>;
|
|
105
|
+
dragStartBound: ({ detail: dx }: DragDropValue) => void;
|
|
106
|
+
dragEndBound: ({ detail: dx }: DragDropValue) => void;
|
|
107
|
+
dragBounds: ({ detail: dx }: DragDropValue) => void;
|
|
108
|
+
toggleMoving: (value: boolean) => void;
|
|
109
|
+
toggleResizing: (value: boolean) => void;
|
|
110
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, "update:range"[], "update:range", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
111
|
+
/**
|
|
112
|
+
* Initial values of the range bounds. Should contain two numbers.
|
|
113
|
+
* indicating the start and end of the range.
|
|
114
|
+
*/
|
|
115
|
+
range: {
|
|
116
|
+
type: PropType<[number, number]>;
|
|
117
|
+
required: true;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Enables hover styling on rows.
|
|
121
|
+
*/
|
|
122
|
+
hover: {
|
|
123
|
+
type: PropType<boolean>;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Offset from the left side of the component
|
|
128
|
+
* where the dragging for the start value begins.
|
|
129
|
+
*/
|
|
130
|
+
startOffset: {
|
|
131
|
+
type: PropType<string | number>;
|
|
132
|
+
default: number;
|
|
133
|
+
};
|
|
134
|
+
/**
|
|
135
|
+
* Offset from the right side of the component where
|
|
136
|
+
* the dragging for the end value ends.
|
|
137
|
+
*/
|
|
138
|
+
endOffset: {
|
|
139
|
+
type: PropType<string | number>;
|
|
140
|
+
default: number;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Number of decimal places to which values should be rounded.
|
|
144
|
+
*/
|
|
145
|
+
precision: {
|
|
146
|
+
type: PropType<number>;
|
|
147
|
+
default: number;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Snap increment value. For instance,
|
|
151
|
+
* if snap is 0.1, values will snap to 0, 0.1, 0.2, and so on.
|
|
152
|
+
*/
|
|
153
|
+
snap: {
|
|
154
|
+
type: PropType<number>;
|
|
155
|
+
default: number;
|
|
156
|
+
};
|
|
157
|
+
/**
|
|
158
|
+
* Minimum distance between the two range bounds to ensure they
|
|
159
|
+
* don't get too close to each other.
|
|
160
|
+
*/
|
|
161
|
+
minDistance: {
|
|
162
|
+
type: PropType<number>;
|
|
163
|
+
default: number;
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* Variant style of the component. Expected to be one
|
|
167
|
+
* of the predefined Bootstrap theme (e.g., 'primary', 'secondary', etc).
|
|
168
|
+
*/
|
|
169
|
+
variant: {
|
|
170
|
+
type: PropType<Variant>;
|
|
171
|
+
default: string;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* Rounds corner edges of the range boundaries. If
|
|
175
|
+
* true, the component will have rounded corners.
|
|
176
|
+
*/
|
|
177
|
+
rounded: {
|
|
178
|
+
type: PropType<boolean>;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
}>> & {
|
|
182
|
+
"onUpdate:range"?: ((...args: any[]) => any) | undefined;
|
|
183
|
+
}, {
|
|
184
|
+
variant: Variant;
|
|
185
|
+
hover: boolean;
|
|
186
|
+
startOffset: string | number;
|
|
187
|
+
endOffset: string | number;
|
|
188
|
+
precision: number;
|
|
189
|
+
snap: number;
|
|
190
|
+
minDistance: number;
|
|
191
|
+
rounded: boolean;
|
|
192
|
+
}, {}>;
|
|
193
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/// <reference types="@/shims-pym" />
|
|
2
|
+
/// <reference types="@/shims-vue" />
|
|
3
|
+
/// <reference types="vue-i18n" />
|
|
4
|
+
import type { Parent } from 'pym.js';
|
|
5
|
+
type StartsWithIcijIframe = `icij-iframe-${string}`;
|
|
6
|
+
type ResponsiveIframeData = {
|
|
7
|
+
iframeId: StartsWithIcijIframe;
|
|
8
|
+
pymParent: null | Parent;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* ResponsiveIframe
|
|
12
|
+
*/
|
|
13
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
14
|
+
/**
|
|
15
|
+
* URL of the generated iframe code.
|
|
16
|
+
*/
|
|
17
|
+
url: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Option to pass to the constructor of the pymParent instance
|
|
23
|
+
*/
|
|
24
|
+
options: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
default: () => {};
|
|
27
|
+
};
|
|
28
|
+
}, unknown, ResponsiveIframeData, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
29
|
+
/**
|
|
30
|
+
* URL of the generated iframe code.
|
|
31
|
+
*/
|
|
32
|
+
url: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Option to pass to the constructor of the pymParent instance
|
|
38
|
+
*/
|
|
39
|
+
options: {
|
|
40
|
+
type: ObjectConstructor;
|
|
41
|
+
default: () => {};
|
|
42
|
+
};
|
|
43
|
+
}>>, {
|
|
44
|
+
options: Record<string, any>;
|
|
45
|
+
}, {}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
3
|
+
import * as d3 from 'd3';
|
|
4
|
+
import { PropType } from '../../node_modules/vue';
|
|
5
|
+
type ClassListLegend = {
|
|
6
|
+
'scale-legend--has-cursor': boolean;
|
|
7
|
+
};
|
|
8
|
+
type ColorScaleFn = (v?: number) => string;
|
|
9
|
+
type ColorScale = ColorScaleFn | string;
|
|
10
|
+
type WidthScaleFn = (x: number) => string;
|
|
11
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
12
|
+
width: {
|
|
13
|
+
type: NumberConstructor;
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
height: {
|
|
17
|
+
type: NumberConstructor;
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
cursorValue: {
|
|
21
|
+
type: NumberConstructor;
|
|
22
|
+
default: null;
|
|
23
|
+
};
|
|
24
|
+
max: {
|
|
25
|
+
type: NumberConstructor;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
min: {
|
|
29
|
+
type: NumberConstructor;
|
|
30
|
+
default: number;
|
|
31
|
+
};
|
|
32
|
+
colorScale: {
|
|
33
|
+
type: PropType<string | ColorScaleFn>;
|
|
34
|
+
default: string;
|
|
35
|
+
validator(colorScale: ColorScale): boolean;
|
|
36
|
+
};
|
|
37
|
+
colorScaleEnd: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default(): string;
|
|
40
|
+
};
|
|
41
|
+
colorScaleStart: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
}, {
|
|
46
|
+
classList: import('../../node_modules/vue').ComputedRef<ClassListLegend>;
|
|
47
|
+
colorScaleBase64: import('../../node_modules/vue').ComputedRef<string | undefined>;
|
|
48
|
+
cursorLeft: import('../../node_modules/vue').ComputedRef<string>;
|
|
49
|
+
cursorWrapperOffset: import('../../node_modules/vue').Ref<number>;
|
|
50
|
+
formatNumber: (n: number | {
|
|
51
|
+
valueOf(): number;
|
|
52
|
+
}) => string;
|
|
53
|
+
hasCursor: import('../../node_modules/vue').ComputedRef<boolean>;
|
|
54
|
+
widthScale: import('../../node_modules/vue').ComputedRef<d3.ScaleLinear<number, number, never>>;
|
|
55
|
+
colorScaleFunction: import('../../node_modules/vue').ComputedRef<ColorScaleFn>;
|
|
56
|
+
widthScaleColor: import('../../node_modules/vue').ComputedRef<WidthScaleFn>;
|
|
57
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, {}, string, import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
58
|
+
width: {
|
|
59
|
+
type: NumberConstructor;
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
62
|
+
height: {
|
|
63
|
+
type: NumberConstructor;
|
|
64
|
+
default: number;
|
|
65
|
+
};
|
|
66
|
+
cursorValue: {
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
default: null;
|
|
69
|
+
};
|
|
70
|
+
max: {
|
|
71
|
+
type: NumberConstructor;
|
|
72
|
+
default: number;
|
|
73
|
+
};
|
|
74
|
+
min: {
|
|
75
|
+
type: NumberConstructor;
|
|
76
|
+
default: number;
|
|
77
|
+
};
|
|
78
|
+
colorScale: {
|
|
79
|
+
type: PropType<string | ColorScaleFn>;
|
|
80
|
+
default: string;
|
|
81
|
+
validator(colorScale: ColorScale): boolean;
|
|
82
|
+
};
|
|
83
|
+
colorScaleEnd: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default(): string;
|
|
86
|
+
};
|
|
87
|
+
colorScaleStart: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
}>>, {
|
|
92
|
+
height: number;
|
|
93
|
+
width: number;
|
|
94
|
+
max: number;
|
|
95
|
+
min: number;
|
|
96
|
+
cursorValue: number;
|
|
97
|
+
colorScale: string | ColorScaleFn;
|
|
98
|
+
colorScaleEnd: string;
|
|
99
|
+
colorScaleStart: string;
|
|
100
|
+
}, {}>;
|
|
101
|
+
export default _default;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/// <reference types="@/shims-vue" />
|
|
2
|
+
/// <reference types="vue-i18n" />
|
|
3
|
+
declare const _default: import('../../node_modules/vue').DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* If true the value is visible by default
|
|
6
|
+
*/
|
|
7
|
+
visible: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Value of the input
|
|
12
|
+
*/
|
|
13
|
+
value: {
|
|
14
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Size of the input form
|
|
19
|
+
*/
|
|
20
|
+
size: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Bootstrap variant of the haptic copy button
|
|
26
|
+
*/
|
|
27
|
+
hapticCopyVariant: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Hide toggler button
|
|
33
|
+
*/
|
|
34
|
+
noToggler: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Hide haptic copy button
|
|
39
|
+
*/
|
|
40
|
+
noHapticCopy: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
};
|
|
43
|
+
}, {
|
|
44
|
+
selectInput: () => void;
|
|
45
|
+
toggle: () => void;
|
|
46
|
+
togglerIcon: import('../../node_modules/vue').ComputedRef<string[]>;
|
|
47
|
+
inputType: import('../../node_modules/vue').ComputedRef<"text" | "password">;
|
|
48
|
+
hapticCopyClassList: import('../../node_modules/vue').ComputedRef<string>;
|
|
49
|
+
}, unknown, {}, {}, import('../../node_modules/vue').ComponentOptionsMixin, import('../../node_modules/vue').ComponentOptionsMixin, "update:visible"[], "update:visible", import('../../node_modules/vue').PublicProps, Readonly<import('../../node_modules/vue').ExtractPropTypes<{
|
|
50
|
+
/**
|
|
51
|
+
* If true the value is visible by default
|
|
52
|
+
*/
|
|
53
|
+
visible: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Value of the input
|
|
58
|
+
*/
|
|
59
|
+
value: {
|
|
60
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Size of the input form
|
|
65
|
+
*/
|
|
66
|
+
size: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Bootstrap variant of the haptic copy button
|
|
72
|
+
*/
|
|
73
|
+
hapticCopyVariant: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Hide toggler button
|
|
79
|
+
*/
|
|
80
|
+
noToggler: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Hide haptic copy button
|
|
85
|
+
*/
|
|
86
|
+
noHapticCopy: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
};
|
|
89
|
+
}>> & {
|
|
90
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
size: string;
|
|
93
|
+
value: string | number;
|
|
94
|
+
visible: boolean;
|
|
95
|
+
hapticCopyVariant: string;
|
|
96
|
+
noToggler: boolean;
|
|
97
|
+
noHapticCopy: boolean;
|
|
98
|
+
}, {}>;
|
|
99
|
+
export default _default;
|