@kengic/vue 0.28.0 → 0.28.1-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +23 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +14564 -14479
- package/dist/src/component/KgForm/KgForm.event.d.ts +3 -3
- package/dist/src/component/KgSubmit/KgSubmit.event.d.ts +6 -0
- package/dist/src/component/KgTable/KgTable.d.ts +3 -3
- package/dist/src/component/KgTable/KgTable.store.d.ts +7 -0
- package/dist/src/component/KgTable/KgTable.vm.d.ts +1 -1
- package/dist/src/component/KgVar/KgVar.hooks.d.ts +2 -1
- package/dist/src/component/KgVarConfig/KgVarConfig.hooks.d.ts +6 -2
- package/dist/src/component/KgVarConfig/KgVarConfig.store.d.ts +6 -2
- package/dist/src/component/KgVarConfig/components/KgVarConfigModal.d.ts +42 -4
- package/dist/src/const/const.vm.d.ts +17 -0
- package/dist/src/service/http-client.d.ts +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
# 0.29.0
|
2
|
+
|
3
|
+
### 1. 后端查询接口支持了高级查询后, 不再需要添加响应头 `HEADER_KG_IS_DYNAMIC_QUERY`
|
4
|
+
|
5
|
+
```java
|
6
|
+
// 旧
|
7
|
+
// --------------------------------------------------
|
8
|
+
response.addHeader(VarConstant.HEADER_KG_IS_DYNAMIC_QUERY, Boolean.TRUE.toString());
|
9
|
+
|
10
|
+
// 新
|
11
|
+
// --------------------------------------------------
|
12
|
+
```
|
13
|
+
|
1
14
|
# 0.28.0
|
2
15
|
|
3
16
|
### 1. 事件回调函数参数名称变更
|
@@ -30,6 +43,16 @@ kgVar.kgForm.onLookupOk(async ({ varNam }) => {});
|
|
30
43
|
kgVar.kgForm.onLookupOk(async ({ varName }) => {});
|
31
44
|
```
|
32
45
|
|
46
|
+
```typescript
|
47
|
+
// 旧
|
48
|
+
// --------------------------------------------------
|
49
|
+
kgVar.kgForm.onSelectChange(async ({ var_nam }) => {});
|
50
|
+
|
51
|
+
// 新
|
52
|
+
// --------------------------------------------------
|
53
|
+
kgVar.kgForm.onSelectChange(async ({ varName }) => {});
|
54
|
+
```
|
55
|
+
|
33
56
|
### 2. 部分方法和对象提取到组件库
|
34
57
|
|
35
58
|
```typescript
|