@authing/react-ui-components 3.0.31-rc.1 → 3.0.31-rc.2
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 +10 -1
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2299,6 +2299,7 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2299
2299
|
contentCss?: string;
|
|
2300
2300
|
target?: HTMLElement | string;
|
|
2301
2301
|
__appHost__?: string;
|
|
2302
|
+
__pageConfig__?: GuardPageConfig;
|
|
2302
2303
|
__publicConfig__?: ApplicationConfig;
|
|
2303
2304
|
__internalRequest__?: boolean;
|
|
2304
2305
|
}
|
|
@@ -2315,6 +2316,14 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2315
2316
|
EmailCode = "email-code",
|
|
2316
2317
|
PhoneCode = "phone-code"
|
|
2317
2318
|
}
|
|
2319
|
+
export enum GuardPageSene {
|
|
2320
|
+
Global = "guardGlobal"
|
|
2321
|
+
}
|
|
2322
|
+
export interface GuardPageConfig {
|
|
2323
|
+
[GuardPageSene.Global]: {
|
|
2324
|
+
showChangeLanguage: boolean;
|
|
2325
|
+
};
|
|
2326
|
+
}
|
|
2318
2327
|
|
|
2319
2328
|
}
|
|
2320
2329
|
declare module '@authing/react-ui-components/components/ValidatorRules/PasswordFormItem' {
|
|
@@ -2758,7 +2767,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2758
2767
|
|
|
2759
2768
|
}
|
|
2760
2769
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2761
|
-
const _default: "3.0.31-rc.
|
|
2770
|
+
const _default: "3.0.31-rc.2";
|
|
2762
2771
|
export default _default;
|
|
2763
2772
|
|
|
2764
2773
|
}
|