@module-federation/bridge-shared 0.4.0 → 0.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
@@ -1,5 +1,13 @@
1
1
  # @module-federation/bridge-shared
2
2
 
3
+ ## 0.5.1
4
+
5
+ ## 0.5.0
6
+
7
+ ### Patch Changes
8
+
9
+ - 49d6135: feat(@module-federation/bridge): enhance Bridge capabilities and fix some issues
10
+
3
11
  ## 0.4.0
4
12
 
5
13
  ## 0.3.5
package/dist/type.d.ts CHANGED
@@ -1,9 +1,11 @@
1
1
  export interface ProviderParams {
2
- name?: string;
2
+ moduleName?: string;
3
3
  basename?: string;
4
4
  memoryRoute?: {
5
5
  entryPath: string;
6
6
  };
7
+ style?: React.CSSProperties;
8
+ className?: string;
7
9
  }
8
10
  export interface RenderFnParams extends ProviderParams {
9
11
  dom: HTMLElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/bridge-shared",
3
- "version": "0.4.0",
3
+ "version": "0.5.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/type.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  export interface ProviderParams {
2
- name?: string;
2
+ moduleName?: string;
3
3
  basename?: string;
4
4
  memoryRoute?: { entryPath: string };
5
+ style?: React.CSSProperties;
6
+ className?: string;
5
7
  }
6
8
 
7
9
  export interface RenderFnParams extends ProviderParams {