@kengic/vue 0.26.6-beta.60 → 0.26.6-beta.63
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 +16 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +18525 -18244
- package/dist/src/{pages/KgVarFactory → components/KgVar}/KgVarFactory.d.ts +9 -10
- package/dist/src/components/KgVar/index.d.ts +1 -0
- package/dist/src/components/KgVar/index.hooks.d.ts +7 -2
- package/dist/src/components/KgVar/index.store.d.ts +22 -9
- package/dist/src/components/KgVar/index.vm.d.ts +2 -0
- package/dist/src/pages/index.d.ts +0 -1
- package/dist/src/utils/kg-logger.util.d.ts +0 -10
- package/package.json +2 -2
- package/dist/src/pages/KgVarFactory/index.d.ts +0 -1
- /package/dist/{close-outlined-DMcSQWxQ.f72eb8ff.mjs → close-outlined-DMcSQWxQ.b352994e.mjs} +0 -0
- /package/dist/{fullscreen-exit-outlined-X1iYkFc4.89b5dd36.mjs → fullscreen-exit-outlined-X1iYkFc4.a7d2bb20.mjs} +0 -0
- /package/dist/{fullscreen-outlined-DDBrsRcy.edd81be4.mjs → fullscreen-outlined-DDBrsRcy.aba529f6.mjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# 0.27.0
|
|
2
|
+
|
|
3
|
+
### 1. kgVar.onRetrieve() 事件回调函数返回类型变更
|
|
4
|
+
|
|
5
|
+
```typescript
|
|
6
|
+
// 旧
|
|
7
|
+
// --------------------------------------------------
|
|
8
|
+
kgVar.onRetrieve(() => {});
|
|
9
|
+
|
|
10
|
+
// 新
|
|
11
|
+
// --------------------------------------------------
|
|
12
|
+
kgVar.onRetrieve(async ({}) => {
|
|
13
|
+
return false;
|
|
14
|
+
});
|
|
15
|
+
```
|
|
16
|
+
|
|
1
17
|
# 0.26.0
|
|
2
18
|
|
|
3
19
|
### 1. useLocale, useLocaleStore, getAppEnvConfig 提取到组件库
|