@next-core/brick-utils 2.35.3 → 2.37.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.
@@ -0,0 +1,2 @@
1
+ import type { SimpleFunction } from "@next-core/brick-types";
2
+ export declare function debounceByAnimationFrame<P extends unknown[]>(fn: SimpleFunction<P, void>): SimpleFunction<P, void>;
@@ -0,0 +1 @@
1
+ export {};
@@ -13,6 +13,7 @@ export * from "./scanProcessorsInStoryboard";
13
13
  export * from "./scanPermissionActionsInStoryboard";
14
14
  export * from "./scanAliasInStoryboard";
15
15
  export * from "./scanI18NInStoryboard";
16
+ export * from "./scanAppInStoryboard";
16
17
  export * from "./placeholder";
17
18
  export * from "./cook";
18
19
  export * from "./resolveContextConcurrently";
@@ -24,3 +25,4 @@ export * from "./builder";
24
25
  export * from "./deepFreeze";
25
26
  export * from "./track";
26
27
  export * from "./visitStoryboard";
28
+ export * from "./debounceByAnimationFrame";
@@ -0,0 +1,3 @@
1
+ import { Storyboard } from "@next-core/brick-types";
2
+ export declare function scanAppGetMenuInStoryboard(storyboard: Storyboard): string[];
3
+ export declare function scanAppGetMenuInAny(data: unknown): string[];
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next-core/brick-utils",
3
- "version": "2.35.3",
3
+ "version": "2.37.1",
4
4
  "description": "Pure utility functions for kernel",
5
5
  "homepage": "https://github.com/easyops-cn/next-core/tree/master/packages/brick-utils",
6
6
  "license": "GPL-3.0",
@@ -30,7 +30,7 @@
30
30
  "sideEffects": false,
31
31
  "dependencies": {
32
32
  "@next-core/brick-types": "^2.60.1",
33
- "@next-core/cook": "^1.6.15",
33
+ "@next-core/cook": "^1.6.16",
34
34
  "file-saver": "^2.0.5",
35
35
  "path-to-regexp": "^6.2.0"
36
36
  },
@@ -46,5 +46,5 @@
46
46
  "lodash": "*",
47
47
  "moment": "*"
48
48
  },
49
- "gitHead": "490b1c3a9d2b2c9a8bad4fb4520acc98cc8bfcd1"
49
+ "gitHead": "d9ce780664e82d4b1373f05dcfade785e7c29ad4"
50
50
  }