mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
releases 3.8.14
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vxe-table",
|
||||
"version": "3.8.13",
|
||||
"version": "3.8.14",
|
||||
"description": "一个基于 vue 的 PC 端表单/表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印导出、自定义模板、渲染器、JSON 配置式...",
|
||||
"scripts": {
|
||||
"update": "npm install --legacy-peer-deps",
|
||||
|
||||
@@ -331,12 +331,11 @@ const renderPopupPanel = (h, _vm) => {
|
||||
: h('vxe-input', {
|
||||
props: {
|
||||
type: 'integer',
|
||||
min: 40,
|
||||
value: column.renderResizeWidth
|
||||
},
|
||||
on: {
|
||||
modelValue (value) {
|
||||
column.renderResizeWidth = Math.max(40, Number(value))
|
||||
column.renderResizeWidth = Math.max(0, Number(value))
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
@@ -384,7 +384,8 @@ export default {
|
||||
pxMinList: [],
|
||||
scaleList: [],
|
||||
scaleMinList: [],
|
||||
autoList: []
|
||||
autoList: [],
|
||||
remainList: []
|
||||
},
|
||||
// 存放快捷菜单的信息
|
||||
ctxMenuStore: {
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
|
||||
/*checkbox*/
|
||||
.vxe-checkbox {
|
||||
@include createCheckboxIcon();
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
line-height: 1;
|
||||
@include createCheckboxIcon();
|
||||
&+.vxe-checkbox {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
@@ -15,11 +15,11 @@
|
||||
|
||||
/*radio*/
|
||||
.vxe-radio {
|
||||
@include createRadioIcon();
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
line-height: 1;
|
||||
@include createRadioIcon();
|
||||
> input {
|
||||
&[type="radio"] {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user