@signal24/vue-foundation 4.19.4 → 4.19.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.
@@ -775,8 +775,9 @@ const hn = ["disabled", "placeholder", "required"], pn = {
775
775
  "onUpdate:modelValue": d[0] || (d[0] = (g) => u.value = g),
776
776
  options: o.value,
777
777
  formatter: i.value,
778
- "null-title": a.nullTitle
779
- }, null, 8, ["modelValue", "options", "formatter", "null-title"]));
778
+ "null-title": a.nullTitle,
779
+ placeholder: a.placeholder
780
+ }, null, 8, ["modelValue", "options", "formatter", "null-title", "placeholder"]));
780
781
  }
781
782
  });
782
783
  function Mo() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@signal24/vue-foundation",
3
3
  "type": "module",
4
- "version": "4.19.4",
4
+ "version": "4.19.5",
5
5
  "description": "Common components, directives, and helpers for Vue 3 apps",
6
6
  "module": "./dist/vue-foundation.es.js",
7
7
  "exports": {
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <VfSmartSelect v-model="selectedItem" :options="computedOpts" :formatter="ezFormatter" :null-title="nullTitle" />
2
+ <VfSmartSelect v-model="selectedItem" :options="computedOpts" :formatter="ezFormatter" :null-title="nullTitle" :placeholder="placeholder" />
3
3
  </template>
4
4
 
5
5
  <script lang="ts" setup>