three-trees-ui 1.0.28 → 1.0.30
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/lib/three-trees-ui.common.js +48 -48
- package/lib/three-trees-ui.css +1 -1
- package/lib/three-trees-ui.umd.js +48 -48
- package/lib/three-trees-ui.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/CustomDialog/src/customDialog.vue +2 -4
- package/packages/UserSelector/src/main.vue +2 -2
package/package.json
CHANGED
|
@@ -2114,10 +2114,8 @@
|
|
|
2114
2114
|
height: 90%;
|
|
2115
2115
|
min-height: 400px;
|
|
2116
2116
|
}
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
height: 100% !important;
|
|
2120
|
-
}
|
|
2117
|
+
.el-dialog__body .el-container {
|
|
2118
|
+
height: 100% !important;
|
|
2121
2119
|
}
|
|
2122
2120
|
.el-divider--vertical {
|
|
2123
2121
|
height: 100%;
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<i
|
|
35
35
|
v-if="inputWriteable"
|
|
36
36
|
class="el-tag__close el-icon-close"
|
|
37
|
-
@click="handleRemove(item)"
|
|
37
|
+
@click.stop="handleRemove(item)"
|
|
38
38
|
></i>
|
|
39
39
|
</span>
|
|
40
40
|
<template v-if="!selectors.length && value">
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
<i
|
|
49
49
|
v-if="inputWriteable"
|
|
50
50
|
class="el-tag__close el-icon-close"
|
|
51
|
-
@click="handleRemoveText(index)"
|
|
51
|
+
@click.stop="handleRemoveText(index)"
|
|
52
52
|
></i>
|
|
53
53
|
</span>
|
|
54
54
|
</template>
|