@jnrs/lingshu-smart 2.2.37 → 2.2.39

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 (43) hide show
  1. package/AGENTS.md +27 -25
  2. package/README.md +10 -10
  3. package/dist/components/debug/ScriptRunner/StressPanel.vue.d.ts +63 -0
  4. package/dist/components/debug/WsProxy/ConfigEditor.vue.d.ts +5 -3
  5. package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +10 -0
  6. package/dist/components/debug/WsProxy/MappingGrid.vue.d.ts +34 -0
  7. package/dist/components/debug/WsProxy/index.vue.d.ts +33 -4
  8. package/dist/components/debug/WsProxy/proxy.d.ts +80 -44
  9. package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +16 -16
  10. package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts +1 -1
  11. package/dist/components/index.js +5853 -4383
  12. package/dist/components/preview/index.vue.d.ts +439 -30
  13. package/dist/controller/AppController.d.ts +12 -0
  14. package/dist/index-DKL_kTJG.js +11441 -0
  15. package/dist/index.js +42 -38
  16. package/dist/lingshu-smart/cases.json +12818 -211
  17. package/dist/lingshu-smart/wsProxyConfig.json +1026 -520
  18. package/dist/locales/en.d.ts +2 -0
  19. package/dist/locales/i18next.d.ts +4 -0
  20. package/dist/locales/index.js +12 -8
  21. package/dist/locales/zhCn.d.ts +2 -0
  22. package/dist/playground/ViewPageDemo.vue.d.ts +1025 -159
  23. package/dist/stores/index.js +1 -1
  24. package/dist/stores/useAppStore.d.ts +1491 -264
  25. package/dist/stores/useDataStore.d.ts +2143 -262
  26. package/dist/stores/useDebugStore.d.ts +38 -461
  27. package/dist/types/components/config.types.d.ts +3 -1
  28. package/dist/types/enums.d.ts +3 -1
  29. package/dist/types/models/config.types.d.ts +34 -2
  30. package/dist/types/models/operating.types.d.ts +36 -4
  31. package/dist/ui/abstract/ModelAbs.d.ts +6 -0
  32. package/dist/ui/components/StationSlot.d.ts +15 -0
  33. package/dist/ui/components/StationSlotGroup.d.ts +6 -0
  34. package/dist/ui/models/MaterialTrack.d.ts +29 -0
  35. package/dist/ui/models/ResourceOperationWindow.d.ts +39 -0
  36. package/dist/ui/models/ShuttleStation.d.ts +3 -3
  37. package/dist/useAppStore-DvXV4vGj.js +15736 -0
  38. package/dist/utils/caseCompact.d.ts +17 -0
  39. package/dist/utils/index.d.ts +1 -0
  40. package/package.json +2 -2
  41. package/dist/index-YxSpi9Af.js +0 -131
  42. package/dist/useAppStore-DQI1btcH.js +0 -26123
  43. /package/dist/components/debug/{DebugPanel.vue.d.ts → GlobalSetting.vue.d.ts} +0 -0
@@ -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;
@@ -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: "Debug Mode",
66
- triggerMessage: "Debug mode trigger detected. Would you like to open debug mode?",
68
+ triggerTitle: "Debug Panel",
69
+ triggerMessage: "Debug mode trigger detected. Would you like to open debug panel?",
67
70
  triggerConfirm: "Open",
68
71
  triggerCancel: "Cancel",
69
72
  logLevels: {
70
73
  none: "Silent",
71
- operatingOnly: "Silent + Operating Trace",
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: "All + Operating Trace"
79
+ operating: "Operating Trace + All",
80
+ all: "All"
77
81
  },
78
82
  fpsModes: {
79
83
  auto: "Auto (unlimited)"
@@ -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;