@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/package.json CHANGED
@@ -13,5 +13,5 @@
13
13
  },
14
14
  "license": "MIT",
15
15
  "dependencies": {},
16
- "version": "1.1.0-beta.1"
16
+ "version": "1.1.0-beta.2"
17
17
  }
package/types.d.ts CHANGED
@@ -2009,11 +2009,13 @@ declare const partialStringsSchema: ZodObject<{
2009
2009
  charactersCannotRepeatMoreThan: ZodOptional<ZodString>;
2010
2010
  charactersCannotRepeatMoreThanCaseInsensitive: ZodOptional<ZodString>;
2011
2011
  chooseDifferentUsername: ZodOptional<ZodString>;
2012
+ chooseYourDeviceForIdentityVerification: ZodOptional<ZodString>;
2012
2013
  confirmPassword: ZodOptional<ZodString>;
2013
2014
  constraintViolationForPassword: ZodOptional<ZodString>;
2014
2015
  constraintViolationForValue: ZodOptional<ZodString>;
2015
2016
  continueWith: ZodOptional<ZodString>;
2016
2017
  customSecurityQuestion: ZodOptional<ZodString>;
2018
+ dontGetLockedOut: ZodOptional<ZodString>;
2017
2019
  doesNotMeetMinimumCharacterLength: ZodOptional<ZodString>;
2018
2020
  ensurePasswordIsMoreThan: ZodOptional<ZodString>;
2019
2021
  ensurePasswordHasOne: ZodOptional<ZodString>;
@@ -2053,6 +2055,7 @@ declare const partialStringsSchema: ZodObject<{
2053
2055
  registerButton: ZodOptional<ZodString>;
2054
2056
  registerHeader: ZodOptional<ZodString>;
2055
2057
  registerSuccess: ZodOptional<ZodString>;
2058
+ registerYourDevice: ZodOptional<ZodString>;
2056
2059
  requiredField: ZodOptional<ZodString>;
2057
2060
  securityAnswer: ZodOptional<ZodString>;
2058
2061
  securityQuestions: ZodOptional<ZodString>;
@@ -2069,16 +2072,21 @@ declare const partialStringsSchema: ZodObject<{
2069
2072
  termsAndConditionsLinkText: ZodOptional<ZodString>;
2070
2073
  tryAgain: ZodOptional<ZodString>;
2071
2074
  twoFactorAuthentication: ZodOptional<ZodString>;
2075
+ useThisNewMfaToHelpVerifyYourIdentity: ZodOptional<ZodString>;
2072
2076
  useValidEmail: ZodOptional<ZodString>;
2073
2077
  unrecoverableError: ZodOptional<ZodString>;
2074
2078
  unknownLoginError: ZodOptional<ZodString>;
2075
2079
  unknownNetworkError: ZodOptional<ZodString>;
2080
+ useDeviceForIdentityVerification: ZodOptional<ZodString>;
2076
2081
  userName: ZodOptional<ZodString>;
2077
2082
  usernameRequirements: ZodOptional<ZodString>;
2078
2083
  useTheAuthenticatorAppOnYourPhone: ZodOptional<ZodString>;
2079
2084
  validatedCreatePasswordCallback: ZodOptional<ZodString>;
2080
2085
  validatedCreateUsernameCallback: ZodOptional<ZodString>;
2081
2086
  valueRequirements: ZodOptional<ZodString>;
2087
+ verifyYourIdentity: ZodOptional<ZodString>;
2088
+ yourMultiFactorAuthIsEnabled: ZodOptional<ZodString>;
2089
+ yourRecoveryCodesToAccessAccountForLostDevice: ZodOptional<ZodString>;
2082
2090
  }, "strict", ZodTypeAny, {
2083
2091
  alreadyHaveAnAccount?: string | undefined;
2084
2092
  backToDefault?: string | undefined;
@@ -2088,11 +2096,13 @@ declare const partialStringsSchema: ZodObject<{
2088
2096
  charactersCannotRepeatMoreThan?: string | undefined;
2089
2097
  charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
2090
2098
  chooseDifferentUsername?: string | undefined;
2099
+ chooseYourDeviceForIdentityVerification?: string | undefined;
2091
2100
  confirmPassword?: string | undefined;
2092
2101
  constraintViolationForPassword?: string | undefined;
2093
2102
  constraintViolationForValue?: string | undefined;
2094
2103
  continueWith?: string | undefined;
2095
2104
  customSecurityQuestion?: string | undefined;
2105
+ dontGetLockedOut?: string | undefined;
2096
2106
  doesNotMeetMinimumCharacterLength?: string | undefined;
2097
2107
  ensurePasswordIsMoreThan?: string | undefined;
2098
2108
  ensurePasswordHasOne?: string | undefined;
@@ -2132,6 +2142,7 @@ declare const partialStringsSchema: ZodObject<{
2132
2142
  registerButton?: string | undefined;
2133
2143
  registerHeader?: string | undefined;
2134
2144
  registerSuccess?: string | undefined;
2145
+ registerYourDevice?: string | undefined;
2135
2146
  requiredField?: string | undefined;
2136
2147
  securityAnswer?: string | undefined;
2137
2148
  securityQuestions?: string | undefined;
@@ -2148,16 +2159,21 @@ declare const partialStringsSchema: ZodObject<{
2148
2159
  termsAndConditionsLinkText?: string | undefined;
2149
2160
  tryAgain?: string | undefined;
2150
2161
  twoFactorAuthentication?: string | undefined;
2162
+ useThisNewMfaToHelpVerifyYourIdentity?: string | undefined;
2151
2163
  useValidEmail?: string | undefined;
2152
2164
  unrecoverableError?: string | undefined;
2153
2165
  unknownLoginError?: string | undefined;
2154
2166
  unknownNetworkError?: string | undefined;
2167
+ useDeviceForIdentityVerification?: string | undefined;
2155
2168
  userName?: string | undefined;
2156
2169
  usernameRequirements?: string | undefined;
2157
2170
  useTheAuthenticatorAppOnYourPhone?: string | undefined;
2158
2171
  validatedCreatePasswordCallback?: string | undefined;
2159
2172
  validatedCreateUsernameCallback?: string | undefined;
2160
2173
  valueRequirements?: string | undefined;
2174
+ verifyYourIdentity?: string | undefined;
2175
+ yourMultiFactorAuthIsEnabled?: string | undefined;
2176
+ yourRecoveryCodesToAccessAccountForLostDevice?: string | undefined;
2161
2177
  }, {
2162
2178
  alreadyHaveAnAccount?: string | undefined;
2163
2179
  backToDefault?: string | undefined;
@@ -2167,11 +2183,13 @@ declare const partialStringsSchema: ZodObject<{
2167
2183
  charactersCannotRepeatMoreThan?: string | undefined;
2168
2184
  charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
2169
2185
  chooseDifferentUsername?: string | undefined;
2186
+ chooseYourDeviceForIdentityVerification?: string | undefined;
2170
2187
  confirmPassword?: string | undefined;
2171
2188
  constraintViolationForPassword?: string | undefined;
2172
2189
  constraintViolationForValue?: string | undefined;
2173
2190
  continueWith?: string | undefined;
2174
2191
  customSecurityQuestion?: string | undefined;
2192
+ dontGetLockedOut?: string | undefined;
2175
2193
  doesNotMeetMinimumCharacterLength?: string | undefined;
2176
2194
  ensurePasswordIsMoreThan?: string | undefined;
2177
2195
  ensurePasswordHasOne?: string | undefined;
@@ -2211,6 +2229,7 @@ declare const partialStringsSchema: ZodObject<{
2211
2229
  registerButton?: string | undefined;
2212
2230
  registerHeader?: string | undefined;
2213
2231
  registerSuccess?: string | undefined;
2232
+ registerYourDevice?: string | undefined;
2214
2233
  requiredField?: string | undefined;
2215
2234
  securityAnswer?: string | undefined;
2216
2235
  securityQuestions?: string | undefined;
@@ -2227,16 +2246,21 @@ declare const partialStringsSchema: ZodObject<{
2227
2246
  termsAndConditionsLinkText?: string | undefined;
2228
2247
  tryAgain?: string | undefined;
2229
2248
  twoFactorAuthentication?: string | undefined;
2249
+ useThisNewMfaToHelpVerifyYourIdentity?: string | undefined;
2230
2250
  useValidEmail?: string | undefined;
2231
2251
  unrecoverableError?: string | undefined;
2232
2252
  unknownLoginError?: string | undefined;
2233
2253
  unknownNetworkError?: string | undefined;
2254
+ useDeviceForIdentityVerification?: string | undefined;
2234
2255
  userName?: string | undefined;
2235
2256
  usernameRequirements?: string | undefined;
2236
2257
  useTheAuthenticatorAppOnYourPhone?: string | undefined;
2237
2258
  validatedCreatePasswordCallback?: string | undefined;
2238
2259
  validatedCreateUsernameCallback?: string | undefined;
2239
2260
  valueRequirements?: string | undefined;
2261
+ verifyYourIdentity?: string | undefined;
2262
+ yourMultiFactorAuthIsEnabled?: string | undefined;
2263
+ yourRecoveryCodesToAccessAccountForLostDevice?: string | undefined;
2240
2264
  }>;
2241
2265
 
2242
2266
  declare const partialStyleSchema: ZodObject<{
package/widget.css CHANGED
@@ -412,6 +412,10 @@ grid-row-start: 2;
412
412
  margin-top: 1rem;
413
413
  margin-bottom: 1rem;
414
414
  }
415
+ .tw_my-6 {
416
+ margin-top: 1.5rem;
417
+ margin-bottom: 1.5rem;
418
+ }
415
419
  .tw_mb-6 {
416
420
  margin-bottom: 1.5rem;
417
421
  }
@@ -421,12 +425,15 @@ margin-top: -1.25rem;
421
425
  .tw_mb-2 {
422
426
  margin-bottom: 0.5rem;
423
427
  }
424
- .tw_ml-10 {
425
- margin-left: 2.5rem;
428
+ .tw_mb-8 {
429
+ margin-bottom: 2rem;
426
430
  }
427
431
  .tw_mb-4 {
428
432
  margin-bottom: 1rem;
429
433
  }
434
+ .tw_ml-10 {
435
+ margin-left: 2.5rem;
436
+ }
430
437
  .tw_mr-2 {
431
438
  margin-right: 0.5rem;
432
439
  }
@@ -493,6 +500,9 @@ width: 6rem;
493
500
  .tw_flex-1 {
494
501
  flex: 1 1 0%;
495
502
  }
503
+ .tw_border-collapse {
504
+ border-collapse: collapse;
505
+ }
496
506
  @keyframes tw_spin {
497
507
  to {
498
508
  transform: rotate(360deg);
@@ -501,9 +511,19 @@ transform: rotate(360deg);
501
511
  .tw_animate-spin {
502
512
  animation: tw_spin 1s linear infinite;
503
513
  }
514
+ .tw_list-inside {
515
+ list-style-position: inside;
516
+ }
517
+ .tw_list-decimal {
518
+ list-style-type: decimal;
519
+ }
504
520
  .tw_list-disc {
505
521
  list-style-type: disc;
506
522
  }
523
+ .tw_columns-2 {
524
+ -moz-columns: 2;
525
+ columns: 2;
526
+ }
507
527
  .tw_grid-cols-\[2\.5em_1fr\] {
508
528
  grid-template-columns: 2.5em 1fr;
509
529
  }
@@ -537,6 +557,9 @@ justify-items: stretch;
537
557
  .tw_gap-4 {
538
558
  gap: 1rem;
539
559
  }
560
+ .tw_rounded-md {
561
+ border-radius: 0.375rem;
562
+ }
540
563
  .tw_rounded-full {
541
564
  border-radius: 9999px;
542
565
  }
@@ -596,6 +619,9 @@ text-align: center;
596
619
  .tw_text-right {
597
620
  text-align: right;
598
621
  }
622
+ .tw_font-mono {
623
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
624
+ }
599
625
  .tw_text-base {
600
626
  font-size: 0.9375rem;
601
627
  line-height: 1.25;
@@ -604,6 +630,10 @@ line-height: 1.25;
604
630
  font-size: 0.875rem;
605
631
  line-height: 1.25;
606
632
  }
633
+ .tw_text-lg {
634
+ font-size: 1.25rem;
635
+ line-height: 1;
636
+ }
607
637
  .tw_text-4xl {
608
638
  font-size: 2.25rem;
609
639
  line-height: 2.5rem;
@@ -614,6 +644,9 @@ font-weight: 300;
614
644
  .tw_font-bold {
615
645
  font-weight: 700;
616
646
  }
647
+ .tw_font-semibold {
648
+ font-weight: 600;
649
+ }
617
650
  .tw_text-primary-light {
618
651
  --tw-text-opacity: 1;
619
652
  color: rgb(2 122 184 / var(--tw-text-opacity));
@@ -630,6 +663,10 @@ color: rgb(55 65 81 / var(--tw-text-opacity));
630
663
  --tw-text-opacity: 1;
631
664
  color: rgb(37 99 235 / var(--tw-text-opacity));
632
665
  }
666
+ .tw_text-secondary-light {
667
+ --tw-text-opacity: 1;
668
+ color: rgb(209 213 219 / var(--tw-text-opacity));
669
+ }
633
670
  .tw_text-error-dark {
634
671
  --tw-text-opacity: 1;
635
672
  color: rgb(153 27 27 / var(--tw-text-opacity));
@@ -666,7 +703,7 @@ text-align: center;
666
703
  }
667
704
  .tw_secondary-header {
668
705
  font-weight: 500;
669
- font-size: 0.9375rem;
706
+ font-size: 1.25rem;
670
707
  margin-bottom: 1rem;
671
708
  }
672
709
  }