@nywqs/scada-engine 1.1.31 → 2.0.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.
Files changed (158) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +359 -193
  3. package/dist/index.d.ts +3 -0
  4. package/dist/scada-engine.css +1 -1
  5. package/dist/scada-engine.es.js +47937 -40
  6. package/dist/scada-engine.umd.js +3752 -3843
  7. package/dist/src/components/canvas/composables/index.d.ts +12 -0
  8. package/dist/src/components/canvas/composables/useAutoSave.d.ts +9 -0
  9. package/dist/src/components/canvas/composables/useCanvasScale.d.ts +12 -0
  10. package/dist/src/components/canvas/composables/useDataSource.d.ts +87 -0
  11. package/dist/src/components/canvas/composables/useFileOperations.d.ts +37 -0
  12. package/dist/src/components/canvas/composables/useGraphEvents.d.ts +22 -0
  13. package/dist/src/components/canvas/composables/useNodeOperations.d.ts +35 -0
  14. package/dist/src/components/canvas/config/graphConfig.d.ts +64 -0
  15. package/dist/src/components/canvas/config/pluginConfig.d.ts +5 -0
  16. package/dist/src/components/canvas/config/scadaEdgeShape.d.ts +14 -0
  17. package/dist/src/components/canvas/config/scadaEdgeView.d.ts +4 -0
  18. package/dist/src/components/canvas/types/canvas.d.ts +41 -0
  19. package/dist/src/components/configurators/BindingCard.d.ts +24 -0
  20. package/dist/src/components/configurators/ComponentPointSelector.d.ts +16 -0
  21. package/dist/src/components/{EventCard.d.ts → configurators/EventCard.d.ts} +13 -26
  22. package/dist/src/components/configurators/MappingConfigurator.d.ts +15 -0
  23. package/dist/src/components/dialogs/AttributeConfigDialog.d.ts +28 -0
  24. package/dist/src/components/dialogs/CustomCodeDialog.d.ts +20 -0
  25. package/dist/src/components/dialogs/DataSourceDialog.d.ts +16 -0
  26. package/dist/src/components/dialogs/ScadaModal.d.ts +37 -0
  27. package/dist/src/components/{WorkflowSelectorDialog.d.ts → dialogs/WorkflowSelectorDialog.d.ts} +3 -3
  28. package/dist/src/components/layout/Footer.d.ts +16 -0
  29. package/dist/src/components/layout/Header.d.ts +56 -0
  30. package/dist/src/components/panels/CanvasConfigPanel.d.ts +4 -0
  31. package/dist/src/components/panels/ComponentLibrary.d.ts +6 -0
  32. package/dist/src/components/panels/ContextMenu.d.ts +26 -0
  33. package/dist/src/components/panels/PropertyPanel.d.ts +22 -0
  34. package/dist/src/components/property-tabs/BasicPropertiesTab.d.ts +37 -0
  35. package/dist/src/components/property-tabs/DataPropertiesTab.d.ts +14 -0
  36. package/dist/src/components/property-tabs/EdgePropertiesTab.d.ts +16 -0
  37. package/dist/src/constants/animation.d.ts +5 -0
  38. package/dist/src/constants/index.d.ts +3 -0
  39. package/dist/src/constants/layout.d.ts +16 -0
  40. package/dist/src/constants/theme.d.ts +17 -0
  41. package/dist/src/index.d.ts +16 -15
  42. package/dist/src/main.d.ts +0 -1
  43. package/dist/src/scada-components/basic/circle.d.ts +0 -1
  44. package/dist/src/scada-components/basic/rect.d.ts +0 -1
  45. package/dist/src/scada-components/basic/text.d.ts +0 -1
  46. package/dist/src/scada-components/canvas/config.d.ts +0 -1
  47. package/dist/src/scada-components/canvas/manager.d.ts +0 -1
  48. package/dist/src/scada-components/iot/echarts-gauge/EChartsGauge.d.ts +3 -10
  49. package/dist/src/scada-components/iot/echarts-gauge/index.d.ts +0 -1
  50. package/dist/src/scada-components/iot/echarts-line/EChartsLine.d.ts +3 -10
  51. package/dist/src/scada-components/iot/echarts-line/index.d.ts +0 -1
  52. package/dist/src/scada-components/iot/index.d.ts +0 -6
  53. package/dist/src/scada-components/registry.d.ts +0 -1
  54. package/dist/src/scada-components/svg/core/index.d.ts +7 -0
  55. package/dist/src/scada-components/svg/core/loader.d.ts +71 -0
  56. package/dist/src/scada-components/svg/core/parser.d.ts +40 -0
  57. package/dist/src/scada-components/svg/core/types.d.ts +297 -0
  58. package/dist/src/scada-components/svg/helpers/demo.d.ts +20 -0
  59. package/dist/src/scada-components/svg/helpers/index.d.ts +5 -0
  60. package/dist/src/scada-components/svg/helpers/utils.d.ts +24 -0
  61. package/dist/src/scada-components/svg/index.d.ts +9 -0
  62. package/dist/src/scada-components/svg/rendering/SVGRenderer.d.ts +14 -0
  63. package/dist/src/scada-components/svg/rendering/animationTemplates.d.ts +81 -0
  64. package/dist/src/scada-components/svg/rendering/index.d.ts +6 -0
  65. package/dist/src/scada-components/types.d.ts +0 -1
  66. package/dist/src/types/context-menu.d.ts +13 -0
  67. package/dist/src/types/model3d.d.ts +106 -0
  68. package/dist/src/types/zone.d.ts +54 -0
  69. package/dist/src/utils/animation/index.d.ts +6 -0
  70. package/dist/src/utils/{canvasConfigWatcher.d.ts → canvas/config-watcher.d.ts} +19 -9
  71. package/dist/src/utils/{canvasDataHandler.d.ts → canvas/data-handler.d.ts} +0 -29
  72. package/dist/src/utils/{edgeOperations.d.ts → canvas/edge-operations.d.ts} +6 -3
  73. package/dist/src/utils/{graphOperations.d.ts → canvas/graph-operations.d.ts} +0 -1
  74. package/dist/src/utils/canvas/index.d.ts +10 -0
  75. package/dist/src/utils/{canvasLayerManager.d.ts → canvas/layer-manager.d.ts} +0 -1
  76. package/dist/src/utils/{nodeOperations.d.ts → canvas/node-operations.d.ts} +0 -1
  77. package/dist/src/utils/core/index.d.ts +8 -0
  78. package/dist/src/utils/{dataBindingService.d.ts → data/binding-service.d.ts} +1 -2
  79. package/dist/src/utils/data/index.d.ts +6 -0
  80. package/dist/src/utils/{contextMenuManager.d.ts → events/context-menu.d.ts} +1 -2
  81. package/dist/src/utils/{eventManager.d.ts → events/event-manager.d.ts} +1 -2
  82. package/dist/src/utils/events/index.d.ts +7 -0
  83. package/dist/src/utils/index.d.ts +30 -20
  84. package/dist/src/utils/{dracoLoader.d.ts → integrations/draco-loader.d.ts} +0 -1
  85. package/dist/src/utils/integrations/index.d.ts +6 -0
  86. package/dist/src/utils/performance/index.d.ts +6 -0
  87. package/dist/src/utils/{viewportCulling.d.ts → performance/viewport-culling.d.ts} +0 -1
  88. package/dist/src/views/Preview.d.ts +4 -0
  89. package/dist/src/views/workflow/WorkflowDialog.d.ts +10 -30
  90. package/dist/src/views/workflow/components/AddNodeMenu.d.ts +5 -14
  91. package/dist/src/views/workflow/components/ElementSelector.d.ts +5 -27
  92. package/dist/src/views/workflow/components/PropertyPanel.d.ts +8 -15
  93. package/dist/src/views/workflow/components/node-configs/ClearTimerConfig.d.ts +4 -14
  94. package/dist/src/views/workflow/components/node-configs/ConditionConfig.d.ts +4 -14
  95. package/dist/src/views/workflow/components/node-configs/CustomCodeConfig.d.ts +4 -14
  96. package/dist/src/views/workflow/components/node-configs/GetPropertyConfig.d.ts +4 -14
  97. package/dist/src/views/workflow/components/node-configs/HttpRequestConfig.d.ts +4 -14
  98. package/dist/src/views/workflow/components/node-configs/SetPropertyConfig.d.ts +4 -14
  99. package/dist/src/views/workflow/components/node-configs/TimerConfig.d.ts +4 -14
  100. package/dist/src/views/workflow/config/nodeConfigRegistry.d.ts +0 -1
  101. package/dist/src/views/workflow/services/canvasElementService.d.ts +0 -1
  102. package/package.json +86 -84
  103. package/dist/Tank3DThree-DYRGEi5G.js +0 -108
  104. package/dist/draco/gltf/draco_decoder.js +0 -33
  105. package/dist/draco/gltf/draco_decoder.wasm +0 -0
  106. package/dist/draco/gltf/draco_encoder.js +0 -33
  107. package/dist/draco/gltf/draco_wasm_wrapper.js +0 -116
  108. package/dist/index-Bp0lBzVu.js +0 -45027
  109. package/dist/src/components/AttributeConfigDialog.d.ts +0 -39
  110. package/dist/src/components/BasicPropertiesTab.d.ts +0 -51
  111. package/dist/src/components/BindingCard.d.ts +0 -39
  112. package/dist/src/components/CanvasArea.d.ts +0 -4
  113. package/dist/src/components/ComponentLibrary.d.ts +0 -34
  114. package/dist/src/components/ComponentPointSelector.d.ts +0 -29
  115. package/dist/src/components/ContextMenu.d.ts +0 -63
  116. package/dist/src/components/CustomCodeDialog.d.ts +0 -30
  117. package/dist/src/components/DataPropertiesTab.d.ts +0 -24
  118. package/dist/src/components/DataSourceDialog.d.ts +0 -26
  119. package/dist/src/components/EdgePropertiesTab.d.ts +0 -22
  120. package/dist/src/components/Footer.d.ts +0 -41
  121. package/dist/src/components/Header.d.ts +0 -73
  122. package/dist/src/components/MappingConfigurator.d.ts +0 -27
  123. package/dist/src/components/PropertyPanel.d.ts +0 -45
  124. package/dist/src/scada-components/iot/industrial-3d/Motor3D.d.ts +0 -14
  125. package/dist/src/scada-components/iot/industrial-3d/Pump3D.d.ts +0 -14
  126. package/dist/src/scada-components/iot/industrial-3d/PumpGLB.d.ts +0 -14
  127. package/dist/src/scada-components/iot/industrial-3d/Tank3D.d.ts +0 -14
  128. package/dist/src/scada-components/iot/industrial-3d/Valve3D.d.ts +0 -14
  129. package/dist/src/scada-components/iot/industrial-3d/index.d.ts +0 -22
  130. package/dist/src/scada-components/iot/industrial-3d-extended/AlarmLight3D.d.ts +0 -14
  131. package/dist/src/scada-components/iot/industrial-3d-extended/Conveyor3D.d.ts +0 -14
  132. package/dist/src/scada-components/iot/industrial-3d-extended/Cylinder3D.d.ts +0 -14
  133. package/dist/src/scada-components/iot/industrial-3d-extended/TemperatureSensor3D.d.ts +0 -14
  134. package/dist/src/scada-components/iot/industrial-3d-extended/index.d.ts +0 -18
  135. package/dist/src/scada-components/iot/industrial-3d-fluid/Filter3D.d.ts +0 -14
  136. package/dist/src/scada-components/iot/industrial-3d-fluid/HeatExchanger3D.d.ts +0 -14
  137. package/dist/src/scada-components/iot/industrial-3d-fluid/Pipe3D.d.ts +0 -14
  138. package/dist/src/scada-components/iot/industrial-3d-fluid/Tee3D.d.ts +0 -14
  139. package/dist/src/scada-components/iot/industrial-3d-fluid/index.d.ts +0 -18
  140. package/dist/src/scada-components/iot/light/Light3D.d.ts +0 -14
  141. package/dist/src/scada-components/iot/light/index.d.ts +0 -6
  142. package/dist/src/scada-components/iot/switch/Switch3D.d.ts +0 -14
  143. package/dist/src/scada-components/iot/switch/index.d.ts +0 -6
  144. package/dist/src/scada-components/iot/tank-3d-three/Tank3DThree.d.ts +0 -14
  145. package/dist/src/scada-components/iot/tank-3d-three/index.d.ts +0 -7
  146. package/dist/src/views/workflow/WorkflowEditor.d.ts +0 -38
  147. package/dist/src/views/workflow/components/WorkflowToolbar.d.ts +0 -24
  148. /package/dist/src/{components/CanvasConfigPanel.d.ts → App.d.ts} +0 -0
  149. /package/dist/src/utils/{animationEngine.d.ts → animation/animation-engine.d.ts} +0 -0
  150. /package/dist/src/utils/{animationScheduler.d.ts → animation/animation-scheduler.d.ts} +0 -0
  151. /package/dist/src/utils/{commonUtils.d.ts → core/common.d.ts} +0 -0
  152. /package/dist/src/utils/{fileUtils.d.ts → core/file.d.ts} +0 -0
  153. /package/dist/src/utils/{messageUtils.d.ts → core/message.d.ts} +0 -0
  154. /package/dist/src/utils/{storageUtils.d.ts → core/storage.d.ts} +0 -0
  155. /package/dist/src/utils/{nodePropertyUtils.d.ts → data/node-property.d.ts} +0 -0
  156. /package/dist/src/utils/{eventUtils.d.ts → events/event-utils.d.ts} +0 -0
  157. /package/dist/src/utils/{authCrypto.d.ts → integrations/auth-crypto.d.ts} +0 -0
  158. /package/dist/src/utils/{workerManager.d.ts → performance/worker-manager.d.ts} +0 -0
@@ -1,22 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 3D电机组件配置
5
- */
6
- export declare const Motor3DComponent: ComponentConfig;
7
- /**
8
- * 3D阀门组件配置
9
- */
10
- export declare const Valve3DComponent: ComponentConfig;
11
- /**
12
- * 3D储罐组件配置
13
- */
14
- export declare const Tank3DComponent: ComponentConfig;
15
- /**
16
- * 3D水泵组件配置
17
- */
18
- export declare const Pump3DComponent: ComponentConfig;
19
- /**
20
- * 3D喷雾泵(GLB)组件配置
21
- */
22
- export declare const PumpGLBComponent: ComponentConfig;
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,18 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 3D传送带组件配置
5
- */
6
- export declare const Conveyor3DComponent: ComponentConfig;
7
- /**
8
- * 3D报警灯组件配置
9
- */
10
- export declare const AlarmLight3DComponent: ComponentConfig;
11
- /**
12
- * 3D温度传感器组件配置
13
- */
14
- export declare const TemperatureSensor3DComponent: ComponentConfig;
15
- /**
16
- * 3D气缸组件配置
17
- */
18
- export declare const Cylinder3DComponent: ComponentConfig;
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,18 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 3D管道组件配置
5
- */
6
- export declare const Pipe3DComponent: ComponentConfig;
7
- /**
8
- * 3D过滤器组件配置
9
- */
10
- export declare const Filter3DComponent: ComponentConfig;
11
- /**
12
- * 3D换热器组件配置
13
- */
14
- export declare const HeatExchanger3DComponent: ComponentConfig;
15
- /**
16
- * 3D三通组件配置
17
- */
18
- export declare const Tee3DComponent: ComponentConfig;
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,6 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 灯泡组件配置(使用3D仿真效果)
5
- */
6
- export declare const LightComponent: ComponentConfig;
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,6 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 3D开关组件配置
5
- */
6
- export declare const SwitchComponent: ComponentConfig;
@@ -1,14 +0,0 @@
1
- interface Props {
2
- node?: any;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- export default _default;
6
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
- type __VLS_TypePropsToRuntimeProps<T> = {
8
- [K in keyof T]-?: {} extends Pick<T, K> ? {
9
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
- } : {
11
- type: import('vue').PropType<T[K]>;
12
- required: true;
13
- };
14
- };
@@ -1,7 +0,0 @@
1
- import { ComponentConfig } from '../../types';
2
-
3
- /**
4
- * 3D储罐组件(Three.js)
5
- * 使用 Three.js 渲染的 3D 储罐,支持实时液位显示和动画
6
- */
7
- export declare const Tank3DThreeComponent: ComponentConfig;
@@ -1,38 +0,0 @@
1
- import { Graph as X6Graph } from '@antv/x6';
2
-
3
- interface Props {
4
- scadaGraph?: X6Graph | null;
5
- showClose?: boolean;
6
- }
7
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
8
- scadaGraph: null;
9
- showClose: boolean;
10
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
- close: () => void;
12
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
13
- scadaGraph: null;
14
- showClose: boolean;
15
- }>>> & Readonly<{
16
- onClose?: (() => any) | undefined;
17
- }>, {
18
- showClose: boolean;
19
- scadaGraph: X6Graph | null;
20
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
21
- export default _default;
22
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
- type __VLS_TypePropsToRuntimeProps<T> = {
24
- [K in keyof T]-?: {} extends Pick<T, K> ? {
25
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
- } : {
27
- type: import('vue').PropType<T[K]>;
28
- required: true;
29
- };
30
- };
31
- type __VLS_WithDefaults<P, D> = {
32
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
- default: D[K];
34
- }> : P[K];
35
- };
36
- type __VLS_Prettify<T> = {
37
- [K in keyof T]: T[K];
38
- } & {};
@@ -1,24 +0,0 @@
1
- interface Props {
2
- showClose?: boolean;
3
- }
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
- clear: () => void;
6
- validate: () => void;
7
- save: () => void;
8
- close: () => void;
9
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{
10
- onSave?: (() => any) | undefined;
11
- onValidate?: (() => any) | undefined;
12
- onClear?: (() => any) | undefined;
13
- onClose?: (() => any) | undefined;
14
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
15
- export default _default;
16
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
17
- type __VLS_TypePropsToRuntimeProps<T> = {
18
- [K in keyof T]-?: {} extends Pick<T, K> ? {
19
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
20
- } : {
21
- type: import('vue').PropType<T[K]>;
22
- required: true;
23
- };
24
- };