@unovis/react 1.6.7 → 1.7.0-mcp.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.
- package/components/boxplot/index.d.ts +12 -0
- package/components/boxplot/index.js +31 -0
- package/components/boxplot/index.js.map +1 -0
- package/components/heatmap/index.d.ts +12 -0
- package/components/heatmap/index.js +31 -0
- package/components/heatmap/index.js.map +1 -0
- package/components/radial-bar/index.d.ts +12 -0
- package/components/radial-bar/index.js +31 -0
- package/components/radial-bar/index.js.map +1 -0
- package/components.d.ts +3 -0
- package/index.js +3 -0
- package/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'react';
|
|
2
|
+
import { Boxplot } from '@unovis/ts/components/boxplot';
|
|
3
|
+
import { BoxplotConfigInterface } from '@unovis/ts/components/boxplot/config';
|
|
4
|
+
export declare type VisBoxplotRef<Datum> = {
|
|
5
|
+
component?: Boxplot<Datum>;
|
|
6
|
+
};
|
|
7
|
+
export declare type VisBoxplotProps<Datum> = BoxplotConfigInterface<Datum> & {
|
|
8
|
+
data?: Datum[];
|
|
9
|
+
ref?: Ref<VisBoxplotRef<Datum>>;
|
|
10
|
+
};
|
|
11
|
+
export declare const VisBoxplotSelectors: typeof import("@unovis/ts/components/boxplot/style");
|
|
12
|
+
export declare const VisBoxplot: (<Datum>(props: VisBoxplotProps<Datum>) => JSX.Element | null);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { useRef, useEffect, useImperativeHandle } from 'react';
|
|
2
|
+
import { Boxplot } from '@unovis/ts/components/boxplot';
|
|
3
|
+
import { arePropsEqual } from '../../utils/react.js';
|
|
4
|
+
|
|
5
|
+
const VisBoxplotSelectors = Boxplot.selectors;
|
|
6
|
+
function VisBoxplotFC(props, fRef) {
|
|
7
|
+
const ref = useRef(null);
|
|
8
|
+
const componentRef = useRef(undefined);
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
const element = ref.current;
|
|
11
|
+
const c = new Boxplot(props);
|
|
12
|
+
componentRef.current = c;
|
|
13
|
+
element.__component__ = c;
|
|
14
|
+
return () => {
|
|
15
|
+
componentRef.current = undefined;
|
|
16
|
+
c.destroy();
|
|
17
|
+
};
|
|
18
|
+
}, []);
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
const component = componentRef.current;
|
|
21
|
+
if (props.data)
|
|
22
|
+
component === null || component === void 0 ? void 0 : component.setData(props.data);
|
|
23
|
+
component === null || component === void 0 ? void 0 : component.setConfig(props);
|
|
24
|
+
});
|
|
25
|
+
useImperativeHandle(fRef, () => ({ get component() { return componentRef.current; } }), []);
|
|
26
|
+
return React.createElement("vis-component", { ref: ref });
|
|
27
|
+
}
|
|
28
|
+
const VisBoxplot = React.memo(React.forwardRef(VisBoxplotFC), arePropsEqual);
|
|
29
|
+
|
|
30
|
+
export { VisBoxplot, VisBoxplotSelectors };
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/components/boxplot/index.tsx"],"sourcesContent":["// !!! This code was automatically generated. You should not change it !!!\nimport React, { ForwardedRef, ReactElement, Ref, useImperativeHandle, useEffect, useRef, useState } from 'react'\nimport { Boxplot } from '@unovis/ts/components/boxplot'\nimport { BoxplotConfigInterface } from '@unovis/ts/components/boxplot/config'\n\n// Utils\nimport { arePropsEqual } from 'src/utils/react'\n\n// Types\nimport { VisComponentElement } from 'src/types/dom'\n\nexport type VisBoxplotRef<Datum> = {\n component?: Boxplot<Datum>;\n}\n\nexport type VisBoxplotProps<Datum> = BoxplotConfigInterface<Datum> & {\n data?: Datum[];\n ref?: Ref<VisBoxplotRef<Datum>>;\n}\n\nexport const VisBoxplotSelectors = Boxplot.selectors\n\n// eslint-disable-next-line @typescript-eslint/naming-convention\nfunction VisBoxplotFC<Datum> (props: VisBoxplotProps<Datum>, fRef: ForwardedRef<VisBoxplotRef<Datum>>): ReactElement {\n const ref = useRef<VisComponentElement<Boxplot<Datum>>>(null)\n const componentRef = useRef<Boxplot<Datum> | undefined>(undefined)\n\n // On Mount\n useEffect(() => {\n const element = (ref.current as VisComponentElement<Boxplot<Datum>>)\n\n const c = new Boxplot<Datum>(props)\n componentRef.current = c\n element.__component__ = c\n\n return () => {\n componentRef.current = undefined\n c.destroy()\n }\n }, [])\n\n // On Props Update\n useEffect(() => {\n const component = componentRef.current\n if (props.data) component?.setData(props.data)\n component?.setConfig(props)\n })\n\n useImperativeHandle(fRef, () => ({ get component () { return componentRef.current } }), [])\n return <vis-component ref={ref} />\n}\n\n// We export a memoized component to avoid unnecessary re-renders\n// and define its type explicitly to help react-docgen-typescript to extract information about props\nexport const VisBoxplot: (<Datum>(props: VisBoxplotProps<Datum>) => JSX.Element | null) = React.memo(React.forwardRef(VisBoxplotFC), arePropsEqual)\n"],"names":[],"mappings":";;;;AAoBa,MAAA,mBAAmB,GAAG,OAAO,CAAC,UAAS;AAGpD,SAAS,YAAY,CAAS,KAA6B,EAAE,IAAwC,EAAA;AACnG,IAAA,MAAM,GAAG,GAAG,MAAM,CAAsC,IAAI,CAAC,CAAA;AAC7D,IAAA,MAAM,YAAY,GAAG,MAAM,CAA6B,SAAS,CAAC,CAAA;IAGlE,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,OAAO,GAAI,GAAG,CAAC,OAA+C,CAAA;AAEpE,QAAA,MAAM,CAAC,GAAG,IAAI,OAAO,CAAQ,KAAK,CAAC,CAAA;AACnC,QAAA,YAAY,CAAC,OAAO,GAAG,CAAC,CAAA;AACxB,QAAA,OAAO,CAAC,aAAa,GAAG,CAAC,CAAA;AAEzB,QAAA,OAAO,MAAK;AACV,YAAA,YAAY,CAAC,OAAO,GAAG,SAAS,CAAA;YAChC,CAAC,CAAC,OAAO,EAAE,CAAA;AACb,SAAC,CAAA;KACF,EAAE,EAAE,CAAC,CAAA;IAGN,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,SAAS,GAAG,YAAY,CAAC,OAAO,CAAA;QACtC,IAAI,KAAK,CAAC,IAAI;YAAE,SAAS,KAAA,IAAA,IAAT,SAAS,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAT,SAAS,CAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC9C,SAAS,KAAA,IAAA,IAAT,SAAS,KAAT,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,SAAS,CAAE,SAAS,CAAC,KAAK,CAAC,CAAA;AAC7B,KAAC,CAAC,CAAA;IAEF,mBAAmB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,SAAS,GAAA,EAAM,OAAO,YAAY,CAAC,OAAO,CAAA,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;AAC3F,IAAA,OAAO,KAAe,CAAA,aAAA,CAAA,eAAA,EAAA,EAAA,GAAG,EAAE,GAAG,GAAI,CAAA;AACpC,CAAC;AAIY,MAAA,UAAU,GAAmE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,aAAa;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'react';
|
|
2
|
+
import { Heatmap } from '@unovis/ts/components/heatmap';
|
|
3
|
+
import { HeatmapConfigInterface } from '@unovis/ts/components/heatmap/config';
|
|
4
|
+
export declare type VisHeatmapRef<Datum> = {
|
|
5
|
+
component?: Heatmap<Datum>;
|
|
6
|
+
};
|
|
7
|
+
export declare type VisHeatmapProps<Datum> = HeatmapConfigInterface<Datum> & {
|
|
8
|
+
data?: Datum[];
|
|
9
|
+
ref?: Ref<VisHeatmapRef<Datum>>;
|
|
10
|
+
};
|
|
11
|
+
export declare const VisHeatmapSelectors: typeof import("@unovis/ts/components/heatmap/style");
|
|
12
|
+
export declare const VisHeatmap: (<Datum>(props: VisHeatmapProps<Datum>) => JSX.Element | null);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { useRef, useEffect, useImperativeHandle } from 'react';
|
|
2
|
+
import { Heatmap } from '@unovis/ts/components/heatmap';
|
|
3
|
+
import { arePropsEqual } from '../../utils/react.js';
|
|
4
|
+
|
|
5
|
+
const VisHeatmapSelectors = Heatmap.selectors;
|
|
6
|
+
function VisHeatmapFC(props, fRef) {
|
|
7
|
+
const ref = useRef(null);
|
|
8
|
+
const componentRef = useRef(undefined);
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
const element = ref.current;
|
|
11
|
+
const c = new Heatmap(props);
|
|
12
|
+
componentRef.current = c;
|
|
13
|
+
element.__component__ = c;
|
|
14
|
+
return () => {
|
|
15
|
+
componentRef.current = undefined;
|
|
16
|
+
c.destroy();
|
|
17
|
+
};
|
|
18
|
+
}, []);
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
const component = componentRef.current;
|
|
21
|
+
if (props.data)
|
|
22
|
+
component === null || component === void 0 ? void 0 : component.setData(props.data);
|
|
23
|
+
component === null || component === void 0 ? void 0 : component.setConfig(props);
|
|
24
|
+
});
|
|
25
|
+
useImperativeHandle(fRef, () => ({ get component() { return componentRef.current; } }), []);
|
|
26
|
+
return React.createElement("vis-component", { ref: ref });
|
|
27
|
+
}
|
|
28
|
+
const VisHeatmap = React.memo(React.forwardRef(VisHeatmapFC), arePropsEqual);
|
|
29
|
+
|
|
30
|
+
export { VisHeatmap, VisHeatmapSelectors };
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/components/heatmap/index.tsx"],"sourcesContent":["// !!! This code was automatically generated. You should not change it !!!\nimport React, { ForwardedRef, ReactElement, Ref, useImperativeHandle, useEffect, useRef, useState } from 'react'\nimport { Heatmap } from '@unovis/ts/components/heatmap'\nimport { HeatmapConfigInterface } from '@unovis/ts/components/heatmap/config'\n\n// Utils\nimport { arePropsEqual } from 'src/utils/react'\n\n// Types\nimport { VisComponentElement } from 'src/types/dom'\n\nexport type VisHeatmapRef<Datum> = {\n component?: Heatmap<Datum>;\n}\n\nexport type VisHeatmapProps<Datum> = HeatmapConfigInterface<Datum> & {\n data?: Datum[];\n ref?: Ref<VisHeatmapRef<Datum>>;\n}\n\nexport const VisHeatmapSelectors = Heatmap.selectors\n\n// eslint-disable-next-line @typescript-eslint/naming-convention\nfunction VisHeatmapFC<Datum> (props: VisHeatmapProps<Datum>, fRef: ForwardedRef<VisHeatmapRef<Datum>>): ReactElement {\n const ref = useRef<VisComponentElement<Heatmap<Datum>>>(null)\n const componentRef = useRef<Heatmap<Datum> | undefined>(undefined)\n\n // On Mount\n useEffect(() => {\n const element = (ref.current as VisComponentElement<Heatmap<Datum>>)\n\n const c = new Heatmap<Datum>(props)\n componentRef.current = c\n element.__component__ = c\n\n return () => {\n componentRef.current = undefined\n c.destroy()\n }\n }, [])\n\n // On Props Update\n useEffect(() => {\n const component = componentRef.current\n if (props.data) component?.setData(props.data)\n component?.setConfig(props)\n })\n\n useImperativeHandle(fRef, () => ({ get component () { return componentRef.current } }), [])\n return <vis-component ref={ref} />\n}\n\n// We export a memoized component to avoid unnecessary re-renders\n// and define its type explicitly to help react-docgen-typescript to extract information about props\nexport const VisHeatmap: (<Datum>(props: VisHeatmapProps<Datum>) => JSX.Element | null) = React.memo(React.forwardRef(VisHeatmapFC), arePropsEqual)\n"],"names":[],"mappings":";;;;AAoBa,MAAA,mBAAmB,GAAG,OAAO,CAAC,UAAS;AAGpD,SAAS,YAAY,CAAS,KAA6B,EAAE,IAAwC,EAAA;AACnG,IAAA,MAAM,GAAG,GAAG,MAAM,CAAsC,IAAI,CAAC,CAAA;AAC7D,IAAA,MAAM,YAAY,GAAG,MAAM,CAA6B,SAAS,CAAC,CAAA;IAGlE,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,OAAO,GAAI,GAAG,CAAC,OAA+C,CAAA;AAEpE,QAAA,MAAM,CAAC,GAAG,IAAI,OAAO,CAAQ,KAAK,CAAC,CAAA;AACnC,QAAA,YAAY,CAAC,OAAO,GAAG,CAAC,CAAA;AACxB,QAAA,OAAO,CAAC,aAAa,GAAG,CAAC,CAAA;AAEzB,QAAA,OAAO,MAAK;AACV,YAAA,YAAY,CAAC,OAAO,GAAG,SAAS,CAAA;YAChC,CAAC,CAAC,OAAO,EAAE,CAAA;AACb,SAAC,CAAA;KACF,EAAE,EAAE,CAAC,CAAA;IAGN,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,SAAS,GAAG,YAAY,CAAC,OAAO,CAAA;QACtC,IAAI,KAAK,CAAC,IAAI;YAAE,SAAS,KAAA,IAAA,IAAT,SAAS,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAT,SAAS,CAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC9C,SAAS,KAAA,IAAA,IAAT,SAAS,KAAT,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,SAAS,CAAE,SAAS,CAAC,KAAK,CAAC,CAAA;AAC7B,KAAC,CAAC,CAAA;IAEF,mBAAmB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,SAAS,GAAA,EAAM,OAAO,YAAY,CAAC,OAAO,CAAA,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;AAC3F,IAAA,OAAO,KAAe,CAAA,aAAA,CAAA,eAAA,EAAA,EAAA,GAAG,EAAE,GAAG,GAAI,CAAA;AACpC,CAAC;AAIY,MAAA,UAAU,GAAmE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,aAAa;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'react';
|
|
2
|
+
import { RadialBar } from '@unovis/ts/components/radial-bar';
|
|
3
|
+
import { RadialBarConfigInterface } from '@unovis/ts/components/radial-bar/config';
|
|
4
|
+
export declare type VisRadialBarRef<Datum> = {
|
|
5
|
+
component?: RadialBar<Datum>;
|
|
6
|
+
};
|
|
7
|
+
export declare type VisRadialBarProps<Datum> = RadialBarConfigInterface<Datum> & {
|
|
8
|
+
data?: Datum[];
|
|
9
|
+
ref?: Ref<VisRadialBarRef<Datum>>;
|
|
10
|
+
};
|
|
11
|
+
export declare const VisRadialBarSelectors: typeof import("@unovis/ts/components/radial-bar/style");
|
|
12
|
+
export declare const VisRadialBar: (<Datum>(props: VisRadialBarProps<Datum>) => JSX.Element | null);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React, { useRef, useEffect, useImperativeHandle } from 'react';
|
|
2
|
+
import { RadialBar } from '@unovis/ts/components/radial-bar';
|
|
3
|
+
import { arePropsEqual } from '../../utils/react.js';
|
|
4
|
+
|
|
5
|
+
const VisRadialBarSelectors = RadialBar.selectors;
|
|
6
|
+
function VisRadialBarFC(props, fRef) {
|
|
7
|
+
const ref = useRef(null);
|
|
8
|
+
const componentRef = useRef(undefined);
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
const element = ref.current;
|
|
11
|
+
const c = new RadialBar(props);
|
|
12
|
+
componentRef.current = c;
|
|
13
|
+
element.__component__ = c;
|
|
14
|
+
return () => {
|
|
15
|
+
componentRef.current = undefined;
|
|
16
|
+
c.destroy();
|
|
17
|
+
};
|
|
18
|
+
}, []);
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
const component = componentRef.current;
|
|
21
|
+
if (props.data)
|
|
22
|
+
component === null || component === void 0 ? void 0 : component.setData(props.data);
|
|
23
|
+
component === null || component === void 0 ? void 0 : component.setConfig(props);
|
|
24
|
+
});
|
|
25
|
+
useImperativeHandle(fRef, () => ({ get component() { return componentRef.current; } }), []);
|
|
26
|
+
return React.createElement("vis-component", { ref: ref });
|
|
27
|
+
}
|
|
28
|
+
const VisRadialBar = React.memo(React.forwardRef(VisRadialBarFC), arePropsEqual);
|
|
29
|
+
|
|
30
|
+
export { VisRadialBar, VisRadialBarSelectors };
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/components/radial-bar/index.tsx"],"sourcesContent":["// !!! This code was automatically generated. You should not change it !!!\nimport React, { ForwardedRef, ReactElement, Ref, useImperativeHandle, useEffect, useRef, useState } from 'react'\nimport { RadialBar } from '@unovis/ts/components/radial-bar'\nimport { RadialBarConfigInterface } from '@unovis/ts/components/radial-bar/config'\n\n// Utils\nimport { arePropsEqual } from 'src/utils/react'\n\n// Types\nimport { VisComponentElement } from 'src/types/dom'\n\nexport type VisRadialBarRef<Datum> = {\n component?: RadialBar<Datum>;\n}\n\nexport type VisRadialBarProps<Datum> = RadialBarConfigInterface<Datum> & {\n data?: Datum[];\n ref?: Ref<VisRadialBarRef<Datum>>;\n}\n\nexport const VisRadialBarSelectors = RadialBar.selectors\n\n// eslint-disable-next-line @typescript-eslint/naming-convention\nfunction VisRadialBarFC<Datum> (props: VisRadialBarProps<Datum>, fRef: ForwardedRef<VisRadialBarRef<Datum>>): ReactElement {\n const ref = useRef<VisComponentElement<RadialBar<Datum>>>(null)\n const componentRef = useRef<RadialBar<Datum> | undefined>(undefined)\n\n // On Mount\n useEffect(() => {\n const element = (ref.current as VisComponentElement<RadialBar<Datum>>)\n\n const c = new RadialBar<Datum>(props)\n componentRef.current = c\n element.__component__ = c\n\n return () => {\n componentRef.current = undefined\n c.destroy()\n }\n }, [])\n\n // On Props Update\n useEffect(() => {\n const component = componentRef.current\n if (props.data) component?.setData(props.data)\n component?.setConfig(props)\n })\n\n useImperativeHandle(fRef, () => ({ get component () { return componentRef.current } }), [])\n return <vis-component ref={ref} />\n}\n\n// We export a memoized component to avoid unnecessary re-renders\n// and define its type explicitly to help react-docgen-typescript to extract information about props\nexport const VisRadialBar: (<Datum>(props: VisRadialBarProps<Datum>) => JSX.Element | null) = React.memo(React.forwardRef(VisRadialBarFC), arePropsEqual)\n"],"names":[],"mappings":";;;;AAoBa,MAAA,qBAAqB,GAAG,SAAS,CAAC,UAAS;AAGxD,SAAS,cAAc,CAAS,KAA+B,EAAE,IAA0C,EAAA;AACzG,IAAA,MAAM,GAAG,GAAG,MAAM,CAAwC,IAAI,CAAC,CAAA;AAC/D,IAAA,MAAM,YAAY,GAAG,MAAM,CAA+B,SAAS,CAAC,CAAA;IAGpE,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,OAAO,GAAI,GAAG,CAAC,OAAiD,CAAA;AAEtE,QAAA,MAAM,CAAC,GAAG,IAAI,SAAS,CAAQ,KAAK,CAAC,CAAA;AACrC,QAAA,YAAY,CAAC,OAAO,GAAG,CAAC,CAAA;AACxB,QAAA,OAAO,CAAC,aAAa,GAAG,CAAC,CAAA;AAEzB,QAAA,OAAO,MAAK;AACV,YAAA,YAAY,CAAC,OAAO,GAAG,SAAS,CAAA;YAChC,CAAC,CAAC,OAAO,EAAE,CAAA;AACb,SAAC,CAAA;KACF,EAAE,EAAE,CAAC,CAAA;IAGN,SAAS,CAAC,MAAK;AACb,QAAA,MAAM,SAAS,GAAG,YAAY,CAAC,OAAO,CAAA;QACtC,IAAI,KAAK,CAAC,IAAI;YAAE,SAAS,KAAA,IAAA,IAAT,SAAS,KAAA,KAAA,CAAA,GAAA,KAAA,CAAA,GAAT,SAAS,CAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;QAC9C,SAAS,KAAA,IAAA,IAAT,SAAS,KAAT,KAAA,CAAA,GAAA,KAAA,CAAA,GAAA,SAAS,CAAE,SAAS,CAAC,KAAK,CAAC,CAAA;AAC7B,KAAC,CAAC,CAAA;IAEF,mBAAmB,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,SAAS,GAAA,EAAM,OAAO,YAAY,CAAC,OAAO,CAAA,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAA;AAC3F,IAAA,OAAO,KAAe,CAAA,aAAA,CAAA,eAAA,EAAA,EAAA,GAAG,EAAE,GAAG,GAAI,CAAA;AACpC,CAAC;AAIY,MAAA,YAAY,GAAqE,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,cAAc,CAAC,EAAE,aAAa;;;;"}
|
package/components.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './components/line';
|
|
2
2
|
export * from './components/area';
|
|
3
3
|
export * from './components/axis';
|
|
4
|
+
export * from './components/boxplot';
|
|
4
5
|
export * from './components/brush/';
|
|
5
6
|
export * from './components/chord-diagram';
|
|
6
7
|
export * from './components/crosshair';
|
|
@@ -8,6 +9,7 @@ export * from './components/donut';
|
|
|
8
9
|
export * from './components/free-brush';
|
|
9
10
|
export * from './components/graph';
|
|
10
11
|
export * from './components/grouped-bar/';
|
|
12
|
+
export * from './components/heatmap';
|
|
11
13
|
export * from './components/nested-donut';
|
|
12
14
|
export * from './components/scatter/';
|
|
13
15
|
export * from './components/sankey';
|
|
@@ -20,6 +22,7 @@ export * from './components/annotations';
|
|
|
20
22
|
export * from './components/plotband';
|
|
21
23
|
export * from './components/treemap';
|
|
22
24
|
export * from './components/plotline';
|
|
25
|
+
export * from './components/radial-bar';
|
|
23
26
|
export * from './html-components/bullet-legend';
|
|
24
27
|
export * from './html-components/rolling-pin-legend';
|
|
25
28
|
export * from './html-components/leaflet-map';
|
package/index.js
CHANGED
|
@@ -3,6 +3,7 @@ export { VisSingleContainer } from './containers/single-container/index.js';
|
|
|
3
3
|
export { VisLine, VisLineSelectors } from './components/line/index.js';
|
|
4
4
|
export { VisArea, VisAreaSelectors } from './components/area/index.js';
|
|
5
5
|
export { VisAxis, VisAxisSelectors } from './components/axis/index.js';
|
|
6
|
+
export { VisBoxplot, VisBoxplotSelectors } from './components/boxplot/index.js';
|
|
6
7
|
export { VisBrush, VisBrushSelectors } from './components/brush/index.js';
|
|
7
8
|
export { VisChordDiagram, VisChordDiagramSelectors } from './components/chord-diagram/index.js';
|
|
8
9
|
export { VisCrosshair, VisCrosshairSelectors } from './components/crosshair/index.js';
|
|
@@ -10,6 +11,7 @@ export { VisDonut, VisDonutSelectors } from './components/donut/index.js';
|
|
|
10
11
|
export { VisFreeBrush, VisFreeBrushSelectors } from './components/free-brush/index.js';
|
|
11
12
|
export { VisGraph, VisGraphSelectors } from './components/graph/index.js';
|
|
12
13
|
export { VisGroupedBar, VisGroupedBarSelectors } from './components/grouped-bar/index.js';
|
|
14
|
+
export { VisHeatmap, VisHeatmapSelectors } from './components/heatmap/index.js';
|
|
13
15
|
export { VisNestedDonut, VisNestedDonutSelectors } from './components/nested-donut/index.js';
|
|
14
16
|
export { VisScatter, VisScatterSelectors } from './components/scatter/index.js';
|
|
15
17
|
export { VisSankey, VisSankeySelectors } from './components/sankey/index.js';
|
|
@@ -22,6 +24,7 @@ export { VisAnnotations, VisAnnotationsSelectors } from './components/annotation
|
|
|
22
24
|
export { VisPlotband, VisPlotbandSelectors } from './components/plotband/index.js';
|
|
23
25
|
export { VisTreemap, VisTreemapSelectors } from './components/treemap/index.js';
|
|
24
26
|
export { VisPlotline, VisPlotlineSelectors } from './components/plotline/index.js';
|
|
27
|
+
export { VisRadialBar, VisRadialBarSelectors } from './components/radial-bar/index.js';
|
|
25
28
|
export { VisBulletLegend, VisBulletLegendSelectors } from './html-components/bullet-legend/index.js';
|
|
26
29
|
export { VisRollingPinLegend, VisRollingPinLegendSelectors } from './html-components/rolling-pin-legend/index.js';
|
|
27
30
|
export { VisLeafletMap, VisLeafletMapSelectors } from './html-components/leaflet-map/index.js';
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unovis/react",
|
|
3
3
|
"description": "Modular data visualization framework for React, Angular, Svelte, Vue, Solid, and vanilla TypeScript or JavaScript",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.7.0-mcp.0",
|
|
5
5
|
"packageManager": "pnpm@10.23.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"license:check": "pnpm license-report --config=../../lic-report-config.json > licences.md"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@unovis/ts": "1.
|
|
41
|
+
"@unovis/ts": "1.7.0-mcp.0",
|
|
42
42
|
"react": ">=16.8.0 || ^17 || ^18 || ^19",
|
|
43
43
|
"react-dom": ">=16.8.0 || ^17 || ^18 || ^19"
|
|
44
44
|
},
|