sag_components 2.0.0-beta51 → 2.0.0-beta53
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 +24 -9
- package/dist/index.esm.js +4516 -2694
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4516 -2692
- package/dist/index.js.map +1 -1
- package/dist/types/components/BreakdownPanel/BreakdownPanel.stories.d.ts +9 -9
- 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/components/TabMenu/TabMenu.d.ts +6 -8
- package/dist/types/components/TabMenu/TabMenu.stories.d.ts +74 -10
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,19 +137,20 @@ declare namespace EventDetailsCard {
|
|
|
137
137
|
|
|
138
138
|
declare function LinnerDataBox(props: any): react_jsx_runtime.JSX.Element;
|
|
139
139
|
|
|
140
|
-
declare function TabMenu({
|
|
141
|
-
activeColor?: string;
|
|
142
|
-
headlineContent?: react_jsx_runtime.JSX.Element;
|
|
143
|
-
children?: any;
|
|
144
|
-
className?: string;
|
|
140
|
+
declare function TabMenu({ color, currentTab, headlineInsteadTabs, headlineText, headlineContent, className, children, tabs, inputWidth, onFilterButtonClick, onSearchFieldTyping, onTabChange, onTopButtonClick, panelIsOpen, setBackground, showActions, showFilterButton, showLabel, showSearchInput, showViewOptionsButton, disabledButton, setTopRightButton, rightButtonText, rightButtonIcon, }: {
|
|
145
141
|
color?: string;
|
|
146
142
|
currentTab?: number;
|
|
147
143
|
headlineInsteadTabs?: boolean;
|
|
148
144
|
headlineText?: string;
|
|
145
|
+
headlineContent?: react_jsx_runtime.JSX.Element;
|
|
146
|
+
className?: string;
|
|
147
|
+
children?: any;
|
|
148
|
+
tabs?: any[];
|
|
149
149
|
inputWidth?: string;
|
|
150
150
|
onFilterButtonClick?: () => void;
|
|
151
151
|
onSearchFieldTyping?: () => void;
|
|
152
152
|
onTabChange?: () => void;
|
|
153
|
+
onTopButtonClick?: () => void;
|
|
153
154
|
panelIsOpen?: boolean;
|
|
154
155
|
setBackground?: boolean;
|
|
155
156
|
showActions?: boolean;
|
|
@@ -161,12 +162,9 @@ declare function TabMenu({ activeColor, headlineContent, children, className, co
|
|
|
161
162
|
setTopRightButton?: boolean;
|
|
162
163
|
rightButtonText?: string;
|
|
163
164
|
rightButtonIcon?: string;
|
|
164
|
-
onTopButtonClick?: () => void;
|
|
165
|
-
tabs?: any[];
|
|
166
165
|
}): react_jsx_runtime.JSX.Element;
|
|
167
166
|
declare namespace TabMenu {
|
|
168
167
|
namespace propTypes {
|
|
169
|
-
const activeColor: PropTypes.Requireable<string>;
|
|
170
168
|
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
171
169
|
const className: PropTypes.Requireable<string>;
|
|
172
170
|
const color: PropTypes.Requireable<string>;
|
|
@@ -1201,8 +1199,25 @@ declare function LinkButton({ text, type, size, height, width, disabled, textCol
|
|
|
1201
1199
|
rightIcon?: string;
|
|
1202
1200
|
}): react_jsx_runtime.JSX.Element;
|
|
1203
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
|
+
|
|
1204
1217
|
declare function BatteryChart(props: any): react_jsx_runtime.JSX.Element;
|
|
1205
1218
|
|
|
1206
1219
|
declare function PerformanceAnalyticsLegend(props: any): react_jsx_runtime.JSX.Element;
|
|
1207
1220
|
|
|
1208
|
-
|
|
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 };
|