fast-element-plus 1.0.0-alpha.11 → 1.0.0-alpha.13
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/index.full.js +8 -8
- package/dist/index.full.js.map +1 -1
- package/dist/index.full.min.js +3 -3
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +3 -3
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +8 -8
- package/dist/index.full.mjs.map +1 -1
- package/es/components/table/src/tableColumn.mjs +5 -5
- package/es/components/table/src/tableColumn.mjs.map +1 -1
- package/es/components/table/src/tableSearchForm.d.ts +6 -4
- package/es/components/table/src/tableSearchForm.mjs +2 -2
- package/es/components/table/src/tableSearchForm.mjs.map +1 -1
- package/es/element-plus.mjs +1 -1
- package/es/element-plus.mjs.map +1 -1
- package/lib/components/table/src/tableColumn.js +1 -1
- package/lib/components/table/src/tableColumn.js.map +1 -1
- package/lib/components/table/src/tableSearchForm.d.ts +6 -4
- package/lib/components/table/src/tableSearchForm.js +1 -1
- package/lib/components/table/src/tableSearchForm.js.map +1 -1
- package/lib/element-plus.js +1 -1
- package/lib/element-plus.js.map +1 -1
- package/package.json +1 -1
package/dist/index.full.js
CHANGED
|
@@ -20394,8 +20394,8 @@
|
|
|
20394
20394
|
submitInfoField: {
|
|
20395
20395
|
type: utils.definePropType(Object),
|
|
20396
20396
|
default: () => ({
|
|
20397
|
-
submitClerkName: "
|
|
20398
|
-
submitTime: "
|
|
20397
|
+
submitClerkName: "createdUserName",
|
|
20398
|
+
submitTime: "createdTime"
|
|
20399
20399
|
})
|
|
20400
20400
|
}
|
|
20401
20401
|
},
|
|
@@ -20533,8 +20533,8 @@
|
|
|
20533
20533
|
}) => {
|
|
20534
20534
|
if (props.type === "submitInfo") {
|
|
20535
20535
|
let _slot;
|
|
20536
|
-
const submitClerkName = row[props.submitInfoField?.submitClerkName ?? "
|
|
20537
|
-
const submitTime = row[props.submitInfoField?.submitTime ?? "
|
|
20536
|
+
const submitClerkName = row[props.submitInfoField?.submitClerkName ?? "createdUserName"];
|
|
20537
|
+
const submitTime = row[props.submitInfoField?.submitTime ?? "createdTime"];
|
|
20538
20538
|
return vue.createVNode(vue.Fragment, null, [vue.createVNode("div", {
|
|
20539
20539
|
"style": "white-space: nowrap; overflow: hidden; text-overflow: ellipsis;",
|
|
20540
20540
|
"title": submitTime
|
|
@@ -20713,7 +20713,7 @@
|
|
|
20713
20713
|
"lazy": true,
|
|
20714
20714
|
"src": row[props.prop],
|
|
20715
20715
|
"fit": "cover",
|
|
20716
|
-
"
|
|
20716
|
+
"original": true
|
|
20717
20717
|
}, null) : vue.createVNode(ElementPlus.ElImage, {
|
|
20718
20718
|
"class": "fa-image",
|
|
20719
20719
|
"lazy": true,
|
|
@@ -24094,12 +24094,12 @@
|
|
|
24094
24094
|
/** @description 折叠搜素 */
|
|
24095
24095
|
collapsedSearch: {
|
|
24096
24096
|
type: Boolean,
|
|
24097
|
-
|
|
24097
|
+
default: true
|
|
24098
24098
|
},
|
|
24099
24099
|
/** @description 高级搜素抽屉 */
|
|
24100
24100
|
advancedSearchDrawer: {
|
|
24101
24101
|
type: Boolean,
|
|
24102
|
-
|
|
24102
|
+
default: false
|
|
24103
24103
|
},
|
|
24104
24104
|
/** @description Grid布局列配置 */
|
|
24105
24105
|
cols: {
|
|
@@ -29621,7 +29621,7 @@
|
|
|
29621
29621
|
if (isNil(options?.closeOnPressEscape)) {
|
|
29622
29622
|
options.closeOnPressEscape = false;
|
|
29623
29623
|
}
|
|
29624
|
-
if (isNil(options?.beforeClose)) {
|
|
29624
|
+
if (!isNil(options?.beforeClose)) {
|
|
29625
29625
|
const localBeforeClose = options.beforeClose;
|
|
29626
29626
|
const localConfirmButtonText = options?.confirmButtonText;
|
|
29627
29627
|
const localShowCancelButton = options?.showCancelButton;
|