tsv2-library 1.0.61-alpha.132 → 1.0.61-alpha.134

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.
@@ -68,6 +68,7 @@ export type InputPhoneNumberEmits = {
68
68
  * Emits when the input already filled.
69
69
  */
70
70
  'update:modelValue': [value?: string];
71
+ 'blur': [value?: string];
71
72
  };
72
73
 
73
74
  /**
@@ -64,6 +64,7 @@ export type InputURLEmits = {
64
64
  * Event emitted when the model value is updated
65
65
  */
66
66
  'update:modelValue': [payload?: Nullable<string>];
67
+ 'blur': [payload?: Nullable<string>];
67
68
  };
68
69
 
69
70
  /**
@@ -128,6 +128,7 @@ export type TextareaEmits = {
128
128
  * Emitted when the value changes.
129
129
  */
130
130
  'update:modelValue': [value: Nullable<string>];
131
+ 'blur': [value?: Nullable<string>];
131
132
  };
132
133
 
133
134
  /**