@nywqs/scada-engine 2.0.0 → 2.0.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.
@@ -20,6 +20,7 @@ export { animationEngine } from './utils/animation/animation-engine';
20
20
  export { registerNodeEvents } from './utils/events/event-utils';
21
21
  export * from './scada-components/svg';
22
22
  export { svgLoader } from './scada-components/svg';
23
+ export { loadExampleSvgComponents } from './scada-components/svg/helpers/utils';
23
24
  export type { Device, DevicePoint, DeviceList, PointValueUpdate } from './types/device';
24
25
  export { DeviceStatus, DeviceType, PointDataType, PointAccessMode } from './types/device';
25
26
  export interface EventConfig {
@@ -7,6 +7,7 @@ export declare class WorkerManager {
7
7
  private pendingTasks;
8
8
  private messageIdCounter;
9
9
  private readonly TASK_TIMEOUT;
10
+ private workerFailed;
10
11
  /**
11
12
  * 初始化 Worker
12
13
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nywqs/scada-engine",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "自研 SCADA 组态引擎 - 基于 AntV X6",
5
5
  "type": "module",
6
6
  "main": "./dist/scada-engine.umd.js",