@faasjs/react 8.0.0-beta.7 → 8.0.0-beta.8
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 +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -250,7 +250,7 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, {
|
|
|
250
250
|
static displayName: string;
|
|
251
251
|
constructor(props: ErrorBoundaryProps);
|
|
252
252
|
componentDidCatch(error: Error, info: ErrorInfo): void;
|
|
253
|
-
render(): string | number | bigint | boolean |
|
|
253
|
+
render(): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null;
|
|
254
254
|
}
|
|
255
255
|
//#endregion
|
|
256
256
|
//#region src/equal.d.ts
|
|
@@ -547,7 +547,7 @@ declare function OptionalWrapper({
|
|
|
547
547
|
Wrapper,
|
|
548
548
|
wrapperProps,
|
|
549
549
|
children
|
|
550
|
-
}: OptionalWrapperProps): string | number | bigint | boolean |
|
|
550
|
+
}: OptionalWrapperProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime0.JSX.Element | null | undefined;
|
|
551
551
|
declare namespace OptionalWrapper {
|
|
552
552
|
var displayName: string;
|
|
553
553
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faasjs/react",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@faasjs/browser": ">=8.0.0-beta.
|
|
33
|
+
"@faasjs/browser": ">=8.0.0-beta.8"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@faasjs/browser": ">=8.0.0-beta.
|
|
36
|
+
"@faasjs/browser": ">=8.0.0-beta.8",
|
|
37
37
|
"@types/react": "^19.0.0",
|
|
38
38
|
"react": "^19.0.0"
|
|
39
39
|
},
|