@elliemae/ds-dataviz 3.53.0-alpha.1 → 3.53.0-alpha.3
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/types/graphs/Chart/SingleStackedBar/react-desc-prop-types.d.ts +0 -1
- package/dist/types/graphs/Chart/SingleStackedBar/styles.d.ts +0 -1
- package/dist/types/graphs/Chart/config/useChart.d.ts +4 -5
- package/dist/types/graphs/Chart/config/useKeyboardNavigation.d.ts +0 -1
- package/dist/types/graphs/Chart/helpers/useUniqueData.d.ts +1 -1
- package/dist/types/graphs/Chart/react-desc-prop-types.d.ts +0 -1
- package/dist/types/graphs/Chart/styles.d.ts +1 -1
- package/dist/types/graphs/constants.d.ts +2 -1
- package/package.json +12 -11
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const StyledBar: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
|
|
3
2
|
export declare const Wrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>>, never>;
|
|
4
3
|
export declare const StyledTooltipContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { DSChartT } from '../react-desc-prop-types.js';
|
|
3
2
|
export declare const useChart: (props: DSChartT.Props) => {
|
|
4
3
|
props: DSChartT.Props;
|
|
@@ -19,10 +18,10 @@ export declare const useChart: (props: DSChartT.Props) => {
|
|
|
19
18
|
type: DSChartT.SeriesTypes;
|
|
20
19
|
scale?: string | undefined;
|
|
21
20
|
color: string;
|
|
22
|
-
dashStyle?: string
|
|
23
|
-
pointRadius?: number
|
|
24
|
-
pointStyle?: string
|
|
25
|
-
curveStyle?: string
|
|
21
|
+
dashStyle?: string;
|
|
22
|
+
pointRadius?: number;
|
|
23
|
+
pointStyle?: string;
|
|
24
|
+
curveStyle?: string;
|
|
26
25
|
}[];
|
|
27
26
|
colorScale: import("d3-scale").ScaleOrdinal<string, unknown, string>;
|
|
28
27
|
stackedData: DSChartT.StackedSeriesByGroupT;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const findInCircularList: (list: string[], from: number, step?: number, criteria?: (item: number) => boolean) => number;
|
|
3
2
|
export declare const useKeyboardNavigation: () => {
|
|
4
3
|
handleOnKeyUp: import("react").KeyboardEventHandler<HTMLDivElement>;
|
|
@@ -8,7 +8,7 @@ export declare const StyledAxis: import("styled-components").StyledComponent<"li
|
|
|
8
8
|
export declare const StyledAxisLabel: import("styled-components").StyledComponent<"text", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"text">, never>;
|
|
9
9
|
export declare const StyledGrid: import("styled-components").StyledComponent<"g", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"g">, never>;
|
|
10
10
|
export declare const StyleFocusableRegion: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
|
|
11
|
-
size?: number
|
|
11
|
+
size?: number;
|
|
12
12
|
} & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
13
13
|
export declare const StyledLine: import("styled-components").StyledComponent<"path", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"path">, never>;
|
|
14
14
|
export declare const StyledArea: import("styled-components").StyledComponent<"path", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"path">, never>;
|
|
@@ -44,7 +44,8 @@ export declare const LINE: {
|
|
|
44
44
|
};
|
|
45
45
|
};
|
|
46
46
|
export declare const curveStyleMap: {
|
|
47
|
-
[
|
|
47
|
+
[LINE.CURVE_STYLE.LINEAR]: import("d3-shape").CurveFactory;
|
|
48
|
+
[LINE.CURVE_STYLE.SPLINE]: import("d3-shape").CurveFactory;
|
|
48
49
|
};
|
|
49
50
|
export declare const TOOLBAR: {
|
|
50
51
|
RESET: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-dataviz",
|
|
3
|
-
"version": "3.53.0-alpha.
|
|
3
|
+
"version": "3.53.0-alpha.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - DataViz",
|
|
6
6
|
"files": [
|
|
@@ -38,25 +38,26 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"d3": "~7.8.4",
|
|
40
40
|
"d3-scale": "~4.0.2",
|
|
41
|
-
"d3-shape": "
|
|
41
|
+
"d3-shape": "^3.2.0",
|
|
42
42
|
"d3-time": "~3.1.0",
|
|
43
43
|
"resize-observer-polyfill": "~1.5.1",
|
|
44
|
-
"uid": "
|
|
45
|
-
"@elliemae/ds-grid": "3.53.0-alpha.
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-system": "3.53.0-alpha.
|
|
44
|
+
"uid": "^2.0.2",
|
|
45
|
+
"@elliemae/ds-grid": "3.53.0-alpha.3",
|
|
46
|
+
"@elliemae/ds-popperjs": "3.53.0-alpha.3",
|
|
47
|
+
"@elliemae/ds-props-helpers": "3.53.0-alpha.3",
|
|
48
|
+
"@elliemae/ds-system": "3.53.0-alpha.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@elliemae/pui-cli": "9.0.0-next.
|
|
52
|
-
"@elliemae/pui-theme": "~2.
|
|
51
|
+
"@elliemae/pui-cli": "9.0.0-next.65",
|
|
52
|
+
"@elliemae/pui-theme": "~2.13.0",
|
|
53
53
|
"@types/d3": "~7.4.0",
|
|
54
54
|
"jest": "~29.7.0",
|
|
55
55
|
"styled-components": "~5.3.9",
|
|
56
|
-
"@elliemae/ds-monorepo-devops": "3.53.0-alpha.
|
|
56
|
+
"@elliemae/ds-monorepo-devops": "3.53.0-alpha.3",
|
|
57
|
+
"@elliemae/ds-test-utils": "3.53.0-alpha.3"
|
|
57
58
|
},
|
|
58
59
|
"peerDependencies": {
|
|
59
|
-
"@elliemae/pui-theme": "~2.
|
|
60
|
+
"@elliemae/pui-theme": "~2.13.0",
|
|
60
61
|
"lodash-es": "^4.17.21",
|
|
61
62
|
"react": "^18.3.1",
|
|
62
63
|
"react-dom": "^18.3.1",
|