@kengic/vue 0.28.1-beta.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 +13 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +14563 -14478
- 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. 事件回调函数参数名称变更
|