@kengic/vue 0.26.0 → 0.26.1
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 +1 -5
- package/dist/kengic-vue.js +11571 -11479
- package/dist/src/components/KgSubmit/index.hooks.d.ts +7 -0
- package/dist/src/components/KgSubmit/index.store.d.ts +7 -0
- package/dist/src/components/KgVar/index.hooks.d.ts +22 -0
- package/dist/src/components/KgVar/index.store.d.ts +4 -1
- package/dist/src/utils/kg.util.d.ts +6 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# 0.26.0
|
2
2
|
|
3
|
-
### 1.
|
3
|
+
### 1. useLocale, useLocaleStore, getAppEnvConfig 提取到组件库
|
4
4
|
|
5
5
|
```typescript
|
6
6
|
// 旧
|
@@ -12,8 +12,6 @@ import { useLocale } from '/@/locales/useLocale';
|
|
12
12
|
import { useLocale } from '@kengic/vue';
|
13
13
|
```
|
14
14
|
|
15
|
-
### 1. KgVarProps.KgBackgroundGray 重命名为 KgVarProps.kgBackgroundGray
|
16
|
-
|
17
15
|
```typescript
|
18
16
|
// 旧
|
19
17
|
// --------------------------------------------------
|
@@ -24,8 +22,6 @@ import { useLocaleStore } from '/@/store/modules/locale';
|
|
24
22
|
import { useLocaleStore } from '@kengic/vue';
|
25
23
|
```
|
26
24
|
|
27
|
-
### 1. KgVarProps.KgBackgroundGray 重命名为 KgVarProps.kgBackgroundGray
|
28
|
-
|
29
25
|
```typescript
|
30
26
|
// 旧
|
31
27
|
// --------------------------------------------------
|