@leancodepl/cyberware-contract 10.5.0 → 10.5.1
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/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## [10.5.1](https://github.com/leancodepl/js_corelibrary/compare/v10.4.0...v10.5.1) (2026-07-01)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @leancodepl/cyberware-contract
|
|
9
9
|
|
|
@@ -11,7 +11,7 @@ export declare function createConnectToHostProvider<THost extends HostMethodsBas
|
|
|
11
11
|
contractVersionRange: string;
|
|
12
12
|
} & {
|
|
13
13
|
children: ReactNode;
|
|
14
|
-
}, "contractVersion" | "contractVersionRange">>({ children, methods, allowedOrigins }: T) => import("react
|
|
14
|
+
}, "contractVersion" | "contractVersionRange">>({ children, methods, allowedOrigins }: T) => import("react").JSX.Element;
|
|
15
15
|
useConnectToHostContext: () => UseConnectToHostResult<THost>;
|
|
16
16
|
};
|
|
17
17
|
//# sourceMappingURL=ConnectToHostProvider.d.ts.map
|
|
@@ -36,7 +36,7 @@ export declare function createContract<THost extends HostMethodsBase, TRemote ex
|
|
|
36
36
|
contractVersionRange: string;
|
|
37
37
|
} & {
|
|
38
38
|
children: import('react').ReactNode;
|
|
39
|
-
}, "contractVersion" | "contractVersionRange">>({ children, methods, allowedOrigins }: T) => import("react
|
|
39
|
+
}, "contractVersion" | "contractVersionRange">>({ children, methods, allowedOrigins }: T) => import("react").JSX.Element;
|
|
40
40
|
useConnectToHostContext: () => import('./useConnectToHost').UseConnectToHostResult<THost>;
|
|
41
41
|
getUrlParams: typeof getUrlParams<RemoteParamsWithContractVersion<TParams>>;
|
|
42
42
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leancodepl/cyberware-contract",
|
|
3
|
-
"version": "10.5.
|
|
3
|
+
"version": "10.5.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"semver": "^7.0.0",
|
|
27
27
|
"zod": "^4.0.5"
|
|
28
28
|
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/semver": "^7.5.8"
|
|
31
|
+
},
|
|
29
32
|
"peerDependencies": {
|
|
30
33
|
"@testing-library/react": "*",
|
|
31
34
|
"react": "*",
|