@progress/kendo-react-form
Version:
React Form is a small and fast package for form state management with zero dependencies. KendoReact Form package
26 lines (25 loc) • 935 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
*-------------------------------------------------------------------------------------------
*/
/**
* Defines responsive breakpoints for form layouts.
* Each breakpoint sets minimum and maximum widths and values for columns or spacing at different screen sizes.
*/
export interface ResponsiveFormBreakPoint {
/**
* Sets the minimum screen width in pixels for this breakpoint.
*/
minWidth?: number;
/**
* Sets the maximum screen width in pixels for this breakpoint.
*/
maxWidth?: number;
/**
* Sets the number of columns or spacing for form controls at this screen size.
*/
value: number | string;
}