@elliemae/ds-dataviz 3.70.0-next.6 → 3.70.0-next.60

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 (31) hide show
  1. package/dist/cjs/package.json +1 -4
  2. package/dist/esm/package.json +1 -4
  3. package/dist/types/graphs/Chart/parts/Axis/Axis.d.ts +1 -1
  4. package/dist/types/graphs/Chart/parts/Axis/AxisBottom.d.ts +1 -1
  5. package/dist/types/graphs/Chart/parts/Axis/AxisLeft.d.ts +1 -1
  6. package/dist/types/graphs/Chart/parts/Axis/AxisRight.d.ts +1 -1
  7. package/dist/types/graphs/Chart/parts/ChartContainer.d.ts +2 -1
  8. package/dist/types/graphs/Chart/parts/ClipPaths.d.ts +2 -1
  9. package/dist/types/graphs/Chart/parts/Labels/index.d.ts +2 -1
  10. package/dist/types/graphs/Chart/parts/Legend/BottomLegend.d.ts +2 -1
  11. package/dist/types/graphs/Chart/parts/Legend/LeftLegend.d.ts +2 -1
  12. package/dist/types/graphs/Chart/parts/Legend/Legend.d.ts +2 -1
  13. package/dist/types/graphs/Chart/parts/Legend/LegendItem.d.ts +2 -1
  14. package/dist/types/graphs/Chart/parts/Legend/RightLegend.d.ts +2 -1
  15. package/dist/types/graphs/Chart/parts/Legend/TopLegend.d.ts +2 -1
  16. package/dist/types/graphs/Chart/parts/Scrapper/Scrapper.d.ts +2 -1
  17. package/dist/types/graphs/Chart/parts/Scrapper/VerticalScrapper.d.ts +2 -1
  18. package/dist/types/graphs/Chart/parts/Scroller/BlurMask.d.ts +2 -1
  19. package/dist/types/graphs/Chart/parts/Scroller/Controllers.d.ts +2 -1
  20. package/dist/types/graphs/Chart/parts/Scroller/ScrollBarX.d.ts +2 -1
  21. package/dist/types/graphs/Chart/parts/Scroller/ScrollBarY.d.ts +2 -1
  22. package/dist/types/graphs/Chart/parts/Scroller/ScrollableContainerX.d.ts +2 -1
  23. package/dist/types/graphs/Chart/parts/Scroller/ScrollableContainerY.d.ts +2 -1
  24. package/dist/types/graphs/Chart/parts/SeriesFactory.d.ts +2 -1
  25. package/dist/types/graphs/Chart/series/HorizontalBars.d.ts +2 -1
  26. package/dist/types/graphs/Chart/series/HorizontalStackedBars.d.ts +2 -1
  27. package/package.json +11 -11
  28. package/dist/types/graphs/Chart/tests/basic.test.d.ts +0 -1
  29. package/dist/types/graphs/Chart/tests/scrollable.test.d.ts +0 -1
  30. package/dist/types/graphs/Chart/tests/single-stacked-bar.test.d.ts +0 -1
  31. package/dist/types/typescript-testing/typescript-data-viz-valid.d.ts +0 -1
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -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>) => import("react/jsx-runtime.js").JSX.Element | null)>;
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<() => import("react/jsx-runtime.js").JSX.Element | null>;
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<() => import("react/jsx-runtime.js").JSX.Element | null>;
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<() => import("react/jsx-runtime.js").JSX.Element | null>;
2
+ export declare const AxisRight: React.MemoExoticComponent<() => React.JSX.Element | null>;
@@ -1 +1,2 @@
1
- export declare const ChartContainer: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ChartContainer: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const ClipPaths: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ClipPaths: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const Labels: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const Labels: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const BottomLegend: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const BottomLegend: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const LeftLegend: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const LeftLegend: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const Legend: () => import("react/jsx-runtime.js").JSX.Element | null;
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) => import("react/jsx-runtime.js").JSX.Element;
5
+ export declare const LegendItem: (props: LegendItemProps) => React.JSX.Element;
5
6
  export {};
@@ -1 +1,2 @@
1
- export declare const RightLegend: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const RightLegend: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const TopLegend: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const TopLegend: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const Scrapper: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const Scrapper: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const VerticalScrapper: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const VerticalScrapper: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const BlurMask: () => import("react/jsx-runtime.js").JSX.Element | null;
1
+ import React from 'react';
2
+ export declare const BlurMask: () => React.JSX.Element | null;
@@ -1 +1,2 @@
1
- export declare const Controllers: () => import("react/jsx-runtime.js").JSX.Element | null;
1
+ import React from 'react';
2
+ export declare const Controllers: () => React.JSX.Element | null;
@@ -1 +1,2 @@
1
- export declare const ScrollBarX: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ScrollBarX: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const ScrollBarY: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ScrollBarY: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const ScrollableContainerX: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ScrollableContainerX: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const ScrollableContainerY: () => import("react/jsx-runtime.js").JSX.Element;
1
+ import React from 'react';
2
+ export declare const ScrollableContainerY: () => React.JSX.Element;
@@ -1 +1,2 @@
1
- export declare const SeriesFactory: () => import("react/jsx-runtime.js").JSX.Element;
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) => import("react/jsx-runtime.js").JSX.Element;
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) => import("react/jsx-runtime.js").JSX.Element;
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.6",
3
+ "version": "3.70.0-next.60",
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-floating-context": "3.70.0-next.6",
43
- "@elliemae/ds-system": "3.70.0-next.6",
44
- "@elliemae/ds-grid": "3.70.0-next.6",
45
- "@elliemae/ds-props-helpers": "3.70.0-next.6"
42
+ "@elliemae/ds-floating-context": "3.70.0-next.60",
43
+ "@elliemae/ds-props-helpers": "3.70.0-next.60",
44
+ "@elliemae/ds-grid": "3.70.0-next.60",
45
+ "@elliemae/ds-system": "3.70.0-next.60"
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.9",
52
- "@elliemae/ds-monorepo-devops": "3.70.0-next.6",
53
- "@elliemae/ds-test-utils": "3.70.0-next.6"
51
+ "styled-components": "~5.3.11",
52
+ "@elliemae/ds-test-utils": "3.70.0-next.60",
53
+ "@elliemae/ds-monorepo-devops": "3.70.0-next.60"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@elliemae/pui-theme": "~2.13.0",
57
- "lodash-es": "^4.17.21",
57
+ "lodash-es": "^4.18.1",
58
58
  "react": "^18.3.1",
59
59
  "react-dom": "^18.3.1",
60
- "styled-components": "~5.3.9"
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
+ }
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};