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.
@@ -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
  }
@@ -3,6 +3,7 @@
3
3
  height: 100%;
4
4
  display: flex;
5
5
  border: $--border-base;
6
+ background-color: #fff;
6
7
  .es-flow-group-main {
7
8
  flex: 1;
8
9
  height: 100%;
@@ -190,15 +190,14 @@
190
190
 
191
191
  <script>
192
192
  import util from 'eoss-ui/src/utils/util';
193
- const dataTableMode =
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: dataTableMode
200
+ default: systemMode
202
201
  },
203
202
  host: {
204
203
  type: String,
package/src/index.js CHANGED
@@ -121,7 +121,7 @@ if (typeof window !== 'undefined' && window.Vue) {
121
121
  }
122
122
 
123
123
  export default {
124
- version: '0.5.82',
124
+ version: '0.5.83',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,