@elliemae/ds-dataviz-pie 3.46.4 → 3.46.6

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.
@@ -5,8 +5,8 @@ export declare const usePie: (props: DSPieT.Props) => {
5
5
  innerHeight: number;
6
6
  innerWidth: number;
7
7
  groups: string[];
8
- svgRef: import("react").MutableRefObject<null>;
9
- containerRef: import("react").MutableRefObject<null>;
8
+ svgRef: import("react").RefObject<null>;
9
+ containerRef: import("react").RefObject<null>;
10
10
  activeSerie: string;
11
11
  pieData: import("d3-shape").PieArcDatum<[string, number]>[];
12
12
  setActiveSerie: import("react").Dispatch<import("react").SetStateAction<string>>;
@@ -1,4 +1,4 @@
1
- export declare const StyledSVGWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
2
- export declare const StyledInnerText: import("styled-components").StyledComponent<"text", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"text">, never>;
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>;
4
- export declare const StyledMouseOverDetectionBox: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
1
+ export declare const StyledSVGWrapper: any;
2
+ export declare const StyledInnerText: any;
3
+ export declare const StyledTooltipContainer: any;
4
+ export declare const StyledMouseOverDetectionBox: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-dataviz-pie",
3
- "version": "3.46.4",
3
+ "version": "3.46.6",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - DataViz",
6
6
  "files": [
@@ -38,16 +38,16 @@
38
38
  "dependencies": {
39
39
  "d3": "~7.8.2",
40
40
  "d3-shape": "^3.2.0",
41
- "@elliemae/ds-popperjs": "3.46.4",
42
- "@elliemae/ds-props-helpers": "3.46.4",
43
- "@elliemae/ds-system": "3.46.4"
41
+ "@elliemae/ds-popperjs": "3.46.6",
42
+ "@elliemae/ds-props-helpers": "3.46.6",
43
+ "@elliemae/ds-system": "3.46.6"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@elliemae/pui-cli": "9.0.0-next.50",
47
47
  "@elliemae/pui-theme": "~2.10.0",
48
48
  "@types/d3": "~7.4.0",
49
49
  "styled-components": "~5.3.9",
50
- "@elliemae/ds-monorepo-devops": "3.46.4"
50
+ "@elliemae/ds-monorepo-devops": "3.46.6"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "@elliemae/pui-theme": "~2.10.0",
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public",
60
- "typeSafety": true
60
+ "typeSafety": false
61
61
  },
62
62
  "scripts": {
63
63
  "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- interface ChartContainerT {
3
- children: JSX.Element | JSX.Element[] | string | string[];
4
- }
5
- export declare const ChartContainer: React.ComponentType<ChartContainerT>;
6
- export {};