vuechrts 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Base/Area.vue.d.ts +25 -0
- package/dist/index.js +8394 -13
- package/dist/index.umd.cjs +363 -1
- package/package.json +1 -1
@@ -0,0 +1,25 @@
|
|
1
|
+
import { BulletLegendItemInterface, CurveType } from '@unovis/ts';
|
2
|
+
|
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
|
+
props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>) & {
|
5
|
+
data: T[];
|
6
|
+
xLabel: string;
|
7
|
+
yLabel: string;
|
8
|
+
categories: Record<string, BulletLegendItemInterface>;
|
9
|
+
displayProps: string[];
|
10
|
+
xFormatter: (v: number) => string;
|
11
|
+
crossHairTemplate: (d: T) => string;
|
12
|
+
curveType?: CurveType;
|
13
|
+
yNumTicks?: number;
|
14
|
+
xNumTicks?: number;
|
15
|
+
}, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
|
16
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
17
|
+
attrs: any;
|
18
|
+
slots: ReturnType<() => {}>;
|
19
|
+
emit: typeof __VLS_emit;
|
20
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
21
|
+
[key: string]: any;
|
22
|
+
}> & {
|
23
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
24
|
+
};
|
25
|
+
export default _default;
|