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.
Files changed (37) hide show
  1. package/es/index.css +1 -1
  2. package/es/index.min.css +1 -1
  3. package/es/style.css +1 -1
  4. package/es/style.min.css +1 -1
  5. package/es/table/render/index.js +13 -3
  6. package/es/table/style.css +12 -5
  7. package/es/table/style.min.css +1 -1
  8. package/es/ui/index.js +3 -3
  9. package/es/ui/src/log.js +1 -1
  10. package/es/vxe-table/style.css +12 -5
  11. package/es/vxe-table/style.min.css +1 -1
  12. package/lib/index.css +1 -1
  13. package/lib/index.min.css +1 -1
  14. package/lib/index.umd.js +21 -7
  15. package/lib/index.umd.min.js +1 -1
  16. package/lib/style.css +1 -1
  17. package/lib/style.min.css +1 -1
  18. package/lib/table/render/index.js +14 -3
  19. package/lib/table/render/index.min.js +1 -1
  20. package/lib/table/style/style.css +12 -5
  21. package/lib/table/style/style.min.css +1 -1
  22. package/lib/ui/index.js +3 -3
  23. package/lib/ui/index.min.js +1 -1
  24. package/lib/ui/src/log.js +1 -1
  25. package/lib/ui/src/log.min.js +1 -1
  26. package/lib/vxe-table/style/style.css +12 -5
  27. package/lib/vxe-table/style/style.min.css +1 -1
  28. package/package.json +2 -2
  29. package/packages/table/render/index.ts +17 -3
  30. package/packages/ui/index.ts +2 -2
  31. package/styles/components/table.scss +30 -17
  32. /package/es/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
  33. /package/es/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
  34. /package/es/{iconfont.1745290253213.woff2 → iconfont.1745374145326.woff2} +0 -0
  35. /package/lib/{iconfont.1745290253213.ttf → iconfont.1745374145326.ttf} +0 -0
  36. /package/lib/{iconfont.1745290253213.woff → iconfont.1745374145326.woff} +0 -0
  37. /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.7";
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
- // width: 0,
3354
- // height: 0
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.7"}`;
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 radioAndCheckboxEditRender(renderOpts, params) {
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: radioAndCheckboxEditRender
20374
+ renderTableDefault: radioAndCheckboxGroupEditRender
20375
+ },
20376
+ VxeCheckbox: {
20377
+ renderTableDefault: checkboxEditRender
20364
20378
  },
20365
20379
  VxeCheckboxGroup: {
20366
- renderTableDefault: radioAndCheckboxEditRender
20380
+ renderTableDefault: radioAndCheckboxGroupEditRender
20367
20381
  },
20368
20382
  VxeSwitch: {
20369
20383
  tableAutoFocus: 'button',