vxe-table 4.7.21 → 4.7.23
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 +3 -2
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +11 -8
- 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 +4 -3
- 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 +2 -2
- package/packages/table/module/edit/hook.ts +1 -1
- package/packages/ui/index.ts +3 -1
- package/types/all.d.ts +2 -1
|
@@ -760,7 +760,7 @@ hooks.add('tableEditModule', {
|
|
|
760
760
|
let { autofocus, autoselect } = editRender;
|
|
761
761
|
let inputElem;
|
|
762
762
|
if (!autofocus && compRender) {
|
|
763
|
-
autofocus = compRender.tableAutofocus || compRender.autofocus;
|
|
763
|
+
autofocus = compRender.tableAutoFocus || compRender.tableAutofocus || compRender.autofocus;
|
|
764
764
|
}
|
|
765
765
|
if (!autoselect && compRender) {
|
|
766
766
|
autoselect = compRender.tableAutoSelect || compRender.autoselect;
|
package/es/ui/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { VxeUI } from '@vxe-ui/core';
|
|
2
2
|
import { getFuncText } from './src/utils';
|
|
3
|
-
|
|
4
|
-
VxeUI.
|
|
3
|
+
export const version = "4.7.23";
|
|
4
|
+
VxeUI.version = version;
|
|
5
|
+
VxeUI.tableVersion = "4.7.23";
|
|
5
6
|
VxeUI.setConfig({
|
|
6
7
|
emptyCell: ' ',
|
|
7
8
|
table: {
|
package/es/ui/src/log.js
CHANGED
package/lib/index.umd.js
CHANGED
|
@@ -1718,7 +1718,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1718
1718
|
setup: function() { return /* reexport */ setup; },
|
|
1719
1719
|
t: function() { return /* reexport */ t; },
|
|
1720
1720
|
use: function() { return /* reexport */ use; },
|
|
1721
|
-
validators: function() { return /* reexport */ validators; }
|
|
1721
|
+
validators: function() { return /* reexport */ validators; },
|
|
1722
|
+
version: function() { return /* reexport */ version; }
|
|
1722
1723
|
});
|
|
1723
1724
|
|
|
1724
1725
|
// NAMESPACE OBJECT: ./packages/components.ts
|
|
@@ -1766,7 +1767,8 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
1766
1767
|
setup: function() { return setup; },
|
|
1767
1768
|
t: function() { return t; },
|
|
1768
1769
|
use: function() { return use; },
|
|
1769
|
-
validators: function() { return validators; }
|
|
1770
|
+
validators: function() { return validators; },
|
|
1771
|
+
version: function() { return version; }
|
|
1770
1772
|
});
|
|
1771
1773
|
|
|
1772
1774
|
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
@@ -1949,8 +1951,9 @@ function eqEmptyValue(cellValue) {
|
|
|
1949
1951
|
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
1950
1952
|
|
|
1951
1953
|
|
|
1952
|
-
|
|
1953
|
-
core_.VxeUI.
|
|
1954
|
+
const version = "4.7.22";
|
|
1955
|
+
core_.VxeUI.version = version;
|
|
1956
|
+
core_.VxeUI.tableVersion = "4.7.22";
|
|
1954
1957
|
core_.VxeUI.setConfig({
|
|
1955
1958
|
emptyCell: ' ',
|
|
1956
1959
|
table: {
|
|
@@ -2255,9 +2258,9 @@ var es_array_push = __webpack_require__(4114);
|
|
|
2255
2258
|
const {
|
|
2256
2259
|
log: log_log
|
|
2257
2260
|
} = core_.VxeUI;
|
|
2258
|
-
const
|
|
2259
|
-
const warnLog = log_log.create('warn',
|
|
2260
|
-
const errLog = log_log.create('error',
|
|
2261
|
+
const log_version = `table v${"4.7.22"}`;
|
|
2262
|
+
const warnLog = log_log.create('warn', log_version);
|
|
2263
|
+
const errLog = log_log.create('error', log_version);
|
|
2261
2264
|
;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
|
|
2262
2265
|
|
|
2263
2266
|
|
|
@@ -17816,7 +17819,7 @@ edit_hook_hooks.add('tableEditModule', {
|
|
|
17816
17819
|
} = editRender;
|
|
17817
17820
|
let inputElem;
|
|
17818
17821
|
if (!autofocus && compRender) {
|
|
17819
|
-
autofocus = compRender.tableAutofocus || compRender.autofocus;
|
|
17822
|
+
autofocus = compRender.tableAutoFocus || compRender.tableAutofocus || compRender.autofocus;
|
|
17820
17823
|
}
|
|
17821
17824
|
if (!autoselect && compRender) {
|
|
17822
17825
|
autoselect = compRender.tableAutoSelect || compRender.autoselect;
|