@module-federation/bridge-react 0.0.0-next-20241113100451 → 0.0.0-next-20241113115843
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 +4 -4
- package/dist/context-3_giwitw.js +857 -0
- package/dist/context-C9uJCrqC.cjs +856 -0
- package/dist/index.cjs.js +2852 -47
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +2850 -45
- package/dist/router-v5.cjs.js +1 -1
- package/dist/router-v5.es.js +1 -1
- package/dist/router-v6.cjs.js +1 -1
- package/dist/router-v6.es.js +1 -1
- package/dist/router.cjs.js +1 -1
- package/dist/router.es.js +1 -1
- package/package.json +5 -5
- package/src/provider.tsx +3 -1
- package/dist/context-BcJ-YlNr.cjs +0 -354
- package/dist/context-CUbFnlO5.js +0 -355
package/dist/index.d.ts
CHANGED
|
@@ -67,7 +67,9 @@ export declare interface RenderFnParams extends ProviderParams {
|
|
|
67
67
|
dom: HTMLElement;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
declare type RenderParams = RenderFnParams &
|
|
70
|
+
declare type RenderParams = RenderFnParams & {
|
|
71
|
+
[key: string]: unknown;
|
|
72
|
+
};
|
|
71
73
|
|
|
72
74
|
declare type RootType = HTMLElement | default_3.Root;
|
|
73
75
|
|