vxe-table 4.20.7 → 4.20.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 (48) hide show
  1. package/dist/all.esm.js +57 -33
  2. package/dist/style.css +1 -1
  3. package/es/grid/src/grid.js +11 -0
  4. package/es/style.css +1 -1
  5. package/es/table/src/body.js +3 -3
  6. package/es/table/src/cell.js +2 -2
  7. package/es/table/src/footer.js +3 -3
  8. package/es/table/src/header.js +3 -3
  9. package/es/table/src/table.js +26 -19
  10. package/es/table/src/util.js +5 -1
  11. package/es/ui/index.js +3 -1
  12. package/es/ui/src/log.js +1 -1
  13. package/lib/grid/src/grid.js +15 -0
  14. package/lib/grid/src/grid.min.js +1 -1
  15. package/lib/index.umd.js +51 -27
  16. package/lib/index.umd.min.js +1 -1
  17. package/lib/style.css +1 -1
  18. package/lib/table/src/body.js +3 -3
  19. package/lib/table/src/body.min.js +1 -1
  20. package/lib/table/src/cell.js +2 -2
  21. package/lib/table/src/cell.min.js +1 -1
  22. package/lib/table/src/footer.js +3 -3
  23. package/lib/table/src/footer.min.js +1 -1
  24. package/lib/table/src/header.js +3 -3
  25. package/lib/table/src/header.min.js +1 -1
  26. package/lib/table/src/table.js +16 -13
  27. package/lib/table/src/table.min.js +1 -1
  28. package/lib/table/src/util.js +5 -1
  29. package/lib/table/src/util.min.js +1 -1
  30. package/lib/ui/index.js +3 -1
  31. package/lib/ui/index.min.js +1 -1
  32. package/lib/ui/src/log.js +1 -1
  33. package/lib/ui/src/log.min.js +1 -1
  34. package/package.json +2 -2
  35. package/packages/grid/src/grid.ts +11 -0
  36. package/packages/table/src/body.ts +3 -3
  37. package/packages/table/src/cell.ts +2 -2
  38. package/packages/table/src/footer.ts +3 -3
  39. package/packages/table/src/header.ts +3 -3
  40. package/packages/table/src/table.ts +26 -19
  41. package/packages/table/src/util.ts +5 -1
  42. package/packages/ui/index.ts +2 -0
  43. /package/es/{iconfont.1784868296497.ttf → iconfont.1785140083044.ttf} +0 -0
  44. /package/es/{iconfont.1784868296497.woff → iconfont.1785140083044.woff} +0 -0
  45. /package/es/{iconfont.1784868296497.woff2 → iconfont.1785140083044.woff2} +0 -0
  46. /package/lib/{iconfont.1784868296497.ttf → iconfont.1785140083044.ttf} +0 -0
  47. /package/lib/{iconfont.1784868296497.woff → iconfont.1785140083044.woff} +0 -0
  48. /package/lib/{iconfont.1784868296497.woff2 → iconfont.1785140083044.woff2} +0 -0
@@ -1450,6 +1450,17 @@ export default defineVxeComponent({
1450
1450
  };
1451
1451
  }
1452
1452
  return null;
1453
+ },
1454
+ getCustomPagerData() {
1455
+ const { pagerConfig } = props;
1456
+ const { tablePage } = reactData;
1457
+ const pagerOpts = computePagerOpts.value;
1458
+ if (pagerConfig && isEnableConf(pagerOpts)) {
1459
+ return {
1460
+ pSize: tablePage.pageSize
1461
+ };
1462
+ }
1463
+ return {};
1453
1464
  }
1454
1465
  // setProxyInfo (options) {
1455
1466
  // if (props.proxyConfig && options) {