el-plus-crud 0.1.128 → 0.1.129
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 +2 -0
- package/dist/components/el-plus-table/ElPlusTable.vue.d.ts +6 -0
- package/dist/el-plus-crud.mjs +2972 -2921
- package/dist/el-plus-crud.umd.js +1 -1
- package/dist/util/queryCache.d.ts +40 -0
- package/docs/skills/el-plus-crud-table/SKILL.md +17 -0
- package/example/App.vue +3 -0
- package/example/DetailDemo.vue +16 -0
- package/example/ListDemo.vue +69 -0
- package/example/Shell.vue +3 -0
- package/example/main.js +16 -1
- package/lib/components/el-plus-table/ElPlusTable.vue +67 -4
- package/lib/util/queryCache.ts +110 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
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.129](https://github.com/KDJack/el-plus-crud/compare/v0.1.128...v0.1.129) (2026-08-20)
|
|
6
|
+
|
|
5
7
|
### [0.1.128](https://github.com/KDJack/el-plus-crud/compare/v0.1.127...v0.1.128) (2026-08-20)
|
|
6
8
|
|
|
7
9
|
|
|
@@ -22,6 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
initLoad?: boolean | undefined;
|
|
24
24
|
isStorePageData?: boolean | undefined;
|
|
25
|
+
cacheQuery?: string | boolean | undefined;
|
|
25
26
|
}>, {
|
|
26
27
|
modelValue: null;
|
|
27
28
|
type: string;
|
|
@@ -40,10 +41,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
40
41
|
loading: boolean;
|
|
41
42
|
initLoad: boolean;
|
|
42
43
|
isStorePageData: boolean;
|
|
44
|
+
cacheQuery: boolean;
|
|
43
45
|
}>>, {
|
|
44
46
|
tableRef: import('vue').Ref<any, any>;
|
|
45
47
|
reload: (isTab?: boolean) => Promise<any[]>;
|
|
46
48
|
tableData: import('vue').Ref<any[], any[]>;
|
|
49
|
+
refresh: () => Promise<any[]>;
|
|
47
50
|
changeSelect: (itemList: any[], isSelect?: boolean) => void;
|
|
48
51
|
resetSelect: () => void;
|
|
49
52
|
initCol: () => void;
|
|
@@ -85,6 +88,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
85
88
|
loading?: boolean | undefined;
|
|
86
89
|
initLoad?: boolean | undefined;
|
|
87
90
|
isStorePageData?: boolean | undefined;
|
|
91
|
+
cacheQuery?: string | boolean | undefined;
|
|
88
92
|
}>, {
|
|
89
93
|
modelValue: null;
|
|
90
94
|
type: string;
|
|
@@ -103,6 +107,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
103
107
|
loading: boolean;
|
|
104
108
|
initLoad: boolean;
|
|
105
109
|
isStorePageData: boolean;
|
|
110
|
+
cacheQuery: boolean;
|
|
106
111
|
}>>> & Readonly<{
|
|
107
112
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
108
113
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -135,6 +140,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
135
140
|
colMinWidth: string;
|
|
136
141
|
isTempId: boolean;
|
|
137
142
|
isStorePageData: boolean;
|
|
143
|
+
cacheQuery: boolean | string;
|
|
138
144
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
139
145
|
tabTop?(_: {}): any;
|
|
140
146
|
default?(_: {}): any;
|