eoss-ui 0.5.82 → 0.5.83
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/data-table.js +15 -11
- package/lib/dialog.js +11 -3
- package/lib/eoss-ui.common.js +53 -41
- package/lib/index.js +1 -1
- package/lib/main.js +10 -10
- package/lib/theme-chalk/dialog.css +1 -1
- package/lib/theme-chalk/flow-group.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tree-group.js +4 -4
- package/package.json +2 -2
- package/packages/data-table/src/main.vue +9 -7
- package/packages/dialog/src/main.vue +6 -1
- package/packages/main/src/simplicity/index.vue +2 -2
- package/packages/theme-chalk/lib/dialog.css +1 -1
- package/packages/theme-chalk/lib/flow-group.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/dialog.scss +10 -0
- package/packages/theme-chalk/src/flow-group.scss +1 -0
- package/packages/tree-group/src/main.vue +2 -3
- package/src/index.js +1 -1
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
overflow: hidden;
|
|
4
4
|
.el-dialog {
|
|
5
5
|
padding-top: 45px;
|
|
6
|
+
overflow: hidden;
|
|
6
7
|
position: relative;
|
|
7
8
|
}
|
|
8
9
|
.el-dialog__header {
|
|
@@ -49,4 +50,13 @@
|
|
|
49
50
|
text-align: right;
|
|
50
51
|
}
|
|
51
52
|
}
|
|
53
|
+
&.es-dialog-plus {
|
|
54
|
+
.el-dialog {
|
|
55
|
+
border-radius: 9px;
|
|
56
|
+
}
|
|
57
|
+
.el-dialog__header,
|
|
58
|
+
.el-dialog__body {
|
|
59
|
+
background-color: #f2f2f2;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
52
62
|
}
|
|
@@ -190,15 +190,14 @@
|
|
|
190
190
|
|
|
191
191
|
<script>
|
|
192
192
|
import util from 'eoss-ui/src/utils/util';
|
|
193
|
-
const
|
|
194
|
-
util.win.top.dataTableMode || util.win.dataTableMode || 'default';
|
|
193
|
+
const systemMode = util.win.top.systemMode || util.win.systemMode || 'default';
|
|
195
194
|
export default {
|
|
196
195
|
name: 'EsTreeGroup',
|
|
197
196
|
inheritAttrs: false,
|
|
198
197
|
props: {
|
|
199
198
|
mode: {
|
|
200
199
|
type: String,
|
|
201
|
-
default:
|
|
200
|
+
default: systemMode
|
|
202
201
|
},
|
|
203
202
|
host: {
|
|
204
203
|
type: String,
|