UNPKG

@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) 1.13 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ResponsiveFormBreakPoint } from './ResponsiveFormBreakPoint.js'; /** * Represents the [gutters](https://developer.mozilla.org/en-US/docs/Web/CSS/gap) configuration for a form layout. * It allows defining the spacing between the columns and rows of the form. * Each property can be a number or an array of responsive breakpoints. */ export interface Gutters { /** * Defines the gutters for the columns in the form. * Can be a number or an array of responsive breakpoints. */ cols?: string | number | ResponsiveFormBreakPoint[]; /** * Defines the gutters for the rows in the form. * Can be a number or an array of responsive breakpoints. */ rows?: string | number | ResponsiveFormBreakPoint[]; }