@kengic/vue 0.32.0 → 0.32.2
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/CHANGELOG.md +20 -2
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +171 -154
- package/dist/src/component/KgWarehouse/KgWarehouse.hooks.d.ts +1 -1
- package/dist/src/config/config.store.d.ts +1 -1
- package/dist/src/model/index.d.ts +137 -68
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
|
-
# 0.32.0
|
|
1
|
+
# 0.32.0
|
|
2
2
|
|
|
3
|
-
### 1.
|
|
3
|
+
### 1. doKgWorkStation() 方法替换为 useKgWorkStation() 方法
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
// 旧
|
|
7
|
+
// --------------------------------------------------
|
|
8
|
+
import { doKgWorkStation } from '@kengic/vue';
|
|
9
|
+
|
|
10
|
+
const kgWorkStation = doKgWorkStation();
|
|
11
|
+
|
|
12
|
+
// 新
|
|
13
|
+
// --------------------------------------------------
|
|
14
|
+
import { useKgWorkStation } from '@kengic/vue';
|
|
15
|
+
|
|
16
|
+
const kgWorkStation = useKgWorkStation();
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### 2. kgWorkStation.workStation 属性替换为 kgWorkStation.currentWorkStation 属性
|
|
20
|
+
|
|
21
|
+
### 3. kgWorkStation.workStationArea 属性替换为 kgWorkStation.currentWorkArea 属性
|
|
4
22
|
|
|
5
23
|
# 0.31.0
|
|
6
24
|
|