bkui-vue 0.0.1-beta.373 → 0.0.1-beta.374
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.cjs.js +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.umd.js +1 -1
- package/lib/tag-input/index.d.ts +7 -3
- package/lib/tag-input/index.js +1 -1
- package/lib/tag-input/tag-input.d.ts +30 -3
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -20320,7 +20320,7 @@ var Component$d = defineComponent({
|
|
20320
20320
|
bkTooltips: tooltips
|
20321
20321
|
},
|
20322
20322
|
props: tagProps(),
|
20323
|
-
emits: ["update:modelValue", "change", "select", "focus", "blur", "remove", "removeAll"],
|
20323
|
+
emits: ["update:modelValue", "change", "select", "focus", "blur", "remove", "removeAll", "input"],
|
20324
20324
|
setup(props2, {
|
20325
20325
|
emit
|
20326
20326
|
}) {
|
@@ -20619,6 +20619,7 @@ var Component$d = defineComponent({
|
|
20619
20619
|
}
|
20620
20620
|
state.isEdit = true;
|
20621
20621
|
state.focusItemIndex = allowCreate ? -1 : 0;
|
20622
|
+
emit("input", curInputValue.value);
|
20622
20623
|
};
|
20623
20624
|
const handleFocus = () => {
|
20624
20625
|
var _a;
|