bk-magic-vue 2.5.9-beta.44 → 2.5.9-beta.46

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.
@@ -9127,8 +9127,11 @@ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
9127
9127
  margin:4px 5px 4px 0;
9128
9128
  overflow:hidden;
9129
9129
  border:none;
9130
- outline:none;
9130
+ outline:none
9131
9131
  }
9132
+ .bk-select-tag-input::-webkit-input-placeholder{
9133
+ color:#c3cdd7;
9134
+ }
9132
9135
  .bk-sideslider-show{
9133
9136
  overflow-y:hidden !important;
9134
9137
  }
@@ -11461,9 +11464,25 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
11461
11464
  .bk-tag-selector .bk-tag-input.disabled .tag-list .key-node{
11462
11465
  padding-right:2px;
11463
11466
  }
11464
- .bk-tag-selector .bk-tag-input.active{
11465
- border-color:#3a84ff;
11467
+ .bk-tag-selector .bk-tag-input.active:not(.fix-height){
11468
+ border-color:#3a84ff;
11469
+ }
11470
+ .bk-tag-selector .bk-tag-input.active.fix-height .tag-list{
11471
+ border-color:#3a84ff;
11472
+ }
11473
+ .bk-tag-selector .bk-tag-input.fix-height{
11474
+ overflow:visible;
11475
+ position:relative;
11476
+ border:1px solid transparent;
11466
11477
  }
11478
+ .bk-tag-selector .bk-tag-input.fix-height .tag-list{
11479
+ background:#fff;
11480
+ border:1px solid #c4c6cc;
11481
+ position:absolute;
11482
+ left:0;
11483
+ top:0;
11484
+ right:0;
11485
+ }
11467
11486
  .bk-tag-selector .bk-tag-input .placeholder{
11468
11487
  margin:0;
11469
11488
  padding:0;
@@ -33254,6 +33254,9 @@
33254
33254
  }],
33255
33255
  ref: "inputRef",
33256
33256
  staticClass: "bk-select-tag-input",
33257
+ attrs: {
33258
+ "placeholder": _vm.select.selectedOptions.length ? '' : _vm.select.localPlaceholder
33259
+ },
33257
33260
  domProps: {
33258
33261
  "value": _vm.newOptionName
33259
33262
  },
@@ -45074,6 +45077,10 @@
45074
45077
  allowRepeat: {
45075
45078
  type: Boolean,
45076
45079
  default: false
45080
+ },
45081
+ fixHeight: {
45082
+ type: Boolean,
45083
+ default: false
45077
45084
  }
45078
45085
  },
45079
45086
  data: function data() {
@@ -45252,8 +45259,12 @@
45252
45259
  },
45253
45260
  showPopover: function showPopover() {
45254
45261
  var inputLeft = this.isSingleSelect ? 0 : this.$refs.staffInput.offsetLeft;
45262
+ var offsetTop = 0;
45263
+ if (this.fixHeight) {
45264
+ offsetTop = this.$refs.staffInput.offsetTop;
45265
+ }
45255
45266
  this.popoverInstance.instance.set({
45256
- offset: "".concat(inputLeft, ", 0")
45267
+ offset: "".concat(inputLeft, ", ").concat(offsetTop)
45257
45268
  });
45258
45269
  if (this.popoverInstance.instance.popperInstance) {
45259
45270
  this.popoverInstance.instance.popperInstance.update();
@@ -45946,7 +45957,8 @@
45946
45957
  }, [_c('div', {
45947
45958
  class: ['bk-tag-input', {
45948
45959
  'active': _vm.isEdit,
45949
- 'disabled': _vm.disabled
45960
+ 'disabled': _vm.disabled,
45961
+ 'fix-height': _vm.fixHeight
45950
45962
  }]
45951
45963
  }, [_c('ul', {
45952
45964
  ref: "tagList",