fix 修改多个实例重复安装警告问题 #1654

This commit is contained in:
xuliangzhan
2022-02-17 21:44:25 +08:00
parent 5ea78d1cc2
commit ad3325543c
34 changed files with 108 additions and 51 deletions

View File

@@ -25,7 +25,7 @@
},
"vxe-table/resizable": {
"type": "boolean",
"description": "所有的列是否允许拖动列宽调整大小"
"description": "所有的列是否允许拖动列宽调整大小,被 column-config.resizable 替换"
},
"vxe-table/stripe": {
"type": "boolean",
@@ -65,19 +65,19 @@
},
"vxe-table/highlight-current-row": {
"type": "boolean",
"description": "是否要高亮当前行"
"description": "是否要高亮当前行,被 row-config.isCurrent 替换"
},
"vxe-table/highlight-hover-row": {
"type": "boolean",
"description": "鼠标移到行是否要高亮显示"
"description": "鼠标移到行是否要高亮显示,被 row-config.isHover 替换"
},
"vxe-table/highlight-current-column": {
"type": "boolean",
"description": "是否要高亮当前列"
"description": "是否要高亮当前列,被 column-config.isCurrent 替换"
},
"vxe-table/highlight-hover-column": {
"type": "boolean",
"description": "鼠标移到列是否要高亮显示"
"description": "鼠标移到列是否要高亮显,被 column-config.isHover 替换示"
},
"vxe-table/row-class-name": {
"type": "string | (({ row, rowindex, $rowindex }) => any)",
@@ -521,7 +521,7 @@
},
"vxe-grid/resizable": {
"type": "boolean",
"description": "所有的列是否允许拖动列宽调整大小"
"description": "所有的列是否允许拖动列宽调整大小,被 column-config.resizable 替换"
},
"vxe-grid/stripe": {
"type": "boolean",
@@ -561,19 +561,19 @@
},
"vxe-grid/highlight-current-row": {
"type": "boolean",
"description": "是否要高亮当前行"
"description": "是否要高亮当前行,被 row-config.isCurrent 替换"
},
"vxe-grid/highlight-hover-row": {
"type": "boolean",
"description": "鼠标移到行是否要高亮显示"
"description": "鼠标移到行是否要高亮显示,被 row-config.isHover 替换"
},
"vxe-grid/highlight-current-column": {
"type": "boolean",
"description": "是否要高亮当前列"
"description": "是否要高亮当前列,被 column-config.isCurrent 替换"
},
"vxe-grid/highlight-hover-column": {
"type": "boolean",
"description": "鼠标移到列是否要高亮显示"
"description": "鼠标移到列是否要高亮显,被 column-config.isHover 替换示"
},
"vxe-grid/row-class-name": {
"type": "string | (({ row, rowindex, $rowindex }) => any)",
@@ -951,6 +951,10 @@
"type": "boolean",
"description": "是否禁用"
},
"vxe-radio/strict": {
"type": "boolean",
"description": "严格模式,选中后不能取消"
},
"vxe-radio/name": {
"type": "string",
"description": "原生 name 属性"
@@ -967,6 +971,10 @@
"type": "boolean",
"description": "是否禁用"
},
"vxe-radio-group/strict": {
"type": "boolean",
"description": "严格模式,选中后不能取消"
},
"vxe-radio-button/model-value": {
"type": "any",
"description": "v-model 绑定值"
@@ -983,6 +991,10 @@
"type": "boolean",
"description": "是否禁用"
},
"vxe-radio-button/strict": {
"type": "boolean",
"description": "严格模式,选中后不能取消"
},
"vxe-checkbox/model-value": {
"type": "string | number | boolean",
"description": "v-model 绑定值"
@@ -1387,7 +1399,11 @@
"type": "boolean",
"description": "鼠标是否可进入到 tooltip 中"
},
"vxe-tooltip/leave-delay": {
"vxe-tooltip/enter-delay": {
"type": "number",
"description": "鼠标移入后延时多少才显示 tooltip"
},
"vxe-tooltip/leavedelay": {
"type": "number",
"description": "鼠标移出后延时多少才隐藏 tooltip"
},
@@ -1727,6 +1743,10 @@
"type": "any",
"description": "纵向虚拟滚动配置"
},
"vxe-pulldown/model-value": {
"type": "boolean",
"description": "v-model 绑定值"
},
"vxe-pulldown/size": {
"type": "string",
"description": "尺寸"

View File

@@ -276,6 +276,7 @@
"content",
"size",
"disabled",
"strict",
"name"
],
"description": "单选框"
@@ -284,7 +285,8 @@
"attributes": [
"model-value",
"size",
"disabled"
"disabled",
"strict"
],
"subtags": [
"vxe-radio",
@@ -297,7 +299,8 @@
"model-value",
"label",
"content",
"disabled"
"disabled",
"strict"
],
"description": "单选按钮"
},
@@ -454,7 +457,8 @@
"z-index",
"is-arrow",
"enterable",
"leave-delay"
"enter-delay",
"leavedelay"
],
"description": "工具提示"
},
@@ -572,6 +576,7 @@
},
"vxe-pulldown": {
"attributes": [
"model-value",
"size",
"disabled",
"placement",