@jnrs/lingshu-smart 2.2.45 → 2.2.47
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/dist/components/debug/DataLogPanel.vue.d.ts +16 -1
- package/dist/components/debug/ScriptRunner/ConfigPanel.vue.d.ts +0 -1
- package/dist/components/debug/ScriptRunner/script.d.ts +12 -3
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +84 -305
- package/dist/components/index.js +5039 -4711
- package/dist/components/preview/index.vue.d.ts +1321 -1555
- package/dist/controller/AppController.d.ts +10 -1
- package/dist/{guards-aLOXCeCF.js → guards-Bi8oNtaY.js} +2 -2
- package/dist/index.js +1 -1
- package/dist/lingshu-smart/cases.json +4625 -3182
- package/dist/lingshu-smart/wsProxyConfig.json +159 -138
- package/dist/playground/ViewPageDemo.vue.d.ts +2662 -3130
- package/dist/stores/index.js +1 -1
- package/dist/stores/useAppStore.d.ts +4016 -4718
- package/dist/stores/useDataStore.d.ts +4527 -5220
- package/dist/stores/useDebugStore.d.ts +4 -1
- package/dist/types/components/operating.types.d.ts +8 -8
- package/dist/types/guards.d.ts +3 -1
- package/dist/types/models/config.types.d.ts +18 -4
- package/dist/types/models/operating.types.d.ts +23 -33
- package/dist/ui/abstract/ModelAbs.d.ts +5 -0
- package/dist/ui/components/StationSlotGroup.d.ts +2 -2
- package/dist/ui/models/DoubleJointRobot.d.ts +2 -0
- package/dist/ui/models/MachineTool.d.ts +0 -1
- package/dist/ui/models/Pallet.d.ts +12 -7
- package/dist/ui/models/Rail.d.ts +9 -2
- package/dist/ui/models/ResourceOperationWindow.d.ts +2 -0
- package/dist/ui/models/Rgv.d.ts +2 -4
- package/dist/ui/models/ShuttleStation.d.ts +0 -2
- package/dist/{useAppStore-CVyLAMtL.js → useAppStore-CevWqcmT.js} +1588 -1566
- package/package.json +2 -2
|
@@ -8,6 +8,9 @@ export declare class AppController {
|
|
|
8
8
|
private palletLinks;
|
|
9
9
|
private pendingPalletLinks;
|
|
10
10
|
private syncingPallets;
|
|
11
|
+
private followRafId;
|
|
12
|
+
private followingSet;
|
|
13
|
+
private followDeadlines;
|
|
11
14
|
private appEditable;
|
|
12
15
|
private actions;
|
|
13
16
|
private hideSceneFill;
|
|
@@ -34,7 +37,13 @@ export declare class AppController {
|
|
|
34
37
|
private registerPalletLink;
|
|
35
38
|
rerenderModel(modelConfig: ILayer): void;
|
|
36
39
|
operating(data: ILayerOperating): void;
|
|
37
|
-
|
|
40
|
+
/**
|
|
41
|
+
* 托盘/拖链逐帧跟随:
|
|
42
|
+
* 机器人等设备移动时,读取设备实时位置直接驱动绑定托盘与轨道拖链,
|
|
43
|
+
* 避免各自独立动画(时长/缓动/中断时机不一致)导致移动不同步。
|
|
44
|
+
* 连续移动(多步操作)时每次刷新截止时间,跟随持续到设备动画结束。
|
|
45
|
+
*/
|
|
46
|
+
private startLinkedFollow;
|
|
38
47
|
private globalHandle;
|
|
39
48
|
private batchRemove;
|
|
40
49
|
worldToLocalPoint(worldX: number, worldY: number): {
|
|
@@ -6,10 +6,10 @@ function n(s) {
|
|
|
6
6
|
return s?.className === a.MACHINE_TOOL || s?.className === a.MARKING_MACHINE || s?.className === a.CLEANING_MACHINE || s?.className === a.LOADING_STATION || s?.className === a.RESOURCE_OPERATION_WINDOW;
|
|
7
7
|
}
|
|
8
8
|
function c(s) {
|
|
9
|
-
return s?.className === a.RESOURCE_STORE || s?.className === a.SINGLE_JOINT_ROBOT || s?.className === a.DOUBLE_JOINT_ROBOT || s?.className === a.RGV
|
|
9
|
+
return s?.className === a.RESOURCE_STORE || s?.className === a.SINGLE_JOINT_ROBOT || s?.className === a.DOUBLE_JOINT_ROBOT || s?.className === a.RGV;
|
|
10
10
|
}
|
|
11
11
|
function O(s) {
|
|
12
|
-
return s?.className === a.SHUTTLE_STATION || s?.className === a.MATERIAL_TRACK;
|
|
12
|
+
return s?.className === a.SHUTTLE_STATION || s?.className === a.MATERIAL_TRACK || s?.className === a.PALLET;
|
|
13
13
|
}
|
|
14
14
|
function T(s) {
|
|
15
15
|
return s?.className === a.SINGLE_JOINT_ROBOT || s?.className === a.DOUBLE_JOINT_ROBOT;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { c as e, b as t, d as o, E as n, a as r, k as i, m as l, i as p, o as c, p as m, h as u, l as g, j as h, n as S, s as x, e as L, t as d, g as C, f as E } from "./index-Dsgrnpn0.js";
|
|
2
|
-
import { c as T, h as f, b, i as y, f as G, d as R, e as v, a as F } from "./guards-
|
|
2
|
+
import { c as T, h as f, b, i as y, f as G, d as R, e as v, a as F } from "./guards-Bi8oNtaY.js";
|
|
3
3
|
export {
|
|
4
4
|
e as EnumComponent,
|
|
5
5
|
t as EnumModel,
|