@modern-js/plugin-garfish 2.41.0 → 2.42.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.
@@ -2,17 +2,14 @@ import type { CliHookCallbacks, useConfigContext } from '@modern-js/core';
2
2
  import type { CliPlugin, AppTools } from '@modern-js/app-tools';
3
3
  export type UseConfig = ReturnType<typeof useConfigContext>;
4
4
  export declare const externals: {
5
- 'react-dom': string;
6
- react: string;
5
+ 'react-dom': string;
6
+ react: string;
7
7
  };
8
8
  export type LifeCycle = CliHookCallbacks;
9
9
  type NonInValidAble<T> = T extends null | undefined | false ? never : T;
10
10
  export declare function getDefaultMicroFrontedConfig(microFrontend: NonInValidAble<NonNullable<UseConfig['deploy']>['microFrontend']>): any;
11
- export declare const garfishPlugin: ({
12
- pluginName,
13
- runtimePluginName
14
- }?: {
15
- pluginName?: string | undefined;
16
- runtimePluginName?: string | undefined;
11
+ export declare const garfishPlugin: ({ pluginName, runtimePluginName, }?: {
12
+ pluginName?: string | undefined;
13
+ runtimePluginName?: string | undefined;
17
14
  }) => CliPlugin<AppTools>;
18
- export default garfishPlugin;
15
+ export default garfishPlugin;
@@ -3,4 +3,4 @@ export declare const makeProvider: () => string;
3
3
  export declare const makeRenderFunction: (code: string) => string;
4
4
  export declare function getRuntimeConfig(config: Partial<AppNormalizedConfig>): any;
5
5
  export declare function setRuntimeConfig(config: Partial<AppNormalizedConfig>, key: string, value: any): undefined;
6
- export declare const generateAsyncEntry: (code: string) => string;
6
+ export declare const generateAsyncEntry: (code: string) => string;
@@ -1 +1 @@
1
- export { default as hoistNonReactStatics } from 'hoist-non-react-statics';
1
+ export { default as hoistNonReactStatics } from 'hoist-non-react-statics';
@@ -1,2 +1,2 @@
1
1
  export { default } from './runtime';
2
- export * from './runtime';
2
+ export * from './runtime';
@@ -1,4 +1,4 @@
1
1
  export { default } from './plugin';
2
2
  export { useModuleApps, useModuleApp } from './useModuleApps';
3
3
  export type { Manifest, ModuleInfo, Config } from './useModuleApps';
4
- export { default as Garfish, default as garfish } from 'garfish';
4
+ export { default as Garfish, default as garfish } from 'garfish';
@@ -1,10 +1,10 @@
1
1
  /// <reference types="react" />
2
2
  import { LoadableConfig, MicroComponentProps } from './useModuleApps';
3
3
  export interface MicroProps {
4
- setLoadingState: (state: {
5
- isLoading?: boolean;
6
- error?: unknown;
7
- }) => void;
8
- [key: string]: any;
4
+ setLoadingState: (state: {
5
+ isLoading?: boolean;
6
+ error?: unknown;
7
+ }) => void;
8
+ [key: string]: any;
9
9
  }
10
- export declare function Loadable(WrapComponent: any): (defaultLoadable?: LoadableConfig) => (props: MicroComponentProps) => JSX.Element;
10
+ export declare function Loadable(WrapComponent: any): (defaultLoadable?: LoadableConfig) => (props: MicroComponentProps) => JSX.Element;
@@ -1,4 +1,4 @@
1
1
  import type { Plugin } from '@modern-js/runtime';
2
2
  import { Config } from './useModuleApps';
3
3
  declare const _default: (config: Config) => Plugin;
4
- export default _default;
4
+ export default _default;
@@ -2,40 +2,42 @@ import garfish, { interfaces as GarfishInterfaces } from 'garfish';
2
2
  import React from 'react';
3
3
  export type Options = typeof garfish.options;
4
4
  export type ModuleInfo = GarfishInterfaces.AppInfo & {
5
- Component?: React.ComponentType | React.ElementType;
6
- path?: string;
7
- originInfo?: Record<string, unknown>;
5
+ Component?: React.ComponentType | React.ElementType;
6
+ path?: string;
7
+ originInfo?: Record<string, unknown>;
8
8
  };
9
9
  export type ModulesInfo = Array<ModuleInfo>;
10
10
  export type Manifest = {
11
- modules?: ModulesInfo;
12
- loadable?: LoadableConfig;
13
- componentRender?: boolean;
14
- getAppList?: (info: any) => Promise<Array<GarfishInterfaces.AppInfo>>;
11
+ modules?: ModulesInfo;
12
+ loadable?: LoadableConfig;
13
+ componentRender?: boolean;
14
+ getAppList?: (info: any) => Promise<Array<GarfishInterfaces.AppInfo>>;
15
15
  };
16
16
  export type LoadingComponent = React.ComponentType<{
17
- isLoading: boolean;
18
- pastDelay: boolean;
19
- timedOut: boolean;
20
- error: any;
21
- retry: () => void;
17
+ isLoading: boolean;
18
+ pastDelay: boolean;
19
+ timedOut: boolean;
20
+ error: any;
21
+ retry: () => void;
22
22
  }>;
23
23
  export interface LoadableConfig {
24
- timeout?: number;
25
- delay?: number;
26
- loading?: LoadingComponent;
24
+ timeout?: number;
25
+ delay?: number;
26
+ loading?: LoadingComponent;
27
27
  }
28
28
  export type ModernGarfishConfig = {
29
- manifest?: Manifest;
29
+ manifest?: Manifest;
30
30
  };
31
31
  export type MicroComponentProps = {
32
- loadable?: LoadableConfig;
33
- [index: string]: any;
32
+ loadable?: LoadableConfig;
33
+ [index: string]: any;
34
34
  };
35
35
  export type Config = Partial<Options> & ModernGarfishConfig;
36
- export type UseModuleApps = { [index in 'apps' | string]: index extends 'apps' ? ModulesInfo : React.FC<MicroComponentProps> } & {
37
- readonly MApp: React.FC<MicroComponentProps>;
38
- readonly apps: ModulesInfo;
36
+ export type UseModuleApps = {
37
+ [index in 'apps' | string]: index extends 'apps' ? ModulesInfo : React.FC<MicroComponentProps>;
38
+ } & {
39
+ readonly MApp: React.FC<MicroComponentProps>;
40
+ readonly apps: ModulesInfo;
39
41
  };
40
42
  export declare function useModuleApps(): UseModuleApps;
41
- export declare function useModuleApp(): React.FC<any>;
43
+ export declare function useModuleApp(): React.FC<any>;
@@ -1,10 +1,10 @@
1
1
  import React from 'react';
2
2
  import { ModulesInfo } from '../useModuleApps';
3
3
  export interface GarfishContextType {
4
- MApp: React.FC<any>;
5
- apps: Record<string, React.FC<any>>;
6
- appInfoList: ModulesInfo;
4
+ MApp: React.FC<any>;
5
+ apps: Record<string, React.FC<any>>;
6
+ appInfoList: ModulesInfo;
7
7
  }
8
8
  declare const GarfishContext: React.Context<GarfishContextType>;
9
9
  declare const GarfishProvider: React.Provider<GarfishContextType>;
10
- export { GarfishContext, GarfishProvider };
10
+ export { GarfishContext, GarfishProvider };
@@ -2,10 +2,10 @@
2
2
  import Garfish from 'garfish';
3
3
  import { Manifest, ModulesInfo } from '../useModuleApps';
4
4
  declare global {
5
- interface Window {
6
- modern_manifest?: {
7
- modules: ModulesInfo;
8
- };
9
- }
5
+ interface Window {
6
+ modern_manifest?: {
7
+ modules: ModulesInfo;
8
+ };
9
+ }
10
10
  }
11
- export declare function generateMApp(options: typeof Garfish.options, manifest?: Manifest): (props: import("../useModuleApps").MicroComponentProps) => JSX.Element;
11
+ export declare function generateMApp(options: typeof Garfish.options, manifest?: Manifest): (props: import("../useModuleApps").MicroComponentProps) => JSX.Element;
@@ -2,14 +2,14 @@ import React from 'react';
2
2
  import Garfish, { interfaces } from 'garfish';
3
3
  import { Manifest, MicroComponentProps, ModulesInfo } from '../useModuleApps';
4
4
  export interface Provider extends interfaces.Provider {
5
- SubModuleComponent?: React.ComponentType<any>;
6
- jupiter_submodule_app_key?: React.ComponentType<any>;
5
+ SubModuleComponent?: React.ComponentType<any>;
6
+ jupiter_submodule_app_key?: React.ComponentType<any>;
7
7
  }
8
8
  export interface AppMap {
9
- [key: string]: React.FC<MicroComponentProps>;
9
+ [key: string]: React.FC<MicroComponentProps>;
10
10
  }
11
11
  export declare function pathJoin(...args: string[]): string;
12
12
  export declare function generateApps(options: typeof Garfish.options, manifest?: Manifest): {
13
- apps: AppMap;
14
- appInfoList: ModulesInfo;
15
- };
13
+ apps: AppMap;
14
+ appInfoList: ModulesInfo;
15
+ };
@@ -1,2 +1,2 @@
1
1
  declare const _default: () => void;
2
- export default _default;
2
+ export default _default;
@@ -5,4 +5,4 @@ import createDebug from 'debug';
5
5
  import { ModuleInfo } from './runtime';
6
6
  export declare const logger: createDebug.Debugger;
7
7
  export declare const SUBMODULE_APP_COMPONENT_KEY = "SubModuleComponent";
8
- export declare function generateSubAppContainerKey(moduleInfo?: ModuleInfo): string;
8
+ export declare function generateSubAppContainerKey(moduleInfo?: ModuleInfo): string;
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.41.0",
18
+ "version": "2.42.1",
19
19
  "jsnext:source": "./src/cli/index.ts",
20
20
  "types": "./dist/types/cli/index.d.ts",
21
21
  "typesVersions": {
@@ -70,10 +70,10 @@
70
70
  "hoist-non-react-statics": "^3.3.2",
71
71
  "react-loadable": "^5.5.0",
72
72
  "@swc/helpers": "0.5.3",
73
- "@modern-js/utils": "2.41.0"
73
+ "@modern-js/utils": "2.42.1"
74
74
  },
75
75
  "peerDependencies": {
76
- "@modern-js/runtime": "^2.41.0",
76
+ "@modern-js/runtime": "^2.42.1",
77
77
  "react": ">=17",
78
78
  "react-dom": ">=17"
79
79
  },
@@ -91,13 +91,13 @@
91
91
  "react-dom": "^18",
92
92
  "react-router-dom": "6.17.0",
93
93
  "typescript": "^5",
94
- "@modern-js/core": "2.41.0",
95
- "@modern-js/app-tools": "2.41.0",
96
- "@modern-js/plugin-router-v5": "2.41.0",
97
- "@modern-js/runtime": "2.41.0",
98
- "@modern-js/types": "2.41.0",
99
- "@scripts/jest-config": "2.41.0",
100
- "@scripts/build": "2.41.0"
94
+ "@modern-js/app-tools": "2.42.1",
95
+ "@modern-js/core": "2.42.1",
96
+ "@modern-js/plugin-router-v5": "2.42.1",
97
+ "@modern-js/runtime": "2.42.1",
98
+ "@modern-js/types": "2.42.1",
99
+ "@scripts/jest-config": "2.42.1",
100
+ "@scripts/build": "2.42.1"
101
101
  },
102
102
  "sideEffects": false,
103
103
  "publishConfig": {