vue-chrts 0.0.81 → 0.0.83

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.
@@ -0,0 +1,32 @@
1
+ import { BulletLegendItemInterface, CurveType } from '@unovis/ts';
2
+ import { PaginationPosition } from '../Line';
3
+
4
+ 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<{
5
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<any & {
6
+ data: T[];
7
+ height: number;
8
+ xLabel?: string;
9
+ yLabel?: string;
10
+ categories: Record<string, BulletLegendItemInterface>;
11
+ xFormatter: (i: number, idx: number) => string;
12
+ yFormatter?: (i: number, idx?: number) => string | number;
13
+ curveType?: CurveType;
14
+ xNumTicks?: number;
15
+ yNumTicks?: number;
16
+ hideLegend?: boolean;
17
+ hideTooltip?: boolean;
18
+ gridLineX?: boolean;
19
+ domainLineX?: boolean;
20
+ gridLineY?: boolean;
21
+ domainLineY?: boolean;
22
+ paginationPoisition?: PaginationPosition;
23
+ }, string | number | symbol>> & {} & any;
24
+ expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
25
+ attrs: any;
26
+ slots: ReturnType<() => {}>;
27
+ emit: typeof __VLS_emit;
28
+ }>) => any;
29
+ export default _default;
30
+ type __VLS_Prettify<T> = {
31
+ [K in keyof T]: T[K];
32
+ } & {};
@@ -0,0 +1 @@
1
+ export { default as AreaChart } from './AreaChart.vue';
@@ -0,0 +1,13 @@
1
+ import { BulletLegendItemInterface } 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<any & {
5
+ data: T[];
6
+ categories: Record<string, BulletLegendItemInterface>;
7
+ }, string | number | symbol>> & {} & any;
8
+ expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
9
+ attrs: any;
10
+ slots: ReturnType<() => {}>;
11
+ emit: typeof __VLS_emit;
12
+ }>) => any;
13
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as AreaStackedChart } from './AreaStackedChart.vue';
@@ -0,0 +1,25 @@
1
+ import { BulletLegendItemInterface } 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<any & {
5
+ data: T[];
6
+ height: number;
7
+ xLabel?: string;
8
+ yLabel?: string;
9
+ categories: Record<string, BulletLegendItemInterface>;
10
+ xFormatter: (i: number, idx: number) => string;
11
+ yFormatter?: (i: number, idx?: number) => string | number;
12
+ yNumTicks?: number;
13
+ xNumTicks?: number;
14
+ yAxis: string[];
15
+ groupPadding?: number;
16
+ barPadding?: number;
17
+ radius?: number;
18
+ hideLegend?: boolean;
19
+ }, string | number | symbol>> & {} & any;
20
+ expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
21
+ attrs: any;
22
+ slots: ReturnType<() => {}>;
23
+ emit: typeof __VLS_emit;
24
+ }>) => any;
25
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as BarChart } from './BarChart.vue';
@@ -0,0 +1 @@
1
+ export { default as DonutChart } from './DonutChart.vue';
@@ -0,0 +1,23 @@
1
+ import { BulletLegendItemInterface, CurveType } from '@unovis/ts';
2
+ import { PaginationPosition } from './types';
3
+
4
+ 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<{
5
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<any & {
6
+ data: T[];
7
+ height: number;
8
+ xLabel?: string;
9
+ yLabel?: string;
10
+ categories: Record<string, BulletLegendItemInterface>;
11
+ xFormatter: (i: number, idx: number) => string;
12
+ yFormatter?: (i: number, idx: number) => string;
13
+ curveType?: CurveType;
14
+ yNumTicks?: number;
15
+ xNumTicks?: number;
16
+ paginationPoisition?: PaginationPosition;
17
+ }, string | number | symbol>> & {} & any;
18
+ expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
19
+ attrs: any;
20
+ slots: ReturnType<() => {}>;
21
+ emit: typeof __VLS_emit;
22
+ }>) => any;
23
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as LineChart } from './LineChart.vue';
2
+ export * from './types';
@@ -0,0 +1,4 @@
1
+ export declare enum PaginationPosition {
2
+ Top = "top",
3
+ Bottom = "bottom"
4
+ }
@@ -0,0 +1,13 @@
1
+ import { BulletLegendItemInterface } from '@unovis/ts';
2
+
3
+ declare const _default: <T extends {}>(__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<any & {
5
+ data: T;
6
+ categories: Record<string, BulletLegendItemInterface>;
7
+ }, string | number | symbol>> & {} & any;
8
+ expose(exposed: import('../../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{}>): void;
9
+ attrs: any;
10
+ slots: ReturnType<() => {}>;
11
+ emit: typeof __VLS_emit;
12
+ }>) => any;
13
+ export default _default;