bkui-vue 0.0.1-beta.200 → 0.0.1-beta.201

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.
package/dist/index.esm.js CHANGED
@@ -14903,6 +14903,7 @@ var SelectTagInput = defineComponent({
14903
14903
  const {
14904
14904
  proxy
14905
14905
  } = getCurrentInstance();
14906
+ const select2 = inject(selectKey, null);
14906
14907
  const {
14907
14908
  modelValue,
14908
14909
  collapseTags,
@@ -14958,6 +14959,7 @@ var SelectTagInput = defineComponent({
14958
14959
  });
14959
14960
  };
14960
14961
  return {
14962
+ select: select2,
14961
14963
  overflowTagIndex,
14962
14964
  value,
14963
14965
  inputRef,
@@ -14993,7 +14995,10 @@ var SelectTagInput = defineComponent({
14993
14995
  },
14994
14996
  "onClose": () => this.handleRemoveTag(item.value)
14995
14997
  }, {
14996
- default: () => [item.label]
14998
+ default: () => {
14999
+ var _a2;
15000
+ return [(_a2 = this.select) == null ? void 0 : _a2.handleGetLabelByValue(item.value)];
15001
+ }
14997
15002
  })), !!this.overflowTagIndex && this.collapseTags && createVNode(BkTag, {
14998
15003
  "class": "bk-select-overflow-tag"
14999
15004
  }, {
@@ -15442,7 +15447,8 @@ var Component$j = defineComponent({
15442
15447
  unregister,
15443
15448
  registerGroup,
15444
15449
  unregisterGroup,
15445
- handleOptionSelected
15450
+ handleOptionSelected,
15451
+ handleGetLabelByValue
15446
15452
  }));
15447
15453
  onMounted(() => {
15448
15454
  handleSetSelectedData();