@kengic/vue 0.30.1-beta.56 → 0.30.1-beta.57
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/index.css +1 -1
- package/dist/kengic-vue.js +23691 -23484
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +14 -0
- package/package.json +1 -1
|
@@ -196,6 +196,8 @@ export declare class AgentStatusUpdateRequest {
|
|
|
196
196
|
agentId?: string | null;
|
|
197
197
|
/** 角度(度),0度表示向右(正X方向),90度表示向上(正Y方向). */
|
|
198
198
|
angle?: number | null;
|
|
199
|
+
/** 当前站点编号. */
|
|
200
|
+
stationCode?: string | null;
|
|
199
201
|
/** Status. */
|
|
200
202
|
status?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | null;
|
|
201
203
|
/** X. */
|
|
@@ -1237,6 +1239,10 @@ export declare type IDragDataTransferData = {
|
|
|
1237
1239
|
* 节点数据.
|
|
1238
1240
|
*/
|
|
1239
1241
|
export declare type INodeProperty = {
|
|
1242
|
+
/**
|
|
1243
|
+
* 代理者--当前所在站点编号.
|
|
1244
|
+
*/
|
|
1245
|
+
$Agent$CurrentStationCode?: string;
|
|
1240
1246
|
/**
|
|
1241
1247
|
* 代理者--移动--当前所在连线.
|
|
1242
1248
|
*/
|
|
@@ -1246,6 +1252,10 @@ export declare type INodeProperty = {
|
|
|
1246
1252
|
* <p>每个叠盘机的正下方都有一个普通输送机, 因此如果是叠盘, 则是从普通输送机到叠盘机, 此时坐标不会变化, 因此如果是拆盘, 则是从叠盘机到普通输送机, 此时坐标也不会变化,</p>
|
|
1247
1253
|
*/
|
|
1248
1254
|
$Agent$Move$Direction?: 'UP' | 'DOWN' | 'LEFT' | 'RIGHT' | 'DPJ';
|
|
1255
|
+
/**
|
|
1256
|
+
* 代理者--移动--第一次执行移动的时刻.
|
|
1257
|
+
*/
|
|
1258
|
+
$Agent$Move$FirstMoveTime?: number;
|
|
1249
1259
|
/**
|
|
1250
1260
|
* 代理者--移动--起始 X.
|
|
1251
1261
|
*/
|
|
@@ -1254,6 +1264,10 @@ export declare type INodeProperty = {
|
|
|
1254
1264
|
* 代理者--移动--起始 Y.
|
|
1255
1265
|
*/
|
|
1256
1266
|
$Agent$Move$FromY?: number;
|
|
1267
|
+
/**
|
|
1268
|
+
* 代理者--移动--是否到达目的站点.
|
|
1269
|
+
*/
|
|
1270
|
+
$Agent$Move$IsArrive?: boolean;
|
|
1257
1271
|
/**
|
|
1258
1272
|
* 代理者--移动--是否正在移动.
|
|
1259
1273
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.30.1-beta.
|
|
3
|
+
"version": "0.30.1-beta.57",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|