bk-magic-vue 2.4.0-beta.2 → 2.4.0

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 (49) hide show
  1. package/dist/bk-magic-vue.css +17 -8
  2. package/dist/bk-magic-vue.js +63 -22
  3. package/dist/bk-magic-vue.min.css +1 -1
  4. package/dist/bk-magic-vue.min.css.gz +0 -0
  5. package/dist/bk-magic-vue.min.css.map +1 -1
  6. package/dist/bk-magic-vue.min.js +1 -1
  7. package/dist/bk-magic-vue.min.js.gz +0 -0
  8. package/dist/bk-magic-vue.min.js.map +1 -1
  9. package/lib/big-tree.js +1 -1
  10. package/lib/breadcrumb.js +28 -1
  11. package/lib/cascade.js +14 -4
  12. package/lib/date-picker.js +13 -8
  13. package/lib/dialog.js +1 -1
  14. package/lib/directives/overflow-tips.js +1 -1
  15. package/lib/directives/tooltips.js +1 -1
  16. package/lib/form-item.js +1 -1
  17. package/lib/image-viewer.js +1 -1
  18. package/lib/image.js +1 -1
  19. package/lib/info-box.js +1 -1
  20. package/lib/pagination.js +1 -1
  21. package/lib/row.js +1 -1
  22. package/lib/search-select.js +1 -1
  23. package/lib/select.js +1 -1
  24. package/lib/slider.js +1 -1
  25. package/lib/table-column.js +4 -2
  26. package/lib/table.js +6 -9
  27. package/lib/tag-input.js +1 -1
  28. package/lib/time-picker.js +9 -4
  29. package/lib/transfer.js +1 -1
  30. package/lib/ui/bk-magic-vue.css +17 -8
  31. package/lib/ui/bk-magic-vue.min.css +1 -1
  32. package/lib/ui/bk-magic-vue.min.css.gz +0 -0
  33. package/lib/ui/bk-magic-vue.min.css.map +1 -1
  34. package/lib/ui/breadcrumb.css +10 -0
  35. package/lib/ui/breadcrumb.min.css +1 -1
  36. package/lib/ui/breadcrumb.min.css.map +1 -1
  37. package/lib/ui/cascade.css +2 -2
  38. package/lib/ui/cascade.min.css +1 -1
  39. package/lib/ui/cascade.min.css.map +1 -1
  40. package/lib/ui/table.css +8 -5
  41. package/lib/ui/table.min.css +1 -1
  42. package/lib/ui/table.min.css.map +1 -1
  43. package/lib/ui/time-picker.css +0 -1
  44. package/lib/ui/time-picker.min.css +1 -1
  45. package/lib/ui/time-picker.min.css.map +1 -1
  46. package/lib/upload.js +1 -1
  47. package/lib/version-detail.js +1 -1
  48. package/lib/virtual-render.js +1 -1
  49. package/package.json +1 -1
package/lib/big-tree.js CHANGED
@@ -627,7 +627,7 @@
627
627
  var ownKeys = Object.keys(source);
628
628
 
629
629
  if (typeof Object.getOwnPropertySymbols === 'function') {
630
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
630
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
631
631
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
632
632
  }));
633
633
  }
package/lib/breadcrumb.js CHANGED
@@ -14,6 +14,16 @@
14
14
  separatorClass: {
15
15
  type: String,
16
16
  default: ''
17
+ },
18
+ backRouter: {
19
+ type: [Object, String],
20
+ default: function _default() {
21
+ return null;
22
+ }
23
+ },
24
+ replace: {
25
+ type: Boolean,
26
+ default: false
17
27
  }
18
28
  },
19
29
  provide: function provide() {
@@ -26,6 +36,14 @@
26
36
  if (items.length) {
27
37
  items[items.length - 1].setAttribute('aria-current', 'page');
28
38
  }
39
+ },
40
+ methods: {
41
+ goBack: function goBack() {
42
+ var backRouter = this.backRouter,
43
+ $router = this.$router;
44
+ if (!backRouter || !$router) return;
45
+ this.replace ? $router.replace(backRouter) : $router.push(backRouter);
46
+ }
29
47
  }
30
48
  };
31
49
 
@@ -105,7 +123,16 @@
105
123
  "aria-label": "Breadcrumb",
106
124
  "role": "navigation"
107
125
  }
108
- }, [_vm._t("default")], 2);
126
+ }, [!_vm.$slots.prefix && _vm.backRouter ? _c('div', {
127
+ staticClass: "bk-breadcrumb-goback"
128
+ }, [_c('i', {
129
+ staticClass: "bk-icon icon-arrows-left icon-default",
130
+ on: {
131
+ "click": _vm.goBack
132
+ }
133
+ })]) : _vm._e(), _vm.$slots.prefix ? _c('div', {
134
+ staticClass: "bk-breadcrumb-goback"
135
+ }, [_vm._t("prefix")], 2) : _vm._e(), _vm._t("default")], 2);
109
136
  };
110
137
 
111
138
  var __vue_staticRenderFns__ = [];
package/lib/cascade.js CHANGED
@@ -6142,7 +6142,11 @@
6142
6142
  return selections;
6143
6143
  },
6144
6144
  changeValueList: function changeValueList() {
6145
- this.recursiveList(this.cascadeList, this.value, 'init');
6145
+ if (this.isRemote) {
6146
+ this.recursiveList(this.cascadeList, this.value, 'search');
6147
+ } else {
6148
+ this.recursiveList(this.cascadeList, this.value, 'init');
6149
+ }
6146
6150
  this.checkListStatus(this.value);
6147
6151
  var newList = this.changeList();
6148
6152
  this.multipleSelectedList = newList.filter(function (item) {
@@ -6261,7 +6265,7 @@
6261
6265
  var itemId = item.id[item.id.length - 1];
6262
6266
  var changeCheckStatus = function changeCheckStatus(arr) {
6263
6267
  arr.forEach(function (item) {
6264
- if (itemId === item.id) {
6268
+ if ("".concat(itemId) === "".concat(item.id)) {
6265
6269
  item.isSelected = false;
6266
6270
  item.isIndeterminate = false;
6267
6271
  }
@@ -6365,9 +6369,15 @@
6365
6369
  }, _vm._l(_vm.multipleSelectedList, function (item, index) {
6366
6370
  return _c('span', {
6367
6371
  key: index,
6368
- staticClass: "bk-cascade-tag-item"
6372
+ staticClass: "bk-cascade-tag-item",
6373
+ staticStyle: {
6374
+ "padding-right": "18px"
6375
+ }
6369
6376
  }, [_c('span', {
6370
- staticClass: "bk-cascade-item-name"
6377
+ staticClass: "bk-cascade-item-name",
6378
+ attrs: {
6379
+ "title": item.name
6380
+ }
6371
6381
  }, [_vm._v(_vm._s(item.name))]), _c('a', {
6372
6382
  staticClass: "remove-key",
6373
6383
  attrs: {
@@ -62,7 +62,7 @@
62
62
  var ownKeys = Object.keys(source);
63
63
 
64
64
  if (typeof Object.getOwnPropertySymbols === 'function') {
65
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
65
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
66
66
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
67
67
  }));
68
68
  }
@@ -2935,10 +2935,10 @@
2935
2935
  return !this.editable || this.readonly;
2936
2936
  },
2937
2937
  hasFooter: function hasFooter() {
2938
- return !!this.$slots.footer;
2938
+ return !!this.$slots.footer || !!this.$scopedSlots.footer;
2939
2939
  },
2940
2940
  hasHeader: function hasHeader() {
2941
- return !!this.$slots.header;
2941
+ return !!this.$slots.header || !!this.$scopedSlots.header;
2942
2942
  },
2943
2943
  allowCrossDayProp: function allowCrossDayProp() {
2944
2944
  return this.panel === 'RangeTimePickerPanel' ? this.allowCrossDay : false;
@@ -3570,7 +3570,12 @@
3570
3570
  },
3571
3571
  "selection-mode-change": _vm.onSelectionModeChange
3572
3572
  }
3573
- }, 'component', _vm.ownPickerProps, false)), _vm.hasFooter ? [_c('div', {
3573
+ }, 'component', _vm.ownPickerProps, false), [_vm.$slots.shortcuts || _vm.$scopedSlots.shortcuts ? _c('div', {
3574
+ attrs: {
3575
+ "slot": "shortcuts"
3576
+ },
3577
+ slot: "shortcuts"
3578
+ }, [_vm._t("shortcuts")], 2) : _vm._e()]), _vm.hasFooter ? [_c('div', {
3574
3579
  staticClass: "bk-date-picker-footer-wrapper",
3575
3580
  class: _vm.footerSlotCls
3576
3581
  }, [_vm._t("footer")], 2)] : _vm._e()], 2)], 1)], 1);
@@ -6097,7 +6102,7 @@
6097
6102
 
6098
6103
  return _c('div', {
6099
6104
  staticClass: "bk-picker-panel-body-wrapper bk-date-picker-with-range",
6100
- class: [_vm.shortcuts.length ? 'bk-picker-panel-with-sidebar' : ''],
6105
+ class: [_vm.shortcuts.length || _vm.$slots.shortcuts ? 'bk-picker-panel-with-sidebar' : ''],
6101
6106
  on: {
6102
6107
  "mousedown": function mousedown($event) {
6103
6108
  $event.preventDefault();
@@ -6331,9 +6336,9 @@
6331
6336
  "pick-clear": _vm.handlePickClear,
6332
6337
  "pick-success": _vm.handlePickSuccess
6333
6338
  }
6334
- }) : _vm._e()], 1), _vm.shortcuts.length ? _c('div', {
6339
+ }) : _vm._e()], 1), _vm.shortcuts.length || _vm.$slots.shortcuts ? _c('div', {
6335
6340
  staticClass: "bk-picker-panel-sidebar"
6336
- }, _vm._l(_vm.shortcuts, function (shortcut, index) {
6341
+ }, [_vm.$slots.shortcuts ? _vm._t("shortcuts") : _vm._l(_vm.shortcuts, function (shortcut, index) {
6337
6342
  return _c('div', {
6338
6343
  key: index,
6339
6344
  staticClass: "bk-picker-panel-shortcut",
@@ -6343,7 +6348,7 @@
6343
6348
  }
6344
6349
  }
6345
6350
  }, [_vm._v(_vm._s(shortcut.text))]);
6346
- }), 0) : _vm._e()]);
6351
+ })], 2) : _vm._e()]);
6347
6352
  };
6348
6353
 
6349
6354
  var __vue_staticRenderFns__$b = [];
package/lib/dialog.js CHANGED
@@ -590,7 +590,7 @@
590
590
  var ownKeys = Object.keys(source);
591
591
 
592
592
  if (typeof Object.getOwnPropertySymbols === 'function') {
593
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
593
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
594
594
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
595
595
  }));
596
596
  }
@@ -81,7 +81,7 @@
81
81
  var ownKeys = Object.keys(source);
82
82
 
83
83
  if (typeof Object.getOwnPropertySymbols === 'function') {
84
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
84
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
85
85
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
86
86
  }));
87
87
  }
@@ -83,7 +83,7 @@
83
83
  var ownKeys = Object.keys(source);
84
84
 
85
85
  if (typeof Object.getOwnPropertySymbols === 'function') {
86
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
86
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
87
87
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
88
88
  }));
89
89
  }
package/lib/form-item.js CHANGED
@@ -1659,7 +1659,7 @@
1659
1659
  var ownKeys = Object.keys(source);
1660
1660
 
1661
1661
  if (typeof Object.getOwnPropertySymbols === 'function') {
1662
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
1662
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
1663
1663
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
1664
1664
  }));
1665
1665
  }
@@ -236,7 +236,7 @@
236
236
  var ownKeys = Object.keys(source);
237
237
 
238
238
  if (typeof Object.getOwnPropertySymbols === 'function') {
239
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
239
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
240
240
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
241
241
  }));
242
242
  }
package/lib/image.js CHANGED
@@ -374,7 +374,7 @@
374
374
  var ownKeys = Object.keys(source);
375
375
 
376
376
  if (typeof Object.getOwnPropertySymbols === 'function') {
377
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
377
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
378
378
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
379
379
  }));
380
380
  }
package/lib/info-box.js CHANGED
@@ -606,7 +606,7 @@
606
606
  var ownKeys = Object.keys(source);
607
607
 
608
608
  if (typeof Object.getOwnPropertySymbols === 'function') {
609
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
609
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
610
610
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
611
611
  }));
612
612
  }
package/lib/pagination.js CHANGED
@@ -628,7 +628,7 @@
628
628
  var ownKeys = Object.keys(source);
629
629
 
630
630
  if (typeof Object.getOwnPropertySymbols === 'function') {
631
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
631
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
632
632
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
633
633
  }));
634
634
  }
package/lib/row.js CHANGED
@@ -25,7 +25,7 @@
25
25
  var ownKeys = Object.keys(source);
26
26
 
27
27
  if (typeof Object.getOwnPropertySymbols === 'function') {
28
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
28
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
29
29
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
30
30
  }));
31
31
  }
@@ -403,7 +403,7 @@
403
403
  var ownKeys = Object.keys(source);
404
404
 
405
405
  if (typeof Object.getOwnPropertySymbols === 'function') {
406
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
406
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
407
407
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
408
408
  }));
409
409
  }
package/lib/select.js CHANGED
@@ -628,7 +628,7 @@
628
628
  var ownKeys = Object.keys(source);
629
629
 
630
630
  if (typeof Object.getOwnPropertySymbols === 'function') {
631
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
631
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
632
632
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
633
633
  }));
634
634
  }
package/lib/slider.js CHANGED
@@ -429,7 +429,7 @@
429
429
  var ownKeys = Object.keys(source);
430
430
 
431
431
  if (typeof Object.getOwnPropertySymbols === 'function') {
432
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
432
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
433
433
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
434
434
  }));
435
435
  }
@@ -77,7 +77,7 @@
77
77
  var ownKeys = Object.keys(source);
78
78
 
79
79
  if (typeof Object.getOwnPropertySymbols === 'function') {
80
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
80
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
81
81
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
82
82
  }));
83
83
  }
@@ -2231,7 +2231,9 @@
2231
2231
  renderCell = DEFAULT_RENDER_CELL;
2232
2232
  }
2233
2233
  if (_self.showOverflowTooltip) {
2234
- var config = _typeof(_self.showOverflowTooltip) === 'object' ? _self.showOverflowTooltip : {};
2234
+ var config = _typeof(_self.showOverflowTooltip) === 'object' ? _self.showOverflowTooltip : {
2235
+ interactive: false
2236
+ };
2235
2237
  return h("div", {
2236
2238
  "class": "cell",
2237
2239
  "directives": [{
package/lib/table.js CHANGED
@@ -419,7 +419,7 @@
419
419
  var ownKeys = Object.keys(source);
420
420
 
421
421
  if (typeof Object.getOwnPropertySymbols === 'function') {
422
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
422
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
423
423
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
424
424
  }));
425
425
  }
@@ -3994,12 +3994,11 @@
3994
3994
  _createClass(TableLayout, [{
3995
3995
  key: "updateScrollY",
3996
3996
  value: function updateScrollY() {
3997
- var height = this.height;
3998
- if (typeof height !== 'string' && typeof height !== 'number') return;
3997
+ if (!this.bodyHeight) return;
3999
3998
  var bodyWrapper = this.table.bodyWrapper;
4000
3999
  if (this.table.$el && bodyWrapper) {
4001
4000
  if (this.table.isVirtualRender) {
4002
- var body = bodyWrapper.querySelector('.bk-virtual-render');
4001
+ var body = bodyWrapper.querySelector('.bk-virtual-section');
4003
4002
  this.scrollY = body.offsetHeight > this.bodyHeight;
4004
4003
  } else {
4005
4004
  var _body = bodyWrapper.querySelector('.bk-table-body');
@@ -4059,10 +4058,8 @@
4059
4058
  });
4060
4059
  }
4061
4060
  var tableHeight = this.tableHeight = this.table.$el.offsetHeight - this.paginationHeight;
4062
- if (this.height !== null && (!isNaN(this.height) || typeof this.height === 'string')) {
4063
- var footerHeight = this.footerHeight = footerWrapper ? footerWrapper.offsetHeight : 0;
4064
- this.bodyHeight = tableHeight - headerHeight - footerHeight + (footerWrapper ? 1 : 0);
4065
- }
4061
+ var footerHeight = this.footerHeight = footerWrapper ? footerWrapper.offsetHeight : 0;
4062
+ this.bodyHeight = tableHeight - headerHeight - footerHeight + (footerWrapper ? 1 : 0);
4066
4063
  this.fixedBodyHeight = this.scrollX ? this.bodyHeight - this.gutterWidth : this.bodyHeight;
4067
4064
  var noData = !this.table.data || this.table.data.length === 0;
4068
4065
  this.viewportHeight = this.scrollX ? tableHeight - (noData ? 0 : this.gutterWidth) : tableHeight;
@@ -12679,10 +12676,10 @@
12679
12676
  },
12680
12677
  doLayout: function doLayout() {
12681
12678
  if (this.$destroyed) return;
12682
- this.layout.updateColumnsWidth();
12683
12679
  if (this.shouldUpdateHeight) {
12684
12680
  this.layout.updateElsHeight();
12685
12681
  }
12682
+ this.layout.updateColumnsWidth();
12686
12683
  },
12687
12684
  sort: function sort(prop, order) {
12688
12685
  this.store.commit('sort', {
package/lib/tag-input.js CHANGED
@@ -403,7 +403,7 @@
403
403
  var ownKeys = Object.keys(source);
404
404
 
405
405
  if (typeof Object.getOwnPropertySymbols === 'function') {
406
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
406
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
407
407
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
408
408
  }));
409
409
  }
@@ -62,7 +62,7 @@
62
62
  var ownKeys = Object.keys(source);
63
63
 
64
64
  if (typeof Object.getOwnPropertySymbols === 'function') {
65
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
65
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
66
66
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
67
67
  }));
68
68
  }
@@ -2853,10 +2853,10 @@
2853
2853
  return !this.editable || this.readonly;
2854
2854
  },
2855
2855
  hasFooter: function hasFooter() {
2856
- return !!this.$slots.footer;
2856
+ return !!this.$slots.footer || !!this.$scopedSlots.footer;
2857
2857
  },
2858
2858
  hasHeader: function hasHeader() {
2859
- return !!this.$slots.header;
2859
+ return !!this.$slots.header || !!this.$scopedSlots.header;
2860
2860
  },
2861
2861
  allowCrossDayProp: function allowCrossDayProp() {
2862
2862
  return this.panel === 'RangeTimePickerPanel' ? this.allowCrossDay : false;
@@ -3488,7 +3488,12 @@
3488
3488
  },
3489
3489
  "selection-mode-change": _vm.onSelectionModeChange
3490
3490
  }
3491
- }, 'component', _vm.ownPickerProps, false)), _vm.hasFooter ? [_c('div', {
3491
+ }, 'component', _vm.ownPickerProps, false), [_vm.$slots.shortcuts || _vm.$scopedSlots.shortcuts ? _c('div', {
3492
+ attrs: {
3493
+ "slot": "shortcuts"
3494
+ },
3495
+ slot: "shortcuts"
3496
+ }, [_vm._t("shortcuts")], 2) : _vm._e()]), _vm.hasFooter ? [_c('div', {
3492
3497
  staticClass: "bk-date-picker-footer-wrapper",
3493
3498
  class: _vm.footerSlotCls
3494
3499
  }, [_vm._t("footer")], 2)] : _vm._e()], 2)], 1)], 1);
package/lib/transfer.js CHANGED
@@ -83,7 +83,7 @@
83
83
  var ownKeys = Object.keys(source);
84
84
 
85
85
  if (typeof Object.getOwnPropertySymbols === 'function') {
86
- ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {
86
+ ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function (sym) {
87
87
  return Object.getOwnPropertyDescriptor(source, sym).enumerable;
88
88
  }));
89
89
  }
@@ -10344,9 +10344,11 @@ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
10344
10344
  cursor:pointer;
10345
10345
  color:#C4C6CC
10346
10346
  }
10347
- .bk-table th .bk-table-column-filter-trigger.is-open,
10348
- .bk-table th .bk-table-column-filter-trigger.is-filtered{
10349
- color:#63656E;
10347
+ .bk-table th .bk-table-column-filter-trigger.is-open{
10348
+ color:#63656e;
10349
+ }
10350
+ .bk-table th .bk-table-column-filter-trigger.is-filtered{
10351
+ color:#3a84ff;
10350
10352
  }
10351
10353
  .bk-table th .bk-table-caret-wrapper{
10352
10354
  display:-webkit-inline-box;
@@ -10384,10 +10386,10 @@ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
10384
10386
  bottom:-1px;
10385
10387
  }
10386
10388
  .bk-table th.ascending .bk-table-sort-caret.ascending{
10387
- border-bottom-color:#63656E;
10389
+ border-bottom-color:#3a84ff;
10388
10390
  }
10389
10391
  .bk-table th.descending .bk-table-sort-caret.descending{
10390
- border-top-color:#63656E;
10392
+ border-top-color:#3a84ff;
10391
10393
  }
10392
10394
  .bk-table td.gutter{
10393
10395
  width:0;
@@ -11245,7 +11247,6 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
11245
11247
  box-sizing:border-box;
11246
11248
  padding-top:6px;
11247
11249
  text-align:left;
11248
- //background-color:#e1ecff;
11249
11250
  background-color:rgba(58,132,255,.16);
11250
11251
  mix-blend-mode:multiply;
11251
11252
  color:#3a84ff;
@@ -14508,14 +14509,14 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
14508
14509
  min-height:21px;
14509
14510
  line-height:19px;
14510
14511
  word-break:break-all;
14511
- max-width:200px;
14512
+ max-width:150px;
14512
14513
  overflow:hidden;
14513
14514
  display:inline-block;
14514
14515
  text-overflow:ellipsis;
14515
14516
  white-space:nowrap;
14516
14517
  }
14517
14518
  .bk-cascade-tag-list .remove-key{
14518
- position:relative;
14519
+ position:absolute;
14519
14520
  width:18px;
14520
14521
  height:16px;
14521
14522
  top:3px;
@@ -15149,6 +15150,14 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
15149
15150
  .bk-breadcrumb-item:last-child .bk-breadcrumb-separator{
15150
15151
  display:none;
15151
15152
  }
15153
+ .bk-breadcrumb-goback{
15154
+ color:#699df4;
15155
+ margin-right:12px;
15156
+ cursor:pointer
15157
+ }
15158
+ .bk-breadcrumb-goback .icon-default{
15159
+ font-size:26px;
15160
+ }
15152
15161
  .bk-divider{
15153
15162
  position:relative
15154
15163
  }