sag_components 2.0.0-beta131 → 2.0.0-beta133
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 -2
- package/dist/index.esm.js +317 -155
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +318 -154
- package/dist/index.js.map +1 -1
- package/dist/types/components/Button/Button.stories.d.ts +2 -0
- package/dist/types/components/EventStatusCards/EventStatusCards.d.ts +21 -0
- package/dist/types/components/EventStatusCards/EventStatusCards.stories.d.ts +57 -0
- package/dist/types/components/EventStatusCards/EventStatusCards.style.d.ts +8 -0
- package/dist/types/components/Table/Table.d.ts +2 -1
- package/dist/types/components/Table/Table.stories.d.ts +110 -63
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1424,7 +1424,7 @@ declare function Execute({ width, height, fill }: {
|
|
|
1424
1424
|
fill?: string;
|
|
1425
1425
|
}): react_jsx_runtime.JSX.Element;
|
|
1426
1426
|
|
|
1427
|
-
declare
|
|
1427
|
+
declare const Table: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
1428
1428
|
|
|
1429
1429
|
declare function FilterPop(props: any): react_jsx_runtime.JSX.Element;
|
|
1430
1430
|
|
|
@@ -1508,4 +1508,75 @@ declare function ToasterMessageBox({ color, messageText, linkText, duration, wid
|
|
|
1508
1508
|
onClose?: () => void;
|
|
1509
1509
|
}): react_jsx_runtime.JSX.Element;
|
|
1510
1510
|
|
|
1511
|
-
|
|
1511
|
+
declare function EventStatusCards({ statusData, onStatusToggle, disabled, width, }: {
|
|
1512
|
+
statusData?: any[];
|
|
1513
|
+
onStatusToggle?: () => void;
|
|
1514
|
+
disabled?: boolean;
|
|
1515
|
+
width?: string;
|
|
1516
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1517
|
+
declare namespace EventStatusCards {
|
|
1518
|
+
namespace propTypes {
|
|
1519
|
+
const statusData: PropTypes.Requireable<PropTypes.InferProps<{
|
|
1520
|
+
status: PropTypes.Validator<string>;
|
|
1521
|
+
count: PropTypes.Validator<number>;
|
|
1522
|
+
checked: PropTypes.Validator<boolean>;
|
|
1523
|
+
color: PropTypes.Validator<string>;
|
|
1524
|
+
}>[]>;
|
|
1525
|
+
const onStatusToggle: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1526
|
+
const disabled: PropTypes.Requireable<boolean>;
|
|
1527
|
+
const width: PropTypes.Requireable<string>;
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
declare function RangePicker({ label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, }: {
|
|
1532
|
+
label: any;
|
|
1533
|
+
onChange: any;
|
|
1534
|
+
borderRadius: any;
|
|
1535
|
+
required: any;
|
|
1536
|
+
width: any;
|
|
1537
|
+
height: any;
|
|
1538
|
+
placeholder: any;
|
|
1539
|
+
disabled: any;
|
|
1540
|
+
borderColor: any;
|
|
1541
|
+
borderColorFocus: any;
|
|
1542
|
+
textColor: any;
|
|
1543
|
+
selectedValue: any;
|
|
1544
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1545
|
+
declare namespace RangePicker {
|
|
1546
|
+
namespace propTypes {
|
|
1547
|
+
const label: PropTypes.Validator<string>;
|
|
1548
|
+
const onChange: PropTypes.Validator<(...args: any[]) => any>;
|
|
1549
|
+
const borderRadius: PropTypes.Validator<string>;
|
|
1550
|
+
const required: PropTypes.Requireable<boolean>;
|
|
1551
|
+
const width: PropTypes.Requireable<string>;
|
|
1552
|
+
const height: PropTypes.Requireable<string>;
|
|
1553
|
+
const placeholder: PropTypes.Requireable<string>;
|
|
1554
|
+
const disabled: PropTypes.Requireable<boolean>;
|
|
1555
|
+
const borderColor: PropTypes.Requireable<string>;
|
|
1556
|
+
const borderColorFocus: PropTypes.Requireable<string>;
|
|
1557
|
+
const textColor: PropTypes.Requireable<string>;
|
|
1558
|
+
const selectedValue: PropTypes.Requireable<string>;
|
|
1559
|
+
}
|
|
1560
|
+
namespace defaultProps {
|
|
1561
|
+
const required_1: boolean;
|
|
1562
|
+
export { required_1 as required };
|
|
1563
|
+
const width_1: string;
|
|
1564
|
+
export { width_1 as width };
|
|
1565
|
+
const height_1: string;
|
|
1566
|
+
export { height_1 as height };
|
|
1567
|
+
const disabled_1: boolean;
|
|
1568
|
+
export { disabled_1 as disabled };
|
|
1569
|
+
const placeholder_1: string;
|
|
1570
|
+
export { placeholder_1 as placeholder };
|
|
1571
|
+
const borderColor_1: string;
|
|
1572
|
+
export { borderColor_1 as borderColor };
|
|
1573
|
+
const borderColorFocus_1: string;
|
|
1574
|
+
export { borderColorFocus_1 as borderColorFocus };
|
|
1575
|
+
const textColor_1: string;
|
|
1576
|
+
export { textColor_1 as textColor };
|
|
1577
|
+
const selectedValue_1: string;
|
|
1578
|
+
export { selectedValue_1 as selectedValue };
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
export { AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Build, Button, CollapseData, CollapseHeader, ContainerTable, DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, EventStatusCards, Execute, FilterPanel, FilterPop, Heatmap, IconButton, Input, InsightsCarousel, ItemManagerPanel, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, QuickFilter, RangePicker, RangePop, ReportTable, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|