vxe-table 4.18.10 → 4.18.12

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 (62) 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/module/custom/hook.js +69 -6
  6. package/es/table/module/custom/panel.js +19 -14
  7. package/es/table/module/keyboard/hook.js +1 -2
  8. package/es/table/src/body.js +3 -2
  9. package/es/table/src/header.js +3 -1
  10. package/es/table/src/table.js +85 -40
  11. package/es/table/src/util.js +7 -3
  12. package/es/table/style.css +14 -0
  13. package/es/table/style.min.css +1 -1
  14. package/es/ui/index.js +1 -1
  15. package/es/ui/src/log.js +1 -1
  16. package/es/vxe-table/style.css +14 -0
  17. package/es/vxe-table/style.min.css +1 -1
  18. package/helper/vetur/attributes.json +1 -1
  19. package/helper/vetur/tags.json +1 -1
  20. package/lib/index.css +1 -1
  21. package/lib/index.min.css +1 -1
  22. package/lib/index.umd.js +141 -59
  23. package/lib/index.umd.min.js +1 -1
  24. package/lib/style.css +1 -1
  25. package/lib/style.min.css +1 -1
  26. package/lib/table/module/custom/hook.js +76 -6
  27. package/lib/table/module/custom/hook.min.js +1 -1
  28. package/lib/table/module/custom/panel.js +21 -13
  29. package/lib/table/module/custom/panel.min.js +1 -1
  30. package/lib/table/module/keyboard/hook.js +1 -3
  31. package/lib/table/module/keyboard/hook.min.js +1 -1
  32. package/lib/table/src/body.js +4 -2
  33. package/lib/table/src/body.min.js +1 -1
  34. package/lib/table/src/header.js +7 -5
  35. package/lib/table/src/header.min.js +1 -1
  36. package/lib/table/src/table.js +23 -25
  37. package/lib/table/src/table.min.js +1 -1
  38. package/lib/table/src/util.js +7 -3
  39. package/lib/table/src/util.min.js +1 -1
  40. package/lib/table/style/style.css +14 -0
  41. package/lib/table/style/style.min.css +1 -1
  42. package/lib/ui/index.js +1 -1
  43. package/lib/ui/index.min.js +1 -1
  44. package/lib/ui/src/log.js +1 -1
  45. package/lib/ui/src/log.min.js +1 -1
  46. package/lib/vxe-table/style/style.css +14 -0
  47. package/lib/vxe-table/style/style.min.css +1 -1
  48. package/package.json +1 -1
  49. package/packages/table/module/custom/hook.ts +70 -7
  50. package/packages/table/module/custom/panel.ts +20 -15
  51. package/packages/table/module/keyboard/hook.ts +1 -2
  52. package/packages/table/src/body.ts +3 -2
  53. package/packages/table/src/header.ts +3 -1
  54. package/packages/table/src/table.ts +88 -41
  55. package/packages/table/src/util.ts +9 -3
  56. package/styles/components/table-module/custom.scss +14 -0
  57. /package/es/{iconfont.1774663263220.ttf → iconfont.1776048383631.ttf} +0 -0
  58. /package/es/{iconfont.1774663263220.woff → iconfont.1776048383631.woff} +0 -0
  59. /package/es/{iconfont.1774663263220.woff2 → iconfont.1776048383631.woff2} +0 -0
  60. /package/lib/{iconfont.1774663263220.ttf → iconfont.1776048383631.ttf} +0 -0
  61. /package/lib/{iconfont.1774663263220.woff → iconfont.1776048383631.woff} +0 -0
  62. /package/lib/{iconfont.1774663263220.woff2 → iconfont.1776048383631.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.10";
3
+ export const version = "4.18.12";
4
4
  VxeUI.version = version;
5
5
  VxeUI.tableVersion = version;
6
6
  VxeUI.setConfig({
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.10"}`;
3
+ const version = `table v${"4.18.12"}`;
4
4
  export const warnLog = log.create('warn', version);
5
5
  export const errLog = log.create('error', version);
@@ -791,6 +791,7 @@
791
791
  text-align: left;
792
792
  background-color: var(--vxe-ui-layout-background-color);
793
793
  z-index: 19;
794
+ color: var(--vxe-ui-font-color);
794
795
  border: 1px solid var(--vxe-ui-table-border-color);
795
796
  border-radius: var(--vxe-ui-border-radius);
796
797
  box-shadow: var(--vxe-ui-base-popup-box-shadow);
@@ -1299,6 +1300,19 @@
1299
1300
  width: 200px;
1300
1301
  }
1301
1302
 
1303
+ .vxe-table-custom-wrapper {
1304
+ font-size: var(--vxe-ui-font-size-default);
1305
+ }
1306
+ .vxe-table-custom-wrapper.size--medium {
1307
+ font-size: var(--vxe-ui-font-size-medium);
1308
+ }
1309
+ .vxe-table-custom-wrapper.size--small {
1310
+ font-size: var(--vxe-ui-font-size-small);
1311
+ }
1312
+ .vxe-table-custom-wrapper.size--mini {
1313
+ font-size: var(--vxe-ui-font-size-mini);
1314
+ }
1315
+
1302
1316
  .vxe-table-export--panel-column > ul {
1303
1317
  list-style-type: none;
1304
1318
  overflow: auto;