@forgerock/login-widget 1.0.0-beta.10 → 1.0.0-beta.12
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 +16 -2
- package/index.cjs +987 -583
- package/index.cjs.map +1 -1
- package/index.d.ts +27 -0
- package/index.js +987 -583
- package/index.js.map +1 -1
- package/package.json +1 -8
- package/widget.css +24 -7
package/index.d.ts
CHANGED
|
@@ -2050,6 +2050,8 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2050
2050
|
backToLogin: ZodOptional<ZodString>;
|
|
2051
2051
|
dontHaveAnAccount: ZodOptional<ZodString>;
|
|
2052
2052
|
closeModal: ZodOptional<ZodString>;
|
|
2053
|
+
charactersCannotRepeatMoreThan: ZodOptional<ZodString>;
|
|
2054
|
+
charactersCannotRepeatMoreThanCaseInsensitive: ZodOptional<ZodString>;
|
|
2053
2055
|
chooseDifferentUsername: ZodOptional<ZodString>;
|
|
2054
2056
|
confirmPassword: ZodOptional<ZodString>;
|
|
2055
2057
|
constraintViolationForPassword: ZodOptional<ZodString>;
|
|
@@ -2082,6 +2084,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2082
2084
|
notToExceedMaximumCharacterLength: ZodOptional<ZodString>;
|
|
2083
2085
|
noLessThanMinimumCharacterLength: ZodOptional<ZodString>;
|
|
2084
2086
|
passwordCallback: ZodOptional<ZodString>;
|
|
2087
|
+
passwordCannotContainCommonPasswords: ZodOptional<ZodString>;
|
|
2088
|
+
passwordCannotContainCommonPasswordsOrBeReversible: ZodOptional<ZodString>;
|
|
2089
|
+
passwordCannotContainCommonPasswordsOrBeReversibleStringsLessThan: ZodOptional<ZodString>;
|
|
2085
2090
|
passwordRequirements: ZodOptional<ZodString>;
|
|
2086
2091
|
pleaseCheckValue: ZodOptional<ZodString>;
|
|
2087
2092
|
pleaseConfirm: ZodOptional<ZodString>;
|
|
@@ -2096,6 +2101,10 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2096
2101
|
securityAnswer: ZodOptional<ZodString>;
|
|
2097
2102
|
securityQuestions: ZodOptional<ZodString>;
|
|
2098
2103
|
securityQuestionsPrompt: ZodOptional<ZodString>;
|
|
2104
|
+
shouldContainANumber: ZodOptional<ZodString>;
|
|
2105
|
+
shouldContainAnUppercase: ZodOptional<ZodString>;
|
|
2106
|
+
shouldContainALowercase: ZodOptional<ZodString>;
|
|
2107
|
+
shouldContainASymbol: ZodOptional<ZodString>;
|
|
2099
2108
|
showPassword: ZodOptional<ZodString>;
|
|
2100
2109
|
sn: ZodOptional<ZodString>;
|
|
2101
2110
|
submitButton: ZodOptional<ZodString>;
|
|
@@ -2119,6 +2128,8 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2119
2128
|
backToLogin?: string | undefined;
|
|
2120
2129
|
dontHaveAnAccount?: string | undefined;
|
|
2121
2130
|
closeModal?: string | undefined;
|
|
2131
|
+
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2132
|
+
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2122
2133
|
chooseDifferentUsername?: string | undefined;
|
|
2123
2134
|
confirmPassword?: string | undefined;
|
|
2124
2135
|
constraintViolationForPassword?: string | undefined;
|
|
@@ -2151,6 +2162,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2151
2162
|
notToExceedMaximumCharacterLength?: string | undefined;
|
|
2152
2163
|
noLessThanMinimumCharacterLength?: string | undefined;
|
|
2153
2164
|
passwordCallback?: string | undefined;
|
|
2165
|
+
passwordCannotContainCommonPasswords?: string | undefined;
|
|
2166
|
+
passwordCannotContainCommonPasswordsOrBeReversible?: string | undefined;
|
|
2167
|
+
passwordCannotContainCommonPasswordsOrBeReversibleStringsLessThan?: string | undefined;
|
|
2154
2168
|
passwordRequirements?: string | undefined;
|
|
2155
2169
|
pleaseCheckValue?: string | undefined;
|
|
2156
2170
|
pleaseConfirm?: string | undefined;
|
|
@@ -2165,6 +2179,10 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2165
2179
|
securityAnswer?: string | undefined;
|
|
2166
2180
|
securityQuestions?: string | undefined;
|
|
2167
2181
|
securityQuestionsPrompt?: string | undefined;
|
|
2182
|
+
shouldContainANumber?: string | undefined;
|
|
2183
|
+
shouldContainAnUppercase?: string | undefined;
|
|
2184
|
+
shouldContainALowercase?: string | undefined;
|
|
2185
|
+
shouldContainASymbol?: string | undefined;
|
|
2168
2186
|
showPassword?: string | undefined;
|
|
2169
2187
|
sn?: string | undefined;
|
|
2170
2188
|
submitButton?: string | undefined;
|
|
@@ -2188,6 +2206,8 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2188
2206
|
backToLogin?: string | undefined;
|
|
2189
2207
|
dontHaveAnAccount?: string | undefined;
|
|
2190
2208
|
closeModal?: string | undefined;
|
|
2209
|
+
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2210
|
+
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2191
2211
|
chooseDifferentUsername?: string | undefined;
|
|
2192
2212
|
confirmPassword?: string | undefined;
|
|
2193
2213
|
constraintViolationForPassword?: string | undefined;
|
|
@@ -2220,6 +2240,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2220
2240
|
notToExceedMaximumCharacterLength?: string | undefined;
|
|
2221
2241
|
noLessThanMinimumCharacterLength?: string | undefined;
|
|
2222
2242
|
passwordCallback?: string | undefined;
|
|
2243
|
+
passwordCannotContainCommonPasswords?: string | undefined;
|
|
2244
|
+
passwordCannotContainCommonPasswordsOrBeReversible?: string | undefined;
|
|
2245
|
+
passwordCannotContainCommonPasswordsOrBeReversibleStringsLessThan?: string | undefined;
|
|
2223
2246
|
passwordRequirements?: string | undefined;
|
|
2224
2247
|
pleaseCheckValue?: string | undefined;
|
|
2225
2248
|
pleaseConfirm?: string | undefined;
|
|
@@ -2234,6 +2257,10 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2234
2257
|
securityAnswer?: string | undefined;
|
|
2235
2258
|
securityQuestions?: string | undefined;
|
|
2236
2259
|
securityQuestionsPrompt?: string | undefined;
|
|
2260
|
+
shouldContainANumber?: string | undefined;
|
|
2261
|
+
shouldContainAnUppercase?: string | undefined;
|
|
2262
|
+
shouldContainALowercase?: string | undefined;
|
|
2263
|
+
shouldContainASymbol?: string | undefined;
|
|
2237
2264
|
showPassword?: string | undefined;
|
|
2238
2265
|
sn?: string | undefined;
|
|
2239
2266
|
submitButton?: string | undefined;
|