@authing/react-ui-components 4.1.0-rc.10 → 4.1.0-rc.13
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/package.json
CHANGED
|
@@ -108,11 +108,12 @@ export declare enum RegisterSortMethods {
|
|
|
108
108
|
Phone = "phone-code",
|
|
109
109
|
EmailCode = "email-code"
|
|
110
110
|
}
|
|
111
|
-
export
|
|
111
|
+
export interface QrCodeItem {
|
|
112
112
|
id: string;
|
|
113
113
|
title: string;
|
|
114
114
|
isDefault?: boolean;
|
|
115
|
-
}
|
|
115
|
+
}
|
|
116
|
+
export declare type QrcodeTabsSettings = Record<LoginMethods, Array<QrCodeItem>>;
|
|
116
117
|
export interface OidcClientMetadata {
|
|
117
118
|
grant_types: string[];
|
|
118
119
|
client_id: string;
|
|
@@ -215,6 +216,9 @@ export interface ApplicationConfig {
|
|
|
215
216
|
};
|
|
216
217
|
};
|
|
217
218
|
qrcodeTabsSettings: QrcodeTabsSettings;
|
|
219
|
+
qrCodeSortConfig: {
|
|
220
|
+
loginMethodsSort?: string[];
|
|
221
|
+
};
|
|
218
222
|
loginTabs: {
|
|
219
223
|
list: string[];
|
|
220
224
|
default: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.1.0-rc.
|
|
1
|
+
declare const _default: "4.1.0-rc.13";
|
|
2
2
|
export default _default;
|