el-plus-crud 0.1.113 → 0.1.115
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 +16 -0
- package/dist/components/el-plus-table/ElPlusTable.vue.d.ts +2 -5
- package/dist/el-plus-crud.mjs +3136 -3127
- package/dist/el-plus-crud.umd.js +1 -1
- package/dist/style.css +1 -1
- package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +6 -2
- package/lib/components/el-plus-form/components/ElPlusFormUpload.vue +5 -1
- package/lib/components/el-plus-table/ElPlusTable.vue +15 -3
- package/lib/components/el-plus-table/components/columnItem.vue +4 -1
- package/lib/config/index.ts +5 -0
- package/lib/util/index.ts +11 -8
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/docs/file/CompactUploadForm_v3_Preview.html +0 -433
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
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.115](https://github.com/KDJack/el-plus-crud/compare/v0.1.114...v0.1.115) (2026-08-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **form:** textarea quickFill 支持函数式动态返回候选词 ([baba7b3](https://github.com/KDJack/el-plus-crud/commit/baba7b3aaea1a35d27e2d17d05a89c646563e6bc))
|
|
11
|
+
* **table:** 表头默认居中并支持左/右对齐 ([845ad80](https://github.com/KDJack/el-plus-crud/commit/845ad80a356d8b059adcc05d00b5f114021f76b2))
|
|
12
|
+
|
|
13
|
+
### [0.1.114](https://github.com/KDJack/el-plus-crud/compare/v0.1.113...v0.1.114) (2026-08-11)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **form:** daterange 支持 monthrange/yearrange 的起止时间与显示格式 ([d1a588d](https://github.com/KDJack/el-plus-crud/commit/d1a588daf64ad4b3dfc29621b0a43fb7126105e3))
|
|
19
|
+
* **form:** 修复上传组件图片预览与 base64 data URL 判定 ([7907779](https://github.com/KDJack/el-plus-crud/commit/79077793623169f64eaf7495eb35e5333c9461c8))
|
|
20
|
+
|
|
5
21
|
### [0.1.113](https://github.com/KDJack/el-plus-crud/compare/v0.1.112...v0.1.113) (2026-08-09)
|
|
6
22
|
|
|
7
23
|
### [0.1.112](https://github.com/KDJack/el-plus-crud/compare/v0.1.111...v0.1.112) (2026-08-08)
|
|
@@ -17,7 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
17
17
|
isDIYMain?: boolean | undefined;
|
|
18
18
|
selectList?: any[] | [] | undefined;
|
|
19
19
|
colMinWidth?: string | undefined;
|
|
20
|
-
headerAlign?: "center" | "
|
|
20
|
+
headerAlign?: "center" | "right" | "left" | undefined;
|
|
21
21
|
isTempId?: boolean | undefined;
|
|
22
22
|
loading?: boolean | undefined;
|
|
23
23
|
initLoad?: boolean | undefined;
|
|
@@ -36,7 +36,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
36
36
|
isDIYMain: boolean;
|
|
37
37
|
selectList: () => never[];
|
|
38
38
|
colMinWidth: string;
|
|
39
|
-
headerAlign: string;
|
|
40
39
|
isTempId: boolean;
|
|
41
40
|
loading: boolean;
|
|
42
41
|
initLoad: boolean;
|
|
@@ -81,7 +80,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
81
80
|
isDIYMain?: boolean | undefined;
|
|
82
81
|
selectList?: any[] | [] | undefined;
|
|
83
82
|
colMinWidth?: string | undefined;
|
|
84
|
-
headerAlign?: "center" | "
|
|
83
|
+
headerAlign?: "center" | "right" | "left" | undefined;
|
|
85
84
|
isTempId?: boolean | undefined;
|
|
86
85
|
loading?: boolean | undefined;
|
|
87
86
|
initLoad?: boolean | undefined;
|
|
@@ -100,7 +99,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
100
99
|
isDIYMain: boolean;
|
|
101
100
|
selectList: () => never[];
|
|
102
101
|
colMinWidth: string;
|
|
103
|
-
headerAlign: string;
|
|
104
102
|
isTempId: boolean;
|
|
105
103
|
loading: boolean;
|
|
106
104
|
initLoad: boolean;
|
|
@@ -135,7 +133,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
135
133
|
isEmptyImg: boolean;
|
|
136
134
|
isDIYMain: boolean;
|
|
137
135
|
colMinWidth: string;
|
|
138
|
-
headerAlign: 'left' | 'right' | 'center';
|
|
139
136
|
isTempId: boolean;
|
|
140
137
|
isStorePageData: boolean;
|
|
141
138
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|