@jnrs/lingshu-smart 2.2.38 → 2.2.40
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 +27 -25
- package/README.md +10 -10
- package/dist/components/debug/ScriptRunner/StressPanel.vue.d.ts +63 -0
- package/dist/components/debug/WsProxy/ConfigEditor.vue.d.ts +5 -3
- package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +10 -0
- package/dist/components/debug/WsProxy/MappingGrid.vue.d.ts +2 -0
- package/dist/components/debug/WsProxy/index.vue.d.ts +33 -4
- package/dist/components/debug/WsProxy/proxy.d.ts +65 -19
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +16 -16
- package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts +1 -1
- package/dist/components/index.js +5610 -4080
- package/dist/components/preview/index.vue.d.ts +439 -30
- package/dist/controller/AppController.d.ts +12 -0
- package/dist/index-DKL_kTJG.js +11441 -0
- package/dist/index.js +42 -38
- package/dist/lingshu-smart/cases.json +12818 -211
- package/dist/lingshu-smart/wsProxyConfig.json +1026 -520
- package/dist/locales/en.d.ts +2 -0
- package/dist/locales/i18next.d.ts +4 -0
- package/dist/locales/index.js +12 -8
- package/dist/locales/zhCn.d.ts +2 -0
- package/dist/playground/ViewPageDemo.vue.d.ts +1025 -159
- package/dist/stores/index.js +1 -1
- package/dist/stores/useAppStore.d.ts +1491 -264
- package/dist/stores/useDataStore.d.ts +2143 -262
- package/dist/stores/useDebugStore.d.ts +38 -557
- package/dist/types/components/config.types.d.ts +3 -1
- package/dist/types/enums.d.ts +3 -1
- package/dist/types/models/config.types.d.ts +34 -2
- package/dist/types/models/operating.types.d.ts +36 -4
- package/dist/ui/abstract/ModelAbs.d.ts +6 -0
- package/dist/ui/components/StationSlot.d.ts +15 -0
- package/dist/ui/components/StationSlotGroup.d.ts +6 -0
- package/dist/ui/models/MaterialTrack.d.ts +29 -0
- package/dist/ui/models/ResourceOperationWindow.d.ts +39 -0
- package/dist/ui/models/ShuttleStation.d.ts +3 -3
- package/dist/useAppStore-DlxnXCZs.js +15737 -0
- package/dist/utils/caseCompact.d.ts +17 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/index-YxSpi9Af.js +0 -131
- package/dist/useAppStore-CIFewItb.js +0 -26105
- /package/dist/components/debug/{DebugPanel.vue.d.ts → GlobalSetting.vue.d.ts} +0 -0
package/dist/locales/en.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ declare const _default: {
|
|
|
5
5
|
debug: {
|
|
6
6
|
panelTitle: string;
|
|
7
7
|
logLevel: string;
|
|
8
|
+
customLogLevel: string;
|
|
8
9
|
shadows: string;
|
|
9
10
|
animations: string;
|
|
10
11
|
fps: string;
|
|
@@ -25,6 +26,7 @@ declare const _default: {
|
|
|
25
26
|
info: string;
|
|
26
27
|
log: string;
|
|
27
28
|
operating: string;
|
|
29
|
+
all: string;
|
|
28
30
|
};
|
|
29
31
|
fpsModes: {
|
|
30
32
|
auto: string;
|
|
@@ -6,6 +6,7 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
6
6
|
debug: {
|
|
7
7
|
panelTitle: string;
|
|
8
8
|
logLevel: string;
|
|
9
|
+
customLogLevel: string;
|
|
9
10
|
shadows: string;
|
|
10
11
|
animations: string;
|
|
11
12
|
fps: string;
|
|
@@ -26,6 +27,7 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
26
27
|
info: string;
|
|
27
28
|
log: string;
|
|
28
29
|
operating: string;
|
|
30
|
+
all: string;
|
|
29
31
|
};
|
|
30
32
|
fpsModes: {
|
|
31
33
|
auto: string;
|
|
@@ -56,6 +58,7 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
56
58
|
debug: {
|
|
57
59
|
panelTitle: string;
|
|
58
60
|
logLevel: string;
|
|
61
|
+
customLogLevel: string;
|
|
59
62
|
shadows: string;
|
|
60
63
|
animations: string;
|
|
61
64
|
fps: string;
|
|
@@ -76,6 +79,7 @@ declare const i18n: import('vue-i18n').I18n<{
|
|
|
76
79
|
info: string;
|
|
77
80
|
log: string;
|
|
78
81
|
operating: string;
|
|
82
|
+
all: string;
|
|
79
83
|
};
|
|
80
84
|
fpsModes: {
|
|
81
85
|
auto: string;
|
package/dist/locales/index.js
CHANGED
|
@@ -5,6 +5,7 @@ const e = {
|
|
|
5
5
|
debug: {
|
|
6
6
|
panelTitle: "调试配置面板",
|
|
7
7
|
logLevel: "日志显示等级",
|
|
8
|
+
customLogLevel: "自定义日志显示等级",
|
|
8
9
|
shadows: "显示内外阴影",
|
|
9
10
|
animations: "启用全局动画",
|
|
10
11
|
fps: "全局 FPS",
|
|
@@ -13,18 +14,19 @@ const e = {
|
|
|
13
14
|
language: "语言",
|
|
14
15
|
reset: "恢复默认",
|
|
15
16
|
close: "关闭",
|
|
16
|
-
triggerTitle: "
|
|
17
|
-
triggerMessage: "
|
|
17
|
+
triggerTitle: "全局设置面板",
|
|
18
|
+
triggerMessage: "检测到全局设置触发指令,是否打开全局设置面板?",
|
|
18
19
|
triggerConfirm: "打开",
|
|
19
20
|
triggerCancel: "取消",
|
|
20
21
|
logLevels: {
|
|
21
22
|
none: "全部静默",
|
|
22
|
-
operatingOnly: "
|
|
23
|
+
operatingOnly: "操作追踪",
|
|
23
24
|
error: "仅 Error",
|
|
24
25
|
warn: "Warn + Error",
|
|
25
26
|
info: "Info + Warn + Error",
|
|
26
27
|
log: "全部显示",
|
|
27
|
-
operating: "
|
|
28
|
+
operating: "操作追踪 + 全部显示",
|
|
29
|
+
all: "全部显示"
|
|
28
30
|
},
|
|
29
31
|
fpsModes: {
|
|
30
32
|
auto: "自动(不限制)"
|
|
@@ -54,6 +56,7 @@ const e = {
|
|
|
54
56
|
debug: {
|
|
55
57
|
panelTitle: "Debug Configuration Panel",
|
|
56
58
|
logLevel: "Log Level",
|
|
59
|
+
customLogLevel: "Custom Log Level",
|
|
57
60
|
shadows: "Show Shadows",
|
|
58
61
|
animations: "Enable Animations",
|
|
59
62
|
fps: "Global FPS",
|
|
@@ -62,18 +65,19 @@ const e = {
|
|
|
62
65
|
language: "Language",
|
|
63
66
|
reset: "Reset",
|
|
64
67
|
close: "Close",
|
|
65
|
-
triggerTitle: "
|
|
66
|
-
triggerMessage: "
|
|
68
|
+
triggerTitle: "Global Setting Panel",
|
|
69
|
+
triggerMessage: "Global setting trigger detected. Would you like to open global setting panel?",
|
|
67
70
|
triggerConfirm: "Open",
|
|
68
71
|
triggerCancel: "Cancel",
|
|
69
72
|
logLevels: {
|
|
70
73
|
none: "Silent",
|
|
71
|
-
operatingOnly: "
|
|
74
|
+
operatingOnly: "Operating Trace",
|
|
72
75
|
error: "Error Only",
|
|
73
76
|
warn: "Warn + Error",
|
|
74
77
|
info: "Info + Warn + Error",
|
|
75
78
|
log: "All (log)",
|
|
76
|
-
operating: "
|
|
79
|
+
operating: "Operating Trace + All",
|
|
80
|
+
all: "All"
|
|
77
81
|
},
|
|
78
82
|
fpsModes: {
|
|
79
83
|
auto: "Auto (unlimited)"
|
package/dist/locales/zhCn.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ declare const _default: {
|
|
|
5
5
|
debug: {
|
|
6
6
|
panelTitle: string;
|
|
7
7
|
logLevel: string;
|
|
8
|
+
customLogLevel: string;
|
|
8
9
|
shadows: string;
|
|
9
10
|
animations: string;
|
|
10
11
|
fps: string;
|
|
@@ -25,6 +26,7 @@ declare const _default: {
|
|
|
25
26
|
info: string;
|
|
26
27
|
log: string;
|
|
27
28
|
operating: string;
|
|
29
|
+
all: string;
|
|
28
30
|
};
|
|
29
31
|
fpsModes: {
|
|
30
32
|
auto: string;
|