eoss-ui 0.4.67 → 0.4.69

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 (77) hide show
  1. package/lib/button-group.js +11 -11
  2. package/lib/button.js +11 -11
  3. package/lib/card.js +2 -2
  4. package/lib/cascader.js +2 -2
  5. package/lib/checkbox-group.js +12 -12
  6. package/lib/clients.js +2 -2
  7. package/lib/data-table-form.js +11 -12
  8. package/lib/data-table.js +18 -19
  9. package/lib/date-picker.js +11 -11
  10. package/lib/dialog.js +13 -16
  11. package/lib/enterprise.js +2 -2
  12. package/lib/eoss-ui.common.js +1898 -3874
  13. package/lib/error-page.js +2 -2
  14. package/lib/flow-group.js +1019 -908
  15. package/lib/flow-list.js +453 -1432
  16. package/lib/flow.js +20 -36
  17. package/lib/form.js +37 -37
  18. package/lib/handle-user.js +12 -12
  19. package/lib/handler.js +12 -12
  20. package/lib/icons.js +4 -4
  21. package/lib/index.js +1 -1
  22. package/lib/input-number.js +18 -18
  23. package/lib/input.js +43 -43
  24. package/lib/label.js +2 -2
  25. package/lib/login.js +110 -101
  26. package/lib/main.js +82 -72
  27. package/lib/menu.js +5 -2
  28. package/lib/nav.js +11 -11
  29. package/lib/notify.js +4 -4
  30. package/lib/page.js +18 -18
  31. package/lib/pagination.js +2 -2
  32. package/lib/player.js +23 -23
  33. package/lib/qr-code.js +13 -13
  34. package/lib/radio-group.js +12 -12
  35. package/lib/retrial-auth.js +12 -12
  36. package/lib/select-ganged.js +11 -11
  37. package/lib/select.js +14 -14
  38. package/lib/selector-panel.js +66 -56
  39. package/lib/selector.js +14 -14
  40. package/lib/sizer.js +12 -12
  41. package/lib/steps.js +11 -11
  42. package/lib/switch.js +11 -11
  43. package/lib/table-form.js +36 -36
  44. package/lib/tabs-panel.js +26 -8
  45. package/lib/tabs.js +16 -13
  46. package/lib/theme-chalk/index.css +1 -1
  47. package/lib/tips.js +19 -19
  48. package/lib/toolbar.js +2 -2
  49. package/lib/tree-group.js +11 -11
  50. package/lib/tree.js +12 -12
  51. package/lib/upload.js +12 -12
  52. package/lib/wujie.js +11 -11
  53. package/lib/wxlogin.js +11 -11
  54. package/package.json +1 -1
  55. package/packages/data-table/src/main.vue +3 -3
  56. package/packages/flow/src/processForm.vue +0 -3
  57. package/packages/flow-group/src/main.vue +263 -248
  58. package/packages/flow-list/src/main.vue +22 -114
  59. package/packages/main/src/main.vue +56 -39
  60. package/packages/main/src/message.vue +6 -8
  61. package/packages/menu/src/main.vue +3 -0
  62. package/packages/tabs/src/main.vue +3 -1
  63. package/packages/tabs-panel/src/main.vue +15 -4
  64. package/packages/theme-chalk/lib/index.css +1 -1
  65. package/packages/theme-chalk/src/index.scss +0 -1
  66. package/src/index.js +1 -4
  67. package/lib/editor.js +0 -1345
  68. package/lib/theme-chalk/editor.css +0 -1
  69. package/packages/editor/index.js +0 -5
  70. package/packages/editor/src/color.vue +0 -148
  71. package/packages/editor/src/editor.vue +0 -25
  72. package/packages/editor/src/main.vue +0 -114
  73. package/packages/editor/src/minx.js +0 -213
  74. package/packages/editor/src/toolbar.vue +0 -224
  75. package/packages/flow-list/src/flow-table.vue +0 -441
  76. package/packages/theme-chalk/lib/editor.css +0 -1
  77. package/packages/theme-chalk/src/editor.scss +0 -94
@@ -9,7 +9,6 @@
9
9
  @import "./data-table-form.scss";
10
10
  @import "./date-picker.scss";
11
11
  @import "./dialog.scss";
12
- @import "./editor.scss";
13
12
  @import "./enterprise.scss";
14
13
  @import "./error-page.scss";
15
14
  @import "./form.scss";
package/src/index.js CHANGED
@@ -10,7 +10,6 @@ import DataTable from '../packages/data-table/index.js';
10
10
  import DataTableForm from '../packages/data-table-form/index.js';
11
11
  import DatePicker from '../packages/date-picker/index.js';
12
12
  import Dialog from '../packages/dialog/index.js';
13
- import Editor from '../packages/editor/index.js';
14
13
  import Enterprise from '../packages/enterprise/index.js';
15
14
  import ErrorPage from '../packages/error-page/index.js';
16
15
  import Form from '../packages/form/index.js';
@@ -63,7 +62,6 @@ const components = [
63
62
  DataTableForm,
64
63
  DatePicker,
65
64
  Dialog,
66
- Editor,
67
65
  Enterprise,
68
66
  ErrorPage,
69
67
  Form,
@@ -117,7 +115,7 @@ if (typeof window !== 'undefined' && window.Vue) {
117
115
  }
118
116
 
119
117
  export default {
120
- version: '0.4.67',
118
+ version: '0.4.69',
121
119
  install,
122
120
  Button,
123
121
  ButtonGroup,
@@ -129,7 +127,6 @@ export default {
129
127
  DataTableForm,
130
128
  DatePicker,
131
129
  Dialog,
132
- Editor,
133
130
  Enterprise,
134
131
  ErrorPage,
135
132
  Form,