sag_components 2.0.0-beta81 → 2.0.0-beta83

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 CHANGED
@@ -1074,7 +1074,7 @@ declare function LinkButton({ text, type, size, height, width, disabled, textCol
1074
1074
  width?: string;
1075
1075
  disabled?: boolean;
1076
1076
  textColor?: string;
1077
- onClick: any;
1077
+ onClick?: () => void;
1078
1078
  leftIcon?: string;
1079
1079
  rightIcon?: string;
1080
1080
  }): react_jsx_runtime.JSX.Element;
package/dist/index.esm.js CHANGED
@@ -3047,7 +3047,7 @@ const LinkButton = _ref => {
3047
3047
  width = '',
3048
3048
  disabled = false,
3049
3049
  textColor = '',
3050
- onClick,
3050
+ onClick = () => {},
3051
3051
  leftIcon = 'none',
3052
3052
  rightIcon = 'none'
3053
3053
  } = _ref;
@@ -13197,14 +13197,14 @@ const DialogOverlay = props => {
13197
13197
  modal.close();
13198
13198
  onDialogClose();
13199
13199
  };
13200
- return /*#__PURE__*/React.createElement(ModalWrapper, {
13200
+ return /*#__PURE__*/React$1.createElement(ModalWrapper, {
13201
13201
  className: className
13202
- }, /*#__PURE__*/React.createElement(Modal, null, /*#__PURE__*/React.createElement(ModalHeader, null, /*#__PURE__*/React.createElement(ModalTitle, null, title), /*#__PURE__*/React.createElement(ModalClose, {
13202
+ }, /*#__PURE__*/React$1.createElement(Modal, null, /*#__PURE__*/React$1.createElement(ModalHeader, null, /*#__PURE__*/React$1.createElement(ModalTitle, null, title), /*#__PURE__*/React$1.createElement(ModalClose, {
13203
13203
  type: "button",
13204
13204
  onClick: closeModal
13205
- }, /*#__PURE__*/React.createElement(CloseXIcon, {
13205
+ }, /*#__PURE__*/React$1.createElement(CloseXIcon, {
13206
13206
  fill: "white"
13207
- }))), /*#__PURE__*/React.createElement(ModalBody, {
13207
+ }))), /*#__PURE__*/React$1.createElement(ModalBody, {
13208
13208
  id: "modalBody"
13209
13209
  }, children)));
13210
13210
  };