@nywqs/scada-engine 1.1.18 → 1.1.20

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 (33) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/dist/mock/deviceData.d.ts +1 -1
  3. package/dist/scada-components/iot/AlarmLight3D.d.ts +14 -0
  4. package/dist/scada-components/iot/Conveyor3D.d.ts +14 -0
  5. package/dist/scada-components/iot/Cylinder3D.d.ts +14 -0
  6. package/dist/scada-components/iot/EChartsGauge.d.ts +14 -0
  7. package/dist/scada-components/iot/EChartsLine.d.ts +14 -0
  8. package/dist/scada-components/iot/Filter3D.d.ts +14 -0
  9. package/dist/scada-components/iot/HeatExchanger3D.d.ts +14 -0
  10. package/dist/scada-components/iot/Light3D.d.ts +14 -0
  11. package/dist/scada-components/iot/Motor3D.d.ts +14 -0
  12. package/dist/scada-components/iot/Pipe3D.d.ts +14 -0
  13. package/dist/scada-components/iot/Pump3D.d.ts +14 -0
  14. package/dist/scada-components/iot/Switch3D.d.ts +14 -0
  15. package/dist/scada-components/iot/Tank3D.d.ts +14 -0
  16. package/dist/scada-components/iot/Tee3D.d.ts +14 -0
  17. package/dist/scada-components/iot/TemperatureSensor3D.d.ts +14 -0
  18. package/dist/scada-components/iot/Valve3D.d.ts +14 -0
  19. package/dist/scada-components/iot/echarts-gauge-presets.d.ts +18 -0
  20. package/dist/scada-components/iot/echarts-gauge.d.ts +6 -0
  21. package/dist/scada-components/iot/echarts-line-presets.d.ts +13 -0
  22. package/dist/scada-components/iot/echarts-line.d.ts +6 -0
  23. package/dist/scada-components/iot/index.d.ts +5 -1
  24. package/dist/scada-components/iot/industrial-3d-extended.d.ts +18 -0
  25. package/dist/scada-components/iot/industrial-3d-fluid.d.ts +9 -0
  26. package/dist/scada-components/iot/industrial-3d.d.ts +18 -0
  27. package/dist/scada-components/iot/light.d.ts +1 -1
  28. package/dist/scada-components/iot/switch.d.ts +1 -1
  29. package/dist/scada-engine.css +1 -1
  30. package/dist/scada-engine.es.js +8863 -3278
  31. package/dist/scada-engine.umd.js +18 -18
  32. package/package.json +7 -2
  33. package/dist/scada-components/iot/gauge.d.ts +0 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nywqs/scada-engine",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
4
4
  "description": "自研 SCADA 组态引擎 - 基于 AntV X6",
5
5
  "type": "module",
6
6
  "main": "./dist/scada-engine.umd.js",
@@ -23,13 +23,18 @@
23
23
  "dev": "vite",
24
24
  "build": "vite build",
25
25
  "build:lib": "vite build",
26
- "preview": "vite preview"
26
+ "preview": "vite preview",
27
+ "docs:dev": "cd docs && npx hexo server",
28
+ "docs:build": "cd docs && npx hexo generate",
29
+ "docs:clean": "cd docs && npx hexo clean",
30
+ "docs:deploy": "cd docs && npx hexo deploy"
27
31
  },
28
32
  "dependencies": {
29
33
  "@antv/x6": "^2.18.0",
30
34
  "@antv/x6-plugin-dnd": "^2.1.1",
31
35
  "@antv/x6-plugin-selection": "^2.2.0",
32
36
  "@antv/x6-plugin-snapline": "^2.1.0",
37
+ "@antv/x6-vue-shape": "^2.1.2",
33
38
  "@vicons/carbon": "^0.13.0",
34
39
  "@vueuse/core": "^10.0.0",
35
40
  "echarts": "^5.5.0",
@@ -1,6 +0,0 @@
1
- import { ComponentConfig } from '../types';
2
-
3
- /**
4
- * 仪表组件配置
5
- */
6
- export declare const GaugeComponent: ComponentConfig;