@forgerock/login-widget 1.0.0-beta.4 → 1.0.0-beta.5
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 +12 -0
- package/inline.cjs +1199 -492
- package/inline.cjs.map +1 -1
- package/inline.d.ts +12 -0
- package/inline.js +1199 -492
- package/inline.js.map +1 -1
- package/modal.cjs +1265 -558
- package/modal.cjs.map +1 -1
- package/modal.d.ts +12 -0
- package/modal.js +1265 -558
- package/modal.js.map +1 -1
- package/package.json +1 -1
- package/widget.css +4 -0
package/inline.d.ts
CHANGED
|
@@ -1812,6 +1812,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1812
1812
|
doesNotMeetMinimumCharacterLength: ZodOptional<ZodString>;
|
|
1813
1813
|
ensurePasswordIsMoreThan: ZodOptional<ZodString>;
|
|
1814
1814
|
ensurePasswordHasOne: ZodOptional<ZodString>;
|
|
1815
|
+
enterVerificationCode: ZodOptional<ZodString>;
|
|
1815
1816
|
exceedsMaximumCharacterLength: ZodOptional<ZodString>;
|
|
1816
1817
|
fieldCanNotContainFollowingCharacters: ZodOptional<ZodString>;
|
|
1817
1818
|
fieldCanNotContainFollowingValues: ZodOptional<ZodString>;
|
|
@@ -1855,10 +1856,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1855
1856
|
termsAndConditions: ZodOptional<ZodString>;
|
|
1856
1857
|
termsAndConditionsLinkText: ZodOptional<ZodString>;
|
|
1857
1858
|
tryAgain: ZodOptional<ZodString>;
|
|
1859
|
+
twoFactorAuthentication: ZodOptional<ZodString>;
|
|
1858
1860
|
useValidEmail: ZodOptional<ZodString>;
|
|
1859
1861
|
unrecoverableError: ZodOptional<ZodString>;
|
|
1860
1862
|
unknownNetworkError: ZodOptional<ZodString>;
|
|
1863
|
+
userName: ZodOptional<ZodString>;
|
|
1861
1864
|
usernameRequirements: ZodOptional<ZodString>;
|
|
1865
|
+
useTheAuthenticatorAppOnYourPhone: ZodOptional<ZodString>;
|
|
1862
1866
|
validatedCreatePasswordCallback: ZodOptional<ZodString>;
|
|
1863
1867
|
validatedCreateUsernameCallback: ZodOptional<ZodString>;
|
|
1864
1868
|
valueRequirements: ZodOptional<ZodString>;
|
|
@@ -1879,6 +1883,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1879
1883
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
1880
1884
|
ensurePasswordIsMoreThan?: string | undefined;
|
|
1881
1885
|
ensurePasswordHasOne?: string | undefined;
|
|
1886
|
+
enterVerificationCode?: string | undefined;
|
|
1882
1887
|
exceedsMaximumCharacterLength?: string | undefined;
|
|
1883
1888
|
fieldCanNotContainFollowingCharacters?: string | undefined;
|
|
1884
1889
|
fieldCanNotContainFollowingValues?: string | undefined;
|
|
@@ -1920,10 +1925,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1920
1925
|
successMessage?: string | undefined;
|
|
1921
1926
|
termsAndConditionsLinkText?: string | undefined;
|
|
1922
1927
|
tryAgain?: string | undefined;
|
|
1928
|
+
twoFactorAuthentication?: string | undefined;
|
|
1923
1929
|
useValidEmail?: string | undefined;
|
|
1924
1930
|
unrecoverableError?: string | undefined;
|
|
1925
1931
|
unknownNetworkError?: string | undefined;
|
|
1932
|
+
userName?: string | undefined;
|
|
1926
1933
|
usernameRequirements?: string | undefined;
|
|
1934
|
+
useTheAuthenticatorAppOnYourPhone?: string | undefined;
|
|
1927
1935
|
validatedCreatePasswordCallback?: string | undefined;
|
|
1928
1936
|
validatedCreateUsernameCallback?: string | undefined;
|
|
1929
1937
|
valueRequirements?: string | undefined;
|
|
@@ -1944,6 +1952,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1944
1952
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
1945
1953
|
ensurePasswordIsMoreThan?: string | undefined;
|
|
1946
1954
|
ensurePasswordHasOne?: string | undefined;
|
|
1955
|
+
enterVerificationCode?: string | undefined;
|
|
1947
1956
|
exceedsMaximumCharacterLength?: string | undefined;
|
|
1948
1957
|
fieldCanNotContainFollowingCharacters?: string | undefined;
|
|
1949
1958
|
fieldCanNotContainFollowingValues?: string | undefined;
|
|
@@ -1985,10 +1994,13 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1985
1994
|
successMessage?: string | undefined;
|
|
1986
1995
|
termsAndConditionsLinkText?: string | undefined;
|
|
1987
1996
|
tryAgain?: string | undefined;
|
|
1997
|
+
twoFactorAuthentication?: string | undefined;
|
|
1988
1998
|
useValidEmail?: string | undefined;
|
|
1989
1999
|
unrecoverableError?: string | undefined;
|
|
1990
2000
|
unknownNetworkError?: string | undefined;
|
|
2001
|
+
userName?: string | undefined;
|
|
1991
2002
|
usernameRequirements?: string | undefined;
|
|
2003
|
+
useTheAuthenticatorAppOnYourPhone?: string | undefined;
|
|
1992
2004
|
validatedCreatePasswordCallback?: string | undefined;
|
|
1993
2005
|
validatedCreateUsernameCallback?: string | undefined;
|
|
1994
2006
|
valueRequirements?: string | undefined;
|