@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
package/dist/locales/index.js
CHANGED
|
@@ -1,13 +1,103 @@
|
|
|
1
|
-
const
|
|
1
|
+
const e = {
|
|
2
2
|
main: {
|
|
3
3
|
title: "灵枢智造"
|
|
4
|
+
},
|
|
5
|
+
debug: {
|
|
6
|
+
panelTitle: "调试配置面板",
|
|
7
|
+
logLevel: "日志显示等级",
|
|
8
|
+
shadows: "显示内外阴影",
|
|
9
|
+
animations: "启用全局动画",
|
|
10
|
+
fps: "全局 FPS",
|
|
11
|
+
interactionsDisabled: "禁止与画布交互",
|
|
12
|
+
interactionsHint: "调试模式开关不受此限制",
|
|
13
|
+
language: "语言",
|
|
14
|
+
reset: "恢复默认",
|
|
15
|
+
close: "关闭",
|
|
16
|
+
triggerTitle: "调试模式",
|
|
17
|
+
triggerMessage: "检测到调试模式触发指令,请选择要显示的调试组件",
|
|
18
|
+
triggerConfirm: "打开",
|
|
19
|
+
triggerCancel: "取消",
|
|
20
|
+
logLevels: {
|
|
21
|
+
none: "全部静默",
|
|
22
|
+
operatingOnly: "全部静默 + 操作追踪",
|
|
23
|
+
error: "仅 Error",
|
|
24
|
+
warn: "Warn + Error",
|
|
25
|
+
info: "Info + Warn + Error",
|
|
26
|
+
log: "全部显示",
|
|
27
|
+
operating: "全部显示 + 操作追踪"
|
|
28
|
+
},
|
|
29
|
+
fpsModes: {
|
|
30
|
+
auto: "自动(不限制)"
|
|
31
|
+
},
|
|
32
|
+
locales: {
|
|
33
|
+
zhCn: "中文",
|
|
34
|
+
en: "English"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
perf: {
|
|
38
|
+
title: "实时监控",
|
|
39
|
+
status: "运行中",
|
|
40
|
+
statusConnected: "已连接",
|
|
41
|
+
statusDisconnected: "已断开",
|
|
42
|
+
sessionStart: "渲染开始时间",
|
|
43
|
+
uptime: "渲染时长",
|
|
44
|
+
websocketTraffic: "WebSocket 流量",
|
|
45
|
+
messages: "条",
|
|
46
|
+
panelButton: "性能统计面板",
|
|
47
|
+
fps: "帧率",
|
|
48
|
+
cpu: "CPU负载"
|
|
4
49
|
}
|
|
5
|
-
},
|
|
50
|
+
}, t = {
|
|
6
51
|
main: {
|
|
7
52
|
title: "LingShu Smart"
|
|
53
|
+
},
|
|
54
|
+
debug: {
|
|
55
|
+
panelTitle: "Debug Configuration Panel",
|
|
56
|
+
logLevel: "Log Level",
|
|
57
|
+
shadows: "Show Shadows",
|
|
58
|
+
animations: "Enable Animations",
|
|
59
|
+
fps: "Global FPS",
|
|
60
|
+
interactionsDisabled: "Disable Canvas Interactions",
|
|
61
|
+
interactionsHint: "Debug mode toggle is not restricted",
|
|
62
|
+
language: "Language",
|
|
63
|
+
reset: "Reset",
|
|
64
|
+
close: "Close",
|
|
65
|
+
triggerTitle: "Debug Mode",
|
|
66
|
+
triggerMessage: "Debug mode trigger detected. Please select the debug component to display.",
|
|
67
|
+
triggerConfirm: "Open",
|
|
68
|
+
triggerCancel: "Cancel",
|
|
69
|
+
logLevels: {
|
|
70
|
+
none: "Silent",
|
|
71
|
+
operatingOnly: "Silent + Operating Trace",
|
|
72
|
+
error: "Error Only",
|
|
73
|
+
warn: "Warn + Error",
|
|
74
|
+
info: "Info + Warn + Error",
|
|
75
|
+
log: "All (log)",
|
|
76
|
+
operating: "All + Operating Trace"
|
|
77
|
+
},
|
|
78
|
+
fpsModes: {
|
|
79
|
+
auto: "Auto (unlimited)"
|
|
80
|
+
},
|
|
81
|
+
locales: {
|
|
82
|
+
zhCn: "中文",
|
|
83
|
+
en: "English"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
perf: {
|
|
87
|
+
title: "LIVE MONITOR",
|
|
88
|
+
status: "RUNNING",
|
|
89
|
+
statusConnected: "CONNECTED",
|
|
90
|
+
statusDisconnected: "OFFLINE",
|
|
91
|
+
sessionStart: "RENDER START",
|
|
92
|
+
uptime: "RENDER DURATION",
|
|
93
|
+
websocketTraffic: "WEBSOCKET TRAFFIC",
|
|
94
|
+
messages: "msgs",
|
|
95
|
+
panelButton: "Performance Stats",
|
|
96
|
+
fps: "FRAME RATE",
|
|
97
|
+
cpu: "CPU LOAD"
|
|
8
98
|
}
|
|
9
99
|
};
|
|
10
100
|
export {
|
|
11
|
-
|
|
12
|
-
|
|
101
|
+
t as en,
|
|
102
|
+
e as zhCn
|
|
13
103
|
};
|
package/dist/locales/zhCn.d.ts
CHANGED
|
@@ -2,5 +2,50 @@ declare const _default: {
|
|
|
2
2
|
main: {
|
|
3
3
|
title: string;
|
|
4
4
|
};
|
|
5
|
+
debug: {
|
|
6
|
+
panelTitle: string;
|
|
7
|
+
logLevel: string;
|
|
8
|
+
shadows: string;
|
|
9
|
+
animations: string;
|
|
10
|
+
fps: string;
|
|
11
|
+
interactionsDisabled: string;
|
|
12
|
+
interactionsHint: string;
|
|
13
|
+
language: string;
|
|
14
|
+
reset: string;
|
|
15
|
+
close: string;
|
|
16
|
+
triggerTitle: string;
|
|
17
|
+
triggerMessage: string;
|
|
18
|
+
triggerConfirm: string;
|
|
19
|
+
triggerCancel: string;
|
|
20
|
+
logLevels: {
|
|
21
|
+
none: string;
|
|
22
|
+
operatingOnly: string;
|
|
23
|
+
error: string;
|
|
24
|
+
warn: string;
|
|
25
|
+
info: string;
|
|
26
|
+
log: string;
|
|
27
|
+
operating: string;
|
|
28
|
+
};
|
|
29
|
+
fpsModes: {
|
|
30
|
+
auto: string;
|
|
31
|
+
};
|
|
32
|
+
locales: {
|
|
33
|
+
zhCn: string;
|
|
34
|
+
en: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
perf: {
|
|
38
|
+
title: string;
|
|
39
|
+
status: string;
|
|
40
|
+
statusConnected: string;
|
|
41
|
+
statusDisconnected: string;
|
|
42
|
+
sessionStart: string;
|
|
43
|
+
uptime: string;
|
|
44
|
+
websocketTraffic: string;
|
|
45
|
+
messages: string;
|
|
46
|
+
panelButton: string;
|
|
47
|
+
fps: string;
|
|
48
|
+
cpu: string;
|
|
49
|
+
};
|
|
5
50
|
};
|
|
6
51
|
export default _default;
|