eoss-ui 0.8.30 → 0.8.32

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 (39) hide show
  1. package/lib/archives.js +4 -4
  2. package/lib/eoss-ui.common.js +12134 -4210
  3. package/lib/flow.js +11904 -3995
  4. package/lib/form.js +17 -2
  5. package/lib/index.js +1 -1
  6. package/lib/select.js +3 -3
  7. package/lib/theme-chalk/base.css +1 -1
  8. package/lib/theme-chalk/flow.css +1 -1
  9. package/lib/theme-chalk/index.css +1 -1
  10. package/lib/theme-chalk/main.css +1 -1
  11. package/lib/theme-chalk/menu.css +1 -1
  12. package/lib/theme-chalk/simplicity-top.css +1 -1
  13. package/lib/theme-chalk/simplicity.css +1 -1
  14. package/lib/theme-chalk/sizer.css +1 -1
  15. package/lib/theme-chalk/upload.css +1 -1
  16. package/lib/upload.js +6 -6
  17. package/package.json +1 -1
  18. package/packages/archives/src/main.vue +2 -2
  19. package/packages/flow/src/component/Opinions.vue +453 -0
  20. package/packages/flow/src/component/taskUnionExamine.vue +7 -3
  21. package/packages/flow/src/flow.vue +4456 -0
  22. package/packages/flow/src/main.vue +40 -3
  23. package/packages/flow/src/processReject.vue +3 -2
  24. package/packages/flow/src/startTaskRead.vue +7 -1
  25. package/packages/form/src/main.vue +5 -0
  26. package/packages/select/src/main.vue +3 -3
  27. package/packages/theme-chalk/lib/base.css +1 -1
  28. package/packages/theme-chalk/lib/flow.css +1 -1
  29. package/packages/theme-chalk/lib/index.css +1 -1
  30. package/packages/theme-chalk/lib/main.css +1 -1
  31. package/packages/theme-chalk/lib/menu.css +1 -1
  32. package/packages/theme-chalk/lib/simplicity-top.css +1 -1
  33. package/packages/theme-chalk/lib/simplicity.css +1 -1
  34. package/packages/theme-chalk/lib/sizer.css +1 -1
  35. package/packages/theme-chalk/lib/upload.css +1 -1
  36. package/packages/theme-chalk/src/base.scss +1 -0
  37. package/packages/theme-chalk/src/flow.scss +95 -1
  38. package/packages/upload/src/main.vue +5 -1
  39. package/src/index.js +1 -1
package/lib/form.js CHANGED
@@ -4732,7 +4732,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
4732
4732
  // ESM COMPAT FLAG
4733
4733
  __webpack_require__.r(__webpack_exports__);
4734
4734
 
4735
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=2523114d&
4735
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=24e70f46&
4736
4736
  var render = function () {
4737
4737
  var _vm = this
4738
4738
  var _h = _vm.$createElement
@@ -4845,6 +4845,11 @@ var render = function () {
4845
4845
  ref: "scrollbar",
4846
4846
  staticClass: "es-scrollbar",
4847
4847
  style: { height: _vm.formHeight },
4848
+ nativeOn: {
4849
+ wheel: function ($event) {
4850
+ return _vm.handleWheel($event)
4851
+ },
4852
+ },
4848
4853
  },
4849
4854
  [
4850
4855
  _vm._l(_vm.content, function (items, indexs) {
@@ -8331,6 +8336,11 @@ var render = function () {
8331
8336
  ref: "scrollbar",
8332
8337
  staticClass: "es-form-content es-scrollbar",
8333
8338
  style: { height: _vm.formHeight },
8339
+ nativeOn: {
8340
+ wheel: function ($event) {
8341
+ return _vm.handleWheel($event)
8342
+ },
8343
+ },
8334
8344
  },
8335
8345
  [
8336
8346
  _vm.table
@@ -11098,7 +11108,7 @@ var staticRenderFns = []
11098
11108
  render._withStripped = true
11099
11109
 
11100
11110
 
11101
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=2523114d&
11111
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=24e70f46&
11102
11112
 
11103
11113
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
11104
11114
  var regenerator_ = __webpack_require__(4);
@@ -13961,6 +13971,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13961
13971
  //
13962
13972
  //
13963
13973
  //
13974
+ //
13975
+ //
13964
13976
 
13965
13977
 
13966
13978
 
@@ -14509,6 +14521,9 @@ var pageView = util["a" /* default */].getParams('pageView');
14509
14521
  },
14510
14522
 
14511
14523
  methods: {
14524
+ handleWheel: function handleWheel(e) {
14525
+ e.stopPropagation();
14526
+ },
14512
14527
  getLabel: function getLabel(res) {
14513
14528
  return typeof res === 'string' ? { contents: res } : _extends({}, res, { plain: res.plain || res.name === undefined });
14514
14529
  },