eoss-ui 0.5.92 → 0.5.94

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 (84) hide show
  1. package/lib/button-group.js +198 -210
  2. package/lib/button.js +2 -2
  3. package/lib/calendar.js +2 -2
  4. package/lib/card.js +2 -2
  5. package/lib/cascader.js +2 -2
  6. package/lib/checkbox-group.js +3 -2
  7. package/lib/clients.js +2 -2
  8. package/lib/config/image.js +3 -0
  9. package/lib/data-table-form.js +3 -2
  10. package/lib/data-table.js +3 -2
  11. package/lib/date-picker.js +2 -2
  12. package/lib/dialog.js +6 -5
  13. package/lib/enterprise.js +2 -2
  14. package/lib/eoss-ui.common.js +388 -158
  15. package/lib/error-page.js +2 -2
  16. package/lib/flow-group.js +2 -2
  17. package/lib/flow-list.js +4 -4
  18. package/lib/flow.js +6 -5
  19. package/lib/form.js +6 -5
  20. package/lib/handle-user.js +2 -2
  21. package/lib/handler.js +2 -2
  22. package/lib/icon.js +9 -9
  23. package/lib/icons.js +4 -4
  24. package/lib/index.js +1 -1
  25. package/lib/input-number.js +2 -2
  26. package/lib/input.js +2 -2
  27. package/lib/label.js +2 -2
  28. package/lib/layout.js +2 -2
  29. package/lib/login.js +239 -115
  30. package/lib/main.js +153 -24
  31. package/lib/menu.js +2 -2
  32. package/lib/nav.js +2 -2
  33. package/lib/notify.js +2 -2
  34. package/lib/page.js +2 -2
  35. package/lib/pagination.js +2 -2
  36. package/lib/player.js +8 -8
  37. package/lib/qr-code.js +4 -4
  38. package/lib/radio-group.js +2 -2
  39. package/lib/retrial-auth.js +2 -2
  40. package/lib/select-ganged.js +2 -2
  41. package/lib/select.js +2 -2
  42. package/lib/selector-panel.js +6 -5
  43. package/lib/selector.js +11 -11
  44. package/lib/sizer.js +2 -2
  45. package/lib/steps.js +2 -2
  46. package/lib/switch.js +9 -9
  47. package/lib/table-form.js +2 -2
  48. package/lib/tabs-panel.js +2 -2
  49. package/lib/tabs.js +2 -2
  50. package/lib/theme-chalk/base.css +1 -1
  51. package/lib/theme-chalk/index.css +1 -1
  52. package/lib/theme-chalk/main.css +1 -1
  53. package/lib/theme-chalk/menu.css +1 -1
  54. package/lib/theme-chalk/simplicity.css +1 -1
  55. package/lib/theme-chalk/sizer.css +1 -1
  56. package/lib/theme-chalk/upload.css +1 -1
  57. package/lib/tips.js +2 -2
  58. package/lib/toolbar.js +2 -2
  59. package/lib/tree-group.js +2 -2
  60. package/lib/tree.js +2 -2
  61. package/lib/upload.js +13 -12
  62. package/lib/wujie.js +2 -2
  63. package/lib/wxlogin.js +145 -145
  64. package/package.json +1 -1
  65. package/packages/.DS_Store +0 -0
  66. package/packages/form/src/main.vue +1 -1
  67. package/packages/login/.DS_Store +0 -0
  68. package/packages/login/src/main.vue +126 -20
  69. package/packages/main/src/main.vue +113 -3
  70. package/packages/main/src/simplicity/index.vue +1 -1
  71. package/packages/theme-chalk/lib/base.css +1 -1
  72. package/packages/theme-chalk/lib/index.css +1 -1
  73. package/packages/theme-chalk/lib/main.css +1 -1
  74. package/packages/theme-chalk/lib/menu.css +1 -1
  75. package/packages/theme-chalk/lib/simplicity.css +1 -1
  76. package/packages/theme-chalk/lib/sizer.css +1 -1
  77. package/packages/theme-chalk/lib/upload.css +1 -1
  78. package/packages/theme-chalk/src/base.scss +41 -0
  79. package/packages/theme-chalk/src/main.scss +3 -0
  80. package/packages/theme-chalk/src/menu.scss +8 -0
  81. package/packages/upload/src/main.vue +2 -2
  82. package/src/.DS_Store +0 -0
  83. package/src/config/image.js +2 -0
  84. package/src/index.js +1 -1
@@ -217,3 +217,44 @@ $end: -51;
217
217
  }
218
218
  }
219
219
  }
220
+
221
+ .es-launch-image {
222
+ position: fixed;
223
+ top: 0;
224
+ right: 0;
225
+ bottom: 0;
226
+ left: 0;
227
+ z-index: 99;
228
+ background-size: 100% 100%;
229
+ background-position: center;
230
+ background-repeat: no-repeat;
231
+ .es-launch-text {
232
+ text-align: center;
233
+ font-size: 28px;
234
+ font-family: Alibaba PuHuiTi 2;
235
+ font-weight: normal;
236
+ color: rgba(255, 255, 255, 0);
237
+ line-height: 54px;
238
+ background: linear-gradient(
239
+ 180deg,
240
+ #ffffff 0.1220703125%,
241
+ rgba(255, 255, 255, 0.69) 100%
242
+ );
243
+ background-clip: text;
244
+ -webkit-text-fill-color: transparent;
245
+ position: relative;
246
+ top: 27%;
247
+ &.es-launch-user-name {
248
+ font-size: 48px;
249
+ margin-bottom: 40px;
250
+ }
251
+ }
252
+ }
253
+ .launch-fade-enter-active,
254
+ .launch-fade-leave-active {
255
+ transition: opacity 1s;
256
+ }
257
+ .launch-fade-enter,
258
+ .launch-fade-leave-to {
259
+ opacity: 0;
260
+ }
@@ -5,6 +5,9 @@
5
5
  height: 100%;
6
6
  overflow: hidden;
7
7
  position: relative;
8
+ .es-launch-image {
9
+ z-index: 99999;
10
+ }
8
11
  }
9
12
  .es-main {
10
13
  height: 100%;
@@ -202,6 +202,14 @@
202
202
 
203
203
  .es-menu-item-horizontal {
204
204
  flex-direction: unset !important;
205
+ & > .es-badge > .el-badge__content.is-fixed {
206
+ transform: translate(50%, 0);
207
+ }
208
+ }
209
+ .es-menu-title-horizontal {
210
+ & > .es-badge > .el-badge__content.is-fixed {
211
+ transform: translate(50%, 0);
212
+ }
205
213
  }
206
214
  .es-disabled {
207
215
  cursor: not-allowed;
@@ -875,7 +875,7 @@ export default {
875
875
  : this.host +
876
876
  (url
877
877
  ? url
878
- : `${this.previewAdjunct}?adjunctId=${file.adjunctId}`);
878
+ : `${this.dochubConfig.downloadDocumentUrl}?documentId=${file.adjunctId}`);
879
879
  this.title = file.originalName;
880
880
  this.showImg = true;
881
881
  this.$nextTick(() => {
@@ -887,7 +887,7 @@ export default {
887
887
  this.host +
888
888
  (url
889
889
  ? url
890
- : `${this.previewAdjunct}?adjunctId=${file.adjunctId}`)
890
+ : `${this.dochubConfig.downloadDocumentUrl}?documentId=${file.adjunctId}`)
891
891
  };
892
892
  this.title = file.originalName;
893
893
  this.showVideo = true;
package/src/.DS_Store CHANGED
Binary file