dhre-ui-kit 0.0.165 → 0.0.167
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/lib/index.d.ts +3 -0
- package/lib/index.js +153 -134
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +154 -135
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ interface CustomButtonProps {
|
|
|
70
70
|
disabled?: boolean;
|
|
71
71
|
disabledColor?: string;
|
|
72
72
|
disableButtonTitleColor?: string;
|
|
73
|
+
isLoading?: boolean;
|
|
73
74
|
}
|
|
74
75
|
|
|
75
76
|
declare const _default$i: (props: CustomButtonProps) => React$1.JSX.Element;
|
|
@@ -696,6 +697,8 @@ interface IProps$1 {
|
|
|
696
697
|
textInputStyle?: TextStyle;
|
|
697
698
|
resendTextStyle?: TextStyle;
|
|
698
699
|
resendOtpColor?: string;
|
|
700
|
+
label?: string;
|
|
701
|
+
resendText?: string;
|
|
699
702
|
mode?: 'light' | 'dark';
|
|
700
703
|
}
|
|
701
704
|
type OTPInputHandle = {
|