@elliemae/ds-dataviz 3.70.0-next.53 → 3.70.0-next.58
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/dist/cjs/package.json +1 -4
- package/dist/esm/package.json +1 -4
- package/dist/types/graphs/Chart/parts/Axis/Axis.d.ts +1 -1
- package/dist/types/graphs/Chart/parts/Axis/AxisBottom.d.ts +1 -1
- package/dist/types/graphs/Chart/parts/Axis/AxisLeft.d.ts +1 -1
- package/dist/types/graphs/Chart/parts/Axis/AxisRight.d.ts +1 -1
- package/dist/types/graphs/Chart/parts/ChartContainer.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/ClipPaths.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Labels/index.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/BottomLegend.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/LeftLegend.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/Legend.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/LegendItem.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/RightLegend.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Legend/TopLegend.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scrapper/Scrapper.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scrapper/VerticalScrapper.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/BlurMask.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/Controllers.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/ScrollBarX.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/ScrollBarY.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/ScrollableContainerX.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/Scroller/ScrollableContainerY.d.ts +2 -1
- package/dist/types/graphs/Chart/parts/SeriesFactory.d.ts +2 -1
- package/dist/types/graphs/Chart/series/HorizontalBars.d.ts +2 -1
- package/dist/types/graphs/Chart/series/HorizontalStackedBars.d.ts +2 -1
- package/package.json +10 -10
package/dist/cjs/package.json
CHANGED
package/dist/esm/package.json
CHANGED
|
@@ -24,5 +24,5 @@ interface AxisT<S extends ScaleT> {
|
|
|
24
24
|
GridRenderer: (props: GridRenderPropsT) => JSX.Element | null;
|
|
25
25
|
color: string;
|
|
26
26
|
}
|
|
27
|
-
export declare const Axis: React.MemoExoticComponent<(<S extends ScaleT>(props: AxisT<S>) =>
|
|
27
|
+
export declare const Axis: React.MemoExoticComponent<(<S extends ScaleT>(props: AxisT<S>) => React.JSX.Element | null)>;
|
|
28
28
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const AxisBottom: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const AxisBottom: React.MemoExoticComponent<() => React.JSX.Element | null>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const AxisLeft: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const AxisLeft: React.MemoExoticComponent<() => React.JSX.Element | null>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
export declare const AxisRight: React.MemoExoticComponent<() =>
|
|
2
|
+
export declare const AxisRight: React.MemoExoticComponent<() => React.JSX.Element | null>;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ChartContainer: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ClipPaths: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Labels: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const BottomLegend: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const LeftLegend: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Legend: () => React.JSX.Element | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
interface LegendItemProps {
|
|
2
3
|
domainValue: string;
|
|
3
4
|
}
|
|
4
|
-
export declare const LegendItem: (props: LegendItemProps) =>
|
|
5
|
+
export declare const LegendItem: (props: LegendItemProps) => React.JSX.Element;
|
|
5
6
|
export {};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const RightLegend: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const TopLegend: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Scrapper: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const VerticalScrapper: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const BlurMask: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Controllers: () => React.JSX.Element | null;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ScrollBarX: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ScrollBarY: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ScrollableContainerX: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ScrollableContainerY: () => React.JSX.Element;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const SeriesFactory: () => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { DSChartT } from '../react-desc-prop-types.js';
|
|
2
|
-
export declare const HorizontalBars: ({ serie }: DSChartT.SerieComponentT) =>
|
|
3
|
+
export declare const HorizontalBars: ({ serie }: DSChartT.SerieComponentT) => React.JSX.Element;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { DSChartT } from '../react-desc-prop-types.js';
|
|
2
|
-
export declare const HorizontalStackedBars: ({ serie }: DSChartT.SerieComponentT) =>
|
|
3
|
+
export declare const HorizontalStackedBars: ({ serie }: DSChartT.SerieComponentT) => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-dataviz",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.58",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - DataViz",
|
|
6
6
|
"files": [
|
|
@@ -39,25 +39,25 @@
|
|
|
39
39
|
"d3": "~7.9.0",
|
|
40
40
|
"resize-observer-polyfill": "~1.5.1",
|
|
41
41
|
"uid": "^2.0.2",
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
42
|
+
"@elliemae/ds-grid": "3.70.0-next.58",
|
|
43
|
+
"@elliemae/ds-floating-context": "3.70.0-next.58",
|
|
44
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.58",
|
|
45
|
+
"@elliemae/ds-system": "3.70.0-next.58"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@elliemae/pui-theme": "~2.13.0",
|
|
49
49
|
"@types/d3": "~7.4.0",
|
|
50
50
|
"jest": "^30.0.0",
|
|
51
|
-
"styled-components": "~5.3.
|
|
52
|
-
"@elliemae/ds-monorepo-devops": "3.70.0-next.
|
|
53
|
-
"@elliemae/ds-test-utils": "3.70.0-next.
|
|
51
|
+
"styled-components": "~5.3.11",
|
|
52
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.58",
|
|
53
|
+
"@elliemae/ds-test-utils": "3.70.0-next.58"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@elliemae/pui-theme": "~2.13.0",
|
|
57
57
|
"lodash-es": "^4.18.1",
|
|
58
58
|
"react": "^18.3.1",
|
|
59
59
|
"react-dom": "^18.3.1",
|
|
60
|
-
"styled-components": "~5.3.
|
|
60
|
+
"styled-components": "~5.3.11"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public",
|
|
@@ -72,4 +72,4 @@
|
|
|
72
72
|
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
73
73
|
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|