sag_components 2.0.0-beta66 → 2.0.0-beta68

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.
@@ -1,5 +1,9 @@
1
1
  export const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
+ export const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
2
3
  export const BrushChart: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
3
4
  export const LineChartWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
4
5
  export const BarChartWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
5
6
  export const Controls: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
7
+ export const TooltipContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
8
+ export const TooltipTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
9
+ export const TooltipText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
@@ -1,4 +1,4 @@
1
1
  export default SeparatedLineBarChart;
2
- declare function SeparatedLineBarChart({ barlineData }: {
3
- barlineData?: any[];
2
+ declare function SeparatedLineBarChart({ brushAreaBarData }: {
3
+ brushAreaBarData?: any[];
4
4
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
- export default function InnerBarChart({ data }: {
2
- data?: any[];
1
+ export default function InnerBarChart({ brushInnerBarData }: {
2
+ brushInnerBarData: any;
3
3
  }): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,5 @@
1
- export default function SingleChart({ lineChartData }: {
2
- lineChartData: any;
1
+ export default function SingleChart({ barData, height, width }: {
2
+ barData: any;
3
+ height?: number;
4
+ width?: string;
3
5
  }): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta66",
3
+ "version": "2.0.0-beta68",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -84,7 +84,8 @@
84
84
  "react-icons": "^5.0.1",
85
85
  "react-loading-skeleton": "^3.3.1",
86
86
  "recharts": "^2.15.0",
87
- "styled-components": "^6.1.15"
87
+ "styled-components": "^6.1.15",
88
+ "typescript": "^5.8.3"
88
89
  },
89
90
  "browserslist": {
90
91
  "production": [
@@ -99,6 +100,8 @@
99
100
  ]
100
101
  },
101
102
  "jest": {
102
- "setupFilesAfterEnv": ["<rootDir>/setupTests.js"]
103
+ "setupFilesAfterEnv": [
104
+ "<rootDir>/setupTests.js"
105
+ ]
103
106
  }
104
107
  }