vxe-table 4.17.47 → 4.17.49

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/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/src/table.js +1 -0
  6. package/es/table/style.css +3 -13
  7. package/es/table/style.min.css +1 -1
  8. package/es/ui/index.js +1 -1
  9. package/es/ui/src/log.js +1 -1
  10. package/es/vxe-table/style.css +3 -13
  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 +3 -3
  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/src/table.js +1 -1
  19. package/lib/table/src/table.min.js +1 -1
  20. package/lib/table/style/style.css +3 -13
  21. package/lib/table/style/style.min.css +1 -1
  22. package/lib/ui/index.js +1 -1
  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 +3 -13
  27. package/lib/vxe-table/style/style.min.css +1 -1
  28. package/package.json +2 -2
  29. package/packages/table/src/table.ts +1 -0
  30. package/styles/components/table-module/menu.scss +3 -8
  31. /package/es/{iconfont.1769767610354.ttf → iconfont.1772182532931.ttf} +0 -0
  32. /package/es/{iconfont.1769767610354.woff → iconfont.1772182532931.woff} +0 -0
  33. /package/es/{iconfont.1769767610354.woff2 → iconfont.1772182532931.woff2} +0 -0
  34. /package/lib/{iconfont.1769767610354.ttf → iconfont.1772182532931.ttf} +0 -0
  35. /package/lib/{iconfont.1769767610354.woff → iconfont.1772182532931.woff} +0 -0
  36. /package/lib/{iconfont.1769767610354.woff2 → iconfont.1772182532931.woff2} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vxe-table",
3
- "version": "4.17.47",
3
+ "version": "4.17.49",
4
4
  "description": "A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.",
5
5
  "scripts": {
6
6
  "update": "npm install --legacy-peer-deps",
@@ -28,7 +28,7 @@
28
28
  "style": "lib/style.css",
29
29
  "typings": "types/index.d.ts",
30
30
  "dependencies": {
31
- "vxe-pc-ui": "^4.8.0"
31
+ "vxe-pc-ui": "^4.11.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/resize-observer-browser": "^0.1.11",
@@ -10709,6 +10709,7 @@ export default defineVxeComponent({
10709
10709
  // 移出源位置
10710
10710
  if (oldRest && newRest) {
10711
10711
  const fullList = XEUtils.toTreeArray(internalData.afterTreeFullData, {
10712
+ updated: false,
10712
10713
  key: rowField,
10713
10714
  parentKey: parentField,
10714
10715
  children: mapChildrenField
@@ -16,7 +16,7 @@
16
16
  user-select: none;
17
17
  color: var(--vxe-ui-font-color);
18
18
  font-family: var(--vxe-ui-font-family);
19
- background-color: var(--vxe-ui-table-menu-background-color);
19
+ background-color: var(--vxe-ui-layout-background-color);
20
20
  }
21
21
  .vxe-context-menu--link {
22
22
  display: flex;
@@ -55,11 +55,8 @@
55
55
  border: 0;
56
56
  }
57
57
  &.link--active {
58
- background-color: #C5C5C5;
59
- border-color:#C5C5C5;
60
- & > .vxe-context-menu--link {
61
- color: #2B2B2B;
62
- }
58
+ background-color: var(--vxe-ui-base-hover-background-color);
59
+ border-color: var(--vxe-ui-base-hover-background-color);
63
60
  }
64
61
  &.link--loading,
65
62
  &.link--disabled {
@@ -68,8 +65,6 @@
68
65
  cursor: no-drop;
69
66
  }
70
67
  &.link--active {
71
- border-color:#C0C1C2;
72
- background-color: #EEEEEE;
73
68
  &:hover {
74
69
  background-color: inherit;
75
70
  }