@kengic/vue 0.30.1-beta.54 → 0.30.1-beta.56
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/README.md +4 -3
- package/dist/kengic-vue.js +25527 -25015
- package/dist/src/component/KgSimulator/KgSimulator.Canvas.service.d.ts +7 -7
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +16 -0
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +160 -4
- package/dist/src/i18n/cs_CZ.d.ts +2 -0
- package/dist/src/i18n/en.d.ts +237 -0
- package/dist/src/i18n/es_ES.d.ts +2 -0
- package/dist/src/i18n/fr_FR.d.ts +2 -0
- package/dist/src/i18n/index.d.ts +2 -0
- package/dist/src/i18n/km_KH.d.ts +2 -0
- package/dist/src/i18n/ko_KR.d.ts +2 -0
- package/dist/src/i18n/vi_VN.d.ts +2 -0
- package/dist/src/i18n/zh_CN.d.ts +238 -0
- package/dist/src/project/src/locales/useLocale.d.ts +1 -0
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ export declare type IUseDraw = {
|
|
|
7
7
|
* @param param
|
|
8
8
|
* @param param.agent 代理者.
|
|
9
9
|
*/
|
|
10
|
-
$CircularConveyor$
|
|
10
|
+
$CircularConveyor$drawAgent(param?: {
|
|
11
11
|
agent: Agent;
|
|
12
12
|
}): Q.Node | null;
|
|
13
13
|
/**
|
|
@@ -16,7 +16,7 @@ export declare type IUseDraw = {
|
|
|
16
16
|
* @param param
|
|
17
17
|
* @param param.creator 创建者.
|
|
18
18
|
*/
|
|
19
|
-
$CircularConveyor$
|
|
19
|
+
$CircularConveyor$drawCreator(param?: {
|
|
20
20
|
creator: Creator;
|
|
21
21
|
}): Q.Node | null;
|
|
22
22
|
/**
|
|
@@ -25,7 +25,7 @@ export declare type IUseDraw = {
|
|
|
25
25
|
* @param param
|
|
26
26
|
* @param param.dpj 叠盘机.
|
|
27
27
|
*/
|
|
28
|
-
$CircularConveyor$
|
|
28
|
+
$CircularConveyor$drawDPJ(param?: {
|
|
29
29
|
dpj: PalletStackerStation;
|
|
30
30
|
}): Q.Node | null;
|
|
31
31
|
/**
|
|
@@ -34,7 +34,7 @@ export declare type IUseDraw = {
|
|
|
34
34
|
* @param param
|
|
35
35
|
* @param param.dsyzj 顶升移载机.
|
|
36
36
|
*/
|
|
37
|
-
$CircularConveyor$
|
|
37
|
+
$CircularConveyor$drawDSYZJ(param?: {
|
|
38
38
|
dsyzj: JackUpTransferStation;
|
|
39
39
|
}): Q.Node | null;
|
|
40
40
|
/**
|
|
@@ -43,7 +43,7 @@ export declare type IUseDraw = {
|
|
|
43
43
|
* @param param
|
|
44
44
|
* @param param.destroyer 销毁者.
|
|
45
45
|
*/
|
|
46
|
-
$CircularConveyor$
|
|
46
|
+
$CircularConveyor$drawDestroyer(param?: {
|
|
47
47
|
destroyer: Destroyer;
|
|
48
48
|
}): Q.Node | null;
|
|
49
49
|
/**
|
|
@@ -52,7 +52,7 @@ export declare type IUseDraw = {
|
|
|
52
52
|
* @param param
|
|
53
53
|
* @param param.gdcgq 光电传感器.
|
|
54
54
|
*/
|
|
55
|
-
$CircularConveyor$
|
|
55
|
+
$CircularConveyor$drawGDCGQ(param?: {
|
|
56
56
|
gdcgq: PhotoelectricSensor;
|
|
57
57
|
}): Q.Node | null;
|
|
58
58
|
/**
|
|
@@ -61,7 +61,7 @@ export declare type IUseDraw = {
|
|
|
61
61
|
* @param param
|
|
62
62
|
* @param param.ptssj 普通输送机.
|
|
63
63
|
*/
|
|
64
|
-
$CircularConveyor$
|
|
64
|
+
$CircularConveyor$drawPTSSJ(param?: {
|
|
65
65
|
ptssj: Station;
|
|
66
66
|
}): Q.Node | null;
|
|
67
67
|
/**
|
|
@@ -320,12 +320,20 @@ export declare class AgentTaskDto {
|
|
|
320
320
|
export declare class CreateAgentIfAbsentAndDispatchTaskRequest {
|
|
321
321
|
/** Agent编码. */
|
|
322
322
|
agentCode?: string | null;
|
|
323
|
+
/** 直穿模式. 是否直穿, 如果直传则托盘不减速直接高速通过. */
|
|
324
|
+
isThrough?: number | null;
|
|
325
|
+
/** 代理长度, 对应 Y 轴. 默认为 1200 mm. */
|
|
326
|
+
length?: number | null;
|
|
323
327
|
/** 场景编码. */
|
|
324
328
|
sceneId?: string | null;
|
|
325
329
|
/** 源站点编码:Agent当前所在站点编码. */
|
|
326
330
|
sourceStationCode?: string | null;
|
|
327
331
|
/** 目标站点编码:Agent要前往的目标站点编码. */
|
|
328
332
|
targetStationCode?: string | null;
|
|
333
|
+
/** 直穿地址, 直穿后的下一个目标站点编码. */
|
|
334
|
+
throughStationCode?: string | null;
|
|
335
|
+
/** 代理宽度, 对应 X 轴. 默认为 1200 mm. */
|
|
336
|
+
width?: number | null;
|
|
329
337
|
constructor(obj?: CreateAgentIfAbsentAndDispatchTaskRequest);
|
|
330
338
|
}
|
|
331
339
|
export declare class CreateAgentRequest {
|
|
@@ -1062,6 +1070,10 @@ export declare class Station {
|
|
|
1062
1070
|
height?: number | null;
|
|
1063
1071
|
/** 站点唯一标识符(主键). */
|
|
1064
1072
|
id?: string | null;
|
|
1073
|
+
/** 是否 X 轴上的光电传感器距离较远, 否则距离较近. 远距离默认为 200 mm, 近距离默认为 20 mm. 默认为 false. */
|
|
1074
|
+
isLongDistanceSensorOnX?: boolean | null;
|
|
1075
|
+
/** 是否 Y 轴上的光电传感器距离较远, 否则距离较近. 远距离默认为 200 mm, 近距离默认为 20 mm. 默认为 false. */
|
|
1076
|
+
isLongDistanceSensorOnY?: boolean | null;
|
|
1065
1077
|
/** 设备长度,对应Y轴. */
|
|
1066
1078
|
length?: number | null;
|
|
1067
1079
|
/** Priority. */
|
|
@@ -1105,6 +1117,10 @@ export declare class StationDto {
|
|
|
1105
1117
|
height?: number | null;
|
|
1106
1118
|
/** 站点唯一标识符(主键). */
|
|
1107
1119
|
id?: string | null;
|
|
1120
|
+
/** 是否 X 轴上的光电传感器距离较远, 否则距离较近. 远距离默认为 200 mm, 近距离默认为 20 mm. 默认为 false. */
|
|
1121
|
+
isLongDistanceSensorOnX?: boolean | null;
|
|
1122
|
+
/** 是否 Y 轴上的光电传感器距离较远, 否则距离较近. 远距离默认为 200 mm, 近距离默认为 20 mm. 默认为 false. */
|
|
1123
|
+
isLongDistanceSensorOnY?: boolean | null;
|
|
1108
1124
|
/** 设备长度,对应Y轴. */
|
|
1109
1125
|
length?: number | null;
|
|
1110
1126
|
/** Priority. */
|
|
@@ -54,9 +54,27 @@ export interface IKgSimulatorStoreGetters {
|
|
|
54
54
|
/**
|
|
55
55
|
* 配置--环形输送线--接口地址--WEBSOCKET.
|
|
56
56
|
*
|
|
57
|
-
* @default '/
|
|
57
|
+
* @default '/ws'
|
|
58
58
|
*/
|
|
59
59
|
$Config$CircularConveyor$Api$WebSocket: string;
|
|
60
|
+
/**
|
|
61
|
+
* 配置--环形输送线--默认的光电传感器--离设备边缘的距离(远).
|
|
62
|
+
*
|
|
63
|
+
* @default 200 mm
|
|
64
|
+
*/
|
|
65
|
+
$Config$CircularConveyor$DefaultPhotoelectricSensor$LongDistance: number;
|
|
66
|
+
/**
|
|
67
|
+
* 配置--环形输送线--默认的光电传感器--离设备边缘的距离(近).
|
|
68
|
+
*
|
|
69
|
+
* @default 20 mm
|
|
70
|
+
*/
|
|
71
|
+
$Config$CircularConveyor$DefaultPhotoelectricSensor$ShortDistance: number;
|
|
72
|
+
/**
|
|
73
|
+
* 配置--环形输送线--是否绘制默认的光电传感器.
|
|
74
|
+
*
|
|
75
|
+
* @default false
|
|
76
|
+
*/
|
|
77
|
+
$Config$CircularConveyor$IsDrawDefaultPhotoelectricSensor: boolean;
|
|
60
78
|
/**
|
|
61
79
|
* 配置--环形输送线--顶升移载机--操作持续时间.
|
|
62
80
|
*
|
|
@@ -216,46 +234,86 @@ export interface IKgSimulatorStoreActions {
|
|
|
216
234
|
saveScene(): Promise<void>;
|
|
217
235
|
/**
|
|
218
236
|
* 配置--环形输送线--代理者--全局加速度. 默认为 16 m/min/s, (16 * 1000) / (60 * 1000 * 1000) mm/ms^2.
|
|
237
|
+
*
|
|
238
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Agent$GlobalAcceleration
|
|
219
239
|
*/
|
|
220
240
|
set$Config$CircularConveyor$Agent$GlobalAcceleration(value: number | null | undefined): void;
|
|
221
241
|
/**
|
|
222
242
|
* 配置--环形输送线--代理者--全局最大速度. 默认为 16 m/min, (16 * 1000) / (60 * 1000) mm/ms.
|
|
243
|
+
*
|
|
244
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Agent$GlobalMaxVelocity
|
|
223
245
|
*/
|
|
224
246
|
set$Config$CircularConveyor$Agent$GlobalMaxVelocity(value: number | null | undefined): void;
|
|
225
247
|
/**
|
|
226
248
|
* 配置--环形输送线--代理者--移动动画时间间隔, 单位毫秒. 默认为 25 毫秒.
|
|
249
|
+
*
|
|
250
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Agent$MoveAnimationInterval
|
|
227
251
|
*/
|
|
228
252
|
set$Config$CircularConveyor$Agent$MoveAnimationInterval(value: number | null | undefined): void;
|
|
229
253
|
/**
|
|
230
254
|
* 配置--环形输送线--接口地址--创建代理者. 默认为 '/Agent/CreateAgent'.
|
|
255
|
+
*
|
|
256
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$CreateAgent
|
|
231
257
|
*/
|
|
232
258
|
set$Config$CircularConveyor$Api$CreateAgent(value: string | null | undefined): void;
|
|
233
259
|
/**
|
|
234
260
|
* 配置--环形输送线--接口地址--创建场景. 默认为 '/Scene/CreateScene'.
|
|
261
|
+
*
|
|
262
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$CreateScene
|
|
235
263
|
*/
|
|
236
264
|
set$Config$CircularConveyor$Api$CreateScene(value: string | null | undefined): void;
|
|
237
265
|
/**
|
|
238
266
|
* 配置--环形输送线--接口地址--销毁代理者. 默认为 '/Agent/DestroyAgent'.
|
|
267
|
+
*
|
|
268
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$DestroyAgent
|
|
239
269
|
*/
|
|
240
270
|
set$Config$CircularConveyor$Api$DestroyAgent(value: string | null | undefined): void;
|
|
241
271
|
/**
|
|
242
272
|
* 配置--环形输送线--接口地址--查询场景列表. 默认为 '/Scene/GetScenes'.
|
|
273
|
+
*
|
|
274
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$RequestSceneList
|
|
243
275
|
*/
|
|
244
276
|
set$Config$CircularConveyor$Api$RequestSceneList(value: string | null | undefined): void;
|
|
245
277
|
/**
|
|
246
278
|
* 配置--环形输送线--接口地址--更新场景. 默认为 '/Scene/SaveScene'.
|
|
279
|
+
*
|
|
280
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$UpdateScene
|
|
247
281
|
*/
|
|
248
282
|
set$Config$CircularConveyor$Api$UpdateScene(value: string | null | undefined): void;
|
|
249
283
|
/**
|
|
250
|
-
* 配置--环形输送线--接口地址--WEBSOCKET. 默认为 '/
|
|
284
|
+
* 配置--环形输送线--接口地址--WEBSOCKET. 默认为 '/ws'.
|
|
285
|
+
*
|
|
286
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$Api$WebSocket
|
|
251
287
|
*/
|
|
252
288
|
set$Config$CircularConveyor$Api$WebSocket(value: string | null | undefined): void;
|
|
253
289
|
/**
|
|
254
|
-
*
|
|
290
|
+
* 配置--环形输送线--默认的光电传感器--离设备边缘的距离(远). 默认为 200 mm.
|
|
291
|
+
*
|
|
292
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$DefaultPhotoelectricSensor$LongDistance
|
|
293
|
+
*/
|
|
294
|
+
set$Config$CircularConveyor$DefaultPhotoelectricSensor$LongDistance(value: number | null | undefined): void;
|
|
295
|
+
/**
|
|
296
|
+
* 配置--环形输送线--默认的光电传感器--离设备边缘的距离(近). 默认为 20 mm.
|
|
297
|
+
*
|
|
298
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$DefaultPhotoelectricSensor$ShortDistance
|
|
299
|
+
*/
|
|
300
|
+
set$Config$CircularConveyor$DefaultPhotoelectricSensor$ShortDistance(value: number | null | undefined): void;
|
|
301
|
+
/**
|
|
302
|
+
* 配置--环形输送线--是否绘制默认的光电传感器. 默认为 false.
|
|
303
|
+
*
|
|
304
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$IsDrawDefaultPhotoelectricSensor
|
|
305
|
+
*/
|
|
306
|
+
set$Config$CircularConveyor$IsDrawDefaultPhotoelectricSensor(value: boolean | null | undefined): void;
|
|
307
|
+
/**
|
|
308
|
+
* 配置--环形输送线--顶升移载机--操作持续时间. 默认为 2 * 1000 ms.
|
|
309
|
+
*
|
|
310
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$JackUpTransferStation$Duration
|
|
255
311
|
*/
|
|
256
312
|
set$Config$CircularConveyor$JackUpTransferStation$Duration(value: number | null | undefined): void;
|
|
257
313
|
/**
|
|
258
|
-
* 配置--环形输送线--叠盘机--操作持续时间.
|
|
314
|
+
* 配置--环形输送线--叠盘机--操作持续时间. 默认为 15 * 1000 ms.
|
|
315
|
+
*
|
|
316
|
+
* @see IKgSimulatorStoreGetters.$Config$CircularConveyor$PalletStackerStation$Duration
|
|
259
317
|
*/
|
|
260
318
|
set$Config$CircularConveyor$PalletStackerStation$Duration(value: number | null | undefined): void;
|
|
261
319
|
/**
|
|
@@ -270,6 +328,8 @@ export interface IKgSimulatorStoreActions {
|
|
|
270
328
|
set$Config$Env(value: 'CIRCULAR_CONVEYOR' | 'CIRCULAR_SHUTTLE' | null | undefined): void;
|
|
271
329
|
/**
|
|
272
330
|
* 配置--是否自动打开上一次的场景. 默认为 true.
|
|
331
|
+
*
|
|
332
|
+
* @see IKgSimulatorStoreGetters.$Config$IsReopenSceneOnStart
|
|
273
333
|
*/
|
|
274
334
|
set$Config$IsReopenSceneOnStart(value: boolean | null | undefined): void;
|
|
275
335
|
/**
|
|
@@ -283,21 +343,117 @@ export interface IKgSimulatorStoreActions {
|
|
|
283
343
|
* @param value
|
|
284
344
|
*/
|
|
285
345
|
set$Config$Mode(value: 'EDIT' | 'MONITOR' | 'SIMULATE' | null | undefined): void;
|
|
346
|
+
/**
|
|
347
|
+
* 配置--工具栏--预制组件--是否打开. 默认为 true.
|
|
348
|
+
*
|
|
349
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Prefab$IsOpen
|
|
350
|
+
* @param value
|
|
351
|
+
*/
|
|
286
352
|
set$Config$Toolbar$Prefab$IsOpen(value: boolean | null | undefined): void;
|
|
353
|
+
/**
|
|
354
|
+
* 配置--工具栏--预制组件--是否显示. 默认为 true.
|
|
355
|
+
*
|
|
356
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Prefab$IsVisible
|
|
357
|
+
* @param value
|
|
358
|
+
*/
|
|
287
359
|
set$Config$Toolbar$Prefab$IsVisible(value: boolean | null | undefined): void;
|
|
360
|
+
/**
|
|
361
|
+
* 配置--工具栏--预制组件--位置. 默认为 'LEFT_TOP'.
|
|
362
|
+
*
|
|
363
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Prefab$Placement
|
|
364
|
+
* @param value
|
|
365
|
+
*/
|
|
288
366
|
set$Config$Toolbar$Prefab$Placement(value: IToolbarPlacement | null | undefined): void;
|
|
367
|
+
/**
|
|
368
|
+
* 配置--工具栏--属性--是否打开. 默认为 true.
|
|
369
|
+
*
|
|
370
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Property$IsOpen
|
|
371
|
+
* @param value
|
|
372
|
+
*/
|
|
289
373
|
set$Config$Toolbar$Property$IsOpen(value: boolean | null | undefined): void;
|
|
374
|
+
/**
|
|
375
|
+
* 配置--工具栏--属性--是否显示. 默认为 true.
|
|
376
|
+
*
|
|
377
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Property$IsVisible
|
|
378
|
+
* @param value
|
|
379
|
+
*/
|
|
290
380
|
set$Config$Toolbar$Property$IsVisible(value: boolean | null | undefined): void;
|
|
381
|
+
/**
|
|
382
|
+
* 配置--工具栏--属性--位置. 默认为 'RIGHT_TOP'.
|
|
383
|
+
*
|
|
384
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Property$Placement
|
|
385
|
+
* @param value
|
|
386
|
+
*/
|
|
291
387
|
set$Config$Toolbar$Property$Placement(value: IToolbarPlacement | null | undefined): void;
|
|
388
|
+
/**
|
|
389
|
+
* 配置--工具栏--场景--是否打开. 默认为 true.
|
|
390
|
+
*
|
|
391
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Scene$IsOpen
|
|
392
|
+
* @param value
|
|
393
|
+
*/
|
|
292
394
|
set$Config$Toolbar$Scene$IsOpen(value: boolean | null | undefined): void;
|
|
395
|
+
/**
|
|
396
|
+
* 配置--工具栏--场景--是否显示. 默认为 true.
|
|
397
|
+
*
|
|
398
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Scene$IsVisible
|
|
399
|
+
* @param value
|
|
400
|
+
*/
|
|
293
401
|
set$Config$Toolbar$Scene$IsVisible(value: boolean | null | undefined): void;
|
|
402
|
+
/**
|
|
403
|
+
* 配置--工具栏--场景--位置. 默认为 'LEFT_TOP'.
|
|
404
|
+
*
|
|
405
|
+
* @see IKgSimulatorStoreGetters.$Config$Toolbar$Scene$Placement
|
|
406
|
+
* @param value
|
|
407
|
+
*/
|
|
294
408
|
set$Config$Toolbar$Scene$Placement(value: IToolbarPlacement | null | undefined): void;
|
|
409
|
+
/**
|
|
410
|
+
* 环境--环形输送线--当前场景.
|
|
411
|
+
*
|
|
412
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularConveyor$CurrentScene
|
|
413
|
+
* @param value
|
|
414
|
+
*/
|
|
295
415
|
set$Env$CircularConveyor$CurrentScene(value: Scene | null | undefined): void;
|
|
416
|
+
/**
|
|
417
|
+
* 环境--环形输送线--当前场景--是否已经保存.
|
|
418
|
+
*
|
|
419
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularConveyor$CurrentScene$IsSave
|
|
420
|
+
* @param value
|
|
421
|
+
*/
|
|
296
422
|
set$Env$CircularConveyor$CurrentScene$IsSave(value: boolean | null | undefined): void;
|
|
423
|
+
/**
|
|
424
|
+
* 环境--环形输送线--当前场景--是否正在保存.
|
|
425
|
+
*
|
|
426
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularConveyor$CurrentScene$IsSaving
|
|
427
|
+
* @param value
|
|
428
|
+
*/
|
|
297
429
|
set$Env$CircularConveyor$CurrentScene$IsSaving(value: boolean | null | undefined): void;
|
|
430
|
+
/**
|
|
431
|
+
* 环境--环形穿梭车--当前场景.
|
|
432
|
+
*
|
|
433
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularShuttle$CurrentScene
|
|
434
|
+
* @param value
|
|
435
|
+
*/
|
|
298
436
|
set$Env$CircularShuttle$CurrentScene(value: any | null | undefined): void;
|
|
437
|
+
/**
|
|
438
|
+
* 环境--环形穿梭车--当前场景--是否已经保存.
|
|
439
|
+
*
|
|
440
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularShuttle$CurrentScene$IsSave
|
|
441
|
+
* @param value
|
|
442
|
+
*/
|
|
299
443
|
set$Env$CircularShuttle$CurrentScene$IsSave(value: boolean | null | undefined): void;
|
|
444
|
+
/**
|
|
445
|
+
* 环境--环形穿梭车--当前场景--是否正在保存.
|
|
446
|
+
*
|
|
447
|
+
* @see IKgSimulatorStoreGetters.$Env$CircularShuttle$CurrentScene$IsSaving
|
|
448
|
+
* @param value
|
|
449
|
+
*/
|
|
300
450
|
set$Env$CircularShuttle$CurrentScene$IsSaving(value: boolean | null | undefined): void;
|
|
451
|
+
/**
|
|
452
|
+
* 配置--模式--仿真模式--正在运行. 默认为 false.
|
|
453
|
+
*
|
|
454
|
+
* @see IKgSimulatorStoreGetters.$Mode$Simulate$IsRunning
|
|
455
|
+
* @param value
|
|
456
|
+
*/
|
|
301
457
|
set$Mode$Simulate$IsRunning(value: boolean | null | undefined): void;
|
|
302
458
|
set$graph(value: Q.Graph | null | undefined): void;
|
|
303
459
|
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'kg.KgAppSelect.businessManager': string;
|
|
3
|
+
'kg.KgAppSelect.dataManager': string;
|
|
4
|
+
'kg.KgAppSelect.sys': string;
|
|
5
|
+
'kg.KgAppSelect.tooltip': string;
|
|
6
|
+
'kg.KgButton.noApiUrl': string;
|
|
7
|
+
'kg.KgButton.noVarSubmitConfig': string;
|
|
8
|
+
'kg.KgCanvas.enterFullscreen': string;
|
|
9
|
+
'kg.KgCanvas.exitFullscreen': string;
|
|
10
|
+
'kg.KgCanvas.originalScale': string;
|
|
11
|
+
'kg.KgCanvas.overviewScale': string;
|
|
12
|
+
'kg.KgCanvas.reload': string;
|
|
13
|
+
'kg.KgFormItem.formValidationMessageForGT': string;
|
|
14
|
+
'kg.KgFormItem.formValidationMessageForGTE': string;
|
|
15
|
+
'kg.KgFormItem.formValidationMessageForInvalidFloat': string;
|
|
16
|
+
'kg.KgFormItem.formValidationMessageForInvalidInteger': string;
|
|
17
|
+
'kg.KgFormItem.formValidationMessageForInvalidJSON': string;
|
|
18
|
+
'kg.KgFormItem.formValidationMessageForInvalidLetter': string;
|
|
19
|
+
'kg.KgFormItem.formValidationMessageForInvalidLowerLetter': string;
|
|
20
|
+
'kg.KgFormItem.formValidationMessageForInvalidUpperLetter': string;
|
|
21
|
+
'kg.KgFormItem.formValidationMessageForLT': string;
|
|
22
|
+
'kg.KgFormItem.formValidationMessageForLTE': string;
|
|
23
|
+
'kg.KgFormItem.formValidationMessageForMaxLength': string;
|
|
24
|
+
'kg.KgFormItem.formValidationMessageForMinLength': string;
|
|
25
|
+
'kg.KgFormItem.formValidationMessageForRegularExpression': string;
|
|
26
|
+
'kg.KgPageDdaCreate.confirm-cancel': string;
|
|
27
|
+
'kg.KgPageDdaCreate.done': string;
|
|
28
|
+
'kg.KgPageDdaCreate.next-step': string;
|
|
29
|
+
'kg.KgPageDdaCreate.previous-step': string;
|
|
30
|
+
'kg.KgPageDdaCreateBasic.form-id': string;
|
|
31
|
+
'kg.KgPageDdaCreateBasic.form-name': string;
|
|
32
|
+
'kg.KgPageDdaCreateBasic.maintenance': string;
|
|
33
|
+
'kg.KgPageDdaCreateBasic.sql': string;
|
|
34
|
+
'kg.KgPageDdaCreateBasic.type': string;
|
|
35
|
+
'kg.KgPageDdaCreateButton.button-var-name-reserved': string;
|
|
36
|
+
'kg.KgPageDdaCreateButton.button-var-name-used': string;
|
|
37
|
+
'kg.KgPageDdaCreateMenu.parent-menu': string;
|
|
38
|
+
'kg.KgPageDdaCreateSearch.available': string;
|
|
39
|
+
'kg.KgPageDdaCreateSearch.column-desc': string;
|
|
40
|
+
'kg.KgPageDdaCreateSearch.column-name': string;
|
|
41
|
+
'kg.KgPageDdaCreateSearch.column-type': string;
|
|
42
|
+
'kg.KgPageDdaCreateSearch.selected': string;
|
|
43
|
+
'kg.KgPageDdaCreateSubmit.available': string;
|
|
44
|
+
'kg.KgPageDdaCreateSubmit.column-desc': string;
|
|
45
|
+
'kg.KgPageDdaCreateSubmit.column-name': string;
|
|
46
|
+
'kg.KgPageDdaCreateSubmit.column-type': string;
|
|
47
|
+
'kg.KgPageDdaCreateSubmit.selected': string;
|
|
48
|
+
'kg.KgPageDdaCreateTable.available': string;
|
|
49
|
+
'kg.KgPageDdaCreateTable.column-desc': string;
|
|
50
|
+
'kg.KgPageDdaCreateTable.column-name': string;
|
|
51
|
+
'kg.KgPageDdaCreateTable.column-type': string;
|
|
52
|
+
'kg.KgPageDdaCreateTable.selected': string;
|
|
53
|
+
'kg.KgSearch.title': string;
|
|
54
|
+
'kg.KgSearchConfigModal.BETWEEN': string;
|
|
55
|
+
'kg.KgSearchConfigModal.BETWEEN-desc': string;
|
|
56
|
+
'kg.KgSearchConfigModal.CONTAIN': string;
|
|
57
|
+
'kg.KgSearchConfigModal.CONTAIN-desc': string;
|
|
58
|
+
'kg.KgSearchConfigModal.EMPTY': string;
|
|
59
|
+
'kg.KgSearchConfigModal.EMPTY-desc': string;
|
|
60
|
+
'kg.KgSearchConfigModal.END_WITH': string;
|
|
61
|
+
'kg.KgSearchConfigModal.END_WITH-desc': string;
|
|
62
|
+
'kg.KgSearchConfigModal.EQ': string;
|
|
63
|
+
'kg.KgSearchConfigModal.EQ-desc': string;
|
|
64
|
+
'kg.KgSearchConfigModal.GT': string;
|
|
65
|
+
'kg.KgSearchConfigModal.GT-desc': string;
|
|
66
|
+
'kg.KgSearchConfigModal.GTE': string;
|
|
67
|
+
'kg.KgSearchConfigModal.GTE-desc': string;
|
|
68
|
+
'kg.KgSearchConfigModal.IN': string;
|
|
69
|
+
'kg.KgSearchConfigModal.IN-desc': string;
|
|
70
|
+
'kg.KgSearchConfigModal.LT': string;
|
|
71
|
+
'kg.KgSearchConfigModal.LT-desc': string;
|
|
72
|
+
'kg.KgSearchConfigModal.LTE': string;
|
|
73
|
+
'kg.KgSearchConfigModal.LTE-desc': string;
|
|
74
|
+
'kg.KgSearchConfigModal.NE': string;
|
|
75
|
+
'kg.KgSearchConfigModal.NE-desc': string;
|
|
76
|
+
'kg.KgSearchConfigModal.NOT_EMPTY': string;
|
|
77
|
+
'kg.KgSearchConfigModal.NOT_EMPTY-desc': string;
|
|
78
|
+
'kg.KgSearchConfigModal.START_WITH': string;
|
|
79
|
+
'kg.KgSearchConfigModal.START_WITH-desc': string;
|
|
80
|
+
'kg.KgSearchConfigModal.close': string;
|
|
81
|
+
'kg.KgSearchConfigModal.formTitle': string;
|
|
82
|
+
'kg.KgSearchConfigModal.pleaseSelectVarProfileMaster': string;
|
|
83
|
+
'kg.KgSqlClient.ResultTab.ellapseLabel': string;
|
|
84
|
+
'kg.KgSqlClient.ResultTab.messageLabel': string;
|
|
85
|
+
'kg.KgSqlClient.ResultTab.resultStatusLabel': string;
|
|
86
|
+
'kg.KgSqlClient.ResultTab.rowsAffected': string;
|
|
87
|
+
'kg.KgSqlClient.ResultTab.rowsTotalLabel': string;
|
|
88
|
+
'kg.KgSqlClient.ResultTab.tabTitlePrefix': string;
|
|
89
|
+
'kg.KgSqlClient.Toolbar.Top.deleteCurrentTemplate': string;
|
|
90
|
+
'kg.KgSqlClient.Toolbar.Top.saveAsTemplate': string;
|
|
91
|
+
'kg.KgSqlClient.Toolbar.Top.saveCurrentTemplate': string;
|
|
92
|
+
'kg.KgSqlClient.Toolbar.Top.viewHistory': string;
|
|
93
|
+
'kg.KgSqlClient.Toolbar.Top.viewTemplate': string;
|
|
94
|
+
'kg.KgTable.apiNotSupportDynamicQuery': string;
|
|
95
|
+
'kg.KgTable.column': string;
|
|
96
|
+
'kg.KgTable.config': string;
|
|
97
|
+
'kg.KgTable.emptyText': string;
|
|
98
|
+
'kg.KgTable.isShowDescription': string;
|
|
99
|
+
'kg.KgTable.other': string;
|
|
100
|
+
'kg.KgTable.request-fail-error': string;
|
|
101
|
+
'kg.KgTable.request-fail-no-data': string;
|
|
102
|
+
'kg.KgTable.rowHeight': string;
|
|
103
|
+
'kg.KgTable.rowHeightH': string;
|
|
104
|
+
'kg.KgTable.rowHeightL': string;
|
|
105
|
+
'kg.KgTable.rowHeightM': string;
|
|
106
|
+
'kg.KgTable.save-var-grid-master-as-success-message': string;
|
|
107
|
+
'kg.KgTable.saveVarGridMaster': string;
|
|
108
|
+
'kg.KgTable.saveVarGridMasterAs': string;
|
|
109
|
+
'kg.KgTable.saveVarGridMasterSuccessMessage': string;
|
|
110
|
+
'kg.KgTable.varGridMasters': string;
|
|
111
|
+
'kg.KgTableHeadCell.align': string;
|
|
112
|
+
'kg.KgTableHeadCell.alignCenter': string;
|
|
113
|
+
'kg.KgTableHeadCell.alignLeft': string;
|
|
114
|
+
'kg.KgTableHeadCell.alignRight': string;
|
|
115
|
+
'kg.KgTableHeadCell.hide': string;
|
|
116
|
+
'kg.KgTableHeadCell.isEllipsis': string;
|
|
117
|
+
'kg.KgTableHeadCell.isFilter': string;
|
|
118
|
+
'kg.KgTableHeadCell.isFixToLeft': string;
|
|
119
|
+
'kg.KgTableHeadCell.isFixToRight': string;
|
|
120
|
+
'kg.KgTableHeadCell.isSort': string;
|
|
121
|
+
'kg.KgTableInfo.check': string;
|
|
122
|
+
'kg.KgTableInfo.clearCheck': string;
|
|
123
|
+
'kg.KgTableInfo.clearTable': string;
|
|
124
|
+
'kg.KgTableInfo.locate': string;
|
|
125
|
+
'kg.KgTableInfo.row': string;
|
|
126
|
+
'kg.KgTableSettingVarGridMasterSaveAs.title': string;
|
|
127
|
+
'kg.KgVarConfig.VarGridConfig': string;
|
|
128
|
+
'kg.KgVarConfig.VarGridMaster': string;
|
|
129
|
+
'kg.KgVarConfig.VarProfileConfig': string;
|
|
130
|
+
'kg.KgVarConfig.VarProfileMaster': string;
|
|
131
|
+
'kg.KgVarConfig.action': string;
|
|
132
|
+
'kg.KgVarConfig.allForm': string;
|
|
133
|
+
'kg.KgVarConfig.allLanguage': string;
|
|
134
|
+
'kg.KgVarConfig.canNotUpdateSystemVarGridMaster': string;
|
|
135
|
+
'kg.KgVarConfig.canNotUpdateSystemVarProfileMaster': string;
|
|
136
|
+
'kg.KgVarConfig.confirm': string;
|
|
137
|
+
'kg.KgVarConfig.createConfig': string;
|
|
138
|
+
'kg.KgVarConfig.currentForm': string;
|
|
139
|
+
'kg.KgVarConfig.currentLanguage': string;
|
|
140
|
+
'kg.KgVarConfig.customLevel': string;
|
|
141
|
+
'kg.KgVarConfig.emptyPageSizeOptions': string;
|
|
142
|
+
'kg.KgVarConfig.formId': string;
|
|
143
|
+
'kg.KgVarConfig.formValidationMessageForMaxAndMin': string;
|
|
144
|
+
'kg.KgVarConfig.formValidationMessageForMaxLengthAndMinLength': string;
|
|
145
|
+
'kg.KgVarConfig.invalidCommandParameter': string;
|
|
146
|
+
'kg.KgVarConfig.invalidPageSizeOption': string;
|
|
147
|
+
'kg.KgVarConfig.invalidPageSizeOptions': string;
|
|
148
|
+
'kg.KgVarConfig.pleaseSelectVariable': string;
|
|
149
|
+
'kg.KgVarConfig.required': string;
|
|
150
|
+
'kg.KgVarConfig.tabButton': string;
|
|
151
|
+
'kg.KgVarConfig.tabChild': string;
|
|
152
|
+
'kg.KgVarConfig.tabSearch': string;
|
|
153
|
+
'kg.KgVarConfig.tabSubmit': string;
|
|
154
|
+
'kg.KgVarConfig.tabTable': string;
|
|
155
|
+
'kg.KgVarConfig.variable': string;
|
|
156
|
+
'kg.KgVarConfigModalButton.VarButton': string;
|
|
157
|
+
'kg.KgVarConfigModalButton.VarButtonConfig': string;
|
|
158
|
+
'kg.KgVarConfigModalChild.childVarName': string;
|
|
159
|
+
'kg.KgVarConfigModalChild.childVarNameDuplicate': string;
|
|
160
|
+
'kg.KgVarConfigModalChild.childVarNameRequired': string;
|
|
161
|
+
'kg.KgVarConfigModalChild.parentVarName': string;
|
|
162
|
+
'kg.KgVarConfigModalChild.parentVarNameDuplicate': string;
|
|
163
|
+
'kg.KgVarConfigModalChild.parentVarNameRequired': string;
|
|
164
|
+
'kg.KgVarConfigModalSubmit.VarSubmitConfig': string;
|
|
165
|
+
'kg.KgVarConfigModalSubmit.VarSubmitDetail': string;
|
|
166
|
+
'kg.KgVarConfigModalSubmitVarSubmitConfig.invalidWidthForSpan': string;
|
|
167
|
+
'kg.KgVarConfigModalTableVarGridMaster.DESC': string;
|
|
168
|
+
'kg.KgVarConfigModalTableVarGridMaster.DESC__UPDATE_LINK': string;
|
|
169
|
+
'kg.KgVarConfigModalTableVarGridMaster.FILE_SIZE': string;
|
|
170
|
+
'kg.KgVarConfigModalTableVarGridMaster.ICON': string;
|
|
171
|
+
'kg.KgVarConfigModalTableVarGridMaster.IMAGE': string;
|
|
172
|
+
'kg.KgVarConfigModalTableVarGridMaster.PROGRESS': string;
|
|
173
|
+
'kg.KgVarConfigModalTableVarGridMaster.ROUTE_LINK': string;
|
|
174
|
+
'kg.KgVarConfigModalTableVarGridMaster.UPDATE_LINK': string;
|
|
175
|
+
'kg.KgVarConfigModalTableVarGridMaster.YN': string;
|
|
176
|
+
'kg.KgVarConfigModalTableVarGridMaster.center': string;
|
|
177
|
+
'kg.KgVarConfigModalTableVarGridMaster.left': string;
|
|
178
|
+
'kg.KgVarConfigModalTableVarGridMaster.notSort': string;
|
|
179
|
+
'kg.KgVarConfigModalTableVarGridMaster.right': string;
|
|
180
|
+
'kg.KgVarConfigSelectFormIdModal.title': string;
|
|
181
|
+
'kg.KgWarehouse.reloadMessage': string;
|
|
182
|
+
'kg.KgWarehouse.selectWarehouse': string;
|
|
183
|
+
'kg.KgWarehouse.title': string;
|
|
184
|
+
'kg.KgWarehouse.warehouse': string;
|
|
185
|
+
'kg.action': string;
|
|
186
|
+
'kg.add': string;
|
|
187
|
+
'kg.allUser': string;
|
|
188
|
+
'kg.asc': string;
|
|
189
|
+
'kg.button': string;
|
|
190
|
+
'kg.cancel': string;
|
|
191
|
+
'kg.close': string;
|
|
192
|
+
'kg.confirm': string;
|
|
193
|
+
'kg.confirmDelete': string;
|
|
194
|
+
'kg.copy': string;
|
|
195
|
+
'kg.copySuccess': string;
|
|
196
|
+
'kg.create': string;
|
|
197
|
+
'kg.createSuccess': string;
|
|
198
|
+
'kg.default': string;
|
|
199
|
+
'kg.delete': string;
|
|
200
|
+
'kg.deleteSuccess': string;
|
|
201
|
+
'kg.desc': string;
|
|
202
|
+
'kg.edit': string;
|
|
203
|
+
'kg.empty': string;
|
|
204
|
+
'kg.emptyText': string;
|
|
205
|
+
'kg.execute': string;
|
|
206
|
+
'kg.executeSuccess': string;
|
|
207
|
+
'kg.export': string;
|
|
208
|
+
'kg.exportSuccess': string;
|
|
209
|
+
'kg.fail': string;
|
|
210
|
+
'kg.formId': string;
|
|
211
|
+
'kg.formName': string;
|
|
212
|
+
'kg.formValidationFail': string;
|
|
213
|
+
'kg.import': string;
|
|
214
|
+
'kg.import-template': string;
|
|
215
|
+
'kg.importSuccess': string;
|
|
216
|
+
'kg.importTemplate': string;
|
|
217
|
+
'kg.loading': string;
|
|
218
|
+
'kg.lookup': string;
|
|
219
|
+
'kg.millisecond': string;
|
|
220
|
+
'kg.no': string;
|
|
221
|
+
'kg.ok': string;
|
|
222
|
+
'kg.query': string;
|
|
223
|
+
'kg.refresh': string;
|
|
224
|
+
'kg.required': string;
|
|
225
|
+
'kg.reset': string;
|
|
226
|
+
'kg.save': string;
|
|
227
|
+
'kg.search': string;
|
|
228
|
+
'kg.selectAll': string;
|
|
229
|
+
'kg.show': string;
|
|
230
|
+
'kg.succeed': string;
|
|
231
|
+
'kg.success': string;
|
|
232
|
+
'kg.tip': string;
|
|
233
|
+
'kg.update': string;
|
|
234
|
+
'kg.updateSuccess': string;
|
|
235
|
+
'kg.yes': string;
|
|
236
|
+
};
|
|
237
|
+
export default _default;
|
package/dist/src/i18n/index.d.ts
CHANGED