vxe-table 4.7.19 → 4.7.20
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/es/table/module/edit/hook.js +1 -1
- package/es/ui/index.js +2 -2
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +4 -4
- package/lib/index.umd.min.js +1 -1
- package/lib/table/module/edit/hook.js +1 -1
- package/lib/table/module/edit/hook.min.js +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/grid/src/grid.ts +2 -1
- package/packages/table/module/custom/panel.ts +2 -1
- package/packages/table/module/edit/hook.ts +1 -1
- package/packages/table/module/export/export-panel.ts +2 -1
- package/packages/table/module/export/import-panel.ts +2 -1
- package/packages/table/render/index.ts +2 -1
- package/packages/table/src/table.ts +2 -1
- package/packages/toolbar/src/toolbar.ts +2 -1
- package/types/all.d.ts +8 -1
|
@@ -767,7 +767,7 @@ hooks.add('tableEditModule', {
|
|
|
767
767
|
}
|
|
768
768
|
// 如果指定了聚焦 class
|
|
769
769
|
if (XEUtils.isFunction(autofocus)) {
|
|
770
|
-
inputElem = autofocus
|
|
770
|
+
inputElem = autofocus(params);
|
|
771
771
|
}
|
|
772
772
|
else if (autofocus) {
|
|
773
773
|
inputElem = cell.querySelector(autofocus);
|
package/es/ui/index.js
CHANGED
package/es/ui/src/log.js
CHANGED
package/lib/index.umd.js
CHANGED
|
@@ -1949,8 +1949,8 @@ function eqEmptyValue(cellValue) {
|
|
|
1949
1949
|
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
1950
1950
|
|
|
1951
1951
|
|
|
1952
|
-
core_.VxeUI.version = "4.7.
|
|
1953
|
-
core_.VxeUI.tableVersion = "4.7.
|
|
1952
|
+
core_.VxeUI.version = "4.7.20";
|
|
1953
|
+
core_.VxeUI.tableVersion = "4.7.20";
|
|
1954
1954
|
core_.VxeUI.setConfig({
|
|
1955
1955
|
emptyCell: ' ',
|
|
1956
1956
|
table: {
|
|
@@ -2255,7 +2255,7 @@ var es_array_push = __webpack_require__(4114);
|
|
|
2255
2255
|
const {
|
|
2256
2256
|
log: log_log
|
|
2257
2257
|
} = core_.VxeUI;
|
|
2258
|
-
const version = `table v${"4.7.
|
|
2258
|
+
const version = `table v${"4.7.20"}`;
|
|
2259
2259
|
const warnLog = log_log.create('warn', version);
|
|
2260
2260
|
const errLog = log_log.create('error', version);
|
|
2261
2261
|
;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
|
|
@@ -17823,7 +17823,7 @@ edit_hook_hooks.add('tableEditModule', {
|
|
|
17823
17823
|
}
|
|
17824
17824
|
// 如果指定了聚焦 class
|
|
17825
17825
|
if (external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().isFunction(autofocus)) {
|
|
17826
|
-
inputElem = autofocus
|
|
17826
|
+
inputElem = autofocus(params);
|
|
17827
17827
|
} else if (autofocus) {
|
|
17828
17828
|
inputElem = cell.querySelector(autofocus);
|
|
17829
17829
|
if (inputElem) {
|