@ambuj.bhaskar/react-component-library 0.23.1-alpha → 0.24.0-alpha
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/dist/assets/index.css +1 -1
- package/dist/index.cjs +78 -78
- package/dist/index.d.ts +1 -4
- package/dist/index.js +3977 -4005
- package/dist/index.umd.js +69 -69
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -992,7 +992,6 @@ export declare type LoginPageProps = {
|
|
|
992
992
|
title?: string;
|
|
993
993
|
description?: string;
|
|
994
994
|
headerImage?: string;
|
|
995
|
-
headerImageMargin?: CSSstring;
|
|
996
995
|
formConfig: {
|
|
997
996
|
[key: string]: {
|
|
998
997
|
label?: string;
|
|
@@ -1003,17 +1002,15 @@ export declare type LoginPageProps = {
|
|
|
1003
1002
|
label: string;
|
|
1004
1003
|
value: string;
|
|
1005
1004
|
}[];
|
|
1006
|
-
required?: boolean;
|
|
1007
1005
|
};
|
|
1008
1006
|
};
|
|
1009
|
-
formSchema?: Resolver
|
|
1007
|
+
formSchema?: Resolver<Record<string, unknown>>;
|
|
1010
1008
|
formSubmitDisclaimer?: string;
|
|
1011
1009
|
formSubmitButtonText?: string;
|
|
1012
1010
|
formSubmitLoading?: boolean;
|
|
1013
1011
|
onSubmit?: (data: any) => void;
|
|
1014
1012
|
footerItems?: React.ReactNode;
|
|
1015
1013
|
footerImage?: string;
|
|
1016
|
-
footerImageMargin?: CSSstring;
|
|
1017
1014
|
};
|
|
1018
1015
|
|
|
1019
1016
|
declare type MapItem = {
|