File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/vee-validate/src/types Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' vee-validate ' : patch
3+ ---
4+
5+ fix: export ModelessBinds type closes #4478
Original file line number Diff line number Diff line change @@ -265,11 +265,11 @@ export interface PrivateFormContext<TValues extends GenericObject = GenericObjec
265265 isFieldValid < TPath extends Path < TValues > > ( path : TPath ) : boolean ;
266266}
267267
268- interface ComponentModellessBinds {
268+ export interface ComponentModellessBinds {
269269 onBlur : ( ) => void ;
270270}
271271
272- type ComponentModelBinds < TValue = any , TModel extends string = 'modelValue' > = ComponentModellessBinds & {
272+ export type ComponentModelBinds < TValue = any , TModel extends string = 'modelValue' > = ComponentModellessBinds & {
273273 [ TKey in `onUpdate:${TModel } `] : ( value : TValue ) => void ;
274274} ;
275275
You can’t perform that action at this time.
0 commit comments