ocpview-plus 1.0.11 → 1.0.12
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.
|
@@ -453,7 +453,7 @@ common.initEview = function(ViewUI2) {
|
|
|
453
453
|
common.initAnchor(ViewUI2.Anchor);
|
|
454
454
|
};
|
|
455
455
|
const name = "ocpview-plus";
|
|
456
|
-
const version$2 = "1.0.
|
|
456
|
+
const version$2 = "1.0.11";
|
|
457
457
|
const title = "ocpviewPlus";
|
|
458
458
|
const description = "A high quality Service UI components Library with Vue.js";
|
|
459
459
|
const homepage = "";
|
|
@@ -54012,13 +54012,17 @@ const _sfc_main$7 = {
|
|
|
54012
54012
|
trigger: "click",
|
|
54013
54013
|
mode: "cell",
|
|
54014
54014
|
autoClear: false,
|
|
54015
|
-
beforeEditMethod: (
|
|
54015
|
+
beforeEditMethod: (params) => {
|
|
54016
|
+
const { column: column2, row, rowIndex } = params;
|
|
54016
54017
|
if (this.editType) {
|
|
54017
54018
|
return false;
|
|
54018
54019
|
}
|
|
54019
54020
|
if (this.myConfig.cellbeginedit) {
|
|
54020
54021
|
return this.myConfig.cellbeginedit({
|
|
54021
|
-
column: { ...column2, name: column2.property }
|
|
54022
|
+
column: { ...column2, name: column2.property },
|
|
54023
|
+
row,
|
|
54024
|
+
rowIndex,
|
|
54025
|
+
transmission: params
|
|
54022
54026
|
});
|
|
54023
54027
|
}
|
|
54024
54028
|
return true;
|