sag_components 2.0.0-beta52 → 2.0.0-beta54

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 CHANGED
@@ -1199,8 +1199,25 @@ declare function LinkButton({ text, type, size, height, width, disabled, textCol
1199
1199
  rightIcon?: string;
1200
1200
  }): react_jsx_runtime.JSX.Element;
1201
1201
 
1202
+ declare function BubbleChart({ data, title, subtitle, leftHeader, rightHeader, topHeader, bottomHeader, colorPalette, height, width, backgroundColor, showAxis, }: {
1203
+ data?: any[];
1204
+ title?: string;
1205
+ subtitle?: string;
1206
+ leftHeader?: string;
1207
+ rightHeader?: string;
1208
+ topHeader?: string;
1209
+ bottomHeader?: string;
1210
+ colorPalette?: string[];
1211
+ height?: string;
1212
+ width?: string;
1213
+ backgroundColor?: string;
1214
+ showAxis?: boolean;
1215
+ }): react_jsx_runtime.JSX.Element;
1216
+
1202
1217
  declare function BatteryChart(props: any): react_jsx_runtime.JSX.Element;
1203
1218
 
1204
1219
  declare function PerformanceAnalyticsLegend(props: any): react_jsx_runtime.JSX.Element;
1205
1220
 
1206
- export { AreaChart, BannerEventBoxList, BarChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, Button, CollapseHeader, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, EventDetailsCard, EventList, FilterPanel, Heatmap, IconButton, LinkButton, LinnerDataBox, MarketShareDescription, OneColumnContainer, PerformanceAnalyticsLegend, PieChart, PopupCharts, QuickFilter, ReportTable, TabMenu, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts };
1221
+ declare function BrushChart(): react_jsx_runtime.JSX.Element;
1222
+
1223
+ export { AreaChart, BannerEventBoxList, BarChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Button, CollapseHeader, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, EventDetailsCard, EventList, FilterPanel, Heatmap, IconButton, LinkButton, LinnerDataBox, MarketShareDescription, OneColumnContainer, PerformanceAnalyticsLegend, PieChart, PopupCharts, QuickFilter, ReportTable, TabMenu, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts };