@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 CHANGED
@@ -1,3 +1,3 @@
1
1
  nodeLinker: node-modules
2
2
 
3
- yarnPath: .yarn/releases/yarn-4.6.0.cjs
3
+ yarnPath: .yarn/releases/yarn-4.9.2.cjs
@@ -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
 
@@ -18,5 +18,5 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
18
18
  };
19
19
  export default _default;
20
20
  type __VLS_PrettifyLocal<T> = {
21
- [K in keyof T]: T[K];
21
+ [K in keyof T as K]: T[K];
22
22
  } & {};
@@ -18,5 +18,5 @@ declare const _default: <T extends string>(__VLS_props: NonNullable<Awaited<type
18
18
  };
19
19
  export default _default;
20
20
  type __VLS_PrettifyLocal<T> = {
21
- [K in keyof T]: T[K];
21
+ [K in keyof T as K]: T[K];
22
22
  } & {};
@@ -57,5 +57,5 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
57
57
  };
58
58
  export default _default;
59
59
  type __VLS_PrettifyLocal<T> = {
60
- [K in keyof T]: T[K];
60
+ [K in keyof T as K]: T[K];
61
61
  } & {};