@forgerock/login-widget 1.2.0-beta.12 → 1.2.0-beta.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
@@ -13,5 +13,5 @@
13
13
  },
14
14
  "license": "MIT",
15
15
  "dependencies": {},
16
- "version": "1.2.0-beta.12"
16
+ "version": "1.2.0-beta.13"
17
17
  }
package/types.d.ts CHANGED
@@ -2309,6 +2309,7 @@ declare const partialStringsSchema: ZodObject<{
2309
2309
  declare const partialStyleSchema: ZodObject<{
2310
2310
  checksAndRadios: ZodOptional<ZodOptional<ZodUnion<[ZodLiteral<"animated">, ZodLiteral<"standard">]>>>;
2311
2311
  labels: ZodOptional<ZodOptional<ZodUnion<[ZodOptional<ZodLiteral<"floating">>, ZodLiteral<"stacked">]>>>;
2312
+ showPassword: ZodOptional<ZodOptional<ZodUnion<[ZodLiteral<"none">, ZodLiteral<"button">, ZodLiteral<"checkbox">]>>>;
2312
2313
  logo: ZodOptional<ZodOptional<ZodObject<{
2313
2314
  dark: ZodOptional<ZodString>;
2314
2315
  height: ZodOptional<ZodNumber>;
@@ -2342,6 +2343,7 @@ declare const partialStyleSchema: ZodObject<{
2342
2343
  }, "strict", ZodTypeAny, {
2343
2344
  checksAndRadios?: "standard" | "animated" | undefined;
2344
2345
  labels?: "floating" | "stacked" | undefined;
2346
+ showPassword?: "none" | "button" | "checkbox" | undefined;
2345
2347
  logo?: {
2346
2348
  dark?: string | undefined;
2347
2349
  height?: number | undefined;
@@ -2357,6 +2359,7 @@ declare const partialStyleSchema: ZodObject<{
2357
2359
  }, {
2358
2360
  checksAndRadios?: "standard" | "animated" | undefined;
2359
2361
  labels?: "floating" | "stacked" | undefined;
2362
+ showPassword?: "none" | "button" | "checkbox" | undefined;
2360
2363
  logo?: {
2361
2364
  dark?: string | undefined;
2362
2365
  height?: number | undefined;