@bigbinary/neetoui 4.4.25 → 4.4.27

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.
package/index.d.ts CHANGED
@@ -283,6 +283,8 @@ export interface InputProps
283
283
  contentSize?: number;
284
284
  required?: boolean;
285
285
  labelProps?: LabelProps;
286
+ maxLength?: number;
287
+ unlimitedChars: boolean;
286
288
  }
287
289
 
288
290
  export type LabelProps = {
@@ -412,6 +414,7 @@ export type TextareaProps = {
412
414
  className?: string;
413
415
  maxLength?: number;
414
416
  labelProps?: LabelProps;
417
+ unlimitedChars: boolean;
415
418
  } & React.DetailedHTMLProps<
416
419
  React.TextareaHTMLAttributes<HTMLTextAreaElement>,
417
420
  HTMLTextAreaElement