eoss-ui 0.5.72 → 0.5.74

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 (63) hide show
  1. package/lib/button-group.js +16 -6
  2. package/lib/button.js +16 -6
  3. package/lib/checkbox-group.js +16 -6
  4. package/lib/clients.js +16 -7
  5. package/lib/data-table-form.js +16 -6
  6. package/lib/data-table.js +31 -13
  7. package/lib/date-picker.js +16 -6
  8. package/lib/dialog.js +16 -6
  9. package/lib/eoss-ui.common.js +252 -115
  10. package/lib/flow-group.js +16 -6
  11. package/lib/flow-list.js +16 -6
  12. package/lib/flow.js +16 -6
  13. package/lib/form.js +16 -6
  14. package/lib/handle-user.js +16 -6
  15. package/lib/handler.js +16 -6
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +16 -6
  18. package/lib/input.js +16 -6
  19. package/lib/login.js +24 -14
  20. package/lib/main.js +128 -40
  21. package/lib/menu.js +3 -0
  22. package/lib/nav.js +73 -25
  23. package/lib/page.js +16 -6
  24. package/lib/player.js +16 -6
  25. package/lib/qr-code.js +16 -6
  26. package/lib/radio-group.js +16 -6
  27. package/lib/retrial-auth.js +16 -6
  28. package/lib/select-ganged.js +16 -6
  29. package/lib/select.js +17 -6
  30. package/lib/selector-panel.js +16 -6
  31. package/lib/selector.js +19 -9
  32. package/lib/sizer.js +16 -6
  33. package/lib/steps.js +16 -6
  34. package/lib/switch.js +16 -6
  35. package/lib/table-form.js +16 -6
  36. package/lib/tabs.js +16 -6
  37. package/lib/theme-chalk/index.css +1 -1
  38. package/lib/theme-chalk/main.css +1 -1
  39. package/lib/theme-chalk/nav.css +1 -1
  40. package/lib/tips.js +16 -6
  41. package/lib/tree-group.js +16 -6
  42. package/lib/tree.js +19 -9
  43. package/lib/upload.js +16 -6
  44. package/lib/utils/webSocket.js +16 -6
  45. package/lib/wujie.js +16 -6
  46. package/lib/wxlogin.js +16 -6
  47. package/package.json +2 -2
  48. package/packages/clients/src/main.vue +3 -1
  49. package/packages/data-table/src/main.vue +9 -7
  50. package/packages/login/src/resetPassword.vue +1 -1
  51. package/packages/main/src/main.vue +53 -14
  52. package/packages/menu/src/main.vue +3 -0
  53. package/packages/nav/src/main.vue +37 -8
  54. package/packages/select/src/main.vue +1 -0
  55. package/packages/selector/src/main.vue +1 -1
  56. package/packages/theme-chalk/lib/index.css +1 -1
  57. package/packages/theme-chalk/lib/main.css +1 -1
  58. package/packages/theme-chalk/lib/nav.css +1 -1
  59. package/packages/theme-chalk/src/main.scss +3 -1
  60. package/packages/theme-chalk/src/nav.scss +4 -1
  61. package/packages/tree/src/main.vue +1 -1
  62. package/src/index.js +1 -1
  63. package/src/utils/webSocket.js +14 -7
@@ -3563,6 +3563,8 @@ var WebSocket = function () {
3563
3563
  this.connects = 1;
3564
3564
  this.recon = false;
3565
3565
  this.sendTimeout = null;
3566
+ this.socket = null;
3567
+ this.subscription = null;
3566
3568
  }
3567
3569
 
3568
3570
  /** socket连接 */
@@ -3573,14 +3575,12 @@ var WebSocket = function () {
3573
3575
 
3574
3576
  if (!this.client) {
3575
3577
  // 连接SockJS
3576
- var socket = new sockjs_client__WEBPACK_IMPORTED_MODULE_0___default.a(this.host + this.url);
3577
- // 获取STOMP子协议的客户端对象
3578
- this.client = stompjs__WEBPACK_IMPORTED_MODULE_1___default.a.over(socket);
3578
+ this.socket = new sockjs_client__WEBPACK_IMPORTED_MODULE_0___default.a(this.host + this.url, { timeout: 60000 });
3579
+ this.client = stompjs__WEBPACK_IMPORTED_MODULE_1___default.a.over(this.socket);
3579
3580
  }
3580
3581
 
3581
3582
  // 日志不打印
3582
3583
  if (!this.debug) {
3583
- console.log(111);
3584
3584
  this.client.debug = function () {};
3585
3585
  }
3586
3586
 
@@ -3592,9 +3592,10 @@ var WebSocket = function () {
3592
3592
  // 订阅消息
3593
3593
  _this.subscribe();
3594
3594
  }, function (error) {
3595
+ _this.unsubscribe();
3596
+ _this.client = null;
3595
3597
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3596
3598
  if (_this.connects > 5 && diffSecond < _this.interval) {
3597
- _this.client.disconnect();
3598
3599
  _this.error && _this.error(error);
3599
3600
  } else {
3600
3601
  _this.reconTimeout = setTimeout(function () {
@@ -3603,6 +3604,14 @@ var WebSocket = function () {
3603
3604
  }, 5000);
3604
3605
  }
3605
3606
  });
3607
+ }; // 清除订阅
3608
+
3609
+
3610
+ WebSocket.prototype.unsubscribe = function unsubscribe() {
3611
+ if (this.subscription) {
3612
+ this.subscription.unsubscribe();
3613
+ this.subscription = null;
3614
+ }
3606
3615
  };
3607
3616
  /** 订阅服务端 */
3608
3617
 
@@ -3611,7 +3620,7 @@ var WebSocket = function () {
3611
3620
  var _this2 = this;
3612
3621
 
3613
3622
  // 订阅服务端提供的某个topic
3614
- this.client.subscribe(this.take, function (response) {
3623
+ this.subscription = this.client.subscribe(this.take, function (response) {
3615
3624
  if (response && (_this2.callback || _this2.success)) {
3616
3625
  var callback = _this2.callback || _this2.success;
3617
3626
  callback(JSON.parse(response.body));
@@ -3652,6 +3661,7 @@ var WebSocket = function () {
3652
3661
 
3653
3662
  WebSocket.prototype.destroy = function destroy() {
3654
3663
  // 断开连接,清除定时器
3664
+ this.unsubscribe();
3655
3665
  if (this.client) {
3656
3666
  this.client.disconnect();
3657
3667
  };
@@ -6430,8 +6440,8 @@ checkbox_group_src_main.install = function (Vue) {
6430
6440
  };
6431
6441
 
6432
6442
  /* harmony default export */ var checkbox_group = (checkbox_group_src_main);
6433
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/clients/src/main.vue?vue&type=template&id=2f0c03c7&
6434
- var mainvue_type_template_id_2f0c03c7_render = function () {
6443
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/clients/src/main.vue?vue&type=template&id=12fa73ca&
6444
+ var mainvue_type_template_id_12fa73ca_render = function () {
6435
6445
  var _vm = this
6436
6446
  var _h = _vm.$createElement
6437
6447
  var _c = _vm._self._c || _h
@@ -6439,11 +6449,18 @@ var mainvue_type_template_id_2f0c03c7_render = function () {
6439
6449
  _vm.logo
6440
6450
  ? _c("img", { staticClass: "es-clients-logo", attrs: { src: _vm.logo } })
6441
6451
  : _vm._e(),
6442
- _c("div", { staticClass: "es-clients-title" }, [
6443
- _vm._v(
6444
- "\n 请通过手机浏览器(iOS11版本以上的苹果手机使用照相功能)扫码下载安装\n "
6445
- ),
6446
- ]),
6452
+ _c(
6453
+ "div",
6454
+ { staticClass: "es-clients-title" },
6455
+ [
6456
+ _vm._v("\n 请通过手机浏览器\n "),
6457
+ _vm.ios
6458
+ ? [_vm._v(" (iOS11版本以上的苹果手机使用照相功能) ")]
6459
+ : _vm._e(),
6460
+ _vm._v("\n 扫码下载安装\n "),
6461
+ ],
6462
+ 2
6463
+ ),
6447
6464
  _c("ul", { staticClass: "es-clients-list" }, [
6448
6465
  _vm.ios
6449
6466
  ? _c(
@@ -6524,7 +6541,7 @@ var mainvue_type_template_id_2f0c03c7_render = function () {
6524
6541
  ]),
6525
6542
  ])
6526
6543
  }
6527
- var mainvue_type_template_id_2f0c03c7_staticRenderFns = [
6544
+ var mainvue_type_template_id_12fa73ca_staticRenderFns = [
6528
6545
  function () {
6529
6546
  var _vm = this
6530
6547
  var _h = _vm.$createElement
@@ -6553,10 +6570,10 @@ var mainvue_type_template_id_2f0c03c7_staticRenderFns = [
6553
6570
  ])
6554
6571
  },
6555
6572
  ]
6556
- mainvue_type_template_id_2f0c03c7_render._withStripped = true
6573
+ mainvue_type_template_id_12fa73ca_render._withStripped = true
6557
6574
 
6558
6575
 
6559
- // CONCATENATED MODULE: ./packages/clients/src/main.vue?vue&type=template&id=2f0c03c7&
6576
+ // CONCATENATED MODULE: ./packages/clients/src/main.vue?vue&type=template&id=12fa73ca&
6560
6577
 
6561
6578
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/clients/src/main.vue?vue&type=script&lang=js&
6562
6579
  var _props;
@@ -6604,6 +6621,8 @@ var _props;
6604
6621
  //
6605
6622
  //
6606
6623
  //
6624
+ //
6625
+ //
6607
6626
 
6608
6627
  //import util from 'eoss-ui/src/utils/util';
6609
6628
  /* harmony default export */ var clients_src_mainvue_type_script_lang_js_ = ({
@@ -6670,8 +6689,8 @@ var _props;
6670
6689
 
6671
6690
  var clients_src_main_component = normalizeComponent(
6672
6691
  packages_clients_src_mainvue_type_script_lang_js_,
6673
- mainvue_type_template_id_2f0c03c7_render,
6674
- mainvue_type_template_id_2f0c03c7_staticRenderFns,
6692
+ mainvue_type_template_id_12fa73ca_render,
6693
+ mainvue_type_template_id_12fa73ca_staticRenderFns,
6675
6694
  false,
6676
6695
  null,
6677
6696
  null,
@@ -6688,8 +6707,8 @@ clients_src_main.install = function (Vue) {
6688
6707
  };
6689
6708
 
6690
6709
  /* harmony default export */ var clients = (clients_src_main);
6691
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=f4b01d22&
6692
- var mainvue_type_template_id_f4b01d22_render = function () {
6710
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=7b641b60&
6711
+ var mainvue_type_template_id_7b641b60_render = function () {
6693
6712
  var _vm = this
6694
6713
  var _h = _vm.$createElement
6695
6714
  var _c = _vm._self._c || _h
@@ -6999,11 +7018,11 @@ var mainvue_type_template_id_f4b01d22_render = function () {
6999
7018
  1
7000
7019
  )
7001
7020
  }
7002
- var mainvue_type_template_id_f4b01d22_staticRenderFns = []
7003
- mainvue_type_template_id_f4b01d22_render._withStripped = true
7021
+ var mainvue_type_template_id_7b641b60_staticRenderFns = []
7022
+ mainvue_type_template_id_7b641b60_render._withStripped = true
7004
7023
 
7005
7024
 
7006
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=f4b01d22&
7025
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=7b641b60&
7007
7026
 
7008
7027
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=44b7ff61&
7009
7028
  var childrenvue_type_template_id_44b7ff61_render = function () {
@@ -9490,8 +9509,8 @@ var mainvue_type_script_lang_js_components, _watch;
9490
9509
  if (this.list && this.list.length) {
9491
9510
  return this.list;
9492
9511
  }
9493
- if (this.page && this.data && this.data.length && this.config.totalCount < this.data.length + 2) {
9494
- this.config.totalCount = this.data.length - this.lose;
9512
+ this.config.totalCount = this.data.length - this.lose;
9513
+ if (this.page && this.data.length > this.config.pageSize) {
9495
9514
  return this.data.filter(function (item, index) {
9496
9515
  return index > (_this.config.pageNum - 1) * _this.config.pageSize - 1 && index < _this.config.pageNum * _this.config.pageSize;
9497
9516
  });
@@ -9556,6 +9575,14 @@ var mainvue_type_script_lang_js_components, _watch;
9556
9575
  this.resetHeight();
9557
9576
  this.doLayout();
9558
9577
  },
9578
+
9579
+ // data: {
9580
+ // immediate: true,
9581
+ // deep: true,
9582
+ // handler(val) {
9583
+ // this.config.totalCount = val.length - this.lose;
9584
+ // }
9585
+ // },
9559
9586
  page: function page() {
9560
9587
  this.resetHeight();
9561
9588
  this.doLayout();
@@ -10428,8 +10455,8 @@ var mainvue_type_script_lang_js_components, _watch;
10428
10455
 
10429
10456
  var data_table_src_main_component = normalizeComponent(
10430
10457
  packages_data_table_src_mainvue_type_script_lang_js_,
10431
- mainvue_type_template_id_f4b01d22_render,
10432
- mainvue_type_template_id_f4b01d22_staticRenderFns,
10458
+ mainvue_type_template_id_7b641b60_render,
10459
+ mainvue_type_template_id_7b641b60_staticRenderFns,
10433
10460
  false,
10434
10461
  null,
10435
10462
  null,
@@ -48389,8 +48416,8 @@ mainvue_type_template_id_249fae96_render._withStripped = true
48389
48416
 
48390
48417
  // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=249fae96&
48391
48418
 
48392
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=28f463b9&
48393
- var resetPasswordvue_type_template_id_28f463b9_render = function () {
48419
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=579bc87d&
48420
+ var resetPasswordvue_type_template_id_579bc87d_render = function () {
48394
48421
  var _vm = this
48395
48422
  var _h = _vm.$createElement
48396
48423
  var _c = _vm._self._c || _h
@@ -48450,11 +48477,11 @@ var resetPasswordvue_type_template_id_28f463b9_render = function () {
48450
48477
  1
48451
48478
  )
48452
48479
  }
48453
- var resetPasswordvue_type_template_id_28f463b9_staticRenderFns = []
48454
- resetPasswordvue_type_template_id_28f463b9_render._withStripped = true
48480
+ var resetPasswordvue_type_template_id_579bc87d_staticRenderFns = []
48481
+ resetPasswordvue_type_template_id_579bc87d_render._withStripped = true
48455
48482
 
48456
48483
 
48457
- // CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=28f463b9&
48484
+ // CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=579bc87d&
48458
48485
 
48459
48486
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=script&lang=js&
48460
48487
  var resetPasswordvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -48698,7 +48725,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
48698
48725
  trigger: 'blur'
48699
48726
  } : {}, {
48700
48727
  required: true,
48701
- message: '请输入新密码',
48728
+ message: '请确认新密码',
48702
48729
  trigger: 'blur'
48703
48730
  }, { validator: this.reregExpValidate, trigger: 'blur' }]
48704
48731
  }, {
@@ -48934,8 +48961,8 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
48934
48961
 
48935
48962
  var resetPassword_component = normalizeComponent(
48936
48963
  src_resetPasswordvue_type_script_lang_js_,
48937
- resetPasswordvue_type_template_id_28f463b9_render,
48938
- resetPasswordvue_type_template_id_28f463b9_staticRenderFns,
48964
+ resetPasswordvue_type_template_id_579bc87d_render,
48965
+ resetPasswordvue_type_template_id_579bc87d_staticRenderFns,
48939
48966
  false,
48940
48967
  null,
48941
48968
  null,
@@ -50442,8 +50469,8 @@ login_src_main.install = function (Vue) {
50442
50469
  };
50443
50470
 
50444
50471
  /* harmony default export */ var login = (login_src_main);
50445
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=268dce6d&
50446
- var mainvue_type_template_id_268dce6d_render = function () {
50472
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=572765ea&
50473
+ var mainvue_type_template_id_572765ea_render = function () {
50447
50474
  var _vm = this
50448
50475
  var _h = _vm.$createElement
50449
50476
  var _c = _vm._self._c || _h
@@ -50580,16 +50607,27 @@ var mainvue_type_template_id_268dce6d_render = function () {
50580
50607
  _vm.layout === "topside" || _vm.layout === "side"
50581
50608
  ? _c(
50582
50609
  "div",
50583
- { staticClass: "es-main-side" },
50610
+ {
50611
+ staticClass: "es-main-side",
50612
+ class: {
50613
+ "es-main-topside": _vm.layout === "topside",
50614
+ },
50615
+ },
50584
50616
  [
50585
- _c("div", { staticClass: "es-main-side-logo" }, [
50586
- _vm.logoUrl
50587
- ? _c("img", {
50588
- staticClass: "es-main-logo",
50589
- attrs: { src: _vm.logoUrl },
50590
- })
50591
- : _vm._e(),
50592
- ]),
50617
+ _vm.layout === "topside"
50618
+ ? _c(
50619
+ "div",
50620
+ { staticClass: "es-main-side-logo" },
50621
+ [
50622
+ _vm.logoUrl
50623
+ ? _c("img", {
50624
+ staticClass: "es-main-logo",
50625
+ attrs: { src: _vm.logoUrl },
50626
+ })
50627
+ : _vm._e(),
50628
+ ]
50629
+ )
50630
+ : _vm._e(),
50593
50631
  _c("es-handle-user", {
50594
50632
  attrs: {
50595
50633
  data: { type: "user" },
@@ -50637,6 +50675,7 @@ var mainvue_type_template_id_268dce6d_render = function () {
50637
50675
  _vm.showMenu && _vm.showDefault
50638
50676
  ? _c("es-nav", {
50639
50677
  attrs: {
50678
+ "hide-sub-menu": _vm.hideSubMenu,
50640
50679
  "is-top": _vm.layout == "topside",
50641
50680
  overlap: _vm.layout == "side",
50642
50681
  data: _vm.menu,
@@ -50648,7 +50687,9 @@ var mainvue_type_template_id_268dce6d_render = function () {
50648
50687
  "sub-icon": _vm.subIcon,
50649
50688
  biserial: _vm.biserial,
50650
50689
  title: _vm.showNavTitle ? _vm.title : false,
50651
- showCollapse: _vm.showNavTitle,
50690
+ showCollapse: _vm.showNavTitle
50691
+ ? _vm.showCollapse
50692
+ : false,
50652
50693
  "menu-tips": _vm.menuTips,
50653
50694
  "is-default": _vm.isDefault,
50654
50695
  paddingLeft: _vm.navPaddingLeft,
@@ -50877,15 +50918,42 @@ var mainvue_type_template_id_268dce6d_render = function () {
50877
50918
  attrs: { data: _vm.sysMsg, winopen: _vm.winopen },
50878
50919
  on: { opened: _vm.handleOpened },
50879
50920
  }),
50921
+ _c(
50922
+ "es-dialog",
50923
+ {
50924
+ attrs: {
50925
+ title: _vm.dialog.title,
50926
+ visible: _vm.dialog.show,
50927
+ size: "md",
50928
+ },
50929
+ on: {
50930
+ "update:visible": function ($event) {
50931
+ _vm.$set(_vm.dialog, "show", $event)
50932
+ },
50933
+ },
50934
+ },
50935
+ [
50936
+ _vm.dialog.show
50937
+ ? _c("iframe", {
50938
+ attrs: {
50939
+ width: "100%",
50940
+ height: "100%",
50941
+ frameborder: "0",
50942
+ src: _vm.dialog.src,
50943
+ },
50944
+ })
50945
+ : _vm._e(),
50946
+ ]
50947
+ ),
50880
50948
  ],
50881
50949
  1
50882
50950
  )
50883
50951
  }
50884
- var mainvue_type_template_id_268dce6d_staticRenderFns = []
50885
- mainvue_type_template_id_268dce6d_render._withStripped = true
50952
+ var mainvue_type_template_id_572765ea_staticRenderFns = []
50953
+ mainvue_type_template_id_572765ea_render._withStripped = true
50886
50954
 
50887
50955
 
50888
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=268dce6d&
50956
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=572765ea&
50889
50957
 
50890
50958
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=75d533de&
50891
50959
  var userinfovue_type_template_id_75d533de_render = function () {
@@ -53014,6 +53082,17 @@ var main_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53014
53082
  //
53015
53083
  //
53016
53084
  //
53085
+ //
53086
+ //
53087
+ //
53088
+ //
53089
+ //
53090
+ //
53091
+ //
53092
+ //
53093
+ //
53094
+ //
53095
+ //
53017
53096
 
53018
53097
 
53019
53098
 
@@ -53185,7 +53264,15 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53185
53264
  type: String,
53186
53265
  default: '230px'
53187
53266
  },
53188
- navWidth: String
53267
+ navWidth: String,
53268
+ showCollapse: {
53269
+ type: Boolean,
53270
+ default: true
53271
+ },
53272
+ onlineView: {
53273
+ type: [String, Boolean],
53274
+ default: true
53275
+ }
53189
53276
  },
53190
53277
  computed: {
53191
53278
  showHeader: function showHeader() {
@@ -53219,7 +53306,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53219
53306
  return this.layout === 'side' ? this.navBoxWidth : this.layout === 'subsystem' || this.layout === 'topside' ? '0' : this.navWidth;
53220
53307
  },
53221
53308
  showNavTitle: function showNavTitle() {
53222
- return this.layout !== 'topside' && this.layout !== 'side';
53309
+ return this.layout !== 'topside';
53223
53310
  },
53224
53311
 
53225
53312
  //tabs菜单
@@ -53307,6 +53394,12 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53307
53394
  },
53308
53395
  menuCode: function menuCode() {
53309
53396
  return appCode || this.appCode;
53397
+ },
53398
+ onlineUrl: function onlineUrl() {
53399
+ if (this.onlineView) {
53400
+ return typeof this.onlineView == 'string' ? this.onlineView : '/main/sysuseronline/list.dhtml';
53401
+ }
53402
+ return false;
53310
53403
  }
53311
53404
  },
53312
53405
  watch: {
@@ -53424,7 +53517,9 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53424
53517
  timer: null,
53425
53518
  pid: null,
53426
53519
  showPage: false,
53427
- webSocket: null
53520
+ webSocket: null,
53521
+ dialog: {},
53522
+ hideSubMenu: false
53428
53523
  };
53429
53524
  },
53430
53525
  created: function created() {
@@ -53772,10 +53867,16 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53772
53867
  * @param {Boolean} [isUrl] - res是否是url地址
53773
53868
  * @param {Object} [param] - 拼接地址后的参数
53774
53869
  */
53775
- jumpMenu: function jumpMenu(res, isUrl, path) {
53870
+ jumpMenu: function jumpMenu(res, isUrl, param, hide) {
53776
53871
  var _this5 = this;
53777
53872
 
53778
- var option = { url: res, isUrl: isUrl, path: path };
53873
+ if (this.showSide === false) {
53874
+ this.isSide = true;
53875
+ }
53876
+ if (hide !== undefined && hide !== null && hide !== '') {
53877
+ this.hideSubMenu = hide;
53878
+ }
53879
+ var option = { url: res, isUrl: isUrl, param: param };
53779
53880
  if (utils_util["a" /* default */].isObject(res)) {
53780
53881
  if (res.urlopenmode == 1) {
53781
53882
  utils_util["a" /* default */].win.open(res.url);
@@ -53801,11 +53902,11 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
53801
53902
  this.method = 'router';
53802
53903
  var routes = this.$router.options.routes;
53803
53904
  if (routes) {
53804
- var _path = this.hasRouter(routes, option.url);
53805
- if (_path) {
53905
+ var path = this.hasRouter(routes, option.url);
53906
+ if (path) {
53806
53907
  var params = utils_util["a" /* default */].getParams({ url: option.url });
53807
53908
  this.$router.push({
53808
- path: _path,
53909
+ path: path,
53809
53910
  query: params
53810
53911
  });
53811
53912
  } else {
@@ -54271,6 +54372,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54271
54372
  }
54272
54373
  break;
54273
54374
  case 'sub':
54375
+ this.hideSubMenu = false;
54274
54376
  this.navIds = [node.id];
54275
54377
  if (node.url) {
54276
54378
  this.tabs = [];
@@ -54367,19 +54469,19 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54367
54469
  }
54368
54470
  }
54369
54471
  } else {
54370
- var _path2 = res.path;
54371
- if (_path2 !== '/' && _path2 !== '/404') {
54372
- _path2 = _path2.replace(_path2[1], _path2[1].toLowerCase());
54472
+ var _path = res.path;
54473
+ if (_path !== '/' && _path !== '/404') {
54474
+ _path = _path.replace(_path[1], _path[1].toLowerCase());
54373
54475
  }
54374
54476
  var pathname = url.substring(url.indexOf('#/') + 1);
54375
54477
  pathname = pathname.replace(pathname[1], pathname[1].toLowerCase()).split('?')[0];
54376
- if (res.path !== '/' && pathname == _path2) {
54478
+ if (res.path !== '/' && pathname == _path) {
54377
54479
  return pathname;
54378
54480
  }
54379
54481
  if (res && Object.prototype.hasOwnProperty.call(res, 'children')) {
54380
- var _path3 = this.hasRouter(res.children, url);
54381
- if (_path3) {
54382
- return _path3;
54482
+ var _path2 = this.hasRouter(res.children, url);
54483
+ if (_path2) {
54484
+ return _path2;
54383
54485
  }
54384
54486
  }
54385
54487
  }
@@ -54391,6 +54493,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54391
54493
  handleClick: function handleClick(res) {
54392
54494
  var _this8 = this;
54393
54495
 
54496
+ console.log(res);
54394
54497
  var type = res.type;
54395
54498
 
54396
54499
  switch (type) {
@@ -54416,13 +54519,15 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54416
54519
  case 'user':
54417
54520
  this.showUserInfo = true;
54418
54521
  break;
54419
- // case 'online':
54420
- // this.dialog = {
54421
- // title: '查看在线人员',
54422
- // show: true,
54423
- // url: '/main/sysuseronline/list.dhtml'
54424
- // };
54425
- // break;
54522
+ case 'online':
54523
+ if (this.onlineUrl) {
54524
+ this.dialog = {
54525
+ title: '查看在线人员',
54526
+ show: true,
54527
+ src: this.onlineUrl
54528
+ };
54529
+ }
54530
+ break;
54426
54531
  case 'notice':
54427
54532
  this.showMsg = !this.showMsg;
54428
54533
  break;
@@ -54865,8 +54970,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
54865
54970
 
54866
54971
  var main_src_main_component = normalizeComponent(
54867
54972
  packages_main_src_mainvue_type_script_lang_js_,
54868
- mainvue_type_template_id_268dce6d_render,
54869
- mainvue_type_template_id_268dce6d_staticRenderFns,
54973
+ mainvue_type_template_id_572765ea_render,
54974
+ mainvue_type_template_id_572765ea_staticRenderFns,
54870
54975
  false,
54871
54976
  null,
54872
54977
  null,
@@ -54954,6 +55059,9 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
54954
55059
  },
54955
55060
  width: function width() {
54956
55061
  this.getMaxWidth();
55062
+ },
55063
+ height: function height() {
55064
+ this.$refs.esMenu.update();
54957
55065
  }
54958
55066
  },
54959
55067
  data: function data() {
@@ -55301,8 +55409,8 @@ menu_src_main.install = function (Vue) {
55301
55409
  };
55302
55410
 
55303
55411
  /* harmony default export */ var menu = (menu_src_main);
55304
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=template&id=3f63e2ce&
55305
- var mainvue_type_template_id_3f63e2ce_render = function () {
55412
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=template&id=ccb38c80&
55413
+ var mainvue_type_template_id_ccb38c80_render = function () {
55306
55414
  var _vm = this
55307
55415
  var _h = _vm.$createElement
55308
55416
  var _c = _vm._self._c || _h
@@ -55365,15 +55473,15 @@ var mainvue_type_template_id_3f63e2ce_render = function () {
55365
55473
  {
55366
55474
  name: "show",
55367
55475
  rawName: "v-show",
55368
- value: _vm.biserial ? _vm.subMenu.length : _vm.menu.length,
55369
- expression: "biserial ? subMenu.length : menu.length",
55476
+ value: _vm.showMenu,
55477
+ expression: "showMenu",
55370
55478
  },
55371
55479
  ],
55372
55480
  staticClass: "es-nav-main",
55373
55481
  class: { "es-nav-overlap": _vm.overlap },
55374
55482
  style: {
55375
55483
  width: _vm.biserial ? _vm.width : _vm.boxWidth,
55376
- left: _vm.show ? "15px" : _vm.navWidth,
55484
+ left: _vm.biserial ? (_vm.show ? "15px" : _vm.navWidth) : "",
55377
55485
  },
55378
55486
  attrs: { biserial: _vm.biserial },
55379
55487
  },
@@ -55381,7 +55489,7 @@ var mainvue_type_template_id_3f63e2ce_render = function () {
55381
55489
  _vm.showTitle
55382
55490
  ? _c(
55383
55491
  "div",
55384
- { staticClass: "es-nav-title" },
55492
+ { ref: "navTitle", staticClass: "es-nav-title" },
55385
55493
  [
55386
55494
  _c(
55387
55495
  "span",
@@ -55440,6 +55548,7 @@ var mainvue_type_template_id_3f63e2ce_render = function () {
55440
55548
  collapse: _vm.isCollapse,
55441
55549
  "default-active": _vm.menuActive,
55442
55550
  width: _vm.isTop ? _vm.boxWidth : _vm.menuWidth,
55551
+ height: _vm.menuHeight,
55443
55552
  "is-default": _vm.isDefault,
55444
55553
  biserial: _vm.biserial,
55445
55554
  paddingLeft: _vm.paddingLeft,
@@ -55487,11 +55596,11 @@ var mainvue_type_template_id_3f63e2ce_render = function () {
55487
55596
  ]
55488
55597
  )
55489
55598
  }
55490
- var mainvue_type_template_id_3f63e2ce_staticRenderFns = []
55491
- mainvue_type_template_id_3f63e2ce_render._withStripped = true
55599
+ var mainvue_type_template_id_ccb38c80_staticRenderFns = []
55600
+ mainvue_type_template_id_ccb38c80_render._withStripped = true
55492
55601
 
55493
55602
 
55494
- // CONCATENATED MODULE: ./packages/nav/src/main.vue?vue&type=template&id=3f63e2ce&
55603
+ // CONCATENATED MODULE: ./packages/nav/src/main.vue?vue&type=template&id=ccb38c80&
55495
55604
 
55496
55605
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=script&lang=js&
55497
55606
  //
@@ -55584,6 +55693,8 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55584
55693
  //
55585
55694
  //
55586
55695
  //
55696
+ //
55697
+
55587
55698
 
55588
55699
 
55589
55700
  /* harmony default export */ var nav_src_mainvue_type_script_lang_js_ = ({
@@ -55626,12 +55737,17 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55626
55737
  type: Boolean,
55627
55738
  default: true
55628
55739
  },
55629
- overlap: Boolean
55740
+ overlap: Boolean,
55741
+ //隐藏菜单
55742
+ hideSubMenu: Boolean
55630
55743
  },
55631
55744
  computed: {
55632
55745
  show: function show() {
55633
55746
  return this.overlap && this.subMenu.length;
55634
55747
  },
55748
+ showMenu: function showMenu() {
55749
+ return this.biserial ? this.subMenu.length : this.menu.length;
55750
+ },
55635
55751
  menu: function menu() {
55636
55752
  return this.data;
55637
55753
  },
@@ -55660,7 +55776,7 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55660
55776
  return this.navWidth;
55661
55777
  }
55662
55778
  }
55663
- return this.subMenu && this.subMenu.length && this.isShow && !this.overlap ? parseInt(this.width, 10) + parseInt(this.navWidth, 10) + 'px' : this.navWidth;
55779
+ return this.subMenu && this.subMenu.length && this.isShow && !this.overlap && !this.hideSubMenu ? parseInt(this.width, 10) + parseInt(this.navWidth, 10) + 'px' : this.navWidth;
55664
55780
  },
55665
55781
  _navWidth: function _navWidth() {
55666
55782
  return this.overlap ? parseInt(this.navWidth, 10) - 30 + 'px' : this.navWidth;
@@ -55675,11 +55791,14 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55675
55791
  this.headline = val;
55676
55792
  }
55677
55793
  },
55794
+ boxWidth: function boxWidth() {
55795
+ this.getHeight();
55796
+ },
55678
55797
 
55679
55798
  biserial: {
55680
55799
  handler: function handler(val) {
55681
55800
  this.isShow = !val;
55682
- this.resetHeight();
55801
+ this.getHeight();
55683
55802
  }
55684
55803
  },
55685
55804
  defaultActive: {
@@ -55729,6 +55848,11 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55729
55848
  } else {
55730
55849
  this.subMenu = [];
55731
55850
  }
55851
+ },
55852
+ showMenu: function showMenu(val) {
55853
+ if (val) {
55854
+ this.getHeight();
55855
+ }
55732
55856
  }
55733
55857
  },
55734
55858
  data: function data() {
@@ -55743,15 +55867,22 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55743
55867
  subMenu: []
55744
55868
  };
55745
55869
  },
55870
+ beforeCreate: function beforeCreate() {
55871
+ var _this3 = this;
55872
+
55873
+ this.getHeight = Object(external_throttle_debounce_["debounce"])(500, function () {
55874
+ _this3.resetHeight();
55875
+ });
55876
+ },
55746
55877
  mounted: function mounted() {
55747
- this.resetHeight();
55878
+ this.getHeight();
55748
55879
  this.move();
55749
55880
  },
55750
55881
 
55751
55882
  methods: {
55752
55883
  //设置按钮拖动
55753
55884
  move: function move() {
55754
- var _this3 = this;
55885
+ var _this4 = this;
55755
55886
 
55756
55887
  var area = this.$refs.area.$el;
55757
55888
  var box = this.$refs.box;
@@ -55803,7 +55934,7 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55803
55934
  var isClick = eTime - sTime < 200;
55804
55935
  if (isClick) {
55805
55936
  var onArea = function onArea() {
55806
- _this3.subMenu = [];
55937
+ _this4.subMenu = [];
55807
55938
  area.removeEventListener('click', onArea);
55808
55939
  };
55809
55940
  area.addEventListener('click', onArea);
@@ -55849,12 +55980,12 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55849
55980
  this.$emit('close', res);
55850
55981
  },
55851
55982
  resetHeight: function resetHeight() {
55852
- var _this4 = this;
55983
+ var _this5 = this;
55853
55984
 
55854
55985
  this.$nextTick(function () {
55855
- var height = _this4.$refs.esNav.parentNode.offsetHeight;
55856
- Array.from(_this4.$refs.esNav.parentNode.children).forEach(function (item) {
55857
- if (item !== _this4.$refs.esNav) {
55986
+ var height = _this5.$refs.esNav.parentNode.offsetHeight;
55987
+ Array.from(_this5.$refs.esNav.parentNode.children).forEach(function (item) {
55988
+ if (item !== _this5.$refs.esNav) {
55858
55989
  var mt = utils_util["a" /* default */].getStyle(item, 'margin-top');
55859
55990
  var mb = utils_util["a" /* default */].getStyle(item, 'margin-bottom');
55860
55991
  mt = mt ? parseInt(mt, 10) : 0;
@@ -55862,11 +55993,16 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55862
55993
  height -= item.offsetHeight + mt + mb;
55863
55994
  }
55864
55995
  });
55865
- if (_this4.overlap) {
55996
+ if (_this5.overlap) {
55866
55997
  height -= 15;
55867
55998
  }
55868
- _this4.height = height + 'px';
55869
- _this4.menuHeight = _this4.showTitle ? height - 49 + 'px' : height + 'px';
55999
+ _this5.height = height + 'px';
56000
+ if (_this5.showTitle) {
56001
+ var theight = _this5.$refs.navTitle.offsetHeight;
56002
+ _this5.menuHeight = height - theight + 'px';
56003
+ } else {
56004
+ _this5.menuHeight = height + 'px';
56005
+ }
55870
56006
  });
55871
56007
  }
55872
56008
  }
@@ -55883,8 +56019,8 @@ mainvue_type_template_id_3f63e2ce_render._withStripped = true
55883
56019
 
55884
56020
  var nav_src_main_component = normalizeComponent(
55885
56021
  packages_nav_src_mainvue_type_script_lang_js_,
55886
- mainvue_type_template_id_3f63e2ce_render,
55887
- mainvue_type_template_id_3f63e2ce_staticRenderFns,
56022
+ mainvue_type_template_id_ccb38c80_render,
56023
+ mainvue_type_template_id_ccb38c80_staticRenderFns,
55888
56024
  false,
55889
56025
  null,
55890
56026
  null,
@@ -58641,6 +58777,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
58641
58777
  }
58642
58778
  },
58643
58779
  url: {
58780
+ immediate: true,
58644
58781
  handler: function handler(val, old) {
58645
58782
  if (val && old !== val && !this.sysCode) {
58646
58783
  this.getData();
@@ -59770,8 +59907,8 @@ select_ganged_src_main.install = function (Vue) {
59770
59907
  };
59771
59908
 
59772
59909
  /* harmony default export */ var select_ganged = (select_ganged_src_main);
59773
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=bcfee2b4&
59774
- var mainvue_type_template_id_bcfee2b4_render = function () {
59910
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=59002e4c&
59911
+ var mainvue_type_template_id_59002e4c_render = function () {
59775
59912
  var _vm = this
59776
59913
  var _h = _vm.$createElement
59777
59914
  var _c = _vm._self._c || _h
@@ -60078,7 +60215,7 @@ var mainvue_type_template_id_bcfee2b4_render = function () {
60078
60215
  attrs: {
60079
60216
  type: "text",
60080
60217
  autocomplete: "off",
60081
- clearable: "clearable",
60218
+ clearable: _vm.clearable,
60082
60219
  showClearIcon: "",
60083
60220
  name: _vm.name,
60084
60221
  readonly: _vm.filterable ? false : true,
@@ -60273,11 +60410,11 @@ var mainvue_type_template_id_bcfee2b4_render = function () {
60273
60410
  )
60274
60411
  : _vm._e()
60275
60412
  }
60276
- var mainvue_type_template_id_bcfee2b4_staticRenderFns = []
60277
- mainvue_type_template_id_bcfee2b4_render._withStripped = true
60413
+ var mainvue_type_template_id_59002e4c_staticRenderFns = []
60414
+ mainvue_type_template_id_59002e4c_render._withStripped = true
60278
60415
 
60279
60416
 
60280
- // CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=bcfee2b4&
60417
+ // CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=59002e4c&
60281
60418
 
60282
60419
  // EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
60283
60420
  var clickoutside_ = __webpack_require__(18);
@@ -60935,8 +61072,8 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
60935
61072
 
60936
61073
  var selector_src_main_component = normalizeComponent(
60937
61074
  packages_selector_src_mainvue_type_script_lang_js_,
60938
- mainvue_type_template_id_bcfee2b4_render,
60939
- mainvue_type_template_id_bcfee2b4_staticRenderFns,
61075
+ mainvue_type_template_id_59002e4c_render,
61076
+ mainvue_type_template_id_59002e4c_staticRenderFns,
60940
61077
  false,
60941
61078
  null,
60942
61079
  null,
@@ -66533,8 +66670,8 @@ tips_src_main.install = function (Vue) {
66533
66670
  };
66534
66671
 
66535
66672
  /* harmony default export */ var tips = (tips_src_main);
66536
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree/src/main.vue?vue&type=template&id=3eb6c637&
66537
- var mainvue_type_template_id_3eb6c637_render = function () {
66673
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree/src/main.vue?vue&type=template&id=4df0cd89&
66674
+ var mainvue_type_template_id_4df0cd89_render = function () {
66538
66675
  var _vm = this
66539
66676
  var _h = _vm.$createElement
66540
66677
  var _c = _vm._self._c || _h
@@ -66730,11 +66867,11 @@ var mainvue_type_template_id_3eb6c637_render = function () {
66730
66867
  )
66731
66868
  : _vm._e()
66732
66869
  }
66733
- var mainvue_type_template_id_3eb6c637_staticRenderFns = []
66734
- mainvue_type_template_id_3eb6c637_render._withStripped = true
66870
+ var mainvue_type_template_id_4df0cd89_staticRenderFns = []
66871
+ mainvue_type_template_id_4df0cd89_render._withStripped = true
66735
66872
 
66736
66873
 
66737
- // CONCATENATED MODULE: ./packages/tree/src/main.vue?vue&type=template&id=3eb6c637&
66874
+ // CONCATENATED MODULE: ./packages/tree/src/main.vue?vue&type=template&id=4df0cd89&
66738
66875
 
66739
66876
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree/src/main.vue?vue&type=script&lang=js&
66740
66877
  //
@@ -67121,9 +67258,9 @@ mainvue_type_template_id_3eb6c637_render._withStripped = true
67121
67258
  getTreeDatas: function getTreeDatas(param) {
67122
67259
  var _this2 = this;
67123
67260
 
67124
- this.loading = true;
67125
67261
  var params = utils_util["a" /* default */].extend({}, this.param, this.where, param);
67126
67262
  if (!this.url || !this.isRemote) return;
67263
+ this.loading = true;
67127
67264
  utils_util["a" /* default */].ajax({
67128
67265
  url: this.url,
67129
67266
  method: this.method,
@@ -67435,8 +67572,8 @@ mainvue_type_template_id_3eb6c637_render._withStripped = true
67435
67572
 
67436
67573
  var tree_src_main_component = normalizeComponent(
67437
67574
  packages_tree_src_mainvue_type_script_lang_js_,
67438
- mainvue_type_template_id_3eb6c637_render,
67439
- mainvue_type_template_id_3eb6c637_staticRenderFns,
67575
+ mainvue_type_template_id_4df0cd89_render,
67576
+ mainvue_type_template_id_4df0cd89_staticRenderFns,
67440
67577
  false,
67441
67578
  null,
67442
67579
  null,
@@ -74936,7 +75073,7 @@ if (typeof window !== 'undefined' && window.Vue) {
74936
75073
  }
74937
75074
 
74938
75075
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
74939
- version: '0.5.72',
75076
+ version: '0.5.74',
74940
75077
  install: install,
74941
75078
  Button: packages_button,
74942
75079
  ButtonGroup: button_group,