@authing/react-ui-components 3.0.4 → 3.0.6
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 +5 -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
|
@@ -447,6 +447,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
447
447
|
extendsFieldsEnabled: boolean;
|
|
448
448
|
extendsFields: ExtendsField[];
|
|
449
449
|
identifier: string;
|
|
450
|
+
requestHostname: string;
|
|
450
451
|
identityProviders: {
|
|
451
452
|
identifier: string;
|
|
452
453
|
protocol: Protocol;
|
|
@@ -2150,6 +2151,7 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2150
2151
|
lang: Lang;
|
|
2151
2152
|
langRange: Lang[];
|
|
2152
2153
|
host: string;
|
|
2154
|
+
isHost?: boolean;
|
|
2153
2155
|
mode: GuardMode;
|
|
2154
2156
|
clickCloseable: boolean;
|
|
2155
2157
|
escCloseable: boolean;
|
|
@@ -2390,7 +2392,9 @@ declare module '@authing/react-ui-components/components/_utils/index' {
|
|
|
2390
2392
|
value: string | string[] | qs.ParsedQs | qs.ParsedQs[] | undefined;
|
|
2391
2393
|
}[];
|
|
2392
2394
|
export const isWechatBrowser: () => boolean;
|
|
2395
|
+
export const isLarkBrowser: () => boolean;
|
|
2393
2396
|
export const assembledAppHost: (identifier: string, host: string) => string;
|
|
2397
|
+
export const assembledRequestHost: (requestHostname: string, configHost: string) => string;
|
|
2394
2398
|
export enum PasswordStrength {
|
|
2395
2399
|
NoCheck = 0,
|
|
2396
2400
|
Low = 1,
|
|
@@ -2538,7 +2542,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2538
2542
|
|
|
2539
2543
|
}
|
|
2540
2544
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2541
|
-
const _default: "3.0.
|
|
2545
|
+
const _default: "3.0.6";
|
|
2542
2546
|
export default _default;
|
|
2543
2547
|
|
|
2544
2548
|
}
|