vxe-table 4.18.1 → 4.18.3

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 (58) hide show
  1. package/es/grid/src/grid.js +1 -1
  2. package/es/index.css +1 -1
  3. package/es/index.min.css +1 -1
  4. package/es/style.css +1 -1
  5. package/es/style.min.css +1 -1
  6. package/es/table/module/filter/hook.js +11 -2
  7. package/es/table/module/menu/hook.js +2 -2
  8. package/es/table/src/body.js +3 -2
  9. package/es/table/src/table.js +96 -7
  10. package/es/table/src/util.js +1 -2
  11. package/es/table/style.css +2 -2
  12. package/es/table/style.min.css +1 -1
  13. package/es/ui/index.js +3 -2
  14. package/es/ui/src/log.js +1 -1
  15. package/es/vxe-table/style.css +2 -2
  16. package/es/vxe-table/style.min.css +1 -1
  17. package/lib/grid/src/grid.js +1 -1
  18. package/lib/grid/src/grid.min.js +1 -1
  19. package/lib/index.css +1 -1
  20. package/lib/index.min.css +1 -1
  21. package/lib/index.umd.js +33 -20
  22. package/lib/index.umd.min.js +1 -1
  23. package/lib/style.css +1 -1
  24. package/lib/style.min.css +1 -1
  25. package/lib/table/module/filter/hook.js +12 -2
  26. package/lib/table/module/filter/hook.min.js +1 -1
  27. package/lib/table/module/menu/hook.js +2 -1
  28. package/lib/table/module/menu/hook.min.js +1 -1
  29. package/lib/table/src/body.js +4 -2
  30. package/lib/table/src/body.min.js +1 -1
  31. package/lib/table/src/table.js +9 -9
  32. package/lib/table/src/table.min.js +1 -1
  33. package/lib/table/src/util.js +1 -2
  34. package/lib/table/src/util.min.js +1 -1
  35. package/lib/table/style/style.css +2 -2
  36. package/lib/table/style/style.min.css +1 -1
  37. package/lib/ui/index.js +3 -2
  38. package/lib/ui/index.min.js +1 -1
  39. package/lib/ui/src/log.js +1 -1
  40. package/lib/ui/src/log.min.js +1 -1
  41. package/lib/vxe-table/style/style.css +2 -2
  42. package/lib/vxe-table/style/style.min.css +1 -1
  43. package/package.json +1 -1
  44. package/packages/grid/src/grid.ts +1 -1
  45. package/packages/table/module/filter/hook.ts +10 -2
  46. package/packages/table/module/menu/hook.ts +2 -2
  47. package/packages/table/src/body.ts +3 -2
  48. package/packages/table/src/table.ts +100 -9
  49. package/packages/table/src/util.ts +2 -2
  50. package/packages/ui/index.ts +2 -1
  51. package/styles/components/table.scss +2 -2
  52. package/styles/theme/base.scss +3 -0
  53. /package/es/{iconfont.1773109208977.ttf → iconfont.1773640299992.ttf} +0 -0
  54. /package/es/{iconfont.1773109208977.woff → iconfont.1773640299992.woff} +0 -0
  55. /package/es/{iconfont.1773109208977.woff2 → iconfont.1773640299992.woff2} +0 -0
  56. /package/lib/{iconfont.1773109208977.ttf → iconfont.1773640299992.ttf} +0 -0
  57. /package/lib/{iconfont.1773109208977.woff → iconfont.1773640299992.woff} +0 -0
  58. /package/lib/{iconfont.1773109208977.woff2 → iconfont.1773640299992.woff2} +0 -0
package/es/ui/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  import { getFuncText } from './src/utils';
3
- export const version = "4.18.1";
3
+ export const version = "4.18.3";
4
4
  VxeUI.version = version;
5
5
  VxeUI.tableVersion = version;
6
6
  VxeUI.setConfig({
@@ -154,7 +154,8 @@ VxeUI.setConfig({
154
154
  // transfer: false,
155
155
  destroyOnClose: true,
156
156
  multiple: true,
157
- showIcon: true
157
+ showIcon: true,
158
+ maxHeight: 280
158
159
  },
159
160
  floatingFilterConfig: {
160
161
  // enabled: false
package/es/ui/src/log.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { VxeUI } from '@vxe-ui/core';
2
2
  const { log } = VxeUI;
3
- const version = `table v${"4.18.1"}`;
3
+ const version = `table v${"4.18.3"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
@@ -2415,7 +2415,7 @@
2415
2415
  .vxe-table .vxe-table--scroll-x-handle {
2416
2416
  overflow-y: hidden;
2417
2417
  overflow-x: scroll;
2418
- height: 18px;
2418
+ height: var(--vxe-ui-table-view-scrollbar-height);
2419
2419
  }
2420
2420
  .vxe-table .vxe-table--scroll-y-handle,
2421
2421
  .vxe-table .vxe-table--scroll-y-wrapper {
@@ -2427,7 +2427,7 @@
2427
2427
  .vxe-table .vxe-table--scroll-y-handle {
2428
2428
  overflow-y: scroll;
2429
2429
  overflow-x: hidden;
2430
- width: 18px;
2430
+ width: var(--vxe-ui-table-view-scrollbar-width);
2431
2431
  height: 100%;
2432
2432
  }
2433
2433
  .vxe-table .vxe-table--scroll-x-space {