@module-federation/bridge-react 0.0.0-next-20240919100820 → 0.0.0-next-20240920040817
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 +15 -3
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
# @module-federation/bridge-react
|
|
2
2
|
|
|
3
|
-
## 0.0.0-next-
|
|
3
|
+
## 0.0.0-next-20240920040817
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 3082116: feat: support module isolated reported
|
|
8
8
|
- Updated dependencies [3082116]
|
|
9
|
-
- @module-federation/runtime@0.0.0-next-
|
|
10
|
-
- @module-federation/bridge-shared@0.0.0-next-
|
|
9
|
+
- @module-federation/runtime@0.0.0-next-20240920040817
|
|
10
|
+
- @module-federation/bridge-shared@0.0.0-next-20240920040817
|
|
11
|
+
|
|
12
|
+
## 0.6.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- @module-federation/bridge-shared@0.6.6
|
|
17
|
+
|
|
18
|
+
## 0.6.5
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- @module-federation/bridge-shared@0.6.5
|
|
11
23
|
|
|
12
24
|
## 0.6.4
|
|
13
25
|
|
package/dist/index.cjs.js
CHANGED
|
@@ -331,7 +331,7 @@ function getGlobalFederationConstructor() {
|
|
|
331
331
|
function setGlobalFederationConstructor(FederationConstructor, isDebug = isDebugMode()) {
|
|
332
332
|
if (isDebug) {
|
|
333
333
|
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
|
|
334
|
-
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.6.
|
|
334
|
+
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.6.6";
|
|
335
335
|
}
|
|
336
336
|
}
|
|
337
337
|
function getInfoWithoutType(target, key) {
|
|
@@ -1191,7 +1191,7 @@ const RemoteAppWrapper = React.forwardRef(function(props, ref) {
|
|
|
1191
1191
|
}
|
|
1192
1192
|
);
|
|
1193
1193
|
};
|
|
1194
|
-
RemoteApp2["__APP_VERSION__"] = "0.6.
|
|
1194
|
+
RemoteApp2["__APP_VERSION__"] = "0.6.6";
|
|
1195
1195
|
return /* @__PURE__ */ React.createElement(RemoteApp2, null);
|
|
1196
1196
|
});
|
|
1197
1197
|
function withRouterData(WrappedComponent) {
|
package/dist/index.es.js
CHANGED
|
@@ -312,7 +312,7 @@ function getGlobalFederationConstructor() {
|
|
|
312
312
|
function setGlobalFederationConstructor(FederationConstructor, isDebug = isDebugMode()) {
|
|
313
313
|
if (isDebug) {
|
|
314
314
|
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
|
|
315
|
-
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.6.
|
|
315
|
+
globalThis.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.6.6";
|
|
316
316
|
}
|
|
317
317
|
}
|
|
318
318
|
function getInfoWithoutType(target, key) {
|
|
@@ -1172,7 +1172,7 @@ const RemoteAppWrapper = forwardRef(function(props, ref) {
|
|
|
1172
1172
|
}
|
|
1173
1173
|
);
|
|
1174
1174
|
};
|
|
1175
|
-
RemoteApp2["__APP_VERSION__"] = "0.6.
|
|
1175
|
+
RemoteApp2["__APP_VERSION__"] = "0.6.6";
|
|
1176
1176
|
return /* @__PURE__ */ React__default.createElement(RemoteApp2, null);
|
|
1177
1177
|
});
|
|
1178
1178
|
function withRouterData(WrappedComponent) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/bridge-react",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-20240920040817",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@loadable/component": "^5.16.4",
|
|
37
37
|
"react-error-boundary": "^4.0.13",
|
|
38
|
-
"@module-federation/bridge-shared": "0.0.0-next-
|
|
38
|
+
"@module-federation/bridge-shared": "0.0.0-next-20240920040817"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": ">=16.9.0",
|
|
42
42
|
"react-dom": ">=16.9.0",
|
|
43
43
|
"react-router-dom": ">=4",
|
|
44
|
-
"@module-federation/runtime": "0.0.0-next-
|
|
44
|
+
"@module-federation/runtime": "0.0.0-next-20240920040817"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@testing-library/react": "15.0.7",
|