@kengic/vue 0.26.6-beta.138 → 0.26.6-beta.139
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/dist/kengic-vue.js +2265 -2265
- package/dist/src/component/KgVar/index.vm.d.ts +8 -0
- package/package.json +1 -1
@@ -38,10 +38,18 @@ export declare type IKgSlots = {
|
|
38
38
|
/** 表格底部的汇总行.单元格. */
|
39
39
|
'summary.bodyCell'?: (param: IKgTableSlotParams['summary.bodyCell']) => any;
|
40
40
|
};
|
41
|
+
/** 按钮下面. */
|
42
|
+
afterKgButton?: () => any;
|
43
|
+
/** 查询条件下面. */
|
44
|
+
afterKgSearch?: () => any;
|
41
45
|
/** 表格下面. */
|
42
46
|
afterKgTable?: () => any;
|
43
47
|
/** 按钮上面. */
|
44
48
|
beforeKgButton?: () => any;
|
49
|
+
/** 查询条件上面. */
|
50
|
+
beforeKgSearch?: () => any;
|
51
|
+
/** 表格上面. */
|
52
|
+
beforeKgTable?: () => any;
|
45
53
|
/** 页面底部. */
|
46
54
|
bottom?: () => any;
|
47
55
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.26.6-beta.
|
3
|
+
"version": "0.26.6-beta.139",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|