vxe-table 4.12.0-beta.3 → 4.12.0-beta.4
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/style.css +1 -1
- package/es/table/render/index.js +12 -3
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +17 -5
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/render/index.js +15 -3
- package/lib/table/render/index.min.js +1 -1
- package/lib/ui/index.js +1 -1
- 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/table/render/index.ts +12 -3
- /package/es/{iconfont.1741160677181.ttf → iconfont.1741162350010.ttf} +0 -0
- /package/es/{iconfont.1741160677181.woff → iconfont.1741162350010.woff} +0 -0
- /package/es/{iconfont.1741160677181.woff2 → iconfont.1741162350010.woff2} +0 -0
- /package/lib/{iconfont.1741160677181.ttf → iconfont.1741162350010.ttf} +0 -0
- /package/lib/{iconfont.1741160677181.woff → iconfont.1741162350010.woff} +0 -0
- /package/lib/{iconfont.1741160677181.woff2 → iconfont.1741162350010.woff2} +0 -0
package/lib/index.umd.js
CHANGED
|
@@ -3138,7 +3138,7 @@ function eqEmptyValue(cellValue) {
|
|
|
3138
3138
|
;// ./packages/ui/index.ts
|
|
3139
3139
|
|
|
3140
3140
|
|
|
3141
|
-
const version = "4.12.0-beta.
|
|
3141
|
+
const version = "4.12.0-beta.4";
|
|
3142
3142
|
core_.VxeUI.version = version;
|
|
3143
3143
|
core_.VxeUI.tableVersion = version;
|
|
3144
3144
|
core_.VxeUI.setConfig({
|
|
@@ -3586,7 +3586,7 @@ var esnext_iterator_some = __webpack_require__(7550);
|
|
|
3586
3586
|
const {
|
|
3587
3587
|
log: log_log
|
|
3588
3588
|
} = core_.VxeUI;
|
|
3589
|
-
const log_version = `table v${"4.12.0-beta.
|
|
3589
|
+
const log_version = `table v${"4.12.0-beta.4"}`;
|
|
3590
3590
|
const warnLog = log_log.create('warn', log_version);
|
|
3591
3591
|
const errLog = log_log.create('error', log_version);
|
|
3592
3592
|
;// ./packages/table/src/columnInfo.ts
|
|
@@ -28393,7 +28393,16 @@ render_renderer.mixin({
|
|
|
28393
28393
|
tableFilterDefaultMethod: handleInputFilterMethod
|
|
28394
28394
|
},
|
|
28395
28395
|
FormatNumberInput: {
|
|
28396
|
-
renderTableDefault: handleNumberCell
|
|
28396
|
+
renderTableDefault: handleNumberCell,
|
|
28397
|
+
tableFilterDefaultMethod: handleInputFilterMethod,
|
|
28398
|
+
tableExportMethod(params) {
|
|
28399
|
+
const {
|
|
28400
|
+
row,
|
|
28401
|
+
column
|
|
28402
|
+
} = params;
|
|
28403
|
+
const cellValue = external_root_XEUtils_commonjs_xe_utils_commonjs2_xe_utils_amd_xe_utils_default().get(row, column.field);
|
|
28404
|
+
return cellValue;
|
|
28405
|
+
}
|
|
28397
28406
|
},
|
|
28398
28407
|
VxeNumberInput: {
|
|
28399
28408
|
tableAutoFocus: 'input',
|
|
@@ -28553,7 +28562,9 @@ render_renderer.mixin({
|
|
|
28553
28562
|
FormatSelect: {
|
|
28554
28563
|
renderTableDefault(renderOpts, params) {
|
|
28555
28564
|
return getCellLabelVNs(renderOpts, params, getSelectCellValue(renderOpts, params));
|
|
28556
|
-
}
|
|
28565
|
+
},
|
|
28566
|
+
tableFilterDefaultMethod: handleFilterMethod,
|
|
28567
|
+
tableExportMethod: handleExportSelectMethod
|
|
28557
28568
|
},
|
|
28558
28569
|
VxeTreeSelect: {
|
|
28559
28570
|
tableAutoFocus: 'input',
|
|
@@ -28575,7 +28586,8 @@ render_renderer.mixin({
|
|
|
28575
28586
|
FormatTreeSelect: {
|
|
28576
28587
|
renderTableDefault(renderOpts, params) {
|
|
28577
28588
|
return getCellLabelVNs(renderOpts, params, getTreeSelectCellValue(renderOpts, params));
|
|
28578
|
-
}
|
|
28589
|
+
},
|
|
28590
|
+
tableExportMethod: handleExportTreeSelectMethod
|
|
28579
28591
|
},
|
|
28580
28592
|
VxeTableSelect: {
|
|
28581
28593
|
tableAutoFocus: 'input',
|