@das-fed/mframe 0.0.36 → 0.0.38

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.
Files changed (4) hide show
  1. package/es5.js +6669 -6290
  2. package/index.d.ts +5 -0
  3. package/index.js +5656 -5402
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -996,6 +996,11 @@ export declare const useIframeManager: () => {
996
996
  setIframeMountDom: (ele: Element | null) => void;
997
997
  registerIframe: (id: string, config: MicroAppContainerInitOptions) => void;
998
998
  getIframeInfo: (id: string) => any;
999
+ updateIframeDebugInfo: (id: string, extra?: {
1000
+ path?: string;
1001
+ href?: string;
1002
+ src?: string;
1003
+ }) => void;
999
1004
  checkIframeStatus: (id: string, status: LifeCycleKeyType | LifeCycleKeyType[]) => boolean;
1000
1005
  iframeEvent: Emitter< {
1001
1006
  loading: any;