@jnrs/lingshu-smart 2.2.33 → 2.2.35
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/AGENTS.md +60 -4
- package/README.md +141 -0
- package/dist/components/debug/DataLogPanel.vue.d.ts +44 -0
- package/dist/components/debug/DebugPanel.vue.d.ts +61 -0
- package/dist/components/debug/PerformanceStats.vue.d.ts +42 -0
- package/dist/components/debug/ScriptRunner/ConfigPanel.vue.d.ts +39 -0
- package/dist/components/debug/ScriptRunner/StepsPanel.vue.d.ts +50 -0
- package/dist/components/debug/ScriptRunner/index.vue.d.ts +16 -0
- package/dist/components/debug/ScriptRunner/script.d.ts +100 -0
- package/dist/components/debug/WsProxy/ConfigEditor.vue.d.ts +18 -0
- package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +24 -0
- package/dist/components/debug/WsProxy/WsProxyPage.vue.d.ts +14 -0
- package/dist/components/debug/WsProxy/broadcast.d.ts +31 -0
- package/dist/components/debug/WsProxy/index.vue.d.ts +39 -0
- package/dist/components/debug/WsProxy/proxy.d.ts +159 -0
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +100 -100
- package/dist/components/editor/DrawingBoard.vue.d.ts +3 -1
- package/dist/components/editor/OptionCard/Equipment/models/PartConfig.vue.d.ts +2 -0
- package/dist/components/editor/index.vue.d.ts +3 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.js +31930 -2056
- package/dist/components/preview/index.vue.d.ts +1859 -3
- package/dist/composables/useDebugEasterEgg.d.ts +2 -0
- package/dist/controller/AppController.d.ts +11 -0
- package/dist/controller/EditorController.d.ts +1 -1
- package/dist/index.js +153 -17
- package/dist/lingshu-smart/wsProxyConfig.json +495 -0
- package/dist/locales/en.d.ts +45 -0
- package/dist/locales/i18next.d.ts +102 -1
- package/dist/locales/index.js +94 -4
- package/dist/locales/zhCn.d.ts +45 -0
- package/dist/playground/ViewPageDemo.vue.d.ts +3802 -6
- package/dist/stores/index.d.ts +1 -0
- package/dist/stores/useAppStore.d.ts +5565 -3
- package/dist/stores/useDataStore.d.ts +5565 -3
- package/dist/stores/useDebugStore.d.ts +485 -0
- package/dist/stores/useEditorStore.d.ts +5 -2
- package/dist/types/app.types.d.ts +3 -0
- package/dist/types/components/config.types.d.ts +1 -0
- package/dist/types/components/operating.types.d.ts +1 -0
- package/dist/types/enums.d.ts +1 -0
- package/dist/types/guards.d.ts +1 -0
- package/dist/types/models/config.types.d.ts +9 -1
- package/dist/types/models/operating.types.d.ts +21 -1
- package/dist/ui/abstract/BaseAbs.d.ts +23 -0
- package/dist/ui/abstract/ComponentAbs.d.ts +3 -15
- package/dist/ui/abstract/ModelAbs.d.ts +17 -17
- package/dist/ui/components/Light.d.ts +5 -0
- package/dist/ui/components/StationSlot.d.ts +7 -2
- package/dist/ui/components/StationSlotGroup.d.ts +5 -0
- package/dist/ui/models/CleaningMachine.d.ts +2 -0
- package/dist/ui/models/DoubleJointRobot.d.ts +2 -0
- package/dist/ui/models/LoadingStation.d.ts +2 -0
- package/dist/ui/models/MachineTool.d.ts +2 -0
- package/dist/ui/models/MarkingMachine.d.ts +2 -0
- package/dist/ui/models/ResourceStore.d.ts +7 -0
- package/dist/ui/models/Rgv.d.ts +2 -0
- package/dist/ui/models/ShuttleStation.d.ts +21 -0
- package/dist/ui/models/SingleJointRobot.d.ts +2 -0
- package/dist/utils/debug-flags.d.ts +9 -0
- package/dist/utils/formatOperating.d.ts +7 -0
- package/dist/utils/index.d.ts +19 -15
- package/dist/utils/logger.d.ts +22 -0
- package/dist/utils/performance-stats.d.ts +38 -0
- package/package.json +5 -3
- package/dist/index-g6O0IWAC.js +0 -24879
- package/dist/playground/mockWebSocketData.d.ts +0 -23
- /package/dist/{json → lingshu-smart}/cases.json +0 -0
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @Author : TanRui
|
|
3
|
-
* @WeChat : Tan578853789
|
|
4
|
-
* @File : mockWebSocketData.ts
|
|
5
|
-
* @Date : 2026/04/27
|
|
6
|
-
* @Desc. : WebSocket 模拟测试数据
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* 第一批测试数据(1.5秒后发送)
|
|
10
|
-
*/
|
|
11
|
-
export declare const firstBatchMessages: {
|
|
12
|
-
traceId: string;
|
|
13
|
-
type: string;
|
|
14
|
-
payload: any;
|
|
15
|
-
}[];
|
|
16
|
-
/**
|
|
17
|
-
* 第二批测试数据(3秒后发送)
|
|
18
|
-
*/
|
|
19
|
-
export declare const secondBatchMessages: {
|
|
20
|
-
traceId: string;
|
|
21
|
-
type: string;
|
|
22
|
-
payload: any;
|
|
23
|
-
}[];
|
|
File without changes
|