istox-shared 6.1.26 → 6.1.28-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.
@@ -0,0 +1 @@
1
+ 2.7.9
@@ -117,7 +117,7 @@ export declare class FormControl extends React.Component<IProps, IState> {
117
117
  }) => Promise<string | undefined>;
118
118
  isExcluded(): boolean | undefined;
119
119
  isRequired(): boolean;
120
- getType(): "number" | "select" | "switch" | "text" | "checkbox" | "radio" | "email" | "date" | "password" | "country" | "datetime" | "phone" | "advanced_date_picker" | "advanced_datetime_picker" | "autocomplete" | "phone_email" | "number_adjuster" | "single_select" | "daterange" | "datetimerange" | "fileuploader" | "otpinput" | "richeditor" | "select_date_picker" | "embed_file_uploader" | "time_only_picker";
120
+ getType(): "number" | "date" | "select" | "switch" | "text" | "checkbox" | "email" | "password" | "radio" | "advanced_date_picker" | "advanced_datetime_picker" | "autocomplete" | "phone_email" | "number_adjuster" | "single_select" | "country" | "datetime" | "daterange" | "datetimerange" | "fileuploader" | "phone" | "otpinput" | "richeditor" | "select_date_picker" | "embed_file_uploader" | "time_only_picker";
121
121
  onSubmitting: () => Promise<void>;
122
122
  getFormItem(): FormItem<{}, {}> | undefined;
123
123
  clear(): void | undefined;
@@ -16,6 +16,8 @@ export interface IOtpResendProps extends IButton {
16
16
  interface IState {
17
17
  resendCount: number;
18
18
  remainingSeconds: number;
19
+ shouldShowContactSupport: boolean;
20
+ showResendCount: number;
19
21
  }
20
22
  export declare class OtpResend extends React.Component<IOtpResendProps, IState> {
21
23
  private timerRef;
@@ -43,6 +45,7 @@ export declare class OtpResend extends React.Component<IOtpResendProps, IState>
43
45
  constructor(props: IOtpResendProps);
44
46
  componentDidMount(): void;
45
47
  render(): React.JSX.Element | null;
48
+ private startContactSupportTimer;
46
49
  startCountDown: () => void;
47
50
  private requestSendOtp;
48
51
  private restartTimer;
@@ -1,7 +1,7 @@
1
1
  export declare class FileHelper {
2
2
  static downloadBase64(fileName: string, base64: string): void;
3
3
  private static dataURIToBlob;
4
- static getMimeType(fileName: string): "text/plain" | "application/pdf" | "image/jpeg" | "image/png" | "image/gif" | "application/zip" | "application/json";
4
+ static getMimeType(fileName: string): "application/pdf" | "text/plain" | "image/jpeg" | "image/png" | "image/gif" | "application/zip" | "application/json";
5
5
  static parseBucketUrl(bucketUrl: string): {
6
6
  fileName: string;
7
7
  fileSize: number;