@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/formik.cjs.js +925 -676
- package/formik.cjs.js.map +1 -1
- package/formik.js +925 -676
- package/formik.js.map +1 -1
- package/index.cjs.js +914 -665
- package/index.cjs.js.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +3 -0
- package/index.js +914 -665
- package/index.js.map +1 -1
- package/layouts.cjs.js +577 -446
- package/layouts.cjs.js.map +1 -1
- package/layouts.js +577 -446
- package/layouts.js.map +1 -1
- package/package.json +2 -2
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
|