@forgerock/login-widget 1.1.0-beta.1 → 1.1.0-beta.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/CHANGELOG.md +7 -0
- package/index.cjs +2737 -791
- package/index.cjs.map +1 -1
- package/index.d.ts +24 -0
- package/index.js +2737 -791
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +24 -0
- package/widget.css +40 -3
package/index.d.ts
CHANGED
|
@@ -2022,11 +2022,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2022
2022
|
charactersCannotRepeatMoreThan: ZodOptional<ZodString>;
|
|
2023
2023
|
charactersCannotRepeatMoreThanCaseInsensitive: ZodOptional<ZodString>;
|
|
2024
2024
|
chooseDifferentUsername: ZodOptional<ZodString>;
|
|
2025
|
+
chooseYourDeviceForIdentityVerification: ZodOptional<ZodString>;
|
|
2025
2026
|
confirmPassword: ZodOptional<ZodString>;
|
|
2026
2027
|
constraintViolationForPassword: ZodOptional<ZodString>;
|
|
2027
2028
|
constraintViolationForValue: ZodOptional<ZodString>;
|
|
2028
2029
|
continueWith: ZodOptional<ZodString>;
|
|
2029
2030
|
customSecurityQuestion: ZodOptional<ZodString>;
|
|
2031
|
+
dontGetLockedOut: ZodOptional<ZodString>;
|
|
2030
2032
|
doesNotMeetMinimumCharacterLength: ZodOptional<ZodString>;
|
|
2031
2033
|
ensurePasswordIsMoreThan: ZodOptional<ZodString>;
|
|
2032
2034
|
ensurePasswordHasOne: ZodOptional<ZodString>;
|
|
@@ -2066,6 +2068,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2066
2068
|
registerButton: ZodOptional<ZodString>;
|
|
2067
2069
|
registerHeader: ZodOptional<ZodString>;
|
|
2068
2070
|
registerSuccess: ZodOptional<ZodString>;
|
|
2071
|
+
registerYourDevice: ZodOptional<ZodString>;
|
|
2069
2072
|
requiredField: ZodOptional<ZodString>;
|
|
2070
2073
|
securityAnswer: ZodOptional<ZodString>;
|
|
2071
2074
|
securityQuestions: ZodOptional<ZodString>;
|
|
@@ -2082,16 +2085,21 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2082
2085
|
termsAndConditionsLinkText: ZodOptional<ZodString>;
|
|
2083
2086
|
tryAgain: ZodOptional<ZodString>;
|
|
2084
2087
|
twoFactorAuthentication: ZodOptional<ZodString>;
|
|
2088
|
+
useThisNewMfaToHelpVerifyYourIdentity: ZodOptional<ZodString>;
|
|
2085
2089
|
useValidEmail: ZodOptional<ZodString>;
|
|
2086
2090
|
unrecoverableError: ZodOptional<ZodString>;
|
|
2087
2091
|
unknownLoginError: ZodOptional<ZodString>;
|
|
2088
2092
|
unknownNetworkError: ZodOptional<ZodString>;
|
|
2093
|
+
useDeviceForIdentityVerification: ZodOptional<ZodString>;
|
|
2089
2094
|
userName: ZodOptional<ZodString>;
|
|
2090
2095
|
usernameRequirements: ZodOptional<ZodString>;
|
|
2091
2096
|
useTheAuthenticatorAppOnYourPhone: ZodOptional<ZodString>;
|
|
2092
2097
|
validatedCreatePasswordCallback: ZodOptional<ZodString>;
|
|
2093
2098
|
validatedCreateUsernameCallback: ZodOptional<ZodString>;
|
|
2094
2099
|
valueRequirements: ZodOptional<ZodString>;
|
|
2100
|
+
verifyYourIdentity: ZodOptional<ZodString>;
|
|
2101
|
+
yourMultiFactorAuthIsEnabled: ZodOptional<ZodString>;
|
|
2102
|
+
yourRecoveryCodesToAccessAccountForLostDevice: ZodOptional<ZodString>;
|
|
2095
2103
|
}, "strict", ZodTypeAny, {
|
|
2096
2104
|
alreadyHaveAnAccount?: string | undefined;
|
|
2097
2105
|
backToDefault?: string | undefined;
|
|
@@ -2101,11 +2109,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2101
2109
|
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2102
2110
|
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2103
2111
|
chooseDifferentUsername?: string | undefined;
|
|
2112
|
+
chooseYourDeviceForIdentityVerification?: string | undefined;
|
|
2104
2113
|
confirmPassword?: string | undefined;
|
|
2105
2114
|
constraintViolationForPassword?: string | undefined;
|
|
2106
2115
|
constraintViolationForValue?: string | undefined;
|
|
2107
2116
|
continueWith?: string | undefined;
|
|
2108
2117
|
customSecurityQuestion?: string | undefined;
|
|
2118
|
+
dontGetLockedOut?: string | undefined;
|
|
2109
2119
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
2110
2120
|
ensurePasswordIsMoreThan?: string | undefined;
|
|
2111
2121
|
ensurePasswordHasOne?: string | undefined;
|
|
@@ -2145,6 +2155,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2145
2155
|
registerButton?: string | undefined;
|
|
2146
2156
|
registerHeader?: string | undefined;
|
|
2147
2157
|
registerSuccess?: string | undefined;
|
|
2158
|
+
registerYourDevice?: string | undefined;
|
|
2148
2159
|
requiredField?: string | undefined;
|
|
2149
2160
|
securityAnswer?: string | undefined;
|
|
2150
2161
|
securityQuestions?: string | undefined;
|
|
@@ -2161,16 +2172,21 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2161
2172
|
termsAndConditionsLinkText?: string | undefined;
|
|
2162
2173
|
tryAgain?: string | undefined;
|
|
2163
2174
|
twoFactorAuthentication?: string | undefined;
|
|
2175
|
+
useThisNewMfaToHelpVerifyYourIdentity?: string | undefined;
|
|
2164
2176
|
useValidEmail?: string | undefined;
|
|
2165
2177
|
unrecoverableError?: string | undefined;
|
|
2166
2178
|
unknownLoginError?: string | undefined;
|
|
2167
2179
|
unknownNetworkError?: string | undefined;
|
|
2180
|
+
useDeviceForIdentityVerification?: string | undefined;
|
|
2168
2181
|
userName?: string | undefined;
|
|
2169
2182
|
usernameRequirements?: string | undefined;
|
|
2170
2183
|
useTheAuthenticatorAppOnYourPhone?: string | undefined;
|
|
2171
2184
|
validatedCreatePasswordCallback?: string | undefined;
|
|
2172
2185
|
validatedCreateUsernameCallback?: string | undefined;
|
|
2173
2186
|
valueRequirements?: string | undefined;
|
|
2187
|
+
verifyYourIdentity?: string | undefined;
|
|
2188
|
+
yourMultiFactorAuthIsEnabled?: string | undefined;
|
|
2189
|
+
yourRecoveryCodesToAccessAccountForLostDevice?: string | undefined;
|
|
2174
2190
|
}, {
|
|
2175
2191
|
alreadyHaveAnAccount?: string | undefined;
|
|
2176
2192
|
backToDefault?: string | undefined;
|
|
@@ -2180,11 +2196,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2180
2196
|
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2181
2197
|
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2182
2198
|
chooseDifferentUsername?: string | undefined;
|
|
2199
|
+
chooseYourDeviceForIdentityVerification?: string | undefined;
|
|
2183
2200
|
confirmPassword?: string | undefined;
|
|
2184
2201
|
constraintViolationForPassword?: string | undefined;
|
|
2185
2202
|
constraintViolationForValue?: string | undefined;
|
|
2186
2203
|
continueWith?: string | undefined;
|
|
2187
2204
|
customSecurityQuestion?: string | undefined;
|
|
2205
|
+
dontGetLockedOut?: string | undefined;
|
|
2188
2206
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
2189
2207
|
ensurePasswordIsMoreThan?: string | undefined;
|
|
2190
2208
|
ensurePasswordHasOne?: string | undefined;
|
|
@@ -2224,6 +2242,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2224
2242
|
registerButton?: string | undefined;
|
|
2225
2243
|
registerHeader?: string | undefined;
|
|
2226
2244
|
registerSuccess?: string | undefined;
|
|
2245
|
+
registerYourDevice?: string | undefined;
|
|
2227
2246
|
requiredField?: string | undefined;
|
|
2228
2247
|
securityAnswer?: string | undefined;
|
|
2229
2248
|
securityQuestions?: string | undefined;
|
|
@@ -2240,16 +2259,21 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2240
2259
|
termsAndConditionsLinkText?: string | undefined;
|
|
2241
2260
|
tryAgain?: string | undefined;
|
|
2242
2261
|
twoFactorAuthentication?: string | undefined;
|
|
2262
|
+
useThisNewMfaToHelpVerifyYourIdentity?: string | undefined;
|
|
2243
2263
|
useValidEmail?: string | undefined;
|
|
2244
2264
|
unrecoverableError?: string | undefined;
|
|
2245
2265
|
unknownLoginError?: string | undefined;
|
|
2246
2266
|
unknownNetworkError?: string | undefined;
|
|
2267
|
+
useDeviceForIdentityVerification?: string | undefined;
|
|
2247
2268
|
userName?: string | undefined;
|
|
2248
2269
|
usernameRequirements?: string | undefined;
|
|
2249
2270
|
useTheAuthenticatorAppOnYourPhone?: string | undefined;
|
|
2250
2271
|
validatedCreatePasswordCallback?: string | undefined;
|
|
2251
2272
|
validatedCreateUsernameCallback?: string | undefined;
|
|
2252
2273
|
valueRequirements?: string | undefined;
|
|
2274
|
+
verifyYourIdentity?: string | undefined;
|
|
2275
|
+
yourMultiFactorAuthIsEnabled?: string | undefined;
|
|
2276
|
+
yourRecoveryCodesToAccessAccountForLostDevice?: string | undefined;
|
|
2253
2277
|
}>;
|
|
2254
2278
|
|
|
2255
2279
|
declare const partialStyleSchema: ZodObject<{
|