@bigbinary/neetoui 4.0.17 → 4.1.1
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/CHANGELOG.md +8 -0
- package/formik.d.ts +2 -2
- package/formik.js +2 -2
- package/index.css +1 -1
- package/index.d.ts +2 -2
- package/index.js +4 -4
- package/layouts.js +3 -3
- package/molecules.js +1 -1
- package/package.json +7 -4
package/index.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ export interface DropdownProps {
|
|
|
240
240
|
[key: string]: any;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
-
export interface
|
|
243
|
+
export interface MultiEmailInputProps {
|
|
244
244
|
label?: string;
|
|
245
245
|
placeholder?: string;
|
|
246
246
|
helpText?: string;
|
|
@@ -584,7 +584,7 @@ export const Dropdown: React.FC<DropdownProps> & {
|
|
|
584
584
|
>
|
|
585
585
|
>;
|
|
586
586
|
};
|
|
587
|
-
export const
|
|
587
|
+
export const MultiEmailInput: React.FC<MultiEmailInputProps>;
|
|
588
588
|
export const Input: React.ForwardRefExoticComponent<InputProps>;
|
|
589
589
|
export const Label: React.FC<LabelProps>;
|
|
590
590
|
export const PageLoader: React.FC<PageLoaderProps>;
|