@signal24/vue-foundation 4.27.1 → 4.28.0
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/.yarnrc.yml +1 -1
- package/demo/components/demo-vf-smart-select.vue +7 -0
- package/dist/src/components/vf-ajax-select.vue.d.ts +1 -1
- package/dist/src/components/vf-ez-smart-select.vue.d.ts +1 -1
- package/dist/src/components/vf-smart-select.vue.d.ts +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/vue-foundation.es.js +127 -129
- package/package.json +9 -9
- package/src/components/vf-smart-select.vue +6 -7
package/.yarnrc.yml
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
label-field="label"
|
|
39
39
|
group-field="group"
|
|
40
40
|
null-title="No selection"
|
|
41
|
+
@update:model-value="logModelValueChange"
|
|
41
42
|
/>
|
|
42
43
|
Selected value label: {{ selectedDelayedOption1?.label ?? '-' }}
|
|
43
44
|
</div>
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
value-field="value"
|
|
52
53
|
group-field="group"
|
|
53
54
|
null-title="No selection"
|
|
55
|
+
@update:model-value="logModelValueChange"
|
|
54
56
|
/>
|
|
55
57
|
Selected value: {{ selectedDelayedOption2 ?? '-' }}
|
|
56
58
|
</div>
|
|
@@ -213,6 +215,11 @@ function createOption(name: string) {
|
|
|
213
215
|
selectedCreateOption.value = 'new';
|
|
214
216
|
}
|
|
215
217
|
|
|
218
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
219
|
+
function logModelValueChange(newValue: any) {
|
|
220
|
+
console.log('Model value changed:', newValue);
|
|
221
|
+
}
|
|
222
|
+
|
|
216
223
|
onMounted(() => setTimeout(setDelayedOptions, 2000));
|
|
217
224
|
</script>
|
|
218
225
|
|