@v-c/select 1.0.12 → 1.0.13-beta.1

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.
@@ -137,11 +137,8 @@ const BaseSelect = /* @__PURE__ */ defineComponent((props, { expose, attrs }) =>
137
137
  if (!searchText || !searchText.trim()) return;
138
138
  props?.onSearch?.(searchText, { source: "submit" });
139
139
  };
140
- watch(mergedOpen, () => {
141
- if (!mergedOpen.value && !multiple.value && mode.value !== "combobox") onInternalSearch("", false, false);
142
- }, { immediate: true });
143
140
  watch(rawOpen, () => {
144
- if (!rawOpen.value && !multiple.value && mode.value === "combobox") onInternalSearch("", false, false);
141
+ if (!rawOpen.value && !multiple.value && mode.value !== "combobox") onInternalSearch("", false, false);
145
142
  }, { immediate: true });
146
143
  watch([disabled, mergedOpen], () => {
147
144
  if (disabled.value) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@v-c/select",
3
3
  "type": "module",
4
- "version": "1.0.12",
4
+ "version": "1.0.13-beta.1",
5
5
  "description": "",
6
6
  "author": "",
7
7
  "license": "MIT",