@bigbinary/neetoui 4.4.26 → 5.0.0
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/README.md +177 -18
- package/formik.cjs.js +686 -450
- package/formik.cjs.js.map +1 -1
- package/formik.js +686 -450
- package/formik.js.map +1 -1
- package/index.cjs.js +10298 -10255
- package/index.cjs.js.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +3 -6
- package/index.js +10298 -10254
- package/index.js.map +1 -1
- package/layouts.cjs.js +2074 -24756
- package/layouts.cjs.js.map +1 -1
- package/layouts.js +1920 -24577
- package/layouts.js.map +1 -1
- package/package.json +3 -2
- package/layouts.d.ts +0 -169
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 = {
|
|
@@ -299,11 +301,6 @@ export type LabelProps = {
|
|
|
299
301
|
HTMLLabelElement
|
|
300
302
|
> & { [key: string]: any };
|
|
301
303
|
|
|
302
|
-
export type PageLoaderProps = { text?: string } & React.DetailedHTMLProps<
|
|
303
|
-
React.HTMLAttributes<HTMLDivElement>,
|
|
304
|
-
HTMLDivElement
|
|
305
|
-
> & { [key: string]: any };
|
|
306
|
-
|
|
307
304
|
export interface PaginationProps {
|
|
308
305
|
pageSize: number;
|
|
309
306
|
count: number;
|
|
@@ -412,6 +409,7 @@ export type TextareaProps = {
|
|
|
412
409
|
className?: string;
|
|
413
410
|
maxLength?: number;
|
|
414
411
|
labelProps?: LabelProps;
|
|
412
|
+
unlimitedChars: boolean;
|
|
415
413
|
} & React.DetailedHTMLProps<
|
|
416
414
|
React.TextareaHTMLAttributes<HTMLTextAreaElement>,
|
|
417
415
|
HTMLTextAreaElement
|
|
@@ -639,7 +637,6 @@ export const Dropdown: React.FC<DropdownProps> & {
|
|
|
639
637
|
export const MultiEmailInput: React.FC<MultiEmailInputProps>;
|
|
640
638
|
export const Input: React.ForwardRefExoticComponent<InputProps>;
|
|
641
639
|
export const Label: React.FC<LabelProps>;
|
|
642
|
-
export const PageLoader: React.FC<PageLoaderProps>;
|
|
643
640
|
export const Pagination: React.FC<PaginationProps>;
|
|
644
641
|
export const Select: React.ForwardRefExoticComponent<SelectProps>;
|
|
645
642
|
export const Spinner: React.FC<SpinnerProps>;
|