vuechrts 0.0.13 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,12 +3,13 @@ import { BulletLegendItemInterface } from '@unovis/ts';
|
|
3
3
|
declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
4
4
|
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>) & {
|
5
5
|
data: T[];
|
6
|
+
height: number;
|
6
7
|
categories: Record<string, BulletLegendItemInterface>;
|
7
8
|
xLabel: string;
|
8
9
|
yLabel: string;
|
9
10
|
displayProps: string[];
|
10
11
|
xFormatter: (v: number) => string;
|
11
|
-
|
12
|
+
crossHairTemplate: (d: T) => string;
|
12
13
|
}, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
|
13
14
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
14
15
|
attrs: any;
|
@@ -3,6 +3,7 @@ import { BulletLegendItemInterface, CurveType } from '@unovis/ts';
|
|
3
3
|
declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
4
4
|
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>) & {
|
5
5
|
data: T[];
|
6
|
+
height: number;
|
6
7
|
xLabel: string;
|
7
8
|
yLabel: string;
|
8
9
|
categories: Record<string, BulletLegendItemInterface>;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
default?(_: {}): any;
|
3
|
+
};
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
5
|
+
type?: string;
|
6
|
+
data: number[];
|
7
|
+
height: number;
|
8
|
+
radius: number;
|
9
|
+
labels: {
|
10
|
+
name: string;
|
11
|
+
color: string;
|
12
|
+
}[];
|
13
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
14
|
+
type?: string;
|
15
|
+
data: number[];
|
16
|
+
height: number;
|
17
|
+
radius: number;
|
18
|
+
labels: {
|
19
|
+
name: string;
|
20
|
+
color: string;
|
21
|
+
}[];
|
22
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
24
|
+
export default _default;
|
25
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
26
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
27
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
28
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
29
|
+
} : {
|
30
|
+
type: import('vue').PropType<T[K]>;
|
31
|
+
required: true;
|
32
|
+
};
|
33
|
+
};
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
35
|
+
new (): {
|
36
|
+
$slots: S;
|
37
|
+
};
|
38
|
+
};
|