vee-validate 4.14.7 → 4.15.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.
@@ -957,7 +957,7 @@ declare const Form: {
957
957
  default: boolean;
958
958
  };
959
959
  onSubmit: {
960
- type: PropType<SubmissionHandler>;
960
+ type: PropType<SubmissionHandler<GenericObject>>;
961
961
  default: any;
962
962
  };
963
963
  onInvalidSubmit: {
@@ -1006,7 +1006,7 @@ declare const Form: {
1006
1006
  default: boolean;
1007
1007
  };
1008
1008
  onSubmit: {
1009
- type: PropType<SubmissionHandler>;
1009
+ type: PropType<SubmissionHandler<GenericObject>>;
1010
1010
  default: any;
1011
1011
  };
1012
1012
  onInvalidSubmit: {
@@ -1023,7 +1023,7 @@ declare const Form: {
1023
1023
  };
1024
1024
  }>>, {
1025
1025
  name: string;
1026
- onSubmit: SubmissionHandler;
1026
+ onSubmit: SubmissionHandler<GenericObject>;
1027
1027
  as: string;
1028
1028
  initialValues: Record<string, any>;
1029
1029
  validateOnMount: boolean;
@@ -1065,7 +1065,7 @@ declare const Form: {
1065
1065
  default: boolean;
1066
1066
  };
1067
1067
  onSubmit: {
1068
- type: PropType<SubmissionHandler>;
1068
+ type: PropType<SubmissionHandler<GenericObject>>;
1069
1069
  default: any;
1070
1070
  };
1071
1071
  onInvalidSubmit: {
@@ -1090,7 +1090,7 @@ declare const Form: {
1090
1090
  }>[];
1091
1091
  }, {}, {}, {}, {
1092
1092
  name: string;
1093
- onSubmit: SubmissionHandler;
1093
+ onSubmit: SubmissionHandler<GenericObject>;
1094
1094
  as: string;
1095
1095
  initialValues: Record<string, any>;
1096
1096
  validateOnMount: boolean;
@@ -1129,7 +1129,7 @@ declare const Form: {
1129
1129
  default: boolean;
1130
1130
  };
1131
1131
  onSubmit: {
1132
- type: PropType<SubmissionHandler>;
1132
+ type: PropType<SubmissionHandler<GenericObject>>;
1133
1133
  default: any;
1134
1134
  };
1135
1135
  onInvalidSubmit: {
@@ -1154,7 +1154,7 @@ declare const Form: {
1154
1154
  }>[];
1155
1155
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, {
1156
1156
  name: string;
1157
- onSubmit: SubmissionHandler;
1157
+ onSubmit: SubmissionHandler<GenericObject>;
1158
1158
  as: string;
1159
1159
  initialValues: Record<string, any>;
1160
1160
  validateOnMount: boolean;