diff --git a/src/app/[lang]/components/form/types.ts b/src/app/[lang]/components/form/types.ts index 8655447a..1787cedb 100644 --- a/src/app/[lang]/components/form/types.ts +++ b/src/app/[lang]/components/form/types.ts @@ -92,11 +92,11 @@ export interface NumberFieldProps extends InputProps, FieldProps, SideLabelProp value?: number | string; /** Minimum value allowed */ - min?: number | null; + min?: number | string | null; /** Maximum value allowed */ - max?: number | null; + max?: number | string | null; /** Specifies the granularity that the value must adhere to */ - step?: number | 'any' | null; + step?: number | string | null; /** * Type of auto-complete. Set to 'off' to turn off auto-complete. *