sag_components 2.0.0-beta140 → 2.0.0-beta141
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 +73 -1
- package/dist/index.esm.js +495 -78
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +506 -77
- package/dist/index.js.map +1 -1
- package/dist/types/components/MenuRoute/MenuIcons/AdvancedThresholds.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Analytics.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Budgets.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Campaigns.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Coupons.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/CustomerSegments.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Dashboard.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/GroupBuilder.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/ItemsStores.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/PreTestWhatIf.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/RulesEngine.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/SampleRunEngine.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuRoute.stories.d.ts +118 -2
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1424,6 +1424,78 @@ declare function Execute({ width, height, fill }: {
|
|
|
1424
1424
|
fill?: string;
|
|
1425
1425
|
}): react_jsx_runtime.JSX.Element;
|
|
1426
1426
|
|
|
1427
|
+
declare function Dashboard({ width, height, fill }: {
|
|
1428
|
+
width?: string;
|
|
1429
|
+
height?: string;
|
|
1430
|
+
fill?: string;
|
|
1431
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1432
|
+
|
|
1433
|
+
declare function Campaigns({ width, height, fill }: {
|
|
1434
|
+
width?: string;
|
|
1435
|
+
height?: string;
|
|
1436
|
+
fill?: string;
|
|
1437
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1438
|
+
|
|
1439
|
+
declare function Budgets({ width, height, fill }: {
|
|
1440
|
+
width?: string;
|
|
1441
|
+
height?: string;
|
|
1442
|
+
fill?: string;
|
|
1443
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1444
|
+
|
|
1445
|
+
declare function SampleRunEngine({ width, height, fill }: {
|
|
1446
|
+
width?: string;
|
|
1447
|
+
height?: string;
|
|
1448
|
+
fill?: string;
|
|
1449
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1450
|
+
|
|
1451
|
+
declare function Coupons({ width, height, fill }: {
|
|
1452
|
+
width?: string;
|
|
1453
|
+
height?: string;
|
|
1454
|
+
fill?: string;
|
|
1455
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1456
|
+
|
|
1457
|
+
declare function RulesEngine({ width, height, fill }: {
|
|
1458
|
+
width?: string;
|
|
1459
|
+
height?: string;
|
|
1460
|
+
fill?: string;
|
|
1461
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1462
|
+
|
|
1463
|
+
declare function AdvancedThresholds({ width, height, fill }: {
|
|
1464
|
+
width?: string;
|
|
1465
|
+
height?: string;
|
|
1466
|
+
fill?: string;
|
|
1467
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1468
|
+
|
|
1469
|
+
declare function PreTestWhatIf({ width, height, fill }: {
|
|
1470
|
+
width?: string;
|
|
1471
|
+
height?: string;
|
|
1472
|
+
fill?: string;
|
|
1473
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1474
|
+
|
|
1475
|
+
declare function CustomerSegments({ width, height, fill }: {
|
|
1476
|
+
width?: string;
|
|
1477
|
+
height?: string;
|
|
1478
|
+
fill?: string;
|
|
1479
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1480
|
+
|
|
1481
|
+
declare function GroupBuilder({ width, height, fill }: {
|
|
1482
|
+
width?: string;
|
|
1483
|
+
height?: string;
|
|
1484
|
+
fill?: string;
|
|
1485
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1486
|
+
|
|
1487
|
+
declare function ItemsStores({ width, height, fill }: {
|
|
1488
|
+
width?: string;
|
|
1489
|
+
height?: string;
|
|
1490
|
+
fill?: string;
|
|
1491
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1492
|
+
|
|
1493
|
+
declare function Analytics({ width, height, fill }: {
|
|
1494
|
+
width?: string;
|
|
1495
|
+
height?: string;
|
|
1496
|
+
fill?: string;
|
|
1497
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1498
|
+
|
|
1427
1499
|
declare const Table: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
1428
1500
|
|
|
1429
1501
|
declare function FilterPop(props: any): react_jsx_runtime.JSX.Element;
|
|
@@ -1565,4 +1637,4 @@ declare namespace RangePicker {
|
|
|
1565
1637
|
}
|
|
1566
1638
|
}
|
|
1567
1639
|
|
|
1568
|
-
export { AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Build, Button, CollapseData, CollapseHeader, ContainerTable, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, Heatmap, IconButton, Input, InsightsCarousel, ItemManagerPanel, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|
|
1640
|
+
export { AdvancedThresholds, Analytics, AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Budgets, Build, Button, Campaigns, CollapseData, CollapseHeader, ContainerTable, Coupons, CustomerSegments, Dashboard, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, GroupBuilder, Heatmap, IconButton, Input, InsightsCarousel, ItemManagerPanel, ItemsStores, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, PreTestWhatIf, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, RulesEngine, SampleRunEngine, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|