sag_components 2.0.0-beta74 → 2.0.0-beta76

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.
Files changed (27) hide show
  1. package/dist/index.d.ts +153 -126
  2. package/dist/index.esm.js +2480 -946
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +2111 -572
  5. package/dist/index.js.map +1 -1
  6. package/dist/types/components/BannerEventBox/BannerEventBox.d.ts +0 -37
  7. package/dist/types/components/BannerEventBoxList/BannerEventBoxList.d.ts +0 -69
  8. package/dist/types/components/BannerEventBoxList/BannerEventBoxList.style.d.ts +13 -12
  9. package/dist/types/components/BarChart/BarChart.d.ts +3 -0
  10. package/dist/types/components/BarChartTwoRows/BarChartTwoRows.d.ts +0 -80
  11. package/dist/types/components/BarChartWithAreaChart/BarChartWithAreaChart.d.ts +0 -64
  12. package/dist/types/components/BubbleChart/BubbleChart.stories.d.ts +1 -0
  13. package/dist/types/components/CollapseData/CollapseData.d.ts +6 -0
  14. package/dist/types/components/TabMenu/TabMenu.d.ts +1 -57
  15. package/dist/types/components/TabMenu/TabMenu.stories.d.ts +27 -37
  16. package/dist/types/components/TabMenu/TabMenu.style.d.ts +2 -34
  17. package/dist/types/components/TwoBarCharts/TwoBarCharts.d.ts +3 -0
  18. package/dist/types/components/TwoBarCharts/TwoBarCharts.stories.d.ts +8 -0
  19. package/dist/types/icons/BarcodeIcon.d.ts +6 -0
  20. package/dist/types/icons/ChevronIcon.d.ts +7 -0
  21. package/dist/types/icons/FolderIcon.d.ts +6 -0
  22. package/dist/types/icons/PeopleIcon.d.ts +6 -0
  23. package/dist/types/index.d.ts +5 -0
  24. package/package.json +1 -1
  25. /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.d.ts +0 -0
  26. /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.stories.d.ts +0 -0
  27. /package/dist/types/components/{QuickFilterDropdownSingle/SagIconButton → SagIconButton}/SagIconButton.style.d.ts +0 -0
@@ -102,6 +102,12 @@ declare namespace _default {
102
102
  const description_16: string;
103
103
  export { description_16 as description };
104
104
  }
105
+ export namespace showTooltip {
106
+ const control_16: string;
107
+ export { control_16 as control };
108
+ const description_17: string;
109
+ export { description_17 as description };
110
+ }
105
111
  }
106
112
  }
107
113
  export default _default;
@@ -137,6 +143,8 @@ export namespace SalesDollars {
137
143
  export { isDollar_1 as isDollar };
138
144
  const showDollarSign_1: boolean;
139
145
  export { showDollarSign_1 as showDollarSign };
146
+ const showTooltip_1: boolean;
147
+ export { showTooltip_1 as showTooltip };
140
148
  const showReferenceLine_1: boolean;
141
149
  export { showReferenceLine_1 as showReferenceLine };
142
150
  const referenceLinePoint_1: number;
@@ -0,0 +1,6 @@
1
+ export function BarcodeIcon({ width, height, fill }: {
2
+ width?: string;
3
+ height?: string;
4
+ fill?: string;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default BarcodeIcon;
@@ -0,0 +1,7 @@
1
+ export default ChevronIcon;
2
+ declare function ChevronIcon({ width, height, fill, isOpen, }: {
3
+ width?: number;
4
+ height?: number;
5
+ fill?: string;
6
+ isOpen?: boolean;
7
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ export function FolderIcon({ width, height, fill }: {
2
+ width?: string;
3
+ height?: string;
4
+ fill?: string;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default FolderIcon;
@@ -0,0 +1,6 @@
1
+ export function PeopleIcon({ width, height, fill }: {
2
+ width?: string;
3
+ height?: string;
4
+ fill?: string;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export default PeopleIcon;
@@ -29,4 +29,9 @@ 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 SingleBarLineCharts } from "./components/SingleBarLineCharts/SingleBarLineCharts.jsx";
33
+ export { default as BarChartWithAreaChart } from "./components/BarChartWithAreaChart/BarChartWithAreaChart.jsx";
34
+ export { default as BarChartTwoRows } from "./components/BarChartTwoRows/BarChartTwoRows.jsx";
35
+ export { default as TwoBarCharts } from "./components/TwoBarCharts/TwoBarCharts.jsx";
36
+ export { default as CollapseData } from "./components/CollapseData/CollapseData.jsx";
32
37
  export { default as InsightsCarousel } from "./components/InsightsCarousel/InsightsCarousel.jsx";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta74",
3
+ "version": "2.0.0-beta76",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",