@next-core/runtime 1.49.5 → 1.49.6

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.
@@ -10,7 +10,7 @@ export declare class Router {
10
10
  previousApp: MicroApp | undefined;
11
11
  };
12
12
  getNavConfig(): {
13
- breadcrumb?: BreadcrumbItemConf[] | undefined;
13
+ breadcrumb?: BreadcrumbItemConf[];
14
14
  } | undefined;
15
15
  bootstrap(): Promise<void>;
16
16
  }
@@ -94,7 +94,7 @@ export declare class Runtime {
94
94
  toggleLaunchpadEffect(open: boolean): void;
95
95
  applyPageTitle(pageTitle: string): void;
96
96
  getNavConfig(): {
97
- breadcrumb?: import("@next-core/types").BreadcrumbItemConf[] | undefined;
97
+ breadcrumb?: import("@next-core/types").BreadcrumbItemConf[];
98
98
  } | undefined;
99
99
  loadBricks(bricks: string[] | Set<string>): Promise<void>;
100
100
  }
@@ -1 +1 @@
1
- export declare const storyboardFunctions: Readonly<Record<string, Function>>, registerStoryboardFunctions: (functions: import("@next-core/types").StoryboardFunction[] | undefined, app?: import("../../StoryboardFunctionRegistry.js").PartialMicroApp | undefined) => void, checkPermissionsUsage: (functionNames: string[]) => boolean;
1
+ export declare const storyboardFunctions: Readonly<Record<string, Function>>, registerStoryboardFunctions: (functions: import("@next-core/types").StoryboardFunction[] | undefined, app?: import("../../StoryboardFunctionRegistry.js").PartialMicroApp) => void, checkPermissionsUsage: (functionNames: string[]) => boolean;
@@ -1,3 +1,4 @@
1
1
  import { StoryboardFunction } from "@next-core/types";
2
- export declare const widgetFunctions: Readonly<Record<string, Readonly<Record<string, Function>>>>;
2
+ import { ReadonlyStoryboardFunctions } from "../../StoryboardFunctionRegistry.js";
3
+ export declare const widgetFunctions: Readonly<Record<string, ReadonlyStoryboardFunctions>>;
3
4
  export declare const registerWidgetFunctions: (widgetId: string, functions: StoryboardFunction[], widgetVersion?: string) => void;
@@ -1,4 +1,3 @@
1
- /// <reference path="../../../../../../declarations/global.d.ts" />
2
1
  import type { BatchUpdateContextItem, BrickEventHandlerCallback, ContextConf, RouteConf } from "@next-core/types";
3
2
  import EventTarget from "@ungap/event-target";
4
3
  import { ResolveOptions } from "./resolveData.js";
@@ -1,4 +1,3 @@
1
- /// <reference path="../../../../../declarations/global.d.ts" />
2
1
  import EventTarget from "@ungap/event-target";
3
2
  export interface Media {
4
3
  breakpoint?: MediaBreakpoint;
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.46.2"
8
+ "packageVersion": "7.47.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/runtime",
3
- "version": "1.49.5",
3
+ "version": "1.49.6",
4
4
  "homepage": "https://github.com/easyops-cn/next-core/tree/v3/packages/runtime",
5
5
  "license": "GPL-3.0",
6
6
  "repository": {
@@ -45,14 +45,14 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@next-core/color-theme": "^0.4.8",
48
- "@next-core/cook": "^2.4.3",
49
- "@next-core/http": "^1.2.4",
50
- "@next-core/i18n": "^1.0.54",
51
- "@next-core/inject": "^1.0.37",
52
- "@next-core/loader": "^1.6.1",
53
- "@next-core/supply": "^2.1.18",
54
- "@next-core/types": "^1.11.1",
55
- "@next-core/utils": "^1.7.12",
48
+ "@next-core/cook": "^2.4.4",
49
+ "@next-core/http": "^1.2.5",
50
+ "@next-core/i18n": "^1.0.55",
51
+ "@next-core/inject": "^1.0.38",
52
+ "@next-core/loader": "^1.6.2",
53
+ "@next-core/supply": "^2.1.19",
54
+ "@next-core/types": "^1.11.2",
55
+ "@next-core/utils": "^1.7.13",
56
56
  "@ungap/event-target": "^0.2.4",
57
57
  "compare-versions": "^6.1.0",
58
58
  "history": "^4.10.1",
@@ -61,11 +61,11 @@
61
61
  "path-to-regexp": "^6.2.2"
62
62
  },
63
63
  "devDependencies": {
64
- "@microsoft/api-extractor": "^7.46.2",
64
+ "@microsoft/api-extractor": "^7.47.0",
65
65
  "@next-api-sdk/api-gateway-sdk": "^1.1.0",
66
66
  "@next-api-sdk/micro-app-sdk": "^1.2.1",
67
- "@next-core/build-next-libs": "^1.0.17",
68
- "@next-core/test-next": "^1.1.3"
67
+ "@next-core/build-next-libs": "^1.0.18",
68
+ "@next-core/test-next": "^1.1.4"
69
69
  },
70
- "gitHead": "fa4d26c3d31fc8344c38bdf7002613ba59b3e8c2"
70
+ "gitHead": "d84d4391ad8b3391d63e251cfdf020464a49e6c9"
71
71
  }