sag_components 2.0.0-beta144 → 2.0.0-beta145
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 +9 -5
- package/dist/index.esm.js +356 -488
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +356 -488
- package/dist/index.js.map +1 -1
- package/dist/types/components/MessageBox/MessageBox.d.ts +9 -5
- package/dist/types/components/MessageBox/MessageBox.stories.d.ts +67 -15
- package/dist/types/components/MessageBox/MessageBox.styles.d.ts +2 -4
- package/dist/types/components/Table/Table.stories.d.ts +78 -66
- package/dist/types/components/Table/TableBody.d.ts +9 -2
- package/dist/types/components/Table/TableBody.styles.d.ts +6 -0
- package/dist/types/components/Table/data.d.ts +3 -16
- package/package.json +1 -1
- package/dist/types/components/Table/CommentModal.d.ts +0 -2
- package/dist/types/components/Table/CommentModal.styles.d.ts +0 -11
package/dist/index.d.ts
CHANGED
|
@@ -1560,17 +1560,21 @@ declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarke
|
|
|
1560
1560
|
placeHolderColor: any;
|
|
1561
1561
|
}): react_jsx_runtime.JSX.Element;
|
|
1562
1562
|
|
|
1563
|
-
declare function MessageBox({ isOpen, onClose, onConfirm, title,
|
|
1563
|
+
declare function MessageBox({ isOpen, isDisabled, onClose, onConfirm, title, primaryText, secondaryText, width, height, color, hoverColor, secondaryColor, seperateSectionBorder, children, }: {
|
|
1564
1564
|
isOpen?: boolean;
|
|
1565
|
+
isDisabled?: boolean;
|
|
1565
1566
|
onClose?: () => void;
|
|
1566
1567
|
onConfirm?: () => void;
|
|
1567
1568
|
title?: string;
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
cancelText?: string;
|
|
1571
|
-
confirmText?: string;
|
|
1569
|
+
primaryText?: string;
|
|
1570
|
+
secondaryText?: string;
|
|
1572
1571
|
width?: string;
|
|
1573
1572
|
height?: string;
|
|
1573
|
+
color?: string;
|
|
1574
|
+
hoverColor?: string;
|
|
1575
|
+
secondaryColor?: string;
|
|
1576
|
+
seperateSectionBorder?: boolean;
|
|
1577
|
+
children: any;
|
|
1574
1578
|
}): react_jsx_runtime.JSX.Element;
|
|
1575
1579
|
|
|
1576
1580
|
declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {
|