dry-ux 1.44.0 → 1.45.0

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.
@@ -3,7 +3,8 @@ export interface IErrorBoundaryProps {
3
3
  errorHandler?: (error?: Error, info?: React.ErrorInfo) => void;
4
4
  onErrorCallback?: (error?: Error) => void;
5
5
  rethrowError?: boolean;
6
- fallbackUI?: React.ReactNode | ((error: Error, resetError: () => void) => JSX.Element);
6
+ fallback?: (error: Error, resetError: () => void) => JSX.Element;
7
+ children: JSX.Element;
7
8
  }
8
9
  interface IErrorBoundaryInnerState {
9
10
  error: Error | null;
@@ -14,7 +15,7 @@ export declare class ErrorBoundary extends React.PureComponent<IErrorBoundaryPro
14
15
  error: Error;
15
16
  };
16
17
  componentDidCatch(error: Error, info: React.ErrorInfo): void;
17
- render: () => any;
18
+ render: () => JSX.Element & React.ReactNode;
18
19
  private handleError;
19
20
  private resetError;
20
21
  }
@@ -7,13 +7,10 @@ class ErrorBoundary extends React.PureComponent {
7
7
  constructor(props) {
8
8
  super(props);
9
9
  this.render = () => {
10
- const { children, fallbackUI = null } = this.props;
10
+ const { children, fallback = null } = this.props;
11
11
  const { error } = this.state;
12
12
  if (error) {
13
- if (typeof fallbackUI === "function") {
14
- return fallbackUI(error, this.resetError.bind(this));
15
- }
16
- return fallbackUI || React.createElement(ErrorScreen_1.ErrorScreen, null);
13
+ return fallback ? fallback(error, this.resetError.bind(this)) : React.createElement(ErrorScreen_1.ErrorScreen, null);
17
14
  }
18
15
  return children;
19
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dry-ux",
3
- "version": "1.44.0",
3
+ "version": "1.45.0",
4
4
  "description": "",
5
5
  "main": "dist/index",
6
6
  "scripts": {