mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
releases 4.7.32
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vxe-table",
|
||||
"version": "4.7.31",
|
||||
"version": "4.7.32",
|
||||
"description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
|
||||
"scripts": {
|
||||
"update": "npm install --legacy-peer-deps",
|
||||
@@ -28,7 +28,7 @@
|
||||
"style": "lib/style.css",
|
||||
"typings": "types/index.d.ts",
|
||||
"dependencies": {
|
||||
"vxe-pc-ui": "^4.0.28"
|
||||
"vxe-pc-ui": "^4.0.30"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/resize-observer-browser": "^0.1.11",
|
||||
|
||||
@@ -2829,6 +2829,9 @@ export default defineComponent({
|
||||
}
|
||||
return nextTick()
|
||||
},
|
||||
getParams () {
|
||||
return props.params
|
||||
},
|
||||
/**
|
||||
* 用于树结构,给行数据加载子节点
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
$vxe-ui-status-error-color: #f56c6c;
|
||||
|
||||
:root {
|
||||
/*font*/
|
||||
--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 @@
|
||||
[data-vxe-ui-theme="dark"] {
|
||||
color-scheme: dark;
|
||||
|
||||
$vxe-ui-font-color: #a0a3a7;
|
||||
|
||||
/*font*/
|
||||
--vxe-ui-font-color: #{$vxe-ui-font-color};
|
||||
--vxe-ui-font-lighten-color: #{lighten($vxe-ui-font-color, 10%)};
|
||||
--vxe-ui-font-darken-color: #{darken($vxe-ui-font-color, 10%)};
|
||||
--vxe-ui-font-color: #a0a3a7;
|
||||
--vxe-ui-font-lighten-color: #babdc0;
|
||||
--vxe-ui-font-darken-color: #86898e;
|
||||
|
||||
/*base*/
|
||||
--vxe-ui-base-popup-border-color: var(--vxe-ui-layout-background-color);
|
||||
|
||||
@@ -1,12 +1,10 @@
|
||||
@import './base.scss';
|
||||
|
||||
[data-vxe-ui-theme="light"] {
|
||||
$vxe-ui-font-color: #606266;
|
||||
|
||||
/*font*/
|
||||
--vxe-ui-font-color: #{$vxe-ui-font-color};
|
||||
--vxe-ui-font-lighten-color: #{lighten($vxe-ui-font-color, 10%)};
|
||||
--vxe-ui-font-darken-color: #{darken($vxe-ui-font-color, 10%)};
|
||||
--vxe-ui-font-color: #606266;
|
||||
--vxe-ui-font-lighten-color: #797b80;
|
||||
--vxe-ui-font-darken-color: #47494c;
|
||||
|
||||
/*base*/
|
||||
--vxe-ui-base-popup-border-color: #DADCE0;
|
||||
|
||||
Reference in New Issue
Block a user