@forgerock/login-widget 1.0.0-alpha.9 → 1.0.0-beta.1
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 +109 -0
- package/inline.cjs +4 -4
- package/inline.cjs.map +1 -1
- package/inline.d.ts +2 -2
- package/inline.js +4 -4
- package/inline.js.map +1 -1
- package/modal.cjs +4 -4
- package/modal.cjs.map +1 -1
- package/modal.d.ts +2 -2
- package/modal.js +4 -4
- package/modal.js.map +1 -1
- package/package.json +1 -1
package/inline.d.ts
CHANGED
|
@@ -1446,7 +1446,7 @@ declare enum ZodFirstPartyTypeKind {
|
|
|
1446
1446
|
|
|
1447
1447
|
declare const partialLinksSchema: ZodObject<{
|
|
1448
1448
|
termsAndConditions: ZodOptional<ZodString>;
|
|
1449
|
-
}, "
|
|
1449
|
+
}, "strict", ZodTypeAny, {
|
|
1450
1450
|
termsAndConditions?: string | undefined;
|
|
1451
1451
|
}, {
|
|
1452
1452
|
termsAndConditions?: string | undefined;
|
|
@@ -2003,7 +2003,7 @@ declare const __propDef: {
|
|
|
2003
2003
|
config: TypeOf<typeof partialConfigSchema>;
|
|
2004
2004
|
content: TypeOf<typeof partialStringsSchema>;
|
|
2005
2005
|
journeys?: TypeOf<typeof journeyConfigSchema> | undefined;
|
|
2006
|
-
links
|
|
2006
|
+
links?: TypeOf<typeof partialLinksSchema> | undefined;
|
|
2007
2007
|
style?: Style | undefined;
|
|
2008
2008
|
};
|
|
2009
2009
|
events: {
|
package/inline.js
CHANGED
|
@@ -22202,12 +22202,12 @@ class Link extends SvelteComponent {
|
|
|
22202
22202
|
|
|
22203
22203
|
const linksSchema = mod.object({
|
|
22204
22204
|
termsAndConditions: mod.string(),
|
|
22205
|
-
});
|
|
22206
|
-
|
|
22205
|
+
}).strict();
|
|
22206
|
+
linksSchema.partial();
|
|
22207
22207
|
let links;
|
|
22208
22208
|
function initialize$2(customLinks) {
|
|
22209
22209
|
// Provide developer feedback for custom links
|
|
22210
|
-
|
|
22210
|
+
linksSchema.parse(customLinks);
|
|
22211
22211
|
links = readable(customLinks);
|
|
22212
22212
|
}
|
|
22213
22213
|
|
|
@@ -27417,7 +27417,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
|
27417
27417
|
let { config } = $$props;
|
|
27418
27418
|
let { content } = $$props;
|
|
27419
27419
|
let { journeys = undefined } = $$props;
|
|
27420
|
-
let { links } = $$props;
|
|
27420
|
+
let { links = undefined } = $$props;
|
|
27421
27421
|
let { style = undefined } = $$props;
|
|
27422
27422
|
const dispatch = createEventDispatcher();
|
|
27423
27423
|
|