@forgerock/login-widget 1.2.0-beta.11 → 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 +15 -0
- package/index.cjs +486 -214
- package/index.cjs.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +486 -214
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +3 -0
package/package.json
CHANGED
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;
|