@glowjs/core 2023.5.7 → 2023.6.8

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.
@@ -13,6 +13,10 @@ export declare class Heatmap extends Component {
13
13
  * 最大值
14
14
  */
15
15
  static max: number;
16
+ /**
17
+ * 缩放倍数
18
+ */
19
+ static scale: number;
16
20
  /**
17
21
  * 层
18
22
  */
@@ -112,6 +112,17 @@ export declare class RunTime {
112
112
  info: string;
113
113
  modules: FunctionModule[];
114
114
  }>;
115
+ /**
116
+ * 获取温度云图列表
117
+ * @param projectFile 项目文件地址
118
+ */
119
+ static getHeatmapList(projectFile: string): Promise<{
120
+ name: string;
121
+ children: {
122
+ id: string;
123
+ name: string;
124
+ }[];
125
+ }[]>;
115
126
  /**
116
127
  * 应用
117
128
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowjs/core",
3
- "version": "2023.05.07",
3
+ "version": "2023.06.08",
4
4
  "description": "GlowJS数字孪生引擎核心库。",
5
5
  "main": "./dist/glow.core.js",
6
6
  "types": "./dist/typings/index.d.ts",