bk-magic-vue 2.4.8-beta.1 → 2.4.8-beta.2

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.
@@ -31605,9 +31605,10 @@
31605
31605
  }, this.$props, this.tippyOptions));
31606
31606
  var onShow = options.onShow;
31607
31607
  var onHide = options.onHide;
31608
+ var zIndex = typeof options.zIndex === 'number' ? options.zIndex : null;
31608
31609
  options.onShow = function (tip) {
31609
31610
  tip.set({
31610
- zIndex: _this.getLocalZIndex(_this.zIndex)
31611
+ zIndex: _this.getLocalZIndex(zIndex || _this.zIndex)
31611
31612
  });
31612
31613
  onShow && onShow(tip);
31613
31614
  _this.$emit('show');
@@ -40428,7 +40429,8 @@
40428
40429
  bkPopover: __vue_component__$H
40429
40430
  },
40430
40431
  props: {
40431
- column: Object
40432
+ column: Object,
40433
+ tippyOptions: Object
40432
40434
  },
40433
40435
  render: function render(h) {
40434
40436
  var popoverContent = this.column.settingContent ? this.column.settingContent(h) : '';
@@ -40437,7 +40439,8 @@
40437
40439
  "trigger": "click",
40438
40440
  "placement": "bottom-end",
40439
40441
  "theme": "light bk-table-setting-popover-content",
40440
- "distance": -2
40442
+ "distance": -2,
40443
+ "tippy-options": this.tippyOptions
40441
40444
  }
40442
40445
  }, [h("i", {
40443
40446
  "class": 'bk-table-setting-icon ' + this.column.icon
@@ -42501,7 +42504,8 @@
42501
42504
  if (fixed === 'right') {
42502
42505
  return h("bk-table-setting", {
42503
42506
  "attrs": {
42504
- "column": column
42507
+ "column": column,
42508
+ "tippyOptions": column.tippyOptions
42505
42509
  }
42506
42510
  });
42507
42511
  }
@@ -42612,7 +42616,8 @@
42612
42616
  },
42613
42617
  beforeExpandChange: Function,
42614
42618
  beforeSelectChange: Function,
42615
- beforeSelectAllChange: Function
42619
+ beforeSelectAllChange: Function,
42620
+ tippyOptions: Object
42616
42621
  },
42617
42622
  data: function data() {
42618
42623
  return {
@@ -42704,6 +42709,7 @@
42704
42709
  sortOrders: this.sortOrders,
42705
42710
  order: null,
42706
42711
  beforeExpandChange: this.beforeExpandChange,
42712
+ tippyOptions: this.tippyOptions,
42707
42713
  beforeSelectChange: createFuncWrapper(this.beforeSelectChange),
42708
42714
  beforeSelectAllChange: createFuncWrapper(this.beforeSelectAllChange)
42709
42715
  });