vxe-table 4.13.7 → 4.13.8
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/index.css +1 -1
- package/es/index.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/render/index.js +13 -3
- package/es/table/style.css +12 -5
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +3 -3
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +12 -5
- package/es/vxe-table/style.min.css +1 -1
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +21 -7
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/render/index.js +14 -3
- package/lib/table/render/index.min.js +1 -1
- package/lib/table/style/style.css +12 -5
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +3 -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/lib/vxe-table/style/style.css +12 -5
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/table/render/index.ts +17 -3
- package/packages/ui/index.ts +2 -2
- package/styles/components/table.scss +30 -17
- /package/es/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
- /package/es/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
- /package/es/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
- /package/lib/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
- /package/lib/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
- /package/lib/{iconfont.1745290253213.woff2 → iconfont.1745374145326.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.13.
|
|
3141
|
+
const version = "4.13.8";
|
|
3142
3142
|
core_.VxeUI.version = version;
|
|
3143
3143
|
core_.VxeUI.tableVersion = version;
|
|
3144
3144
|
core_.VxeUI.setConfig({
|
|
@@ -3350,8 +3350,8 @@ core_.VxeUI.setConfig({
|
|
|
3350
3350
|
oSize: 0
|
|
3351
3351
|
},
|
|
3352
3352
|
scrollbarConfig: {
|
|
3353
|
-
|
|
3354
|
-
|
|
3353
|
+
width: 14,
|
|
3354
|
+
height: 14
|
|
3355
3355
|
}
|
|
3356
3356
|
},
|
|
3357
3357
|
// export: {
|
|
@@ -3599,7 +3599,7 @@ var esnext_iterator_some = __webpack_require__(7550);
|
|
|
3599
3599
|
const {
|
|
3600
3600
|
log: log_log
|
|
3601
3601
|
} = core_.VxeUI;
|
|
3602
|
-
const log_version = `table v${"4.13.
|
|
3602
|
+
const log_version = `table v${"4.13.8"}`;
|
|
3603
3603
|
const warnLog = log_log.create('warn', log_version);
|
|
3604
3604
|
const errLog = log_log.create('error', log_version);
|
|
3605
3605
|
;// ./packages/table/src/columnInfo.ts
|
|
@@ -19651,7 +19651,18 @@ function defaultEditRender(renderOpts, params) {
|
|
|
19651
19651
|
...getEditOns(renderOpts, params)
|
|
19652
19652
|
})];
|
|
19653
19653
|
}
|
|
19654
|
-
function
|
|
19654
|
+
function checkboxEditRender(renderOpts, params) {
|
|
19655
|
+
const {
|
|
19656
|
+
row,
|
|
19657
|
+
column
|
|
19658
|
+
} = params;
|
|
19659
|
+
const cellValue = getCellValue(row, column);
|
|
19660
|
+
return [(0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(getDefaultComponent(renderOpts), {
|
|
19661
|
+
...getCellEditProps(renderOpts, params, cellValue),
|
|
19662
|
+
...getEditOns(renderOpts, params)
|
|
19663
|
+
})];
|
|
19664
|
+
}
|
|
19665
|
+
function radioAndCheckboxGroupEditRender(renderOpts, params) {
|
|
19655
19666
|
const {
|
|
19656
19667
|
options
|
|
19657
19668
|
} = renderOpts;
|
|
@@ -20360,10 +20371,13 @@ render_renderer.mixin({
|
|
|
20360
20371
|
}
|
|
20361
20372
|
},
|
|
20362
20373
|
VxeRadioGroup: {
|
|
20363
|
-
renderTableDefault:
|
|
20374
|
+
renderTableDefault: radioAndCheckboxGroupEditRender
|
|
20375
|
+
},
|
|
20376
|
+
VxeCheckbox: {
|
|
20377
|
+
renderTableDefault: checkboxEditRender
|
|
20364
20378
|
},
|
|
20365
20379
|
VxeCheckboxGroup: {
|
|
20366
|
-
renderTableDefault:
|
|
20380
|
+
renderTableDefault: radioAndCheckboxGroupEditRender
|
|
20367
20381
|
},
|
|
20368
20382
|
VxeSwitch: {
|
|
20369
20383
|
tableAutoFocus: 'button',
|