@jnrs/lingshu-smart 2.2.38 → 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.
- 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 +5609 -4079
- 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-DvXV4vGj.js +15736 -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
|
@@ -5,6 +5,9 @@ export declare class AppController {
|
|
|
5
5
|
private treeBoxUI;
|
|
6
6
|
private modelsMap;
|
|
7
7
|
private businessMap;
|
|
8
|
+
private palletLinks;
|
|
9
|
+
private pendingPalletLinks;
|
|
10
|
+
private syncingPallets;
|
|
8
11
|
private appEditable;
|
|
9
12
|
private actions;
|
|
10
13
|
private hideSceneFill;
|
|
@@ -19,10 +22,19 @@ export declare class AppController {
|
|
|
19
22
|
findOne(condition: string): import('leafer').IUI | undefined;
|
|
20
23
|
removeOne(condition: string): void;
|
|
21
24
|
clearAll(): void;
|
|
25
|
+
/**
|
|
26
|
+
* 一键复位画布:所有模型销毁并按初始配置重建 UI
|
|
27
|
+
* 所有经 operating 修改的内容(位置/关节/灯/进度/资源等)回到初始状态
|
|
28
|
+
* (编辑器设置值优先,未设置字段取模型类默认值)
|
|
29
|
+
* @returns 实际复位的模型数量
|
|
30
|
+
*/
|
|
31
|
+
resetAllModels(): number;
|
|
22
32
|
removeModelById(uuid: string): void;
|
|
23
33
|
addModel(modelConfig: ILayer): void;
|
|
34
|
+
private registerPalletLink;
|
|
24
35
|
rerenderModel(modelConfig: ILayer): void;
|
|
25
36
|
operating(data: ILayerOperating): void;
|
|
37
|
+
private syncLinkedPallets;
|
|
26
38
|
private globalHandle;
|
|
27
39
|
private batchRemove;
|
|
28
40
|
worldToLocalPoint(worldX: number, worldY: number): {
|