eoss-ui 0.5.12 → 0.5.14

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 (79) hide show
  1. package/lib/button-group.js +1 -13
  2. package/lib/button.js +3 -15
  3. package/lib/cascader.js +2 -2
  4. package/lib/checkbox-group.js +40 -34
  5. package/lib/data-table-form.js +4 -15
  6. package/lib/data-table.js +1219 -1529
  7. package/lib/date-picker.js +3 -15
  8. package/lib/dialog.js +10 -22
  9. package/lib/eoss-ui.common.js +1282 -1818
  10. package/lib/flow-group.js +1 -13
  11. package/lib/flow-list.js +3 -15
  12. package/lib/flow.js +43 -54
  13. package/lib/form.js +5 -22
  14. package/lib/handle-user.js +1 -13
  15. package/lib/handler.js +1 -13
  16. package/lib/icons.js +2 -2
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +3 -15
  19. package/lib/input.js +3 -15
  20. package/lib/label.js +5 -4
  21. package/lib/layout.js +166 -152
  22. package/lib/login.js +1 -13
  23. package/lib/main.js +15 -24
  24. package/lib/menu.js +2 -2
  25. package/lib/nav.js +10 -22
  26. package/lib/notify.js +2 -2
  27. package/lib/page.js +3 -15
  28. package/lib/pagination.js +2 -2
  29. package/lib/player.js +9 -21
  30. package/lib/qr-code.js +5 -17
  31. package/lib/radio-group.js +44 -34
  32. package/lib/retrial-auth.js +3 -15
  33. package/lib/select-ganged.js +26 -18
  34. package/lib/select.js +42 -31
  35. package/lib/selector-panel.js +7 -18
  36. package/lib/selector.js +5 -17
  37. package/lib/sizer.js +3 -15
  38. package/lib/steps.js +10 -22
  39. package/lib/switch.js +3 -15
  40. package/lib/table-form.js +3 -15
  41. package/lib/tabs-panel.js +2 -2
  42. package/lib/tabs.js +3 -15
  43. package/lib/theme-chalk/data-table.css +1 -1
  44. package/lib/theme-chalk/index.css +1 -1
  45. package/lib/theme-chalk/nav.css +1 -1
  46. package/lib/tips.js +3 -15
  47. package/lib/toolbar.js +2 -2
  48. package/lib/tree-group.js +3 -15
  49. package/lib/tree.js +3 -15
  50. package/lib/upload.js +4 -16
  51. package/lib/utils/util.js +1 -10
  52. package/lib/utils/webSocket.js +0 -3
  53. package/lib/wujie.js +3 -15
  54. package/lib/wxlogin.js +3 -15
  55. package/package.json +1 -1
  56. package/packages/checkbox-group/src/main.vue +20 -30
  57. package/packages/data-table/src/children.vue +4 -8
  58. package/packages/data-table/src/column.vue +522 -575
  59. package/packages/data-table/src/main.vue +123 -124
  60. package/packages/flow/src/component/taskUnionExamine.vue +1 -1
  61. package/packages/flow/src/main.vue +1 -1
  62. package/packages/flow/src/processForm.vue +1 -1
  63. package/packages/flow/src/processReject.vue +1 -1
  64. package/packages/flow/src/startTaskRead.vue +1 -1
  65. package/packages/form/src/main.vue +2 -7
  66. package/packages/label/src/main.vue +3 -2
  67. package/packages/main/src/main.vue +6 -4
  68. package/packages/radio-group/src/main.vue +20 -30
  69. package/packages/select/src/main.vue +20 -29
  70. package/packages/select-ganged/src/main.vue +1 -3
  71. package/packages/theme-chalk/lib/data-table.css +1 -1
  72. package/packages/theme-chalk/lib/index.css +1 -1
  73. package/packages/theme-chalk/lib/nav.css +1 -1
  74. package/packages/theme-chalk/src/data-table.scss +2 -1
  75. package/packages/theme-chalk/src/nav.scss +21 -2
  76. package/src/index.js +1 -1
  77. package/src/utils/util.js +1 -10
  78. package/src/utils/webSocket.js +0 -3
  79. package/packages/data-table/src/mixins/table.js +0 -12
package/lib/sizer.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 58);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 59);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3462,7 +3453,7 @@ module.exports = require("axios");
3462
3453
 
3463
3454
  /***/ }),
3464
3455
 
3465
- /***/ 58:
3456
+ /***/ 59:
3466
3457
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3467
3458
 
3468
3459
  "use strict";
@@ -3949,7 +3940,6 @@ var WebSocket = function () {
3949
3940
  this.connects = 1;
3950
3941
  this.recon = false;
3951
3942
  this.sendTimeout = null;
3952
- this.isSend = false;
3953
3943
  }
3954
3944
 
3955
3945
  /** socket连接 */
@@ -3977,9 +3967,7 @@ var WebSocket = function () {
3977
3967
  // tryTimes定义重置
3978
3968
  _this.connects = 1;
3979
3969
  // 订阅消息
3980
- // if (!this.isSend) {
3981
3970
  _this.subscribe();
3982
- // }
3983
3971
  }, function (error) {
3984
3972
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3985
3973
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/steps.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 59);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 60);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3455,7 +3446,14 @@ module.exports = require("axios");
3455
3446
 
3456
3447
  /***/ }),
3457
3448
 
3458
- /***/ 59:
3449
+ /***/ 6:
3450
+ /***/ (function(module, exports) {
3451
+
3452
+ module.exports = require("json-bigint");
3453
+
3454
+ /***/ }),
3455
+
3456
+ /***/ 60:
3459
3457
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3460
3458
 
3461
3459
  "use strict";
@@ -3788,13 +3786,6 @@ main.install = function (Vue) {
3788
3786
 
3789
3787
  /***/ }),
3790
3788
 
3791
- /***/ 6:
3792
- /***/ (function(module, exports) {
3793
-
3794
- module.exports = require("json-bigint");
3795
-
3796
- /***/ }),
3797
-
3798
3789
  /***/ 7:
3799
3790
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3800
3791
 
@@ -3825,7 +3816,6 @@ var WebSocket = function () {
3825
3816
  this.connects = 1;
3826
3817
  this.recon = false;
3827
3818
  this.sendTimeout = null;
3828
- this.isSend = false;
3829
3819
  }
3830
3820
 
3831
3821
  /** socket连接 */
@@ -3853,9 +3843,7 @@ var WebSocket = function () {
3853
3843
  // tryTimes定义重置
3854
3844
  _this.connects = 1;
3855
3845
  // 订阅消息
3856
- // if (!this.isSend) {
3857
3846
  _this.subscribe();
3858
- // }
3859
3847
  }, function (error) {
3860
3848
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3861
3849
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/switch.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 77);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 78);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3492,7 +3483,6 @@ var WebSocket = function () {
3492
3483
  this.connects = 1;
3493
3484
  this.recon = false;
3494
3485
  this.sendTimeout = null;
3495
- this.isSend = false;
3496
3486
  }
3497
3487
 
3498
3488
  /** socket连接 */
@@ -3520,9 +3510,7 @@ var WebSocket = function () {
3520
3510
  // tryTimes定义重置
3521
3511
  _this.connects = 1;
3522
3512
  // 订阅消息
3523
- // if (!this.isSend) {
3524
3513
  _this.subscribe();
3525
- // }
3526
3514
  }, function (error) {
3527
3515
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3528
3516
  if (_this.connects > 5 && diffSecond < _this.interval) {
@@ -3598,7 +3586,7 @@ var WebSocket = function () {
3598
3586
 
3599
3587
  /***/ }),
3600
3588
 
3601
- /***/ 77:
3589
+ /***/ 78:
3602
3590
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3603
3591
 
3604
3592
  "use strict";
package/lib/table-form.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 65);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 66);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3487,7 +3478,7 @@ module.exports = require("json-bigint");
3487
3478
 
3488
3479
  /***/ }),
3489
3480
 
3490
- /***/ 65:
3481
+ /***/ 66:
3491
3482
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3492
3483
 
3493
3484
  "use strict";
@@ -7569,7 +7560,6 @@ var WebSocket = function () {
7569
7560
  this.connects = 1;
7570
7561
  this.recon = false;
7571
7562
  this.sendTimeout = null;
7572
- this.isSend = false;
7573
7563
  }
7574
7564
 
7575
7565
  /** socket连接 */
@@ -7597,9 +7587,7 @@ var WebSocket = function () {
7597
7587
  // tryTimes定义重置
7598
7588
  _this.connects = 1;
7599
7589
  // 订阅消息
7600
- // if (!this.isSend) {
7601
7590
  _this.subscribe();
7602
- // }
7603
7591
  }, function (error) {
7604
7592
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
7605
7593
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/tabs-panel.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 61);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 62);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 61:
195
+ /***/ 62:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
package/lib/tabs.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 60);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 61);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3462,7 +3453,7 @@ module.exports = require("json-bigint");
3462
3453
 
3463
3454
  /***/ }),
3464
3455
 
3465
- /***/ 60:
3456
+ /***/ 61:
3466
3457
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3467
3458
 
3468
3459
  "use strict";
@@ -6003,7 +5994,6 @@ var WebSocket = function () {
6003
5994
  this.connects = 1;
6004
5995
  this.recon = false;
6005
5996
  this.sendTimeout = null;
6006
- this.isSend = false;
6007
5997
  }
6008
5998
 
6009
5999
  /** socket连接 */
@@ -6031,9 +6021,7 @@ var WebSocket = function () {
6031
6021
  // tryTimes定义重置
6032
6022
  _this.connects = 1;
6033
6023
  // 订阅消息
6034
- // if (!this.isSend) {
6035
6024
  _this.subscribe();
6036
- // }
6037
6025
  }, function (error) {
6038
6026
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
6039
6027
  if (_this.connects > 5 && diffSecond < _this.interval) {
@@ -1 +1 @@
1
- @charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:28px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number{width:100%}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 12px;background-color:#f8f8f8}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.sizer-btn-box{text-align:right;margin-top:7px}
1
+ @charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:28px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number,.es-data-table-content .es-table .el-form-item .el-select{width:100%}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 12px;background-color:#f8f8f8}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.sizer-btn-box{text-align:right;margin-top:7px}