eoss-ui 0.6.25 → 0.6.26

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 (46) hide show
  1. package/lib/eoss-ui.common.js +248 -110
  2. package/lib/handler.js +73 -38
  3. package/lib/icons.js +1 -1
  4. package/lib/index.js +1 -1
  5. package/lib/login.js +18 -8
  6. package/lib/main.js +147 -54
  7. package/lib/theme-chalk/base.css +1 -1
  8. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  9. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  10. package/lib/theme-chalk/handler.css +1 -1
  11. package/lib/theme-chalk/icon.css +1 -1
  12. package/lib/theme-chalk/index.css +1 -1
  13. package/lib/theme-chalk/main.css +1 -1
  14. package/lib/theme-chalk/menu.css +1 -1
  15. package/lib/theme-chalk/simplicity.css +1 -1
  16. package/lib/theme-chalk/sizer.css +1 -1
  17. package/lib/theme-chalk/upload.css +1 -1
  18. package/package.json +1 -1
  19. package/packages/.DS_Store +0 -0
  20. package/packages/handler/.DS_Store +0 -0
  21. package/packages/handler/src/main.vue +60 -46
  22. package/packages/icons/src/icon.json +1 -1
  23. package/packages/login/.DS_Store +0 -0
  24. package/packages/login/src/main.vue +16 -6
  25. package/packages/main/.DS_Store +0 -0
  26. package/packages/main/src/default/index.vue +13 -2
  27. package/packages/main/src/simplicity/handler.vue +55 -17
  28. package/packages/main/src/simplicity/index.vue +15 -2
  29. package/packages/theme-chalk/lib/base.css +1 -1
  30. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  31. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  32. package/packages/theme-chalk/lib/handler.css +1 -1
  33. package/packages/theme-chalk/lib/icon.css +1 -1
  34. package/packages/theme-chalk/lib/index.css +1 -1
  35. package/packages/theme-chalk/lib/main.css +1 -1
  36. package/packages/theme-chalk/lib/menu.css +1 -1
  37. package/packages/theme-chalk/lib/simplicity.css +1 -1
  38. package/packages/theme-chalk/lib/sizer.css +1 -1
  39. package/packages/theme-chalk/lib/upload.css +1 -1
  40. package/packages/theme-chalk/src/.DS_Store +0 -0
  41. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  42. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  43. package/packages/theme-chalk/src/handler.scss +10 -0
  44. package/packages/theme-chalk/src/icon.scss +8 -0
  45. package/packages/theme-chalk/src/simplicity.scss +14 -0
  46. package/src/index.js +1 -1
@@ -37,6 +37,16 @@
37
37
  background-color: $--color-primary-light-4;
38
38
  }
39
39
  }
40
+ .es-handler-contact {
41
+ display: flex;
42
+ line-height: 20px;
43
+ margin-right: 12px;
44
+ .es-contact-label {
45
+ width: 56px;
46
+ text-align: justify;
47
+ margin-right: 12px;
48
+ }
49
+ }
40
50
  .es-handler-date {
41
51
  font-size: 14px;
42
52
  padding-right: 8px;
@@ -16,6 +16,14 @@
16
16
  -moz-osx-font-smoothing: grayscale;
17
17
  }
18
18
 
19
+ .es-icon-zhanghaodenglu:before {
20
+ content: '\e781';
21
+ }
22
+
23
+ .es-icon-saomadenglu:before {
24
+ content: '\e6d5';
25
+ }
26
+
19
27
  .es-icon-zuobian:before {
20
28
  content: '\e6cb';
21
29
  }
@@ -851,6 +851,16 @@
851
851
  height: 100%;
852
852
  line-height: 24px;
853
853
  padding: 0 10px;
854
+ .es-simplicity-contact {
855
+ display: flex;
856
+ line-height: 17px;
857
+ margin-right: 12px;
858
+ .es-contact-label {
859
+ width: 56px;
860
+ text-align: justify;
861
+ margin-right: 12px;
862
+ }
863
+ }
854
864
  .es-simplicity-handler-date {
855
865
  font-size: 14px;
856
866
  color: #15224c;
@@ -867,7 +877,11 @@
867
877
  background-color: #cdd9e4;
868
878
  }
869
879
  }
880
+ .es-simplicity-date-time {
881
+ display: flex;
882
+ }
870
883
  .es-simplicity-handler-time {
884
+ width: 80px;
871
885
  font-size: 20px;
872
886
  color: #2591f7;
873
887
  margin-right: 12px;
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.6.25',
124
+ version: '0.6.26',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,