langie 2.0.4 → 2.0.5

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/core.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * langie v2.0.4
2
+ * langie v2.0.5
3
3
  * (c) 2026 nlit
4
4
  * @license Apache-2.0
5
5
  *
package/dist/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * langie v2.0.4
2
+ * langie v2.0.5
3
3
  * (c) 2026 nlit
4
4
  * @license Apache-2.0
5
5
  *
package/dist/index.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * langie v2.0.4
2
+ * langie v2.0.5
3
3
  * (c) 2026 nlit
4
4
  * @license Apache-2.0
5
5
  *
@@ -2255,7 +2255,9 @@ var LanguageSelect_default = /* @__PURE__ */ (0, import_vue3.defineComponent)({
2255
2255
  });
2256
2256
  const searchQuery = (0, import_vue5.ref)("");
2257
2257
  const transliterate = (0, import_vue5.shallowRef)(null);
2258
- const searchInputAttrs = (0, import_vue5.computed)(() => ({ placeholder: props.placeholder }));
2258
+ const searchInputAttrs = (0, import_vue5.computed)(() => ({
2259
+ placeholder: props.modelValue?.code ? void 0 : props.placeholder
2260
+ }));
2259
2261
  const validLanguages = (0, import_vue5.computed)(() => {
2260
2262
  return props.languages.filter((lang) => lang && lang.code && lang.name && lang.native_name);
2261
2263
  });