@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/modal.cjs CHANGED
@@ -22795,12 +22795,12 @@ class Link extends SvelteComponent {
22795
22795
 
22796
22796
  const linksSchema = mod.object({
22797
22797
  termsAndConditions: mod.string(),
22798
- });
22799
- const partialLinksSchema = linksSchema.partial();
22798
+ }).strict();
22799
+ linksSchema.partial();
22800
22800
  let links;
22801
22801
  function initialize$2(customLinks) {
22802
22802
  // Provide developer feedback for custom links
22803
- partialLinksSchema.parse(customLinks);
22803
+ linksSchema.parse(customLinks);
22804
22804
  links = readable(customLinks);
22805
22805
  }
22806
22806
 
@@ -28109,7 +28109,7 @@ function instance($$self, $$props, $$invalidate) {
28109
28109
  let { config } = $$props;
28110
28110
  let { content } = $$props;
28111
28111
  let { journeys = undefined } = $$props;
28112
- let { links } = $$props;
28112
+ let { links = undefined } = $$props;
28113
28113
  let { style = undefined } = $$props;
28114
28114
  const dispatch = createEventDispatcher();
28115
28115