sag_components 2.0.0-beta140 → 2.0.0-beta142
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 +77 -2
- package/dist/index.esm.js +945 -123
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +955 -121
- 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/components/Table/CommentModal.d.ts +2 -0
- package/dist/types/components/Table/CommentModal.styles.d.ts +11 -0
- package/dist/types/components/Table/Table.d.ts +4 -2
- package/dist/types/components/Table/Table.stories.d.ts +23 -91
- package/dist/types/components/Table/TableBody.d.ts +31 -2
- package/dist/types/components/Table/TableBody.styles.d.ts +1 -0
- package/dist/types/components/Table/data.d.ts +206 -0
- package/dist/types/icons/CommentIcon.d.ts +7 -0
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1424,7 +1424,82 @@ declare function Execute({ width, height, fill }: {
|
|
|
1424
1424
|
fill?: string;
|
|
1425
1425
|
}): react_jsx_runtime.JSX.Element;
|
|
1426
1426
|
|
|
1427
|
-
declare
|
|
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
|
+
|
|
1499
|
+
declare function Table(props: any): react_jsx_runtime.JSX.Element;
|
|
1500
|
+
declare namespace Table {
|
|
1501
|
+
const displayName: string;
|
|
1502
|
+
}
|
|
1428
1503
|
|
|
1429
1504
|
declare function FilterPop(props: any): react_jsx_runtime.JSX.Element;
|
|
1430
1505
|
|
|
@@ -1565,4 +1640,4 @@ declare namespace RangePicker {
|
|
|
1565
1640
|
}
|
|
1566
1641
|
}
|
|
1567
1642
|
|
|
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 };
|
|
1643
|
+
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 };
|