sag_components 2.0.0-beta104 → 2.0.0-beta106
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 +13 -45
- package/dist/index.esm.js +515 -131
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +515 -130
- package/dist/index.js.map +1 -1
- package/dist/types/components/{DropdownMultiNew → DropdownNew}/DropdownNew.stories.d.ts +134 -92
- package/dist/types/components/ModalWithOverlay/ModalWithOverlay.stories.d.ts +30 -0
- package/dist/types/components/OverlayDropdown/OverlayDropdown.d.ts +0 -22
- package/dist/types/components/Table/Icons/NoDataInSearchIcon.d.ts +5 -0
- package/dist/types/components/Table/Table.stories.d.ts +24 -0
- package/dist/types/components/ToasterMessageBox/ToasterMessageBox.d.ts +10 -0
- package/dist/types/components/ToasterMessageBox/ToasterMessageBox.stories.d.ts +57 -0
- package/dist/types/components/ToasterMessageBox/ToasterMessageBox.styles.d.ts +4 -0
- package/dist/types/components/Tooltip/Tooltip.d.ts +0 -22
- package/dist/types/icons/OkCircleIcon.d.ts +6 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1379,28 +1379,7 @@ declare namespace Input {
|
|
|
1379
1379
|
}
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
|
-
declare function Tooltip(props: any): react_jsx_runtime.JSX.Element;
|
|
1383
|
-
declare namespace Tooltip {
|
|
1384
|
-
namespace propTypes {
|
|
1385
|
-
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
1386
|
-
const content: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
1387
|
-
const direction: PropTypes.Requireable<string>;
|
|
1388
|
-
const delay: PropTypes.Requireable<string>;
|
|
1389
|
-
const topFactor: PropTypes.Requireable<number>;
|
|
1390
|
-
}
|
|
1391
|
-
namespace defaultProps {
|
|
1392
|
-
const children_1: any;
|
|
1393
|
-
export { children_1 as children };
|
|
1394
|
-
const content_1: string;
|
|
1395
|
-
export { content_1 as content };
|
|
1396
|
-
const direction_1: string;
|
|
1397
|
-
export { direction_1 as direction };
|
|
1398
|
-
const delay_1: string;
|
|
1399
|
-
export { delay_1 as delay };
|
|
1400
|
-
const topFactor_1: number;
|
|
1401
|
-
export { topFactor_1 as topFactor };
|
|
1402
|
-
}
|
|
1403
|
-
}
|
|
1382
|
+
declare function Tooltip(props: any): react_jsx_runtime.JSX.Element;
|
|
1404
1383
|
|
|
1405
1384
|
/**
|
|
1406
1385
|
* ToggleSwitch component for on/off states.
|
|
@@ -1498,28 +1477,7 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, require
|
|
|
1498
1477
|
hoverColor?: string;
|
|
1499
1478
|
dropdownMaxHeight?: string;
|
|
1500
1479
|
width?: string;
|
|
1501
|
-
}): react_jsx_runtime.JSX.Element;
|
|
1502
|
-
declare namespace OverlayDropdown {
|
|
1503
|
-
namespace propTypes {
|
|
1504
|
-
const data: PropTypes.Requireable<PropTypes.InferProps<{
|
|
1505
|
-
overlayCode: PropTypes.Requireable<NonNullable<string | number>>;
|
|
1506
|
-
overlayName: PropTypes.Requireable<string>;
|
|
1507
|
-
templateType: PropTypes.Requireable<number>;
|
|
1508
|
-
items: PropTypes.Requireable<PropTypes.InferProps<{
|
|
1509
|
-
value: PropTypes.Validator<string>;
|
|
1510
|
-
label: PropTypes.Validator<string>;
|
|
1511
|
-
}>[]>;
|
|
1512
|
-
}>[]>;
|
|
1513
|
-
const value: PropTypes.Requireable<string>;
|
|
1514
|
-
const onSelectClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
1515
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
1516
|
-
const required: PropTypes.Requireable<boolean>;
|
|
1517
|
-
const selectedColor: PropTypes.Requireable<string>;
|
|
1518
|
-
const hoverColor: PropTypes.Requireable<string>;
|
|
1519
|
-
const dropdownMaxHeight: PropTypes.Requireable<string>;
|
|
1520
|
-
const width: PropTypes.Requireable<string>;
|
|
1521
|
-
}
|
|
1522
|
-
}
|
|
1480
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1523
1481
|
|
|
1524
1482
|
declare function MessageBox({ isOpen, onClose, onConfirm, title, messageTitle, messageText, cancelText, confirmText, width, height }: {
|
|
1525
1483
|
isOpen?: boolean;
|
|
@@ -1534,4 +1492,14 @@ declare function MessageBox({ isOpen, onClose, onConfirm, title, messageTitle, m
|
|
|
1534
1492
|
height?: string;
|
|
1535
1493
|
}): react_jsx_runtime.JSX.Element;
|
|
1536
1494
|
|
|
1537
|
-
|
|
1495
|
+
declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {
|
|
1496
|
+
color?: string;
|
|
1497
|
+
messageText?: string;
|
|
1498
|
+
linkText?: string;
|
|
1499
|
+
duration?: number;
|
|
1500
|
+
width?: string;
|
|
1501
|
+
onLinkClick?: () => void;
|
|
1502
|
+
onClose?: () => void;
|
|
1503
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1504
|
+
|
|
1505
|
+
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, RangePop, ReportTable, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|