el-plus-crud 0.1.129 → 0.1.131
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 +9 -0
- package/dist/components/el-plus-table/components/header.vue.d.ts +6 -0
- package/dist/el-plus-crud.mjs +2435 -2406
- package/dist/el-plus-crud.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/util/queryCache.d.ts +3 -0
- package/docs/skills/el-plus-crud-table/SKILL.md +1 -0
- package/example/App.vue +17 -2
- package/example/ListDemo.vue +34 -10
- package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +7 -2
- package/lib/components/el-plus-table/ElPlusTable.vue +25 -5
- package/lib/components/el-plus-table/components/header.vue +21 -1
- package/lib/util/queryCache.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.131](https://github.com/KDJack/el-plus-crud/compare/v0.1.130...v0.1.131) (2026-08-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **table:** 新增 cacheQuery,返回列表时恢复筛选/分页/Tab/折叠状态并重查最新数据 ([e2500c0](https://github.com/KDJack/el-plus-crud/commit/e2500c0fdfc00b0a8f7b22ef3c34eb898e9edd6d))
|
|
11
|
+
|
|
12
|
+
### [0.1.130](https://github.com/KDJack/el-plus-crud/compare/v0.1.129...v0.1.130) (2026-08-20)
|
|
13
|
+
|
|
5
14
|
### [0.1.129](https://github.com/KDJack/el-plus-crud/compare/v0.1.128...v0.1.129) (2026-08-20)
|
|
6
15
|
|
|
7
16
|
### [0.1.128](https://github.com/KDJack/el-plus-crud/compare/v0.1.127...v0.1.128) (2026-08-20)
|
|
@@ -23,6 +23,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
23
23
|
layoutSelect?: boolean | undefined;
|
|
24
24
|
initLoad?: boolean | undefined;
|
|
25
25
|
isInitLoad?: boolean | undefined;
|
|
26
|
+
defaultCollapsed?: boolean | undefined;
|
|
27
|
+
defaultLayout?: string | undefined;
|
|
26
28
|
}>, {
|
|
27
29
|
tbName: string;
|
|
28
30
|
isDialog: boolean;
|
|
@@ -32,6 +34,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
32
34
|
getData: () => any;
|
|
33
35
|
initCol: typeof initCol;
|
|
34
36
|
resetQuery: typeof handelReset;
|
|
37
|
+
isCollapsed: import('vue').Ref<boolean, boolean>;
|
|
38
|
+
layoutType: import('vue').Ref<string, string>;
|
|
35
39
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
40
|
reset: (...args: any[]) => void;
|
|
37
41
|
query: (...args: any[]) => void;
|
|
@@ -51,6 +55,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
51
55
|
layoutSelect?: boolean | undefined;
|
|
52
56
|
initLoad?: boolean | undefined;
|
|
53
57
|
isInitLoad?: boolean | undefined;
|
|
58
|
+
defaultCollapsed?: boolean | undefined;
|
|
59
|
+
defaultLayout?: string | undefined;
|
|
54
60
|
}>, {
|
|
55
61
|
tbName: string;
|
|
56
62
|
isDialog: boolean;
|