@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/CHANGELOG.md +8 -0
- package/index.cjs +478 -200
- package/index.cjs.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +478 -200
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +3 -0
package/index.d.ts
CHANGED
|
@@ -2319,6 +2319,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2319
2319
|
declare const partialStyleSchema: ZodObject<{
|
|
2320
2320
|
checksAndRadios: ZodOptional<ZodOptional<ZodUnion<[ZodLiteral<"animated">, ZodLiteral<"standard">]>>>;
|
|
2321
2321
|
labels: ZodOptional<ZodOptional<ZodUnion<[ZodOptional<ZodLiteral<"floating">>, ZodLiteral<"stacked">]>>>;
|
|
2322
|
+
showPassword: ZodOptional<ZodOptional<ZodUnion<[ZodLiteral<"none">, ZodLiteral<"button">, ZodLiteral<"checkbox">]>>>;
|
|
2322
2323
|
logo: ZodOptional<ZodOptional<ZodObject<{
|
|
2323
2324
|
dark: ZodOptional<ZodString>;
|
|
2324
2325
|
height: ZodOptional<ZodNumber>;
|
|
@@ -2352,6 +2353,7 @@ declare const partialStyleSchema: ZodObject<{
|
|
|
2352
2353
|
}, "strict", ZodTypeAny, {
|
|
2353
2354
|
checksAndRadios?: "standard" | "animated" | undefined;
|
|
2354
2355
|
labels?: "floating" | "stacked" | undefined;
|
|
2356
|
+
showPassword?: "none" | "button" | "checkbox" | undefined;
|
|
2355
2357
|
logo?: {
|
|
2356
2358
|
dark?: string | undefined;
|
|
2357
2359
|
height?: number | undefined;
|
|
@@ -2367,6 +2369,7 @@ declare const partialStyleSchema: ZodObject<{
|
|
|
2367
2369
|
}, {
|
|
2368
2370
|
checksAndRadios?: "standard" | "animated" | undefined;
|
|
2369
2371
|
labels?: "floating" | "stacked" | undefined;
|
|
2372
|
+
showPassword?: "none" | "button" | "checkbox" | undefined;
|
|
2370
2373
|
logo?: {
|
|
2371
2374
|
dark?: string | undefined;
|
|
2372
2375
|
height?: number | undefined;
|