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 +18 -1
- package/dist/index.esm.js +2089 -284
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2089 -282
- package/dist/index.js.map +1 -1
- package/dist/types/components/BrushChart/BrushChart.d.ts +2 -0
- package/dist/types/components/BrushChart/BrushChart.stories.d.ts +8 -0
- package/dist/types/components/BrushChart/BrushChart.style.d.ts +5 -0
- package/dist/types/components/BrushChart/Charts/BarLine.d.ts +2 -0
- package/dist/types/components/BrushChart/Charts/InnerBar.d.ts +1 -0
- package/dist/types/components/BrushChart/Charts/SingleChart.d.ts +2 -0
- package/dist/types/components/BubbleChart/BubbleChart.d.ts +15 -0
- package/dist/types/components/BubbleChart/BubbleChart.stories.d.ts +93 -0
- package/dist/types/components/BubbleChart/BubbleChart.style.d.ts +13 -0
- package/dist/types/components/SegmentedButton/SegmentedButton.d.ts +3 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
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
|
-
|
|
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 };
|