@faasjs/react 8.0.0-beta.10 → 8.0.0-beta.12
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 +3 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { FaasAction, FaasAction as FaasAction$1, FaasActionUnionType, FaasActionUnionType as FaasActionUnionType$1, FaasData, FaasData as FaasData$1, FaasParams, FaasParams as FaasParams$1 } from "@faasjs/types";
|
|
1
2
|
import * as react from "react";
|
|
2
3
|
import { Component, ComponentProps, ComponentType, Dispatch, ErrorInfo, JSX, JSXElementConstructor, ReactElement, ReactNode, RefObject, SetStateAction } from "react";
|
|
3
4
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
|
-
import { FaasAction, FaasAction as FaasAction$1, FaasActionUnionType, FaasActionUnionType as FaasActionUnionType$1, FaasData, FaasData as FaasData$1, FaasParams, FaasParams as FaasParams$1 } from "@faasjs/types";
|
|
5
5
|
|
|
6
6
|
//#region src/generateId.d.ts
|
|
7
7
|
/**
|
|
@@ -971,7 +971,7 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, {
|
|
|
971
971
|
static displayName: string;
|
|
972
972
|
constructor(props: ErrorBoundaryProps);
|
|
973
973
|
componentDidCatch(error: Error, info: ErrorInfo): void;
|
|
974
|
-
render(): string | number | bigint | boolean |
|
|
974
|
+
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;
|
|
975
975
|
}
|
|
976
976
|
//#endregion
|
|
977
977
|
//#region src/equal.d.ts
|
|
@@ -1268,7 +1268,7 @@ declare function OptionalWrapper({
|
|
|
1268
1268
|
Wrapper,
|
|
1269
1269
|
wrapperProps,
|
|
1270
1270
|
children
|
|
1271
|
-
}: OptionalWrapperProps): string | number | bigint | boolean |
|
|
1271
|
+
}: 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;
|
|
1272
1272
|
declare namespace OptionalWrapper {
|
|
1273
1273
|
var displayName: string;
|
|
1274
1274
|
}
|
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.12",
|
|
4
4
|
"homepage": "https://faasjs.com/doc/react/",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/faasjs/faasjs/issues"
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"build": "tsdown src/index.ts --config ../../tsdown.config.ts --external react --dts.eager --no-sourcemap --no-dts.sourcemap"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@faasjs/types": ">=8.0.0-beta.
|
|
33
|
+
"@faasjs/types": ">=8.0.0-beta.12",
|
|
34
34
|
"@types/react": "^19.0.0",
|
|
35
35
|
"react": "^19.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@faasjs/types": ">=8.0.0-beta.
|
|
38
|
+
"@faasjs/types": ">=8.0.0-beta.12"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=24.0.0",
|