@nywqs/scada-engine 1.1.0
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.
- package/README.md +455 -0
- package/dist/components/AttributeConfigDialog.d.ts +39 -0
- package/dist/components/BasicPropertiesTab.d.ts +51 -0
- package/dist/components/BindingCard.d.ts +36 -0
- package/dist/components/CanvasArea.d.ts +4 -0
- package/dist/components/CanvasConfigPanel.d.ts +2 -0
- package/dist/components/ComponentLibrary.d.ts +6 -0
- package/dist/components/CustomCodeDialog.d.ts +30 -0
- package/dist/components/DataPropertiesTab.d.ts +42 -0
- package/dist/components/DevicePointSelector.d.ts +27 -0
- package/dist/components/EdgePropertiesTab.d.ts +22 -0
- package/dist/components/EventCard.d.ts +63 -0
- package/dist/components/Footer.d.ts +37 -0
- package/dist/components/Header.d.ts +71 -0
- package/dist/components/MappingConfigurator.d.ts +27 -0
- package/dist/components/PropertyPanel.d.ts +27 -0
- package/dist/components/WorkflowSelectorDialog.d.ts +15 -0
- package/dist/index.d.ts +157 -0
- package/dist/main.d.ts +1 -0
- package/dist/mock/deviceData.d.ts +39 -0
- package/dist/scada-components/basic/circle.d.ts +6 -0
- package/dist/scada-components/basic/index.d.ts +6 -0
- package/dist/scada-components/basic/rect.d.ts +6 -0
- package/dist/scada-components/basic/text.d.ts +6 -0
- package/dist/scada-components/canvas/config.d.ts +17 -0
- package/dist/scada-components/canvas/index.d.ts +6 -0
- package/dist/scada-components/canvas/manager.d.ts +95 -0
- package/dist/scada-components/canvas/types.d.ts +77 -0
- package/dist/scada-components/index.d.ts +8 -0
- package/dist/scada-components/iot/gauge.d.ts +6 -0
- package/dist/scada-components/iot/index.d.ts +6 -0
- package/dist/scada-components/iot/light.d.ts +6 -0
- package/dist/scada-components/iot/switch.d.ts +6 -0
- package/dist/scada-components/registry.d.ts +56 -0
- package/dist/scada-components/types.d.ts +82 -0
- package/dist/scada-engine.css +1 -0
- package/dist/scada-engine.es.js +12390 -0
- package/dist/scada-engine.umd.js +53 -0
- package/dist/types/binding.d.ts +75 -0
- package/dist/types/device.d.ts +131 -0
- package/dist/types/workflow.d.ts +195 -0
- package/dist/utils/animationEngine.d.ts +68 -0
- package/dist/utils/authCrypto.d.ts +45 -0
- package/dist/utils/commonUtils.d.ts +83 -0
- package/dist/utils/eventUtils.d.ts +43 -0
- package/dist/utils/fileUtils.d.ts +43 -0
- package/dist/utils/index.d.ts +10 -0
- package/dist/utils/messageUtils.d.ts +56 -0
- package/dist/utils/nodePropertyUtils.d.ts +33 -0
- package/dist/utils/storageUtils.d.ts +55 -0
- package/dist/views/workflow/WorkflowDialog.d.ts +37 -0
- package/dist/views/workflow/WorkflowEditor.d.ts +38 -0
- package/dist/views/workflow/components/AddNodeMenu.d.ts +32 -0
- package/dist/views/workflow/components/ElementSelector.d.ts +45 -0
- package/dist/views/workflow/components/PropertyPanel.d.ts +27 -0
- package/dist/views/workflow/components/WorkflowToolbar.d.ts +24 -0
- package/dist/views/workflow/components/node-configs/ClearTimerConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/ConditionConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/CustomCodeConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/GetPropertyConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/HttpRequestConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/SetPropertyConfig.d.ts +20 -0
- package/dist/views/workflow/components/node-configs/TimerConfig.d.ts +20 -0
- package/dist/views/workflow/config/nodeConfigRegistry.d.ts +5 -0
- package/dist/views/workflow/services/canvasElementService.d.ts +31 -0
- package/dist/views/workflow/types/node.d.ts +70 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nywqs/scada-engine",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "自研 SCADA 组态引擎 - 基于 AntV X6",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/scada-engine.umd.js",
|
|
7
|
+
"module": "./dist/scada-engine.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/scada-engine.es.js",
|
|
12
|
+
"require": "./dist/scada-engine.umd.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./dist/style.css": "./dist/scada-engine.css",
|
|
16
|
+
"./dist/scada-engine.css": "./dist/scada-engine.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "vite build",
|
|
25
|
+
"build:lib": "vite build",
|
|
26
|
+
"preview": "vite preview"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@antv/x6": "^2.18.0",
|
|
30
|
+
"@antv/x6-plugin-dnd": "^2.1.1",
|
|
31
|
+
"@antv/x6-plugin-selection": "^2.2.0",
|
|
32
|
+
"@antv/x6-plugin-snapline": "^2.1.0",
|
|
33
|
+
"@vicons/carbon": "^0.13.0",
|
|
34
|
+
"@vueuse/core": "^10.0.0",
|
|
35
|
+
"crypto-js": "^4.2.0",
|
|
36
|
+
"echarts": "^5.5.0",
|
|
37
|
+
"pinia": "^2.1.0",
|
|
38
|
+
"vue": "^3.4.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/crypto-js": "^4.2.2",
|
|
42
|
+
"@types/node": "^25.0.3",
|
|
43
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
44
|
+
"less": "^4.2.0",
|
|
45
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
46
|
+
"typescript": "^5.3.0",
|
|
47
|
+
"vite": "^5.0.0",
|
|
48
|
+
"vite-plugin-dts": "^3.9.1",
|
|
49
|
+
"vue-tsc": "^1.8.27"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@antv/x6": "^2.18.0",
|
|
53
|
+
"@antv/x6-plugin-selection": "^2.2.0",
|
|
54
|
+
"@antv/x6-plugin-snapline": "^2.1.0",
|
|
55
|
+
"@vueuse/core": "^10.0.0",
|
|
56
|
+
"echarts": "^5.5.0",
|
|
57
|
+
"pinia": "^2.1.0",
|
|
58
|
+
"vue": "^3.4.0"
|
|
59
|
+
},
|
|
60
|
+
"keywords": [
|
|
61
|
+
"scada",
|
|
62
|
+
"visualization",
|
|
63
|
+
"vue3",
|
|
64
|
+
"x6",
|
|
65
|
+
"antv",
|
|
66
|
+
"iot",
|
|
67
|
+
"dashboard",
|
|
68
|
+
"组态",
|
|
69
|
+
"可视化"
|
|
70
|
+
],
|
|
71
|
+
"author": "wqs",
|
|
72
|
+
"license": "MIT",
|
|
73
|
+
"repository": {
|
|
74
|
+
"type": "git",
|
|
75
|
+
"url": "https://github.com/yourusername/scada-engine.git"
|
|
76
|
+
}
|
|
77
|
+
}
|