vxe-table 4.7.31 → 4.7.32

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vxe-table",
3
- "version": "4.7.31",
3
+ "version": "4.7.32",
4
4
  "description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
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.0.28"
31
+ "vxe-pc-ui": "^4.0.30"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/resize-observer-browser": "^0.1.11",
@@ -2829,6 +2829,9 @@ export default defineComponent({
2829
2829
  }
2830
2830
  return nextTick()
2831
2831
  },
2832
+ getParams () {
2833
+ return props.params
2834
+ },
2832
2835
  /**
2833
2836
  * 用于树结构,给行数据加载子节点
2834
2837
  */
@@ -1,5 +1,3 @@
1
- $vxe-ui-status-error-color: #f56c6c;
2
-
3
1
  :root {
4
2
  /*font*/
5
3
  --vxe-ui-font-family: -apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
@@ -3,12 +3,10 @@
3
3
  [data-vxe-ui-theme="dark"] {
4
4
  color-scheme: dark;
5
5
 
6
- $vxe-ui-font-color: #a0a3a7;
7
-
8
6
  /*font*/
9
- --vxe-ui-font-color: #{$vxe-ui-font-color};
10
- --vxe-ui-font-lighten-color: #{lighten($vxe-ui-font-color, 10%)};
11
- --vxe-ui-font-darken-color: #{darken($vxe-ui-font-color, 10%)};
7
+ --vxe-ui-font-color: #a0a3a7;
8
+ --vxe-ui-font-lighten-color: #babdc0;
9
+ --vxe-ui-font-darken-color: #86898e;
12
10
 
13
11
  /*base*/
14
12
  --vxe-ui-base-popup-border-color: var(--vxe-ui-layout-background-color);
@@ -1,12 +1,10 @@
1
1
  @import './base.scss';
2
2
 
3
3
  [data-vxe-ui-theme="light"] {
4
- $vxe-ui-font-color: #606266;
5
-
6
4
  /*font*/
7
- --vxe-ui-font-color: #{$vxe-ui-font-color};
8
- --vxe-ui-font-lighten-color: #{lighten($vxe-ui-font-color, 10%)};
9
- --vxe-ui-font-darken-color: #{darken($vxe-ui-font-color, 10%)};
5
+ --vxe-ui-font-color: #606266;
6
+ --vxe-ui-font-lighten-color: #797b80;
7
+ --vxe-ui-font-darken-color: #47494c;
10
8
 
11
9
  /*base*/
12
10
  --vxe-ui-base-popup-border-color: #DADCE0;