@authing/react-ui-components 3.1.15-rc.2 → 3.1.16-rc.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/lib/index.d.ts CHANGED
@@ -446,6 +446,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
446
446
  defaultISOType: string;
447
447
  };
448
448
  css: string;
449
+ customLoading?: string;
449
450
  name: string;
450
451
  logo: string;
451
452
  description?: string;
@@ -1175,6 +1176,11 @@ declare module '@authing/react-ui-components/components/ChangePassword/businessR
1175
1176
  oldPassword?: string;
1176
1177
  }) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
1177
1178
 
1179
+ }
1180
+ declare module '@authing/react-ui-components/components/ChangePassword/core/completePassword' {
1181
+ import React from 'react';
1182
+ export const CompletePassword: React.FC;
1183
+
1178
1184
  }
1179
1185
  declare module '@authing/react-ui-components/components/ChangePassword/core/firstLoginReset' {
1180
1186
  import React from 'react';
@@ -1202,6 +1208,7 @@ declare module '@authing/react-ui-components/components/ChangePassword/index' {
1202
1208
  }>;
1203
1209
  export const GuardFirstLoginPasswordResetView: React.FC;
1204
1210
  export const GuardForcedPasswordResetView: React.FC;
1211
+ export const GuardRegisterCompletePasswordView: React.FC;
1205
1212
 
1206
1213
  }
1207
1214
  declare module '@authing/react-ui-components/components/CompleteInfo/businessRequest' {
@@ -1327,6 +1334,9 @@ declare module '@authing/react-ui-components/components/CompleteInfo/interface'
1327
1334
  content: any;
1328
1335
  businessRequestName: 'registerByEmail' | 'registerByPhoneCode' | 'registerByEmailCode';
1329
1336
  }
1337
+ export interface RegisterCompletePasswordInitData extends RegisterCompleteInfoInitData {
1338
+ isChangeComplete: boolean;
1339
+ }
1330
1340
  export interface CompleteInfoRequest {
1331
1341
  fieldValues: {
1332
1342
  name: string;
@@ -1629,6 +1639,7 @@ declare module '@authing/react-ui-components/components/Guard/module' {
1629
1639
  BIND_TOTP = "bindTotp",
1630
1640
  ANY_QUESTIONS = "anyQuestions",
1631
1641
  LOGIN_COMPLETE_INFO = "loginCompleteInfo",
1642
+ REGISTER_PASSWORD = "registerPassword",
1632
1643
  REGISTER_COMPLETE_INFO = "registerCompleteInfo",
1633
1644
  RECOVERY_CODE = "recoveryCode",
1634
1645
  SUBMIT_SUCCESS = "submitSuccess",
@@ -2417,6 +2428,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithEmailC
2417
2428
  agreements: Agreement[];
2418
2429
  publicConfig?: ApplicationConfig;
2419
2430
  registeContext?: any;
2431
+ needPassword?: boolean;
2420
2432
  }
2421
2433
  export const RegisterWithEmailCode: React.FC<RegisterWithEmailCodeProps>;
2422
2434
 
@@ -2430,6 +2442,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithPhone'
2430
2442
  agreements: Agreement[];
2431
2443
  publicConfig?: ApplicationConfig;
2432
2444
  registeContext?: any;
2445
+ needPassword?: boolean;
2433
2446
  }
2434
2447
  export const RegisterWithPhone: React.FC<RegisterWithPhoneProps>;
2435
2448
 
@@ -2699,6 +2712,7 @@ declare module '@authing/react-ui-components/components/ValidatorRules/index' {
2699
2712
  form?: FormInstance;
2700
2713
  checkRepeat?: boolean;
2701
2714
  areaCode?: string;
2715
+ isCheckI18nSms?: boolean;
2702
2716
  }
2703
2717
  export interface ValidatorFormItemMetaProps extends ValidatorFormItemProps {
2704
2718
  form?: FormInstance;
@@ -3116,6 +3130,8 @@ declare module '@authing/react-ui-components/components/_utils/index' {
3116
3130
  export const isXiaomiBrowser: () => boolean | null;
3117
3131
  export const isDingtalkBrowser: () => boolean | null;
3118
3132
  export const isQQBrowser: () => boolean | null;
3133
+ export const isQQBuiltInBrowser: () => boolean | null;
3134
+ export const isWeWorkBuiltInBrowser: () => boolean | null;
3119
3135
  export const isSpecialBrowser: () => boolean | null;
3120
3136
  export const assembledAppHost: (identifier: string, host: string) => string;
3121
3137
  export const assembledRequestHost: (requestHostname: string, configHost: string) => string;
@@ -3323,7 +3339,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3323
3339
 
3324
3340
  }
3325
3341
  declare module '@authing/react-ui-components/components/version/version' {
3326
- const _default: "3.1.15-rc.2";
3342
+ const _default: "3.1.16-rc.1";
3327
3343
  export default _default;
3328
3344
 
3329
3345
  }