sag_components 2.0.0-beta56 → 2.0.0-beta58
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/index.d.ts +11 -1
- package/dist/index.esm.js +561 -261
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +561 -260
- package/dist/index.js.map +1 -1
- package/dist/types/components/BrushChart/BrushChart.style.d.ts +4 -0
- package/dist/types/components/BrushChart/Charts/BarLine.d.ts +1 -1
- package/dist/types/components/BrushChart/Charts/SingleChart.d.ts +3 -1
- package/dist/types/components/InsightsCarousel/InsightsCarousel.d.ts +2 -2
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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,5 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare function InsightsCarousel({ children, onClose, title, icon, titleColor, iconColor, navColor, }: {
|
|
1
|
+
export function InsightsCarousel({ children, onClose, title, icon, titleColor, iconColor, navColor, }: {
|
|
3
2
|
children: any;
|
|
4
3
|
onClose: any;
|
|
5
4
|
title?: string;
|
|
@@ -8,3 +7,4 @@ declare function InsightsCarousel({ children, onClose, title, icon, titleColor,
|
|
|
8
7
|
iconColor?: string;
|
|
9
8
|
navColor?: string;
|
|
10
9
|
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default InsightsCarousel;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -29,3 +29,4 @@ export { default as BubbleChart } from "./components/BubbleChart/BubbleChart.jsx
|
|
|
29
29
|
export { default as BatteryChart } from "./components/BatteryChart/BatteryChart.jsx";
|
|
30
30
|
export { default as PerformanceAnalyticsLegend } from "./components/PerformanceAnalyticsLegend/PerformanceAnalyticsLegend.jsx";
|
|
31
31
|
export { default as BrushChart } from "./components/BrushChart/BrushChart.jsx";
|
|
32
|
+
export { default as InsightsCarousel } from "./components/InsightsCarousel/InsightsCarousel.jsx";
|