@module-federation/bridge-shared 0.13.1 → 0.14.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
@@ -1,5 +1,13 @@
1
1
  # @module-federation/bridge-shared
2
2
 
3
+ ## 0.14.1
4
+
5
+ ## 0.14.0
6
+
7
+ ### Patch Changes
8
+
9
+ - 677aac9: vue.js has router option added to the vue3-bridge
10
+
3
11
  ## 0.13.1
4
12
 
5
13
  ## 0.13.0
package/dist/type.d.ts CHANGED
@@ -4,6 +4,7 @@ export interface ProviderParams {
4
4
  memoryRoute?: {
5
5
  entryPath: string;
6
6
  };
7
+ hashRoute?: boolean;
7
8
  style?: React.CSSProperties;
8
9
  className?: string;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/bridge-shared",
3
- "version": "0.13.1",
3
+ "version": "0.14.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/type.ts CHANGED
@@ -2,6 +2,7 @@ export interface ProviderParams {
2
2
  moduleName?: string;
3
3
  basename?: string;
4
4
  memoryRoute?: { entryPath: string };
5
+ hashRoute?: boolean;
5
6
  style?: React.CSSProperties;
6
7
  className?: string;
7
8
  }