eoss-ui 0.6.92 → 0.6.93

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 (52) hide show
  1. package/lib/button-group.js +79 -77
  2. package/lib/button.js +79 -77
  3. package/lib/calogin.js +79 -77
  4. package/lib/checkbox-group.js +79 -77
  5. package/lib/config/api.js +2 -1
  6. package/lib/data-table-form.js +79 -77
  7. package/lib/data-table.js +79 -77
  8. package/lib/date-picker.js +79 -77
  9. package/lib/dialog.js +79 -77
  10. package/lib/eoss-ui.common.js +832 -754
  11. package/lib/flow-group.js +79 -77
  12. package/lib/flow-list.js +84 -82
  13. package/lib/flow.js +758 -682
  14. package/lib/form.js +79 -77
  15. package/lib/handle-user.js +80 -78
  16. package/lib/handler.js +80 -78
  17. package/lib/icon.js +80 -78
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +79 -77
  20. package/lib/input.js +79 -77
  21. package/lib/login.js +82 -80
  22. package/lib/main.js +108 -106
  23. package/lib/nav.js +79 -77
  24. package/lib/notify.js +82 -80
  25. package/lib/page.js +79 -77
  26. package/lib/pagination.js +79 -77
  27. package/lib/player.js +79 -77
  28. package/lib/qr-code.js +79 -77
  29. package/lib/radio-group.js +79 -77
  30. package/lib/retrial-auth.js +81 -79
  31. package/lib/select-ganged.js +79 -77
  32. package/lib/select.js +80 -78
  33. package/lib/selector-panel.js +79 -77
  34. package/lib/selector.js +79 -77
  35. package/lib/sizer.js +79 -77
  36. package/lib/steps.js +79 -77
  37. package/lib/switch.js +79 -77
  38. package/lib/table-form.js +79 -77
  39. package/lib/tabs.js +79 -77
  40. package/lib/tips.js +80 -78
  41. package/lib/tree-group.js +79 -77
  42. package/lib/tree.js +83 -79
  43. package/lib/upload.js +86 -84
  44. package/lib/wujie.js +79 -77
  45. package/lib/wxlogin.js +79 -77
  46. package/package.json +1 -1
  47. package/packages/flow/src/main.vue +105 -51
  48. package/packages/flow/src/processForm.vue +29 -2
  49. package/packages/select/src/main.vue +1 -1
  50. package/packages/tree/src/main.vue +1 -0
  51. package/src/config/api.js +1 -0
  52. package/src/index.js +1 -1
@@ -751,7 +751,7 @@ export default {
751
751
  tree:
752
752
  typeof this.tree === 'boolean'
753
753
  ? this.tree
754
- : { ...this.tree, lazy: this.label },
754
+ : { ...this.tree, lazy: this.lazy },
755
755
  data: this.results,
756
756
  // 父级是否可选
757
757
  parentCheck: this.parentCheck,
@@ -58,6 +58,7 @@
58
58
  :empty-text="!loading ? '暂无数据' : ''"
59
59
  :node-key="nodeKey"
60
60
  :indent="12"
61
+ :lazy="lazy"
61
62
  :data="treeData"
62
63
  :props="defaultProps"
63
64
  :filter-node-method="filterNode"
package/src/config/api.js CHANGED
@@ -305,3 +305,4 @@ export const endFlowAndStartTaskCircularRead =
305
305
  export const getNodeInfoForStart =
306
306
  flowPendingPrefix + '/task/taskHandle/getNodeInfoForStart.dhtml';
307
307
  export const freeStartFlow = '/bpm/bpmBackend/freeStartFlow';
308
+ export const getUrgencyLevelChangedNotificationType = '/bpm/bpmBackend/getUrgencyLevelChangedNotificationType';
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.6.92',
128
+ version: '0.6.93',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,