eoss-ui 0.5.71 → 0.5.72

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.
Files changed (50) hide show
  1. package/lib/cascader.js +22 -3
  2. package/lib/data-table.js +16 -9
  3. package/lib/dialog.js +2 -3
  4. package/lib/eoss-ui.common.js +324 -88
  5. package/lib/icon.js +3 -2
  6. package/lib/icons.js +1 -1
  7. package/lib/index.js +1 -1
  8. package/lib/login.js +12 -2
  9. package/lib/main.js +74 -17
  10. package/lib/nav.js +158 -13
  11. package/lib/select.js +0 -2
  12. package/lib/theme-chalk/base.css +1 -1
  13. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  14. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  15. package/lib/theme-chalk/icon.css +1 -1
  16. package/lib/theme-chalk/index.css +1 -1
  17. package/lib/theme-chalk/main.css +1 -1
  18. package/lib/theme-chalk/menu.css +1 -1
  19. package/lib/theme-chalk/nav.css +1 -1
  20. package/lib/theme-chalk/sizer.css +1 -1
  21. package/lib/theme-chalk/upload.css +1 -1
  22. package/lib/tree.js +3 -3
  23. package/package.json +1 -1
  24. package/packages/cascader/src/main.vue +22 -3
  25. package/packages/data-table/src/main.vue +14 -6
  26. package/packages/dialog/src/main.vue +0 -1
  27. package/packages/icon/src/main.vue +1 -0
  28. package/packages/icons/src/icon.json +1 -1
  29. package/packages/login/src/main.vue +5 -0
  30. package/packages/main/src/main.vue +21 -12
  31. package/packages/main/src/settings.vue +13 -0
  32. package/packages/nav/src/main.vue +99 -5
  33. package/packages/select/src/main.vue +0 -2
  34. package/packages/theme-chalk/lib/base.css +1 -1
  35. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  36. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  37. package/packages/theme-chalk/lib/icon.css +1 -1
  38. package/packages/theme-chalk/lib/index.css +1 -1
  39. package/packages/theme-chalk/lib/main.css +1 -1
  40. package/packages/theme-chalk/lib/menu.css +1 -1
  41. package/packages/theme-chalk/lib/nav.css +1 -1
  42. package/packages/theme-chalk/lib/sizer.css +1 -1
  43. package/packages/theme-chalk/lib/upload.css +1 -1
  44. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  45. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  46. package/packages/theme-chalk/src/icon.scss +432 -437
  47. package/packages/theme-chalk/src/main.scss +16 -14
  48. package/packages/theme-chalk/src/nav.scss +31 -2
  49. package/packages/tree/src/main.vue +1 -1
  50. package/src/index.js +1 -1
@@ -219,19 +219,6 @@
219
219
  }
220
220
  }
221
221
 
222
- .es-sets-button {
223
- position: fixed;
224
- top: 100px;
225
- right: -2px;
226
- z-index: 2;
227
- box-shadow: $--box-shadow-base;
228
-
229
- .el-button {
230
- font-size: 22px;
231
- padding: 8px;
232
- }
233
- }
234
-
235
222
  .es-sets-drawer {
236
223
  padding-top: 48px;
237
224
 
@@ -266,7 +253,9 @@
266
253
  .es-setting-navs-box {
267
254
  display: flex;
268
255
  flex-wrap: wrap;
269
- justify-content: space-around;
256
+ .es-setting-navs-item {
257
+ margin-left: 16px;
258
+ }
270
259
  }
271
260
  .es-setting-navs {
272
261
  width: 100px;
@@ -336,6 +325,19 @@
336
325
  background-color: $--color-primary-light-10;
337
326
  }
338
327
  }
328
+ &.es-setting-side-navs {
329
+ &::before {
330
+ content: '';
331
+ display: block;
332
+ position: absolute;
333
+ left: 0;
334
+ width: 20px;
335
+ top: 0;
336
+ bottom: 0;
337
+ z-index: 2;
338
+ background-color: $--color-primary-light-10;
339
+ }
340
+ }
339
341
  .es-icon-gou {
340
342
  position: absolute;
341
343
  z-index: 9;
@@ -14,7 +14,9 @@
14
14
  display: inline-block;
15
15
  height: 100%;
16
16
  background-color: $--color-primary-light-10;
17
- border-right: $--border-base;
17
+ &:not(.es-nav-overlap) {
18
+ border-right: $--border-base;
19
+ }
18
20
  .es-nav-title {
19
21
  width: 100%;
20
22
  height: 45px;
@@ -76,12 +78,25 @@
76
78
  background: $--color-primary-light-7;
77
79
  }
78
80
  }
81
+ .es-nav-overlap {
82
+ .es-menu {
83
+ display: flex;
84
+ flex-wrap: wrap;
85
+ .es-menu-item {
86
+ width: 90px;
87
+ height: 90px;
88
+ margin-bottom: 20px;
89
+ &:nth-child(2n) {
90
+ margin-left: 20px;
91
+ }
92
+ }
93
+ }
94
+ }
79
95
  }
80
96
  &.es-nav-biserial {
81
97
  position: relative;
82
98
  .es-nav-main {
83
99
  position: absolute;
84
- left: $--nav-initial-width;
85
100
  top: 0;
86
101
  bottom: 0;
87
102
  }
@@ -89,4 +104,18 @@
89
104
  margin-right: 0;
90
105
  }
91
106
  }
107
+ .es-sets-button {
108
+ position: fixed;
109
+ top: 100px;
110
+ left: 0;
111
+ z-index: 2;
112
+ border-radius: 50%;
113
+ box-shadow: $--box-shadow-base;
114
+
115
+ .el-button {
116
+ font-size: 22px;
117
+ padding: 8px;
118
+ cursor: move;
119
+ }
120
+ }
92
121
  }
@@ -376,7 +376,7 @@ export default {
376
376
  if (Object.prototype.hasOwnProperty.call(this.search, 'value')) {
377
377
  this.searchValue = this.search.value;
378
378
  }
379
- this.getTreeData(param);
379
+ this.getTreeData(this.param);
380
380
  },
381
381
  mounted() {},
382
382
  methods: {
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.71',
124
+ version: '0.5.72',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,