@kengic/vue 0.30.1-beta.66 → 0.30.1-beta.67
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/kengic-vue.js
CHANGED
|
@@ -164636,7 +164636,7 @@ function _interopRequireDefault(oe) {
|
|
|
164636
164636
|
return oe && oe.__esModule ? oe : { default: oe };
|
|
164637
164637
|
}
|
|
164638
164638
|
default_1 = zhTW.default = _zhCHT.default;
|
|
164639
|
-
const version = "0.30.1-beta.
|
|
164639
|
+
const version = "0.30.1-beta.67", KG = {
|
|
164640
164640
|
DB_COLUMN_TYPE: {
|
|
164641
164641
|
NCHAR: "NCHAR",
|
|
164642
164642
|
NVARCHAR: "NVARCHAR"
|
|
@@ -170032,7 +170032,7 @@ const useKgStore = defineStore("Kg", () => {
|
|
|
170032
170032
|
if ($i && Ka)
|
|
170033
170033
|
for (let vi of Object.keys(Ka)) {
|
|
170034
170034
|
const Ei = Ka[vi];
|
|
170035
|
-
$i = $i.replaceAll(new RegExp(
|
|
170035
|
+
$i = $i.replaceAll(new RegExp(`\\{${vi}\\}`, "g"), Ei);
|
|
170036
170036
|
}
|
|
170037
170037
|
return $i;
|
|
170038
170038
|
}
|
|
@@ -2,13 +2,13 @@ import { Q } from '@thymine/xunee';
|
|
|
2
2
|
import { Agent, Creator, Destroyer, JackUpTransferStation, PalletStackerStation, PhotoelectricSensor, Station } from './KgSimulator.model';
|
|
3
3
|
export declare type IUseDraw = {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* 绘制环形输送线--绘制传感器.
|
|
6
6
|
*
|
|
7
7
|
* @param param
|
|
8
|
-
* @param param.
|
|
8
|
+
* @param param.gdcgq 传感器.
|
|
9
9
|
*/
|
|
10
|
-
$CircularConveyor$
|
|
11
|
-
|
|
10
|
+
$CircularConveyor$drawCGQ(param?: {
|
|
11
|
+
gdcgq: PhotoelectricSensor;
|
|
12
12
|
}): Q.Node | null;
|
|
13
13
|
/**
|
|
14
14
|
* 绘制环形输送线--绘制创建者.
|
|
@@ -19,6 +19,15 @@ export declare type IUseDraw = {
|
|
|
19
19
|
$CircularConveyor$drawCJZ(param?: {
|
|
20
20
|
creator: Creator;
|
|
21
21
|
}): Q.Node | null;
|
|
22
|
+
/**
|
|
23
|
+
* 绘制环形输送线--绘制代理者.
|
|
24
|
+
*
|
|
25
|
+
* @param param
|
|
26
|
+
* @param param.agent 代理者.
|
|
27
|
+
*/
|
|
28
|
+
$CircularConveyor$drawDLZ(param?: {
|
|
29
|
+
agent: Agent;
|
|
30
|
+
}): Q.Node | null;
|
|
22
31
|
/**
|
|
23
32
|
* 绘制环形输送线--绘制叠盘机.
|
|
24
33
|
*
|
|
@@ -29,13 +38,13 @@ export declare type IUseDraw = {
|
|
|
29
38
|
dpj: PalletStackerStation;
|
|
30
39
|
}): Q.Node | null;
|
|
31
40
|
/**
|
|
32
|
-
*
|
|
41
|
+
* 绘制环形输送线--绘制输送机.
|
|
33
42
|
*
|
|
34
43
|
* @param param
|
|
35
|
-
* @param param.
|
|
44
|
+
* @param param.ptssj 输送机.
|
|
36
45
|
*/
|
|
37
|
-
$CircularConveyor$
|
|
38
|
-
|
|
46
|
+
$CircularConveyor$drawSSJ(param?: {
|
|
47
|
+
ptssj: Station;
|
|
39
48
|
}): Q.Node | null;
|
|
40
49
|
/**
|
|
41
50
|
* 绘制环形输送线--绘制销毁者.
|
|
@@ -47,22 +56,13 @@ export declare type IUseDraw = {
|
|
|
47
56
|
destroyer: Destroyer;
|
|
48
57
|
}): Q.Node | null;
|
|
49
58
|
/**
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
* @param param
|
|
53
|
-
* @param param.gdcgq 传感器.
|
|
54
|
-
*/
|
|
55
|
-
$CircularConveyor$drawCGQ(param?: {
|
|
56
|
-
gdcgq: PhotoelectricSensor;
|
|
57
|
-
}): Q.Node | null;
|
|
58
|
-
/**
|
|
59
|
-
* 绘制环形输送线--绘制输送机.
|
|
59
|
+
* 绘制环形输送线--绘制移栽机.
|
|
60
60
|
*
|
|
61
61
|
* @param param
|
|
62
|
-
* @param param.
|
|
62
|
+
* @param param.dsyzj 移栽机.
|
|
63
63
|
*/
|
|
64
|
-
$CircularConveyor$
|
|
65
|
-
|
|
64
|
+
$CircularConveyor$drawYZJ(param?: {
|
|
65
|
+
dsyzj: JackUpTransferStation;
|
|
66
66
|
}): Q.Node | null;
|
|
67
67
|
/**
|
|
68
68
|
* 绘制图形.
|
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.67",
|
|
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",
|