@progress/kendo-react-form
Version:
React Form is a small and fast package for form state management with zero dependencies. KendoReact Form package
31 lines (30 loc) • 943 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Contains data for the form submit click event.
*/
export interface FormSubmitClickEvent {
/**
* Provides the current values from all form fields.
*/
values: {
[name: string]: any;
};
/**
* Contains the original browser event that triggered the submit.
*/
event?: React.SyntheticEvent<any>;
/**
* Shows whether the form passes all validation rules.
*/
isValid: boolean;
/**
* Shows whether any form fields have been changed from their initial values.
*/
isModified: boolean;
}