vxe-table 4.21.0-beta.6 → 4.21.0-beta.7

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 (36) hide show
  1. package/README.md +1 -2
  2. package/dist/all.esm.js +2 -2
  3. package/dist/style.css +1 -1
  4. package/dist/style.min.css +1 -1
  5. package/es/index.css +1 -1
  6. package/es/index.min.css +1 -1
  7. package/es/style.css +1 -1
  8. package/es/style.min.css +1 -1
  9. package/es/table/style.css +12 -3
  10. package/es/table/style.min.css +1 -1
  11. package/es/ui/index.js +1 -1
  12. package/es/ui/src/log.js +1 -1
  13. package/es/vxe-table/style.css +12 -3
  14. package/es/vxe-table/style.min.css +1 -1
  15. package/lib/index.css +1 -1
  16. package/lib/index.min.css +1 -1
  17. package/lib/index.umd.js +2 -2
  18. package/lib/index.umd.min.js +1 -1
  19. package/lib/style.css +1 -1
  20. package/lib/style.min.css +1 -1
  21. package/lib/table/style/style.css +12 -3
  22. package/lib/table/style/style.min.css +1 -1
  23. package/lib/ui/index.js +1 -1
  24. package/lib/ui/index.min.js +1 -1
  25. package/lib/ui/src/log.js +1 -1
  26. package/lib/ui/src/log.min.js +1 -1
  27. package/lib/vxe-table/style/style.css +12 -3
  28. package/lib/vxe-table/style/style.min.css +1 -1
  29. package/package.json +1 -1
  30. package/styles/components/table.scss +11 -2
  31. /package/es/{iconfont.1787300517083.ttf → iconfont.1787383502391.ttf} +0 -0
  32. /package/es/{iconfont.1787300517083.woff → iconfont.1787383502391.woff} +0 -0
  33. /package/es/{iconfont.1787300517083.woff2 → iconfont.1787383502391.woff2} +0 -0
  34. /package/lib/{iconfont.1787300517083.ttf → iconfont.1787383502391.ttf} +0 -0
  35. /package/lib/{iconfont.1787300517083.woff → iconfont.1787383502391.woff} +0 -0
  36. /package/lib/{iconfont.1787300517083.woff2 → iconfont.1787383502391.woff2} +0 -0
package/README.md CHANGED
@@ -128,7 +128,6 @@
128
128
  * [x] ([企业版](https://store.vxeui.com)) 单元格区域选取
129
129
  * [x] ([企业版](https://store.vxeui.com)) 单元格复制/粘贴
130
130
  * [x] ([企业版](https://store.vxeui.com)) 单元格查找和替换
131
- * [x] ([企业版](https://store.vxeui.com)) 全键盘操作
132
131
  * [x] ([企业版](https://store.vxeui.com)) 集成图表
133
132
 
134
133
  ## 安装
@@ -156,7 +155,7 @@ createApp(App).use(VxeUITable).mount('#app')
156
155
  ### CDN
157
156
 
158
157
  使用第三方 CDN 方式记得锁定版本号,避免受到非兼容性更新的影响
159
- ***不建议将第三方的 CDN 地址用于正式环境,因为该连接随时都可能会失效***
158
+ **不建议将第三方的 CDN 地址用于正式环境,因为该连接随时都可能会失效**
160
159
 
161
160
  ```HTML
162
161
  <!DOCTYPE html>
package/dist/all.esm.js CHANGED
@@ -47,7 +47,7 @@ function getDefaultConfig(val1, def1) {
47
47
  return XEUtils.eqNull(val1) ? def1 : val1;
48
48
  }
49
49
 
50
- const version = "4.21.0-beta.6";
50
+ const version = "4.21.0-beta.7";
51
51
  VxeUI.version = version;
52
52
  VxeUI.tableVersion = version;
53
53
  VxeUI.setConfig({
@@ -769,7 +769,7 @@ function wheelScrollTopTo(diffNum, cb) {
769
769
  }
770
770
 
771
771
  const { log } = VxeUI;
772
- const tableVersion = `table v${"4.21.0-beta.6"}`;
772
+ const tableVersion = `table v${"4.21.0-beta.7"}`;
773
773
  function createComponentLog(name) {
774
774
  const uiVersion = VxeUI.uiVersion ? `ui v${VxeUI.uiVersion}` : '';
775
775
  const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';