@unovis/vue 1.3.0-alpha.0

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.
Files changed (33) hide show
  1. package/LICENSE +193 -0
  2. package/README.md +68 -0
  3. package/components/area/area.d.ts +15 -0
  4. package/components/axis/axis.d.ts +15 -0
  5. package/components/brush/brush.d.ts +15 -0
  6. package/components/chord-diagram/chord-diagram.d.ts +18 -0
  7. package/components/crosshair/crosshair.d.ts +15 -0
  8. package/components/donut/donut.d.ts +15 -0
  9. package/components/free-brush/free-brush.d.ts +15 -0
  10. package/components/graph/graph.d.ts +18 -0
  11. package/components/grouped-bar/grouped-bar.d.ts +15 -0
  12. package/components/line/line.d.ts +15 -0
  13. package/components/nested-donut/nested-donut.d.ts +15 -0
  14. package/components/sankey/sankey.d.ts +18 -0
  15. package/components/scatter/scatter.d.ts +15 -0
  16. package/components/stacked-bar/stacked-bar.d.ts +15 -0
  17. package/components/timeline/timeline.d.ts +28 -0
  18. package/components/tooltip/tooltip.d.ts +66 -0
  19. package/components/topojson-map/topojson-map.d.ts +19 -0
  20. package/components/xy-labels/xy-labels.d.ts +15 -0
  21. package/components.d.ts +21 -0
  22. package/containers/single-container/single-container.d.ts +17 -0
  23. package/containers/xy-container/xy-container.d.ts +17 -0
  24. package/containers.d.ts +2 -0
  25. package/html-components/bullet-legend/bullet-legend.d.ts +49 -0
  26. package/html-components/leaflet-flow-map/leaflet-flow-map.d.ts +18 -0
  27. package/html-components/leaflet-map/leaflet-map.d.ts +15 -0
  28. package/index.d.ts +2 -0
  29. package/index.js +1173 -0
  30. package/index.umd.cjs +2 -0
  31. package/package.json +68 -0
  32. package/utils/context.d.ts +22 -0
  33. package/utils/props.d.ts +3 -0
@@ -0,0 +1,17 @@
1
+ import { SingleContainerConfigInterface } from '@unovis/ts';
2
+ declare const _default: <T>(__VLS_props: any, __VLS_ctx?: Pick<any, "attrs" | "emit" | "slots">, __VLS_expose?: any, __VLS_setup?: Promise<{
3
+ props: SingleContainerConfigInterface<T> & {
4
+ data: T;
5
+ };
6
+ expose(exposed: {}): void;
7
+ attrs: any;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ emit: any;
12
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }> & {
15
+ __ctx?: any;
16
+ };
17
+ export default _default;
@@ -0,0 +1,17 @@
1
+ import { XYContainerConfigInterface } from '@unovis/ts';
2
+ declare const _default: <T>(__VLS_props: any, __VLS_ctx?: Pick<any, "attrs" | "emit" | "slots">, __VLS_expose?: any, __VLS_setup?: Promise<{
3
+ props: XYContainerConfigInterface<T> & {
4
+ data: T[];
5
+ };
6
+ expose(exposed: {}): void;
7
+ attrs: any;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ emit: any;
12
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }> & {
15
+ __ctx?: any;
16
+ };
17
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as VisXYContainer } from "./containers/xy-container/xy-container";
2
+ export { default as VisSingleContainer } from "./containers/single-container/single-container";
@@ -0,0 +1,49 @@
1
+ import { BulletLegendItemInterface } from '@unovis/ts';
2
+ declare const _default: import("vue").DefineComponent<{
3
+ items: {
4
+ type: import("vue").PropType<BulletLegendItemInterface[]>;
5
+ required: true;
6
+ };
7
+ labelClassName: {
8
+ type: import("vue").PropType<string>;
9
+ };
10
+ onLegendItemClick: {
11
+ type: import("vue").PropType<(d: BulletLegendItemInterface, i: number) => void>;
12
+ };
13
+ labelFontSize: {
14
+ type: import("vue").PropType<string>;
15
+ };
16
+ labelMaxWidth: {
17
+ type: import("vue").PropType<string>;
18
+ };
19
+ bulletSize: {
20
+ type: import("vue").PropType<string>;
21
+ };
22
+ data: {
23
+ type: import("vue").PropType<never>;
24
+ };
25
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
+ items: {
27
+ type: import("vue").PropType<BulletLegendItemInterface[]>;
28
+ required: true;
29
+ };
30
+ labelClassName: {
31
+ type: import("vue").PropType<string>;
32
+ };
33
+ onLegendItemClick: {
34
+ type: import("vue").PropType<(d: BulletLegendItemInterface, i: number) => void>;
35
+ };
36
+ labelFontSize: {
37
+ type: import("vue").PropType<string>;
38
+ };
39
+ labelMaxWidth: {
40
+ type: import("vue").PropType<string>;
41
+ };
42
+ bulletSize: {
43
+ type: import("vue").PropType<string>;
44
+ };
45
+ data: {
46
+ type: import("vue").PropType<never>;
47
+ };
48
+ }>>, {}, {}>;
49
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { LeafletFlowMapConfigInterface, GenericDataRecord } from '@unovis/ts';
2
+ declare const _default: <PointDatum extends GenericDataRecord, FlowDatum extends GenericDataRecord>(__VLS_props: any, __VLS_ctx?: Pick<any, "attrs" | "emit" | "slots">, __VLS_expose?: any, __VLS_setup?: Promise<{
3
+ props: LeafletFlowMapConfigInterface<PointDatum, FlowDatum> & {
4
+ data?: {
5
+ points: PointDatum[];
6
+ flows?: FlowDatum[];
7
+ };
8
+ };
9
+ expose(exposed: {}): void;
10
+ attrs: any;
11
+ slots: {};
12
+ emit: any;
13
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
14
+ [key: string]: any;
15
+ }> & {
16
+ __ctx?: any;
17
+ };
18
+ export default _default;
@@ -0,0 +1,15 @@
1
+ import { LeafletMapConfigInterface, GenericDataRecord } from '@unovis/ts';
2
+ declare const _default: <Datum extends GenericDataRecord>(__VLS_props: any, __VLS_ctx?: Pick<any, "attrs" | "emit" | "slots">, __VLS_expose?: any, __VLS_setup?: Promise<{
3
+ props: LeafletMapConfigInterface<Datum> & {
4
+ data?: Datum[];
5
+ };
6
+ expose(exposed: {}): void;
7
+ attrs: any;
8
+ slots: {};
9
+ emit: any;
10
+ }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
11
+ [key: string]: any;
12
+ }> & {
13
+ __ctx?: any;
14
+ };
15
+ export default _default;
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './containers';
2
+ export * from './components';