@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/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
|
-
|
|
22798
|
+
}).strict();
|
|
22799
|
+
linksSchema.partial();
|
|
22800
22800
|
let links;
|
|
22801
22801
|
function initialize$2(customLinks) {
|
|
22802
22802
|
// Provide developer feedback for custom links
|
|
22803
|
-
|
|
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
|
|