@forgerock/login-widget 1.2.0-beta.4 → 1.2.0-beta.6
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 +14 -0
- package/index.cjs +558 -308
- package/index.cjs.map +1 -1
- package/index.d.ts +59 -59
- package/index.js +558 -308
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +59 -59
package/index.cjs
CHANGED
|
@@ -54,6 +54,14 @@ function is_function(thing) {
|
|
|
54
54
|
function safe_not_equal(a, b) {
|
|
55
55
|
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
|
56
56
|
}
|
|
57
|
+
let src_url_equal_anchor;
|
|
58
|
+
function src_url_equal(element_src, url) {
|
|
59
|
+
if (!src_url_equal_anchor) {
|
|
60
|
+
src_url_equal_anchor = document.createElement('a');
|
|
61
|
+
}
|
|
62
|
+
src_url_equal_anchor.href = url;
|
|
63
|
+
return element_src === src_url_equal_anchor.href;
|
|
64
|
+
}
|
|
57
65
|
function is_empty(obj) {
|
|
58
66
|
return Object.keys(obj).length === 0;
|
|
59
67
|
}
|
|
@@ -9089,7 +9097,8 @@ const configSchema = z
|
|
|
9089
9097
|
realmPath: z.string(),
|
|
9090
9098
|
redirectUri: z.string().optional(),
|
|
9091
9099
|
scope: z.string().optional(),
|
|
9092
|
-
serverConfig: z
|
|
9100
|
+
serverConfig: z
|
|
9101
|
+
.object({
|
|
9093
9102
|
baseUrl: z
|
|
9094
9103
|
.string({
|
|
9095
9104
|
invalid_type_error: '`serverConfig.baseUrl` is a required URL string (this is generated by the Zod library).',
|
|
@@ -9100,25 +9109,28 @@ const configSchema = z
|
|
|
9100
9109
|
}),
|
|
9101
9110
|
paths: z
|
|
9102
9111
|
.object({
|
|
9103
|
-
authenticate: z.string(),
|
|
9104
|
-
authorize: z.string(),
|
|
9105
|
-
accessToken: z.string(),
|
|
9106
|
-
endSession: z.string(),
|
|
9107
|
-
userInfo: z.string(),
|
|
9108
|
-
revoke: z.string(),
|
|
9109
|
-
sessions: z.string(),
|
|
9112
|
+
authenticate: z.string().optional(),
|
|
9113
|
+
authorize: z.string().optional(),
|
|
9114
|
+
accessToken: z.string().optional(),
|
|
9115
|
+
endSession: z.string().optional(),
|
|
9116
|
+
userInfo: z.string().optional(),
|
|
9117
|
+
revoke: z.string().optional(),
|
|
9118
|
+
sessions: z.string().optional(),
|
|
9110
9119
|
})
|
|
9120
|
+
.strict()
|
|
9111
9121
|
.optional(),
|
|
9112
|
-
|
|
9113
|
-
|
|
9122
|
+
timeout: z
|
|
9123
|
+
.number({
|
|
9114
9124
|
invalid_type_error: '`serverConfig.timeout` is a required number and in milliseconds (this is generated by the Zod library).',
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
})
|
|
9125
|
+
})
|
|
9126
|
+
.optional(),
|
|
9127
|
+
})
|
|
9128
|
+
.strict(),
|
|
9118
9129
|
support: z.union([z.literal('legacy'), z.literal('modern')]).optional(),
|
|
9119
9130
|
tokenStore: z
|
|
9120
9131
|
.union([
|
|
9121
|
-
z
|
|
9132
|
+
z
|
|
9133
|
+
.object({
|
|
9122
9134
|
get: z
|
|
9123
9135
|
.function()
|
|
9124
9136
|
.args(z.string())
|
|
@@ -9130,7 +9142,8 @@ const configSchema = z
|
|
|
9130
9142
|
}))),
|
|
9131
9143
|
set: z.function().args(z.string()).returns(z.promise(z.void())),
|
|
9132
9144
|
remove: z.function().args(z.string()).returns(z.promise(z.void())),
|
|
9133
|
-
})
|
|
9145
|
+
})
|
|
9146
|
+
.strict(),
|
|
9134
9147
|
z.literal('sessionStorage'),
|
|
9135
9148
|
z.literal('localStorage'),
|
|
9136
9149
|
])
|
|
@@ -12072,7 +12085,9 @@ function initialize$3(customLinks) {
|
|
|
12072
12085
|
return linksStore;
|
|
12073
12086
|
}
|
|
12074
12087
|
|
|
12088
|
+
const authorizationTimedOut = 'Authorization timed out';
|
|
12075
12089
|
const interactionNeeded = 'The request requires some interaction that is not allowed.';
|
|
12090
|
+
const timeoutErrorMessage = 'Timeouts are likely an issue with OAuth client misconfiguration. If you are getting a 4xx error in the network tab, copy the full `/authorize` URL and paste it directly into your browsers URL field to directly visit the page. The error should be displayed on the page.';
|
|
12076
12091
|
const sessionCookieConsentMessage = `The user either doesn't have a valid session, the cookie is not being sent due to third-party cookies being disabled, or the user is needing to provide consent as the OAuth client setting does not have "implied consent" enabled.`;
|
|
12077
12092
|
const oauthStore = writable({
|
|
12078
12093
|
completed: false,
|
|
@@ -12081,6 +12096,16 @@ const oauthStore = writable({
|
|
|
12081
12096
|
successful: false,
|
|
12082
12097
|
response: null,
|
|
12083
12098
|
});
|
|
12099
|
+
function getTroubleshootingMessage(message) {
|
|
12100
|
+
switch (message) {
|
|
12101
|
+
case interactionNeeded:
|
|
12102
|
+
return sessionCookieConsentMessage;
|
|
12103
|
+
case authorizationTimedOut:
|
|
12104
|
+
return timeoutErrorMessage;
|
|
12105
|
+
default:
|
|
12106
|
+
return '';
|
|
12107
|
+
}
|
|
12108
|
+
}
|
|
12084
12109
|
/**
|
|
12085
12110
|
* @function initialize - Initializes the OAuth store with a get function and a reset function
|
|
12086
12111
|
* @param {object} initOptions - The options to pass to the TokenManager.getTokens function
|
|
@@ -12121,7 +12146,7 @@ function initialize$2(initOptions) {
|
|
|
12121
12146
|
completed: true,
|
|
12122
12147
|
error: {
|
|
12123
12148
|
message: err.message,
|
|
12124
|
-
troubleshoot: err.message
|
|
12149
|
+
troubleshoot: getTroubleshootingMessage(err.message),
|
|
12125
12150
|
},
|
|
12126
12151
|
loading: false,
|
|
12127
12152
|
successful: false,
|
|
@@ -12247,11 +12272,13 @@ const styleSchema = z
|
|
|
12247
12272
|
.object({
|
|
12248
12273
|
header: z.boolean().optional(),
|
|
12249
12274
|
})
|
|
12275
|
+
.strict()
|
|
12250
12276
|
.optional(),
|
|
12251
12277
|
stage: z
|
|
12252
12278
|
.object({
|
|
12253
12279
|
icon: z.boolean().optional(),
|
|
12254
12280
|
})
|
|
12281
|
+
.strict()
|
|
12255
12282
|
.optional(),
|
|
12256
12283
|
})
|
|
12257
12284
|
.strict();
|
|
@@ -12619,7 +12646,7 @@ function create_else_block$c(ctx) {
|
|
|
12619
12646
|
}
|
|
12620
12647
|
|
|
12621
12648
|
// (11:0) {#if html}
|
|
12622
|
-
function create_if_block$
|
|
12649
|
+
function create_if_block$s(ctx) {
|
|
12623
12650
|
let current;
|
|
12624
12651
|
const default_slot_template = /*#slots*/ ctx[5].default;
|
|
12625
12652
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null);
|
|
@@ -12716,12 +12743,12 @@ function fallback_block$2(ctx) {
|
|
|
12716
12743
|
};
|
|
12717
12744
|
}
|
|
12718
12745
|
|
|
12719
|
-
function create_fragment$
|
|
12746
|
+
function create_fragment$13(ctx) {
|
|
12720
12747
|
let current_block_type_index;
|
|
12721
12748
|
let if_block;
|
|
12722
12749
|
let if_block_anchor;
|
|
12723
12750
|
let current;
|
|
12724
|
-
const if_block_creators = [create_if_block$
|
|
12751
|
+
const if_block_creators = [create_if_block$s, create_else_block$c];
|
|
12725
12752
|
const if_blocks = [];
|
|
12726
12753
|
|
|
12727
12754
|
function select_block_type(ctx, dirty) {
|
|
@@ -12785,7 +12812,7 @@ function create_fragment$12(ctx) {
|
|
|
12785
12812
|
};
|
|
12786
12813
|
}
|
|
12787
12814
|
|
|
12788
|
-
function instance$
|
|
12815
|
+
function instance$15($$self, $$props, $$invalidate) {
|
|
12789
12816
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12790
12817
|
let { html = false } = $$props;
|
|
12791
12818
|
let { key } = $$props;
|
|
@@ -12813,13 +12840,13 @@ function instance$14($$self, $$props, $$invalidate) {
|
|
|
12813
12840
|
class Locale_strings extends SvelteComponent {
|
|
12814
12841
|
constructor(options) {
|
|
12815
12842
|
super();
|
|
12816
|
-
init(this, options, instance$
|
|
12843
|
+
init(this, options, instance$15, create_fragment$13, safe_not_equal, { html: 0, key: 2, values: 3 });
|
|
12817
12844
|
}
|
|
12818
12845
|
}
|
|
12819
12846
|
|
|
12820
12847
|
/* src/lib/components/icons/x-icon.svelte generated by Svelte v3.59.2 */
|
|
12821
12848
|
|
|
12822
|
-
function create_fragment$
|
|
12849
|
+
function create_fragment$12(ctx) {
|
|
12823
12850
|
let svg;
|
|
12824
12851
|
let path;
|
|
12825
12852
|
let title;
|
|
@@ -12895,7 +12922,7 @@ function create_fragment$11(ctx) {
|
|
|
12895
12922
|
};
|
|
12896
12923
|
}
|
|
12897
12924
|
|
|
12898
|
-
function instance$
|
|
12925
|
+
function instance$14($$self, $$props, $$invalidate) {
|
|
12899
12926
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12900
12927
|
let { classes = '' } = $$props;
|
|
12901
12928
|
let { size = '24px' } = $$props;
|
|
@@ -12912,7 +12939,7 @@ function instance$13($$self, $$props, $$invalidate) {
|
|
|
12912
12939
|
class X_icon extends SvelteComponent {
|
|
12913
12940
|
constructor(options) {
|
|
12914
12941
|
super();
|
|
12915
|
-
init(this, options, instance$
|
|
12942
|
+
init(this, options, instance$14, create_fragment$12, safe_not_equal, { classes: 0, size: 1 });
|
|
12916
12943
|
}
|
|
12917
12944
|
}
|
|
12918
12945
|
|
|
@@ -13017,7 +13044,7 @@ function create_else_block$b(ctx) {
|
|
|
13017
13044
|
}
|
|
13018
13045
|
|
|
13019
13046
|
// (39:2) {#if withHeader}
|
|
13020
|
-
function create_if_block$
|
|
13047
|
+
function create_if_block$r(ctx) {
|
|
13021
13048
|
let div1;
|
|
13022
13049
|
let div0;
|
|
13023
13050
|
let div0_style_value;
|
|
@@ -13193,7 +13220,7 @@ function create_default_slot$t(ctx) {
|
|
|
13193
13220
|
};
|
|
13194
13221
|
}
|
|
13195
13222
|
|
|
13196
|
-
function create_fragment$
|
|
13223
|
+
function create_fragment$11(ctx) {
|
|
13197
13224
|
let dialog;
|
|
13198
13225
|
let current_block_type_index;
|
|
13199
13226
|
let if_block;
|
|
@@ -13201,7 +13228,7 @@ function create_fragment$10(ctx) {
|
|
|
13201
13228
|
let div;
|
|
13202
13229
|
let dialog_class_value;
|
|
13203
13230
|
let current;
|
|
13204
|
-
const if_block_creators = [create_if_block$
|
|
13231
|
+
const if_block_creators = [create_if_block$r, create_else_block$b];
|
|
13205
13232
|
const if_blocks = [];
|
|
13206
13233
|
|
|
13207
13234
|
function select_block_type(ctx, dirty) {
|
|
@@ -13313,7 +13340,7 @@ function create_fragment$10(ctx) {
|
|
|
13313
13340
|
};
|
|
13314
13341
|
}
|
|
13315
13342
|
|
|
13316
|
-
function instance$
|
|
13343
|
+
function instance$13($$self, $$props, $$invalidate) {
|
|
13317
13344
|
let $styleStore;
|
|
13318
13345
|
component_subscribe($$self, styleStore, $$value => $$invalidate(5, $styleStore = $$value));
|
|
13319
13346
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
@@ -13387,7 +13414,7 @@ class Dialog extends SvelteComponent {
|
|
|
13387
13414
|
constructor(options) {
|
|
13388
13415
|
super();
|
|
13389
13416
|
|
|
13390
|
-
init(this, options, instance$
|
|
13417
|
+
init(this, options, instance$13, create_fragment$11, safe_not_equal, {
|
|
13391
13418
|
dialogEl: 0,
|
|
13392
13419
|
dialogId: 1,
|
|
13393
13420
|
forceOpen: 2,
|
|
@@ -13403,7 +13430,7 @@ class Dialog extends SvelteComponent {
|
|
|
13403
13430
|
|
|
13404
13431
|
/* src/lib/components/icons/alert-icon.svelte generated by Svelte v3.59.2 */
|
|
13405
13432
|
|
|
13406
|
-
function create_fragment
|
|
13433
|
+
function create_fragment$10(ctx) {
|
|
13407
13434
|
let svg;
|
|
13408
13435
|
let path;
|
|
13409
13436
|
let title;
|
|
@@ -13479,7 +13506,7 @@ function create_fragment$$(ctx) {
|
|
|
13479
13506
|
};
|
|
13480
13507
|
}
|
|
13481
13508
|
|
|
13482
|
-
function instance$
|
|
13509
|
+
function instance$12($$self, $$props, $$invalidate) {
|
|
13483
13510
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13484
13511
|
let { classes = '' } = $$props;
|
|
13485
13512
|
let { size = '24px' } = $$props;
|
|
@@ -13496,13 +13523,13 @@ function instance$11($$self, $$props, $$invalidate) {
|
|
|
13496
13523
|
class Alert_icon extends SvelteComponent {
|
|
13497
13524
|
constructor(options) {
|
|
13498
13525
|
super();
|
|
13499
|
-
init(this, options, instance$
|
|
13526
|
+
init(this, options, instance$12, create_fragment$10, safe_not_equal, { classes: 0, size: 1 });
|
|
13500
13527
|
}
|
|
13501
13528
|
}
|
|
13502
13529
|
|
|
13503
13530
|
/* src/lib/components/icons/info-icon.svelte generated by Svelte v3.59.2 */
|
|
13504
13531
|
|
|
13505
|
-
function create_fragment
|
|
13532
|
+
function create_fragment$$(ctx) {
|
|
13506
13533
|
let svg;
|
|
13507
13534
|
let path;
|
|
13508
13535
|
let title;
|
|
@@ -13578,7 +13605,7 @@ function create_fragment$_(ctx) {
|
|
|
13578
13605
|
};
|
|
13579
13606
|
}
|
|
13580
13607
|
|
|
13581
|
-
function instance$
|
|
13608
|
+
function instance$11($$self, $$props, $$invalidate) {
|
|
13582
13609
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13583
13610
|
let { classes = '' } = $$props;
|
|
13584
13611
|
let { size = '24px' } = $$props;
|
|
@@ -13595,13 +13622,13 @@ function instance$10($$self, $$props, $$invalidate) {
|
|
|
13595
13622
|
class Info_icon extends SvelteComponent {
|
|
13596
13623
|
constructor(options) {
|
|
13597
13624
|
super();
|
|
13598
|
-
init(this, options, instance$
|
|
13625
|
+
init(this, options, instance$11, create_fragment$$, safe_not_equal, { classes: 0, size: 1 });
|
|
13599
13626
|
}
|
|
13600
13627
|
}
|
|
13601
13628
|
|
|
13602
13629
|
/* src/lib/components/icons/warning-icon.svelte generated by Svelte v3.59.2 */
|
|
13603
13630
|
|
|
13604
|
-
function create_fragment$
|
|
13631
|
+
function create_fragment$_(ctx) {
|
|
13605
13632
|
let svg;
|
|
13606
13633
|
let path;
|
|
13607
13634
|
let title;
|
|
@@ -13677,7 +13704,7 @@ function create_fragment$Z(ctx) {
|
|
|
13677
13704
|
};
|
|
13678
13705
|
}
|
|
13679
13706
|
|
|
13680
|
-
function instance
|
|
13707
|
+
function instance$10($$self, $$props, $$invalidate) {
|
|
13681
13708
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13682
13709
|
let { classes = '' } = $$props;
|
|
13683
13710
|
let { size = '24px' } = $$props;
|
|
@@ -13694,7 +13721,7 @@ function instance$$($$self, $$props, $$invalidate) {
|
|
|
13694
13721
|
class Warning_icon extends SvelteComponent {
|
|
13695
13722
|
constructor(options) {
|
|
13696
13723
|
super();
|
|
13697
|
-
init(this, options, instance
|
|
13724
|
+
init(this, options, instance$10, create_fragment$_, safe_not_equal, { classes: 0, size: 1 });
|
|
13698
13725
|
}
|
|
13699
13726
|
}
|
|
13700
13727
|
|
|
@@ -13758,7 +13785,7 @@ function create_if_block_1$c(ctx) {
|
|
|
13758
13785
|
}
|
|
13759
13786
|
|
|
13760
13787
|
// (41:4) {#if type === 'error'}
|
|
13761
|
-
function create_if_block$
|
|
13788
|
+
function create_if_block$q(ctx) {
|
|
13762
13789
|
let alerticon;
|
|
13763
13790
|
let current;
|
|
13764
13791
|
alerticon = new Alert_icon({});
|
|
@@ -13786,7 +13813,7 @@ function create_if_block$p(ctx) {
|
|
|
13786
13813
|
};
|
|
13787
13814
|
}
|
|
13788
13815
|
|
|
13789
|
-
function create_fragment$
|
|
13816
|
+
function create_fragment$Z(ctx) {
|
|
13790
13817
|
let div;
|
|
13791
13818
|
let p;
|
|
13792
13819
|
let current_block_type_index;
|
|
@@ -13795,7 +13822,7 @@ function create_fragment$Y(ctx) {
|
|
|
13795
13822
|
let span;
|
|
13796
13823
|
let div_class_value;
|
|
13797
13824
|
let current;
|
|
13798
|
-
const if_block_creators = [create_if_block$
|
|
13825
|
+
const if_block_creators = [create_if_block$q, create_if_block_1$c, create_else_block$a];
|
|
13799
13826
|
const if_blocks = [];
|
|
13800
13827
|
|
|
13801
13828
|
function select_block_type(ctx, dirty) {
|
|
@@ -13922,7 +13949,7 @@ function generateClassString$3(...args) {
|
|
|
13922
13949
|
);
|
|
13923
13950
|
}
|
|
13924
13951
|
|
|
13925
|
-
function instance
|
|
13952
|
+
function instance$$($$self, $$props, $$invalidate) {
|
|
13926
13953
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13927
13954
|
let { id } = $$props;
|
|
13928
13955
|
let { needsFocus = false } = $$props;
|
|
@@ -13959,13 +13986,13 @@ function instance$_($$self, $$props, $$invalidate) {
|
|
|
13959
13986
|
class Alert extends SvelteComponent {
|
|
13960
13987
|
constructor(options) {
|
|
13961
13988
|
super();
|
|
13962
|
-
init(this, options, instance
|
|
13989
|
+
init(this, options, instance$$, create_fragment$Z, safe_not_equal, { id: 0, needsFocus: 3, type: 1 });
|
|
13963
13990
|
}
|
|
13964
13991
|
}
|
|
13965
13992
|
|
|
13966
13993
|
/* src/lib/components/primitives/spinner/spinner.svelte generated by Svelte v3.59.2 */
|
|
13967
13994
|
|
|
13968
|
-
function create_fragment$
|
|
13995
|
+
function create_fragment$Y(ctx) {
|
|
13969
13996
|
let div;
|
|
13970
13997
|
let span;
|
|
13971
13998
|
let t;
|
|
@@ -14009,7 +14036,7 @@ function create_fragment$X(ctx) {
|
|
|
14009
14036
|
};
|
|
14010
14037
|
}
|
|
14011
14038
|
|
|
14012
|
-
function instance$
|
|
14039
|
+
function instance$_($$self, $$props, $$invalidate) {
|
|
14013
14040
|
let { colorClass } = $$props;
|
|
14014
14041
|
let { layoutClasses } = $$props;
|
|
14015
14042
|
|
|
@@ -14024,13 +14051,13 @@ function instance$Z($$self, $$props, $$invalidate) {
|
|
|
14024
14051
|
class Spinner extends SvelteComponent {
|
|
14025
14052
|
constructor(options) {
|
|
14026
14053
|
super();
|
|
14027
|
-
init(this, options, instance$
|
|
14054
|
+
init(this, options, instance$_, create_fragment$Y, safe_not_equal, { colorClass: 0, layoutClasses: 1 });
|
|
14028
14055
|
}
|
|
14029
14056
|
}
|
|
14030
14057
|
|
|
14031
14058
|
/* src/lib/components/primitives/button/button.svelte generated by Svelte v3.59.2 */
|
|
14032
14059
|
|
|
14033
|
-
function create_if_block$
|
|
14060
|
+
function create_if_block$p(ctx) {
|
|
14034
14061
|
let spinner;
|
|
14035
14062
|
let current;
|
|
14036
14063
|
|
|
@@ -14081,14 +14108,14 @@ function fallback_block$1(ctx) {
|
|
|
14081
14108
|
};
|
|
14082
14109
|
}
|
|
14083
14110
|
|
|
14084
|
-
function create_fragment$
|
|
14111
|
+
function create_fragment$X(ctx) {
|
|
14085
14112
|
let button;
|
|
14086
14113
|
let t;
|
|
14087
14114
|
let button_class_value;
|
|
14088
14115
|
let current;
|
|
14089
14116
|
let mounted;
|
|
14090
14117
|
let dispose;
|
|
14091
|
-
let if_block = /*busy*/ ctx[0] && create_if_block$
|
|
14118
|
+
let if_block = /*busy*/ ctx[0] && create_if_block$p();
|
|
14092
14119
|
const default_slot_template = /*#slots*/ ctx[7].default;
|
|
14093
14120
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[6], null);
|
|
14094
14121
|
const default_slot_or_fallback = default_slot || fallback_block$1();
|
|
@@ -14130,7 +14157,7 @@ function create_fragment$W(ctx) {
|
|
|
14130
14157
|
transition_in(if_block, 1);
|
|
14131
14158
|
}
|
|
14132
14159
|
} else {
|
|
14133
|
-
if_block = create_if_block$
|
|
14160
|
+
if_block = create_if_block$p();
|
|
14134
14161
|
if_block.c();
|
|
14135
14162
|
transition_in(if_block, 1);
|
|
14136
14163
|
if_block.m(button, t);
|
|
@@ -14211,7 +14238,7 @@ function generateClassString$2(...args) {
|
|
|
14211
14238
|
);
|
|
14212
14239
|
}
|
|
14213
14240
|
|
|
14214
|
-
function instance$
|
|
14241
|
+
function instance$Z($$self, $$props, $$invalidate) {
|
|
14215
14242
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14216
14243
|
let { busy = false } = $$props;
|
|
14217
14244
|
let { classes = '' } = $$props;
|
|
@@ -14241,7 +14268,7 @@ class Button extends SvelteComponent {
|
|
|
14241
14268
|
constructor(options) {
|
|
14242
14269
|
super();
|
|
14243
14270
|
|
|
14244
|
-
init(this, options, instance$
|
|
14271
|
+
init(this, options, instance$Z, create_fragment$X, safe_not_equal, {
|
|
14245
14272
|
busy: 0,
|
|
14246
14273
|
classes: 1,
|
|
14247
14274
|
onClick: 2,
|
|
@@ -14254,7 +14281,7 @@ class Button extends SvelteComponent {
|
|
|
14254
14281
|
|
|
14255
14282
|
/* src/lib/components/primitives/form/form.svelte generated by Svelte v3.59.2 */
|
|
14256
14283
|
|
|
14257
|
-
function create_fragment$
|
|
14284
|
+
function create_fragment$W(ctx) {
|
|
14258
14285
|
let form;
|
|
14259
14286
|
let form_class_value;
|
|
14260
14287
|
let current;
|
|
@@ -14341,7 +14368,7 @@ function create_fragment$V(ctx) {
|
|
|
14341
14368
|
};
|
|
14342
14369
|
}
|
|
14343
14370
|
|
|
14344
|
-
function instance$
|
|
14371
|
+
function instance$Y($$self, $$props, $$invalidate) {
|
|
14345
14372
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14346
14373
|
let { ariaDescribedBy } = $$props;
|
|
14347
14374
|
let { formEl = null } = $$props;
|
|
@@ -14468,7 +14495,7 @@ class Form extends SvelteComponent {
|
|
|
14468
14495
|
constructor(options) {
|
|
14469
14496
|
super();
|
|
14470
14497
|
|
|
14471
|
-
init(this, options, instance$
|
|
14498
|
+
init(this, options, instance$Y, create_fragment$W, safe_not_equal, {
|
|
14472
14499
|
ariaDescribedBy: 1,
|
|
14473
14500
|
formEl: 0,
|
|
14474
14501
|
id: 2,
|
|
@@ -14533,7 +14560,7 @@ function create_else_block$9(ctx) {
|
|
|
14533
14560
|
}
|
|
14534
14561
|
|
|
14535
14562
|
// (10:0) {#if html}
|
|
14536
|
-
function create_if_block$
|
|
14563
|
+
function create_if_block$o(ctx) {
|
|
14537
14564
|
let current;
|
|
14538
14565
|
const default_slot_template = /*#slots*/ ctx[4].default;
|
|
14539
14566
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[3], null);
|
|
@@ -14630,12 +14657,12 @@ function fallback_block(ctx) {
|
|
|
14630
14657
|
};
|
|
14631
14658
|
}
|
|
14632
14659
|
|
|
14633
|
-
function create_fragment$
|
|
14660
|
+
function create_fragment$V(ctx) {
|
|
14634
14661
|
let current_block_type_index;
|
|
14635
14662
|
let if_block;
|
|
14636
14663
|
let if_block_anchor;
|
|
14637
14664
|
let current;
|
|
14638
|
-
const if_block_creators = [create_if_block$
|
|
14665
|
+
const if_block_creators = [create_if_block$o, create_else_block$9];
|
|
14639
14666
|
const if_blocks = [];
|
|
14640
14667
|
|
|
14641
14668
|
function select_block_type(ctx, dirty) {
|
|
@@ -14699,7 +14726,7 @@ function create_fragment$U(ctx) {
|
|
|
14699
14726
|
};
|
|
14700
14727
|
}
|
|
14701
14728
|
|
|
14702
|
-
function instance$
|
|
14729
|
+
function instance$X($$self, $$props, $$invalidate) {
|
|
14703
14730
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14704
14731
|
let { html = false } = $$props;
|
|
14705
14732
|
let { string } = $$props;
|
|
@@ -14725,13 +14752,13 @@ function instance$W($$self, $$props, $$invalidate) {
|
|
|
14725
14752
|
class Server_strings extends SvelteComponent {
|
|
14726
14753
|
constructor(options) {
|
|
14727
14754
|
super();
|
|
14728
|
-
init(this, options, instance$
|
|
14755
|
+
init(this, options, instance$X, create_fragment$V, safe_not_equal, { html: 0, string: 2 });
|
|
14729
14756
|
}
|
|
14730
14757
|
}
|
|
14731
14758
|
|
|
14732
14759
|
/* src/lib/components/icons/shield-icon.svelte generated by Svelte v3.59.2 */
|
|
14733
14760
|
|
|
14734
|
-
function create_fragment$
|
|
14761
|
+
function create_fragment$U(ctx) {
|
|
14735
14762
|
let svg;
|
|
14736
14763
|
let path;
|
|
14737
14764
|
let title;
|
|
@@ -14807,7 +14834,7 @@ function create_fragment$T(ctx) {
|
|
|
14807
14834
|
};
|
|
14808
14835
|
}
|
|
14809
14836
|
|
|
14810
|
-
function instance$
|
|
14837
|
+
function instance$W($$self, $$props, $$invalidate) {
|
|
14811
14838
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14812
14839
|
let { classes = '' } = $$props;
|
|
14813
14840
|
let { size = '24px' } = $$props;
|
|
@@ -14824,13 +14851,13 @@ function instance$V($$self, $$props, $$invalidate) {
|
|
|
14824
14851
|
class Shield_icon extends SvelteComponent {
|
|
14825
14852
|
constructor(options) {
|
|
14826
14853
|
super();
|
|
14827
|
-
init(this, options, instance$
|
|
14854
|
+
init(this, options, instance$W, create_fragment$U, safe_not_equal, { classes: 0, size: 1 });
|
|
14828
14855
|
}
|
|
14829
14856
|
}
|
|
14830
14857
|
|
|
14831
14858
|
/* src/lib/journey/stages/_utilities/back-to.svelte generated by Svelte v3.59.2 */
|
|
14832
14859
|
|
|
14833
|
-
function create_if_block$
|
|
14860
|
+
function create_if_block$n(ctx) {
|
|
14834
14861
|
let p;
|
|
14835
14862
|
let button;
|
|
14836
14863
|
let t_value = interpolate(/*string*/ ctx[1]) + "";
|
|
@@ -14866,9 +14893,9 @@ function create_if_block$m(ctx) {
|
|
|
14866
14893
|
};
|
|
14867
14894
|
}
|
|
14868
14895
|
|
|
14869
|
-
function create_fragment$
|
|
14896
|
+
function create_fragment$T(ctx) {
|
|
14870
14897
|
let if_block_anchor;
|
|
14871
|
-
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$
|
|
14898
|
+
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$n(ctx);
|
|
14872
14899
|
|
|
14873
14900
|
return {
|
|
14874
14901
|
c() {
|
|
@@ -14884,7 +14911,7 @@ function create_fragment$S(ctx) {
|
|
|
14884
14911
|
if (if_block) {
|
|
14885
14912
|
if_block.p(ctx, dirty);
|
|
14886
14913
|
} else {
|
|
14887
|
-
if_block = create_if_block$
|
|
14914
|
+
if_block = create_if_block$n(ctx);
|
|
14888
14915
|
if_block.c();
|
|
14889
14916
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
14890
14917
|
}
|
|
@@ -14902,7 +14929,7 @@ function create_fragment$S(ctx) {
|
|
|
14902
14929
|
};
|
|
14903
14930
|
}
|
|
14904
14931
|
|
|
14905
|
-
function instance$
|
|
14932
|
+
function instance$V($$self, $$props, $$invalidate) {
|
|
14906
14933
|
let $stack;
|
|
14907
14934
|
let $configuredJourneysStore;
|
|
14908
14935
|
component_subscribe($$self, configuredJourneysStore, $$value => $$invalidate(5, $configuredJourneysStore = $$value));
|
|
@@ -14943,7 +14970,7 @@ function instance$U($$self, $$props, $$invalidate) {
|
|
|
14943
14970
|
class Back_to extends SvelteComponent {
|
|
14944
14971
|
constructor(options) {
|
|
14945
14972
|
super();
|
|
14946
|
-
init(this, options, instance$
|
|
14973
|
+
init(this, options, instance$V, create_fragment$T, safe_not_equal, { journey: 0 });
|
|
14947
14974
|
}
|
|
14948
14975
|
}
|
|
14949
14976
|
|
|
@@ -15407,7 +15434,7 @@ function getAttributeValidationFailureText(callback) {
|
|
|
15407
15434
|
|
|
15408
15435
|
/* src/lib/components/primitives/message/input-message.svelte generated by Svelte v3.59.2 */
|
|
15409
15436
|
|
|
15410
|
-
function create_if_block$
|
|
15437
|
+
function create_if_block$m(ctx) {
|
|
15411
15438
|
let p;
|
|
15412
15439
|
let p_class_value;
|
|
15413
15440
|
let p_id_value;
|
|
@@ -15438,9 +15465,9 @@ function create_if_block$l(ctx) {
|
|
|
15438
15465
|
};
|
|
15439
15466
|
}
|
|
15440
15467
|
|
|
15441
|
-
function create_fragment$
|
|
15468
|
+
function create_fragment$S(ctx) {
|
|
15442
15469
|
let if_block_anchor;
|
|
15443
|
-
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$
|
|
15470
|
+
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$m(ctx);
|
|
15444
15471
|
|
|
15445
15472
|
return {
|
|
15446
15473
|
c() {
|
|
@@ -15456,7 +15483,7 @@ function create_fragment$R(ctx) {
|
|
|
15456
15483
|
if (if_block) {
|
|
15457
15484
|
if_block.p(ctx, dirty);
|
|
15458
15485
|
} else {
|
|
15459
|
-
if_block = create_if_block$
|
|
15486
|
+
if_block = create_if_block$m(ctx);
|
|
15460
15487
|
if_block.c();
|
|
15461
15488
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
15462
15489
|
}
|
|
@@ -15488,7 +15515,7 @@ function generateClassString$1(...args) {
|
|
|
15488
15515
|
);
|
|
15489
15516
|
}
|
|
15490
15517
|
|
|
15491
|
-
function instance$
|
|
15518
|
+
function instance$U($$self, $$props, $$invalidate) {
|
|
15492
15519
|
let { classes = '' } = $$props;
|
|
15493
15520
|
let { dirtyMessage } = $$props;
|
|
15494
15521
|
let { key = undefined } = $$props;
|
|
@@ -15519,7 +15546,7 @@ class Input_message extends SvelteComponent {
|
|
|
15519
15546
|
constructor(options) {
|
|
15520
15547
|
super();
|
|
15521
15548
|
|
|
15522
|
-
init(this, options, instance$
|
|
15549
|
+
init(this, options, instance$U, create_fragment$S, safe_not_equal, {
|
|
15523
15550
|
classes: 0,
|
|
15524
15551
|
dirtyMessage: 1,
|
|
15525
15552
|
key: 2,
|
|
@@ -15531,7 +15558,7 @@ class Input_message extends SvelteComponent {
|
|
|
15531
15558
|
|
|
15532
15559
|
/* src/lib/components/primitives/label/label.svelte generated by Svelte v3.59.2 */
|
|
15533
15560
|
|
|
15534
|
-
function create_fragment$
|
|
15561
|
+
function create_fragment$R(ctx) {
|
|
15535
15562
|
let label;
|
|
15536
15563
|
let label_class_value;
|
|
15537
15564
|
let current;
|
|
@@ -15594,7 +15621,7 @@ function create_fragment$Q(ctx) {
|
|
|
15594
15621
|
};
|
|
15595
15622
|
}
|
|
15596
15623
|
|
|
15597
|
-
function instance$
|
|
15624
|
+
function instance$T($$self, $$props, $$invalidate) {
|
|
15598
15625
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15599
15626
|
let { key } = $$props;
|
|
15600
15627
|
let { classes = '' } = $$props;
|
|
@@ -15611,7 +15638,7 @@ function instance$S($$self, $$props, $$invalidate) {
|
|
|
15611
15638
|
class Label extends SvelteComponent {
|
|
15612
15639
|
constructor(options) {
|
|
15613
15640
|
super();
|
|
15614
|
-
init(this, options, instance$
|
|
15641
|
+
init(this, options, instance$T, create_fragment$R, safe_not_equal, { key: 0, classes: 1 });
|
|
15615
15642
|
}
|
|
15616
15643
|
}
|
|
15617
15644
|
|
|
@@ -15674,7 +15701,7 @@ function create_default_slot$s(ctx) {
|
|
|
15674
15701
|
};
|
|
15675
15702
|
}
|
|
15676
15703
|
|
|
15677
|
-
function create_fragment$
|
|
15704
|
+
function create_fragment$Q(ctx) {
|
|
15678
15705
|
let div1;
|
|
15679
15706
|
let input;
|
|
15680
15707
|
let input_data_message_value;
|
|
@@ -15798,7 +15825,7 @@ function create_fragment$P(ctx) {
|
|
|
15798
15825
|
};
|
|
15799
15826
|
}
|
|
15800
15827
|
|
|
15801
|
-
function instance$
|
|
15828
|
+
function instance$S($$self, $$props, $$invalidate) {
|
|
15802
15829
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15803
15830
|
let { checkValidity = null } = $$props;
|
|
15804
15831
|
let { message = '' } = $$props;
|
|
@@ -15867,7 +15894,7 @@ let Animated$1 = class Animated extends SvelteComponent {
|
|
|
15867
15894
|
constructor(options) {
|
|
15868
15895
|
super();
|
|
15869
15896
|
|
|
15870
|
-
init(this, options, instance$
|
|
15897
|
+
init(this, options, instance$S, create_fragment$Q, safe_not_equal, {
|
|
15871
15898
|
checkValidity: 8,
|
|
15872
15899
|
message: 1,
|
|
15873
15900
|
isFirstInvalidInput: 9,
|
|
@@ -15930,7 +15957,7 @@ function create_default_slot$r(ctx) {
|
|
|
15930
15957
|
};
|
|
15931
15958
|
}
|
|
15932
15959
|
|
|
15933
|
-
function create_fragment$
|
|
15960
|
+
function create_fragment$P(ctx) {
|
|
15934
15961
|
let input;
|
|
15935
15962
|
let input_aria_describedby_value;
|
|
15936
15963
|
let t;
|
|
@@ -16027,7 +16054,7 @@ function create_fragment$O(ctx) {
|
|
|
16027
16054
|
};
|
|
16028
16055
|
}
|
|
16029
16056
|
|
|
16030
|
-
function instance$
|
|
16057
|
+
function instance$R($$self, $$props, $$invalidate) {
|
|
16031
16058
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16032
16059
|
let { isFirstInvalidInput } = $$props;
|
|
16033
16060
|
let { isRequired = false } = $$props;
|
|
@@ -16078,7 +16105,7 @@ class Checkbox extends SvelteComponent {
|
|
|
16078
16105
|
constructor(options) {
|
|
16079
16106
|
super();
|
|
16080
16107
|
|
|
16081
|
-
init(this, options, instance$
|
|
16108
|
+
init(this, options, instance$R, create_fragment$P, safe_not_equal, {
|
|
16082
16109
|
isFirstInvalidInput: 6,
|
|
16083
16110
|
isRequired: 0,
|
|
16084
16111
|
isInvalid: 1,
|
|
@@ -16138,7 +16165,7 @@ function create_default_slot$q(ctx) {
|
|
|
16138
16165
|
};
|
|
16139
16166
|
}
|
|
16140
16167
|
|
|
16141
|
-
function create_fragment$
|
|
16168
|
+
function create_fragment$O(ctx) {
|
|
16142
16169
|
let div;
|
|
16143
16170
|
let checkbox;
|
|
16144
16171
|
let t;
|
|
@@ -16225,7 +16252,7 @@ function create_fragment$N(ctx) {
|
|
|
16225
16252
|
};
|
|
16226
16253
|
}
|
|
16227
16254
|
|
|
16228
|
-
function instance$
|
|
16255
|
+
function instance$Q($$self, $$props, $$invalidate) {
|
|
16229
16256
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16230
16257
|
let { checkValidity = null } = $$props;
|
|
16231
16258
|
let { message = '' } = $$props;
|
|
@@ -16278,7 +16305,7 @@ let Standard$1 = class Standard extends SvelteComponent {
|
|
|
16278
16305
|
constructor(options) {
|
|
16279
16306
|
super();
|
|
16280
16307
|
|
|
16281
|
-
init(this, options, instance$
|
|
16308
|
+
init(this, options, instance$Q, create_fragment$O, safe_not_equal, {
|
|
16282
16309
|
checkValidity: 8,
|
|
16283
16310
|
message: 1,
|
|
16284
16311
|
isFirstInvalidInput: 2,
|
|
@@ -16369,7 +16396,7 @@ function create_key_block$5(ctx) {
|
|
|
16369
16396
|
};
|
|
16370
16397
|
}
|
|
16371
16398
|
|
|
16372
|
-
function create_fragment$
|
|
16399
|
+
function create_fragment$N(ctx) {
|
|
16373
16400
|
let previous_key = /*callback*/ ctx[0];
|
|
16374
16401
|
let key_block_anchor;
|
|
16375
16402
|
let current;
|
|
@@ -16414,7 +16441,7 @@ function create_fragment$M(ctx) {
|
|
|
16414
16441
|
};
|
|
16415
16442
|
}
|
|
16416
16443
|
|
|
16417
|
-
function instance$
|
|
16444
|
+
function instance$P($$self, $$props, $$invalidate) {
|
|
16418
16445
|
const stepMetadata = null;
|
|
16419
16446
|
const selfSubmitFunction = null;
|
|
16420
16447
|
let { callback } = $$props;
|
|
@@ -16481,7 +16508,7 @@ let Boolean$1 = class Boolean extends SvelteComponent {
|
|
|
16481
16508
|
constructor(options) {
|
|
16482
16509
|
super();
|
|
16483
16510
|
|
|
16484
|
-
init(this, options, instance$
|
|
16511
|
+
init(this, options, instance$P, create_fragment$N, safe_not_equal, {
|
|
16485
16512
|
stepMetadata: 9,
|
|
16486
16513
|
selfSubmitFunction: 10,
|
|
16487
16514
|
callback: 0,
|
|
@@ -16649,7 +16676,7 @@ function create_each_block$a(ctx) {
|
|
|
16649
16676
|
};
|
|
16650
16677
|
}
|
|
16651
16678
|
|
|
16652
|
-
function create_fragment$
|
|
16679
|
+
function create_fragment$M(ctx) {
|
|
16653
16680
|
let fieldset;
|
|
16654
16681
|
let legend;
|
|
16655
16682
|
let t0;
|
|
@@ -16780,7 +16807,7 @@ function create_fragment$L(ctx) {
|
|
|
16780
16807
|
};
|
|
16781
16808
|
}
|
|
16782
16809
|
|
|
16783
|
-
function instance$
|
|
16810
|
+
function instance$O($$self, $$props, $$invalidate) {
|
|
16784
16811
|
let { defaultOption = null } = $$props;
|
|
16785
16812
|
let { message = '' } = $$props;
|
|
16786
16813
|
let { groupLabel = '' } = $$props;
|
|
@@ -16842,7 +16869,7 @@ class Animated extends SvelteComponent {
|
|
|
16842
16869
|
constructor(options) {
|
|
16843
16870
|
super();
|
|
16844
16871
|
|
|
16845
|
-
init(this, options, instance$
|
|
16872
|
+
init(this, options, instance$O, create_fragment$M, safe_not_equal, {
|
|
16846
16873
|
defaultOption: 0,
|
|
16847
16874
|
message: 1,
|
|
16848
16875
|
groupLabel: 2,
|
|
@@ -16907,7 +16934,7 @@ function create_default_slot$n(ctx) {
|
|
|
16907
16934
|
};
|
|
16908
16935
|
}
|
|
16909
16936
|
|
|
16910
|
-
function create_fragment$
|
|
16937
|
+
function create_fragment$L(ctx) {
|
|
16911
16938
|
let input;
|
|
16912
16939
|
let input_aria_describedby_value;
|
|
16913
16940
|
let t;
|
|
@@ -17014,7 +17041,7 @@ function create_fragment$K(ctx) {
|
|
|
17014
17041
|
};
|
|
17015
17042
|
}
|
|
17016
17043
|
|
|
17017
|
-
function instance$
|
|
17044
|
+
function instance$N($$self, $$props, $$invalidate) {
|
|
17018
17045
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
17019
17046
|
let { checked = false } = $$props;
|
|
17020
17047
|
let { isFirstInvalidInput } = $$props;
|
|
@@ -17071,7 +17098,7 @@ class Radio extends SvelteComponent {
|
|
|
17071
17098
|
constructor(options) {
|
|
17072
17099
|
super();
|
|
17073
17100
|
|
|
17074
|
-
init(this, options, instance$
|
|
17101
|
+
init(this, options, instance$N, create_fragment$L, safe_not_equal, {
|
|
17075
17102
|
checked: 0,
|
|
17076
17103
|
isFirstInvalidInput: 8,
|
|
17077
17104
|
isRequired: 1,
|
|
@@ -17181,7 +17208,7 @@ function create_each_block$9(ctx) {
|
|
|
17181
17208
|
};
|
|
17182
17209
|
}
|
|
17183
17210
|
|
|
17184
|
-
function create_fragment$
|
|
17211
|
+
function create_fragment$K(ctx) {
|
|
17185
17212
|
let fieldset;
|
|
17186
17213
|
let legend;
|
|
17187
17214
|
let t0;
|
|
@@ -17309,7 +17336,7 @@ function create_fragment$J(ctx) {
|
|
|
17309
17336
|
};
|
|
17310
17337
|
}
|
|
17311
17338
|
|
|
17312
|
-
function instance$
|
|
17339
|
+
function instance$M($$self, $$props, $$invalidate) {
|
|
17313
17340
|
let { defaultOption = null } = $$props;
|
|
17314
17341
|
let { message = '' } = $$props;
|
|
17315
17342
|
let { groupLabel = '' } = $$props;
|
|
@@ -17355,7 +17382,7 @@ class Standard extends SvelteComponent {
|
|
|
17355
17382
|
constructor(options) {
|
|
17356
17383
|
super();
|
|
17357
17384
|
|
|
17358
|
-
init(this, options, instance$
|
|
17385
|
+
init(this, options, instance$M, create_fragment$K, safe_not_equal, {
|
|
17359
17386
|
defaultOption: 0,
|
|
17360
17387
|
message: 1,
|
|
17361
17388
|
groupLabel: 2,
|
|
@@ -17489,7 +17516,7 @@ function create_each_block$8(ctx) {
|
|
|
17489
17516
|
}
|
|
17490
17517
|
|
|
17491
17518
|
// (61:0) {#if labelOrder === 'last'}
|
|
17492
|
-
function create_if_block$
|
|
17519
|
+
function create_if_block$l(ctx) {
|
|
17493
17520
|
let label_1;
|
|
17494
17521
|
let current;
|
|
17495
17522
|
|
|
@@ -17561,7 +17588,7 @@ function create_default_slot$l(ctx) {
|
|
|
17561
17588
|
};
|
|
17562
17589
|
}
|
|
17563
17590
|
|
|
17564
|
-
function create_fragment$
|
|
17591
|
+
function create_fragment$J(ctx) {
|
|
17565
17592
|
let t0;
|
|
17566
17593
|
let select;
|
|
17567
17594
|
let select_aria_describedby_value;
|
|
@@ -17579,7 +17606,7 @@ function create_fragment$I(ctx) {
|
|
|
17579
17606
|
each_blocks[i] = create_each_block$8(get_each_context$8(ctx, each_value, i));
|
|
17580
17607
|
}
|
|
17581
17608
|
|
|
17582
|
-
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$
|
|
17609
|
+
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$l(ctx);
|
|
17583
17610
|
|
|
17584
17611
|
return {
|
|
17585
17612
|
c() {
|
|
@@ -17703,7 +17730,7 @@ function create_fragment$I(ctx) {
|
|
|
17703
17730
|
transition_in(if_block1, 1);
|
|
17704
17731
|
}
|
|
17705
17732
|
} else {
|
|
17706
|
-
if_block1 = create_if_block$
|
|
17733
|
+
if_block1 = create_if_block$l(ctx);
|
|
17707
17734
|
if_block1.c();
|
|
17708
17735
|
transition_in(if_block1, 1);
|
|
17709
17736
|
if_block1.m(if_block1_anchor.parentNode, if_block1_anchor);
|
|
@@ -17744,7 +17771,7 @@ function create_fragment$I(ctx) {
|
|
|
17744
17771
|
};
|
|
17745
17772
|
}
|
|
17746
17773
|
|
|
17747
|
-
function instance$
|
|
17774
|
+
function instance$L($$self, $$props, $$invalidate) {
|
|
17748
17775
|
let { selectClasses = '' } = $$props;
|
|
17749
17776
|
let { defaultOption = null } = $$props;
|
|
17750
17777
|
let { isFirstInvalidInput } = $$props;
|
|
@@ -17831,7 +17858,7 @@ class Select extends SvelteComponent {
|
|
|
17831
17858
|
constructor(options) {
|
|
17832
17859
|
super();
|
|
17833
17860
|
|
|
17834
|
-
init(this, options, instance$
|
|
17861
|
+
init(this, options, instance$L, create_fragment$J, safe_not_equal, {
|
|
17835
17862
|
selectClasses: 0,
|
|
17836
17863
|
defaultOption: 1,
|
|
17837
17864
|
isFirstInvalidInput: 12,
|
|
@@ -17849,7 +17876,7 @@ class Select extends SvelteComponent {
|
|
|
17849
17876
|
|
|
17850
17877
|
/* src/lib/components/compositions/select-floating/floating-label.svelte generated by Svelte v3.59.2 */
|
|
17851
17878
|
|
|
17852
|
-
function create_fragment$
|
|
17879
|
+
function create_fragment$I(ctx) {
|
|
17853
17880
|
let div;
|
|
17854
17881
|
let select;
|
|
17855
17882
|
let t;
|
|
@@ -17932,7 +17959,7 @@ function create_fragment$H(ctx) {
|
|
|
17932
17959
|
};
|
|
17933
17960
|
}
|
|
17934
17961
|
|
|
17935
|
-
function instance$
|
|
17962
|
+
function instance$K($$self, $$props, $$invalidate) {
|
|
17936
17963
|
let { checkValidity = null } = $$props;
|
|
17937
17964
|
let { defaultOption = null } = $$props;
|
|
17938
17965
|
let { message = '' } = $$props;
|
|
@@ -17987,7 +18014,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
17987
18014
|
constructor(options) {
|
|
17988
18015
|
super();
|
|
17989
18016
|
|
|
17990
|
-
init(this, options, instance$
|
|
18017
|
+
init(this, options, instance$K, create_fragment$I, safe_not_equal, {
|
|
17991
18018
|
checkValidity: 10,
|
|
17992
18019
|
defaultOption: 1,
|
|
17993
18020
|
message: 2,
|
|
@@ -18005,7 +18032,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
18005
18032
|
|
|
18006
18033
|
/* src/lib/components/compositions/select-stacked/stacked-label.svelte generated by Svelte v3.59.2 */
|
|
18007
18034
|
|
|
18008
|
-
function create_fragment$
|
|
18035
|
+
function create_fragment$H(ctx) {
|
|
18009
18036
|
let div;
|
|
18010
18037
|
let select;
|
|
18011
18038
|
let t;
|
|
@@ -18087,7 +18114,7 @@ function create_fragment$G(ctx) {
|
|
|
18087
18114
|
};
|
|
18088
18115
|
}
|
|
18089
18116
|
|
|
18090
|
-
function instance$
|
|
18117
|
+
function instance$J($$self, $$props, $$invalidate) {
|
|
18091
18118
|
let { checkValidity = null } = $$props;
|
|
18092
18119
|
let { defaultOption = null } = $$props;
|
|
18093
18120
|
let { message = '' } = $$props;
|
|
@@ -18142,7 +18169,7 @@ let Stacked_label$1 = class Stacked_label extends SvelteComponent {
|
|
|
18142
18169
|
constructor(options) {
|
|
18143
18170
|
super();
|
|
18144
18171
|
|
|
18145
|
-
init(this, options, instance$
|
|
18172
|
+
init(this, options, instance$J, create_fragment$H, safe_not_equal, {
|
|
18146
18173
|
checkValidity: 10,
|
|
18147
18174
|
defaultOption: 1,
|
|
18148
18175
|
message: 2,
|
|
@@ -18209,7 +18236,7 @@ function create_else_block$8(ctx) {
|
|
|
18209
18236
|
}
|
|
18210
18237
|
|
|
18211
18238
|
// (52:0) {#if callbackMetadata?.platform?.displayType === 'radio'}
|
|
18212
|
-
function create_if_block$
|
|
18239
|
+
function create_if_block$k(ctx) {
|
|
18213
18240
|
let radio;
|
|
18214
18241
|
let current;
|
|
18215
18242
|
|
|
@@ -18259,12 +18286,12 @@ function create_if_block$j(ctx) {
|
|
|
18259
18286
|
};
|
|
18260
18287
|
}
|
|
18261
18288
|
|
|
18262
|
-
function create_fragment$
|
|
18289
|
+
function create_fragment$G(ctx) {
|
|
18263
18290
|
let current_block_type_index;
|
|
18264
18291
|
let if_block;
|
|
18265
18292
|
let if_block_anchor;
|
|
18266
18293
|
let current;
|
|
18267
|
-
const if_block_creators = [create_if_block$
|
|
18294
|
+
const if_block_creators = [create_if_block$k, create_else_block$8];
|
|
18268
18295
|
const if_blocks = [];
|
|
18269
18296
|
|
|
18270
18297
|
function select_block_type(ctx, dirty) {
|
|
@@ -18328,7 +18355,7 @@ function create_fragment$F(ctx) {
|
|
|
18328
18355
|
};
|
|
18329
18356
|
}
|
|
18330
18357
|
|
|
18331
|
-
function instance$
|
|
18358
|
+
function instance$I($$self, $$props, $$invalidate) {
|
|
18332
18359
|
const selfSubmitFunction = null;
|
|
18333
18360
|
const stepMetadata = null;
|
|
18334
18361
|
let { callback } = $$props;
|
|
@@ -18416,7 +18443,7 @@ class Choice extends SvelteComponent {
|
|
|
18416
18443
|
constructor(options) {
|
|
18417
18444
|
super();
|
|
18418
18445
|
|
|
18419
|
-
init(this, options, instance$
|
|
18446
|
+
init(this, options, instance$I, create_fragment$G, safe_not_equal, {
|
|
18420
18447
|
selfSubmitFunction: 9,
|
|
18421
18448
|
stepMetadata: 10,
|
|
18422
18449
|
callback: 11,
|
|
@@ -18436,7 +18463,7 @@ class Choice extends SvelteComponent {
|
|
|
18436
18463
|
|
|
18437
18464
|
/* src/lib/components/primitives/grid/grid.svelte generated by Svelte v3.59.2 */
|
|
18438
18465
|
|
|
18439
|
-
function create_fragment$
|
|
18466
|
+
function create_fragment$F(ctx) {
|
|
18440
18467
|
let div;
|
|
18441
18468
|
let div_class_value;
|
|
18442
18469
|
let current;
|
|
@@ -18512,7 +18539,7 @@ function generateClassString(...args) {
|
|
|
18512
18539
|
);
|
|
18513
18540
|
}
|
|
18514
18541
|
|
|
18515
|
-
function instance$
|
|
18542
|
+
function instance$H($$self, $$props, $$invalidate) {
|
|
18516
18543
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
18517
18544
|
let { num = 2 } = $$props;
|
|
18518
18545
|
|
|
@@ -18527,7 +18554,7 @@ function instance$G($$self, $$props, $$invalidate) {
|
|
|
18527
18554
|
class Grid extends SvelteComponent {
|
|
18528
18555
|
constructor(options) {
|
|
18529
18556
|
super();
|
|
18530
|
-
init(this, options, instance$
|
|
18557
|
+
init(this, options, instance$H, create_fragment$F, safe_not_equal, { num: 0 });
|
|
18531
18558
|
}
|
|
18532
18559
|
}
|
|
18533
18560
|
|
|
@@ -18540,7 +18567,7 @@ function get_each_context$7(ctx, list, i) {
|
|
|
18540
18567
|
}
|
|
18541
18568
|
|
|
18542
18569
|
// (81:0) {#if stepMetadata?.platform?.stageName !== 'OneTimePassword'}
|
|
18543
|
-
function create_if_block$
|
|
18570
|
+
function create_if_block$j(ctx) {
|
|
18544
18571
|
let show_if;
|
|
18545
18572
|
let current_block_type_index;
|
|
18546
18573
|
let if_block;
|
|
@@ -19019,10 +19046,10 @@ function create_default_slot$k(ctx) {
|
|
|
19019
19046
|
};
|
|
19020
19047
|
}
|
|
19021
19048
|
|
|
19022
|
-
function create_fragment$
|
|
19049
|
+
function create_fragment$E(ctx) {
|
|
19023
19050
|
let if_block_anchor;
|
|
19024
19051
|
let current;
|
|
19025
|
-
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$
|
|
19052
|
+
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$j(ctx);
|
|
19026
19053
|
|
|
19027
19054
|
return {
|
|
19028
19055
|
c() {
|
|
@@ -19043,7 +19070,7 @@ function create_fragment$D(ctx) {
|
|
|
19043
19070
|
transition_in(if_block, 1);
|
|
19044
19071
|
}
|
|
19045
19072
|
} else {
|
|
19046
|
-
if_block = create_if_block$
|
|
19073
|
+
if_block = create_if_block$j(ctx);
|
|
19047
19074
|
if_block.c();
|
|
19048
19075
|
transition_in(if_block, 1);
|
|
19049
19076
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -19074,7 +19101,7 @@ function create_fragment$D(ctx) {
|
|
|
19074
19101
|
};
|
|
19075
19102
|
}
|
|
19076
19103
|
|
|
19077
|
-
function instance$
|
|
19104
|
+
function instance$G($$self, $$props, $$invalidate) {
|
|
19078
19105
|
const style = {};
|
|
19079
19106
|
let { callback } = $$props;
|
|
19080
19107
|
let { callbackMetadata } = $$props;
|
|
@@ -19193,7 +19220,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19193
19220
|
constructor(options) {
|
|
19194
19221
|
super();
|
|
19195
19222
|
|
|
19196
|
-
init(this, options, instance$
|
|
19223
|
+
init(this, options, instance$G, create_fragment$E, safe_not_equal, {
|
|
19197
19224
|
style: 11,
|
|
19198
19225
|
callback: 12,
|
|
19199
19226
|
callbackMetadata: 0,
|
|
@@ -19209,7 +19236,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19209
19236
|
|
|
19210
19237
|
/* src/lib/journey/callbacks/hidden-value/hidden-value.svelte generated by Svelte v3.59.2 */
|
|
19211
19238
|
|
|
19212
|
-
function instance$
|
|
19239
|
+
function instance$F($$self, $$props, $$invalidate) {
|
|
19213
19240
|
const callback = null;
|
|
19214
19241
|
const callbackMetadata = null;
|
|
19215
19242
|
const selfSubmitFunction = null;
|
|
@@ -19222,7 +19249,7 @@ class Hidden_value extends SvelteComponent {
|
|
|
19222
19249
|
constructor(options) {
|
|
19223
19250
|
super();
|
|
19224
19251
|
|
|
19225
|
-
init(this, options, instance$
|
|
19252
|
+
init(this, options, instance$F, null, safe_not_equal, {
|
|
19226
19253
|
callback: 0,
|
|
19227
19254
|
callbackMetadata: 1,
|
|
19228
19255
|
selfSubmitFunction: 2,
|
|
@@ -19802,7 +19829,7 @@ function create_if_block_1$9(ctx) {
|
|
|
19802
19829
|
}
|
|
19803
19830
|
|
|
19804
19831
|
// (129:0) {#if labelOrder === 'last'}
|
|
19805
|
-
function create_if_block$
|
|
19832
|
+
function create_if_block$i(ctx) {
|
|
19806
19833
|
let label_1;
|
|
19807
19834
|
let current;
|
|
19808
19835
|
|
|
@@ -19869,7 +19896,7 @@ function create_default_slot$j(ctx) {
|
|
|
19869
19896
|
};
|
|
19870
19897
|
}
|
|
19871
19898
|
|
|
19872
|
-
function create_fragment$
|
|
19899
|
+
function create_fragment$D(ctx) {
|
|
19873
19900
|
let t0;
|
|
19874
19901
|
let t1;
|
|
19875
19902
|
let t2;
|
|
@@ -19886,7 +19913,7 @@ function create_fragment$C(ctx) {
|
|
|
19886
19913
|
let if_block4 = /*type*/ ctx[11] === 'password' && create_if_block_3$6(ctx);
|
|
19887
19914
|
let if_block5 = /*type*/ ctx[11] === 'phone' && create_if_block_2$8(ctx);
|
|
19888
19915
|
let if_block6 = /*type*/ ctx[11] === 'text' && create_if_block_1$9(ctx);
|
|
19889
|
-
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$
|
|
19916
|
+
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$i(ctx);
|
|
19890
19917
|
|
|
19891
19918
|
return {
|
|
19892
19919
|
c() {
|
|
@@ -20036,7 +20063,7 @@ function create_fragment$C(ctx) {
|
|
|
20036
20063
|
transition_in(if_block7, 1);
|
|
20037
20064
|
}
|
|
20038
20065
|
} else {
|
|
20039
|
-
if_block7 = create_if_block$
|
|
20066
|
+
if_block7 = create_if_block$i(ctx);
|
|
20040
20067
|
if_block7.c();
|
|
20041
20068
|
transition_in(if_block7, 1);
|
|
20042
20069
|
if_block7.m(if_block7_anchor.parentNode, if_block7_anchor);
|
|
@@ -20083,7 +20110,7 @@ function create_fragment$C(ctx) {
|
|
|
20083
20110
|
};
|
|
20084
20111
|
}
|
|
20085
20112
|
|
|
20086
|
-
function instance$
|
|
20113
|
+
function instance$E($$self, $$props, $$invalidate) {
|
|
20087
20114
|
let { forceValidityFailure = false } = $$props;
|
|
20088
20115
|
let { isFirstInvalidInput } = $$props;
|
|
20089
20116
|
let { inputClasses = '' } = $$props;
|
|
@@ -20227,7 +20254,7 @@ class Input extends SvelteComponent {
|
|
|
20227
20254
|
constructor(options) {
|
|
20228
20255
|
super();
|
|
20229
20256
|
|
|
20230
|
-
init(this, options, instance$
|
|
20257
|
+
init(this, options, instance$E, create_fragment$D, safe_not_equal, {
|
|
20231
20258
|
forceValidityFailure: 1,
|
|
20232
20259
|
isFirstInvalidInput: 13,
|
|
20233
20260
|
inputClasses: 2,
|
|
@@ -20249,7 +20276,7 @@ class Input extends SvelteComponent {
|
|
|
20249
20276
|
const get_input_button_slot_changes$1 = dirty => ({});
|
|
20250
20277
|
const get_input_button_slot_context$1 = ctx => ({});
|
|
20251
20278
|
|
|
20252
|
-
function create_fragment$
|
|
20279
|
+
function create_fragment$C(ctx) {
|
|
20253
20280
|
let div1;
|
|
20254
20281
|
let input;
|
|
20255
20282
|
let updating_value;
|
|
@@ -20424,7 +20451,7 @@ function create_fragment$B(ctx) {
|
|
|
20424
20451
|
};
|
|
20425
20452
|
}
|
|
20426
20453
|
|
|
20427
|
-
function instance$
|
|
20454
|
+
function instance$D($$self, $$props, $$invalidate) {
|
|
20428
20455
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20429
20456
|
let { checkValidity = null } = $$props;
|
|
20430
20457
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20495,7 +20522,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20495
20522
|
constructor(options) {
|
|
20496
20523
|
super();
|
|
20497
20524
|
|
|
20498
|
-
init(this, options, instance$
|
|
20525
|
+
init(this, options, instance$D, create_fragment$C, safe_not_equal, {
|
|
20499
20526
|
checkValidity: 12,
|
|
20500
20527
|
forceValidityFailure: 2,
|
|
20501
20528
|
message: 3,
|
|
@@ -20517,7 +20544,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20517
20544
|
const get_input_button_slot_changes = dirty => ({});
|
|
20518
20545
|
const get_input_button_slot_context = ctx => ({});
|
|
20519
20546
|
|
|
20520
|
-
function create_fragment$
|
|
20547
|
+
function create_fragment$B(ctx) {
|
|
20521
20548
|
let div1;
|
|
20522
20549
|
let input;
|
|
20523
20550
|
let updating_value;
|
|
@@ -20696,7 +20723,7 @@ function create_fragment$A(ctx) {
|
|
|
20696
20723
|
};
|
|
20697
20724
|
}
|
|
20698
20725
|
|
|
20699
|
-
function instance$
|
|
20726
|
+
function instance$C($$self, $$props, $$invalidate) {
|
|
20700
20727
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20701
20728
|
let { checkValidity = null } = $$props;
|
|
20702
20729
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20770,7 +20797,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20770
20797
|
constructor(options) {
|
|
20771
20798
|
super();
|
|
20772
20799
|
|
|
20773
|
-
init(this, options, instance$
|
|
20800
|
+
init(this, options, instance$C, create_fragment$B, safe_not_equal, {
|
|
20774
20801
|
checkValidity: 13,
|
|
20775
20802
|
forceValidityFailure: 2,
|
|
20776
20803
|
isFirstInvalidInput: 3,
|
|
@@ -20791,7 +20818,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20791
20818
|
|
|
20792
20819
|
/* src/lib/components/icons/lock-icon.svelte generated by Svelte v3.59.2 */
|
|
20793
20820
|
|
|
20794
|
-
function create_fragment$
|
|
20821
|
+
function create_fragment$A(ctx) {
|
|
20795
20822
|
let svg;
|
|
20796
20823
|
let path0;
|
|
20797
20824
|
let path1;
|
|
@@ -20872,7 +20899,7 @@ function create_fragment$z(ctx) {
|
|
|
20872
20899
|
};
|
|
20873
20900
|
}
|
|
20874
20901
|
|
|
20875
|
-
function instance$
|
|
20902
|
+
function instance$B($$self, $$props, $$invalidate) {
|
|
20876
20903
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20877
20904
|
let { classes = '' } = $$props;
|
|
20878
20905
|
let { size = '24px' } = $$props;
|
|
@@ -20889,13 +20916,13 @@ function instance$A($$self, $$props, $$invalidate) {
|
|
|
20889
20916
|
class Lock_icon extends SvelteComponent {
|
|
20890
20917
|
constructor(options) {
|
|
20891
20918
|
super();
|
|
20892
|
-
init(this, options, instance$
|
|
20919
|
+
init(this, options, instance$B, create_fragment$A, safe_not_equal, { classes: 0, size: 1 });
|
|
20893
20920
|
}
|
|
20894
20921
|
}
|
|
20895
20922
|
|
|
20896
20923
|
/* src/lib/journey/callbacks/kba/kba-create.svelte generated by Svelte v3.59.2 */
|
|
20897
20924
|
|
|
20898
|
-
function create_if_block$
|
|
20925
|
+
function create_if_block$h(ctx) {
|
|
20899
20926
|
let input;
|
|
20900
20927
|
let current;
|
|
20901
20928
|
|
|
@@ -20940,7 +20967,7 @@ function create_if_block$g(ctx) {
|
|
|
20940
20967
|
};
|
|
20941
20968
|
}
|
|
20942
20969
|
|
|
20943
|
-
function create_fragment$
|
|
20970
|
+
function create_fragment$z(ctx) {
|
|
20944
20971
|
let fieldset;
|
|
20945
20972
|
let legend;
|
|
20946
20973
|
let t0;
|
|
@@ -20976,7 +21003,7 @@ function create_fragment$y(ctx) {
|
|
|
20976
21003
|
}
|
|
20977
21004
|
});
|
|
20978
21005
|
|
|
20979
|
-
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$
|
|
21006
|
+
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$h(ctx);
|
|
20980
21007
|
|
|
20981
21008
|
function input_value_binding(value) {
|
|
20982
21009
|
/*input_value_binding*/ ctx[21](value);
|
|
@@ -21055,7 +21082,7 @@ function create_fragment$y(ctx) {
|
|
|
21055
21082
|
transition_in(if_block, 1);
|
|
21056
21083
|
}
|
|
21057
21084
|
} else {
|
|
21058
|
-
if_block = create_if_block$
|
|
21085
|
+
if_block = create_if_block$h(ctx);
|
|
21059
21086
|
if_block.c();
|
|
21060
21087
|
transition_in(if_block, 1);
|
|
21061
21088
|
if_block.m(fieldset, t6);
|
|
@@ -21113,7 +21140,7 @@ function create_fragment$y(ctx) {
|
|
|
21113
21140
|
};
|
|
21114
21141
|
}
|
|
21115
21142
|
|
|
21116
|
-
function instance$
|
|
21143
|
+
function instance$A($$self, $$props, $$invalidate) {
|
|
21117
21144
|
let $value;
|
|
21118
21145
|
const selfSubmitFunction = null;
|
|
21119
21146
|
const stepMetadata = null;
|
|
@@ -21269,7 +21296,7 @@ class Kba_create extends SvelteComponent {
|
|
|
21269
21296
|
constructor(options) {
|
|
21270
21297
|
super();
|
|
21271
21298
|
|
|
21272
|
-
init(this, options, instance$
|
|
21299
|
+
init(this, options, instance$A, create_fragment$z, safe_not_equal, {
|
|
21273
21300
|
selfSubmitFunction: 13,
|
|
21274
21301
|
stepMetadata: 14,
|
|
21275
21302
|
callback: 15,
|
|
@@ -21342,7 +21369,7 @@ function create_key_block$4(ctx) {
|
|
|
21342
21369
|
};
|
|
21343
21370
|
}
|
|
21344
21371
|
|
|
21345
|
-
function create_fragment$
|
|
21372
|
+
function create_fragment$y(ctx) {
|
|
21346
21373
|
let previous_key = /*callback*/ ctx[0];
|
|
21347
21374
|
let key_block_anchor;
|
|
21348
21375
|
let current;
|
|
@@ -21387,7 +21414,7 @@ function create_fragment$x(ctx) {
|
|
|
21387
21414
|
};
|
|
21388
21415
|
}
|
|
21389
21416
|
|
|
21390
|
-
function instance$
|
|
21417
|
+
function instance$z($$self, $$props, $$invalidate) {
|
|
21391
21418
|
const selfSubmitFunction = null;
|
|
21392
21419
|
const stepMetadata = null;
|
|
21393
21420
|
let { callback } = $$props;
|
|
@@ -21439,7 +21466,7 @@ class Name extends SvelteComponent {
|
|
|
21439
21466
|
constructor(options) {
|
|
21440
21467
|
super();
|
|
21441
21468
|
|
|
21442
|
-
init(this, options, instance$
|
|
21469
|
+
init(this, options, instance$z, create_fragment$y, safe_not_equal, {
|
|
21443
21470
|
selfSubmitFunction: 8,
|
|
21444
21471
|
stepMetadata: 9,
|
|
21445
21472
|
callback: 0,
|
|
@@ -21541,7 +21568,7 @@ function create_else_block$6(ctx) {
|
|
|
21541
21568
|
}
|
|
21542
21569
|
|
|
21543
21570
|
// (6:0) {#if !visible}
|
|
21544
|
-
function create_if_block$
|
|
21571
|
+
function create_if_block$g(ctx) {
|
|
21545
21572
|
let svg;
|
|
21546
21573
|
let path0;
|
|
21547
21574
|
let path1;
|
|
@@ -21622,12 +21649,12 @@ function create_if_block$f(ctx) {
|
|
|
21622
21649
|
};
|
|
21623
21650
|
}
|
|
21624
21651
|
|
|
21625
|
-
function create_fragment$
|
|
21652
|
+
function create_fragment$x(ctx) {
|
|
21626
21653
|
let current_block_type_index;
|
|
21627
21654
|
let if_block;
|
|
21628
21655
|
let if_block_anchor;
|
|
21629
21656
|
let current;
|
|
21630
|
-
const if_block_creators = [create_if_block$
|
|
21657
|
+
const if_block_creators = [create_if_block$g, create_else_block$6];
|
|
21631
21658
|
const if_blocks = [];
|
|
21632
21659
|
|
|
21633
21660
|
function select_block_type(ctx, dirty) {
|
|
@@ -21691,7 +21718,7 @@ function create_fragment$w(ctx) {
|
|
|
21691
21718
|
};
|
|
21692
21719
|
}
|
|
21693
21720
|
|
|
21694
|
-
function instance$
|
|
21721
|
+
function instance$y($$self, $$props, $$invalidate) {
|
|
21695
21722
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21696
21723
|
let { classes = '' } = $$props;
|
|
21697
21724
|
let { size = '24px' } = $$props;
|
|
@@ -21710,7 +21737,7 @@ function instance$x($$self, $$props, $$invalidate) {
|
|
|
21710
21737
|
class Eye_icon extends SvelteComponent {
|
|
21711
21738
|
constructor(options) {
|
|
21712
21739
|
super();
|
|
21713
|
-
init(this, options, instance$
|
|
21740
|
+
init(this, options, instance$y, create_fragment$x, safe_not_equal, { classes: 0, size: 1, visible: 2 });
|
|
21714
21741
|
}
|
|
21715
21742
|
}
|
|
21716
21743
|
|
|
@@ -21856,7 +21883,7 @@ function create_input_button_slot$1(ctx) {
|
|
|
21856
21883
|
};
|
|
21857
21884
|
}
|
|
21858
21885
|
|
|
21859
|
-
function create_fragment$
|
|
21886
|
+
function create_fragment$w(ctx) {
|
|
21860
21887
|
let input;
|
|
21861
21888
|
let current;
|
|
21862
21889
|
|
|
@@ -21927,7 +21954,7 @@ function create_fragment$v(ctx) {
|
|
|
21927
21954
|
};
|
|
21928
21955
|
}
|
|
21929
21956
|
|
|
21930
|
-
function instance$
|
|
21957
|
+
function instance$x($$self, $$props, $$invalidate) {
|
|
21931
21958
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21932
21959
|
let { forceValidityFailure = false } = $$props;
|
|
21933
21960
|
let { passwordsDoNotMatch = false } = $$props;
|
|
@@ -22014,7 +22041,7 @@ class Confirm_input extends SvelteComponent {
|
|
|
22014
22041
|
constructor(options) {
|
|
22015
22042
|
super();
|
|
22016
22043
|
|
|
22017
|
-
init(this, options, instance$
|
|
22044
|
+
init(this, options, instance$x, create_fragment$w, safe_not_equal, {
|
|
22018
22045
|
forceValidityFailure: 0,
|
|
22019
22046
|
passwordsDoNotMatch: 1,
|
|
22020
22047
|
isRequired: 2,
|
|
@@ -22170,7 +22197,7 @@ function create_input_button_slot(ctx) {
|
|
|
22170
22197
|
}
|
|
22171
22198
|
|
|
22172
22199
|
// (102:2) {#if callbackMetadata?.platform?.confirmPassword}
|
|
22173
|
-
function create_if_block$
|
|
22200
|
+
function create_if_block$f(ctx) {
|
|
22174
22201
|
let confirminput;
|
|
22175
22202
|
let current;
|
|
22176
22203
|
|
|
@@ -22253,7 +22280,7 @@ function create_key_block$3(ctx) {
|
|
|
22253
22280
|
}
|
|
22254
22281
|
});
|
|
22255
22282
|
|
|
22256
|
-
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$
|
|
22283
|
+
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$f(ctx);
|
|
22257
22284
|
|
|
22258
22285
|
return {
|
|
22259
22286
|
c() {
|
|
@@ -22302,7 +22329,7 @@ function create_key_block$3(ctx) {
|
|
|
22302
22329
|
transition_in(if_block, 1);
|
|
22303
22330
|
}
|
|
22304
22331
|
} else {
|
|
22305
|
-
if_block = create_if_block$
|
|
22332
|
+
if_block = create_if_block$f(ctx);
|
|
22306
22333
|
if_block.c();
|
|
22307
22334
|
transition_in(if_block, 1);
|
|
22308
22335
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -22337,7 +22364,7 @@ function create_key_block$3(ctx) {
|
|
|
22337
22364
|
};
|
|
22338
22365
|
}
|
|
22339
22366
|
|
|
22340
|
-
function create_fragment$
|
|
22367
|
+
function create_fragment$v(ctx) {
|
|
22341
22368
|
let previous_key = /*callback*/ ctx[1];
|
|
22342
22369
|
let key_block_anchor;
|
|
22343
22370
|
let current;
|
|
@@ -22382,7 +22409,7 @@ function create_fragment$u(ctx) {
|
|
|
22382
22409
|
};
|
|
22383
22410
|
}
|
|
22384
22411
|
|
|
22385
|
-
function instance$
|
|
22412
|
+
function instance$w($$self, $$props, $$invalidate) {
|
|
22386
22413
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22387
22414
|
let { callback } = $$props;
|
|
22388
22415
|
let { callbackMetadata } = $$props;
|
|
@@ -22507,7 +22534,7 @@ class Base extends SvelteComponent {
|
|
|
22507
22534
|
constructor(options) {
|
|
22508
22535
|
super();
|
|
22509
22536
|
|
|
22510
|
-
init(this, options, instance$
|
|
22537
|
+
init(this, options, instance$w, create_fragment$v, safe_not_equal, {
|
|
22511
22538
|
callback: 1,
|
|
22512
22539
|
callbackMetadata: 2,
|
|
22513
22540
|
key: 0,
|
|
@@ -22522,7 +22549,7 @@ class Base extends SvelteComponent {
|
|
|
22522
22549
|
|
|
22523
22550
|
/* src/lib/journey/callbacks/password/password.svelte generated by Svelte v3.59.2 */
|
|
22524
22551
|
|
|
22525
|
-
function create_fragment$
|
|
22552
|
+
function create_fragment$u(ctx) {
|
|
22526
22553
|
let base;
|
|
22527
22554
|
let current;
|
|
22528
22555
|
|
|
@@ -22566,7 +22593,7 @@ function create_fragment$t(ctx) {
|
|
|
22566
22593
|
};
|
|
22567
22594
|
}
|
|
22568
22595
|
|
|
22569
|
-
function instance$
|
|
22596
|
+
function instance$v($$self, $$props, $$invalidate) {
|
|
22570
22597
|
const selfSubmitFunction = null;
|
|
22571
22598
|
const stepMetadata = null;
|
|
22572
22599
|
let { callback } = $$props;
|
|
@@ -22596,7 +22623,7 @@ class Password extends SvelteComponent {
|
|
|
22596
22623
|
constructor(options) {
|
|
22597
22624
|
super();
|
|
22598
22625
|
|
|
22599
|
-
init(this, options, instance$
|
|
22626
|
+
init(this, options, instance$v, create_fragment$u, safe_not_equal, {
|
|
22600
22627
|
selfSubmitFunction: 4,
|
|
22601
22628
|
stepMetadata: 5,
|
|
22602
22629
|
callback: 0,
|
|
@@ -22616,7 +22643,7 @@ class Password extends SvelteComponent {
|
|
|
22616
22643
|
|
|
22617
22644
|
/* src/lib/components/primitives/text/text.svelte generated by Svelte v3.59.2 */
|
|
22618
22645
|
|
|
22619
|
-
function create_fragment$
|
|
22646
|
+
function create_fragment$t(ctx) {
|
|
22620
22647
|
let p;
|
|
22621
22648
|
let p_class_value;
|
|
22622
22649
|
let current;
|
|
@@ -22674,7 +22701,7 @@ function create_fragment$s(ctx) {
|
|
|
22674
22701
|
};
|
|
22675
22702
|
}
|
|
22676
22703
|
|
|
22677
|
-
function instance$
|
|
22704
|
+
function instance$u($$self, $$props, $$invalidate) {
|
|
22678
22705
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22679
22706
|
let { classes = '' } = $$props;
|
|
22680
22707
|
|
|
@@ -22689,7 +22716,7 @@ function instance$t($$self, $$props, $$invalidate) {
|
|
|
22689
22716
|
class Text extends SvelteComponent {
|
|
22690
22717
|
constructor(options) {
|
|
22691
22718
|
super();
|
|
22692
|
-
init(this, options, instance$
|
|
22719
|
+
init(this, options, instance$u, create_fragment$t, safe_not_equal, { classes: 0 });
|
|
22693
22720
|
}
|
|
22694
22721
|
}
|
|
22695
22722
|
|
|
@@ -22714,7 +22741,7 @@ function create_default_slot$g(ctx) {
|
|
|
22714
22741
|
};
|
|
22715
22742
|
}
|
|
22716
22743
|
|
|
22717
|
-
function create_fragment$
|
|
22744
|
+
function create_fragment$s(ctx) {
|
|
22718
22745
|
let div;
|
|
22719
22746
|
let spinner;
|
|
22720
22747
|
let t;
|
|
@@ -22778,7 +22805,7 @@ function create_fragment$r(ctx) {
|
|
|
22778
22805
|
};
|
|
22779
22806
|
}
|
|
22780
22807
|
|
|
22781
|
-
function instance$
|
|
22808
|
+
function instance$t($$self, $$props, $$invalidate) {
|
|
22782
22809
|
const stepMetadata = null;
|
|
22783
22810
|
const style = {};
|
|
22784
22811
|
let { callback } = $$props;
|
|
@@ -22820,7 +22847,7 @@ class Polling_wait extends SvelteComponent {
|
|
|
22820
22847
|
constructor(options) {
|
|
22821
22848
|
super();
|
|
22822
22849
|
|
|
22823
|
-
init(this, options, instance$
|
|
22850
|
+
init(this, options, instance$t, create_fragment$s, safe_not_equal, {
|
|
22824
22851
|
stepMetadata: 3,
|
|
22825
22852
|
style: 4,
|
|
22826
22853
|
callback: 1,
|
|
@@ -22859,7 +22886,7 @@ function create_default_slot$f(ctx) {
|
|
|
22859
22886
|
};
|
|
22860
22887
|
}
|
|
22861
22888
|
|
|
22862
|
-
function create_fragment$
|
|
22889
|
+
function create_fragment$r(ctx) {
|
|
22863
22890
|
let div;
|
|
22864
22891
|
let spinner;
|
|
22865
22892
|
let t;
|
|
@@ -22924,7 +22951,7 @@ function create_fragment$q(ctx) {
|
|
|
22924
22951
|
};
|
|
22925
22952
|
}
|
|
22926
22953
|
|
|
22927
|
-
function instance$
|
|
22954
|
+
function instance$s($$self, $$props, $$invalidate) {
|
|
22928
22955
|
const callbackMetadata = null;
|
|
22929
22956
|
const selfSubmitFunction = null;
|
|
22930
22957
|
const stepMetadata = null;
|
|
@@ -22951,7 +22978,7 @@ class Redirect extends SvelteComponent {
|
|
|
22951
22978
|
constructor(options) {
|
|
22952
22979
|
super();
|
|
22953
22980
|
|
|
22954
|
-
init(this, options, instance$
|
|
22981
|
+
init(this, options, instance$s, create_fragment$r, safe_not_equal, {
|
|
22955
22982
|
callbackMetadata: 1,
|
|
22956
22983
|
selfSubmitFunction: 2,
|
|
22957
22984
|
stepMetadata: 3,
|
|
@@ -22979,7 +23006,7 @@ class Redirect extends SvelteComponent {
|
|
|
22979
23006
|
|
|
22980
23007
|
/* src/lib/components/icons/apple-icon.svelte generated by Svelte v3.59.2 */
|
|
22981
23008
|
|
|
22982
|
-
function create_fragment$
|
|
23009
|
+
function create_fragment$q(ctx) {
|
|
22983
23010
|
let svg;
|
|
22984
23011
|
let path0;
|
|
22985
23012
|
let path1;
|
|
@@ -23024,7 +23051,7 @@ function create_fragment$p(ctx) {
|
|
|
23024
23051
|
};
|
|
23025
23052
|
}
|
|
23026
23053
|
|
|
23027
|
-
function instance$
|
|
23054
|
+
function instance$r($$self, $$props, $$invalidate) {
|
|
23028
23055
|
let { classes = '' } = $$props;
|
|
23029
23056
|
let { size = '24px' } = $$props;
|
|
23030
23057
|
|
|
@@ -23039,13 +23066,13 @@ function instance$q($$self, $$props, $$invalidate) {
|
|
|
23039
23066
|
class Apple_icon extends SvelteComponent {
|
|
23040
23067
|
constructor(options) {
|
|
23041
23068
|
super();
|
|
23042
|
-
init(this, options, instance$
|
|
23069
|
+
init(this, options, instance$r, create_fragment$q, safe_not_equal, { classes: 0, size: 1 });
|
|
23043
23070
|
}
|
|
23044
23071
|
}
|
|
23045
23072
|
|
|
23046
23073
|
/* src/lib/components/icons/facebook-icon.svelte generated by Svelte v3.59.2 */
|
|
23047
23074
|
|
|
23048
|
-
function create_fragment$
|
|
23075
|
+
function create_fragment$p(ctx) {
|
|
23049
23076
|
let svg;
|
|
23050
23077
|
let path;
|
|
23051
23078
|
|
|
@@ -23086,7 +23113,7 @@ function create_fragment$o(ctx) {
|
|
|
23086
23113
|
};
|
|
23087
23114
|
}
|
|
23088
23115
|
|
|
23089
|
-
function instance$
|
|
23116
|
+
function instance$q($$self, $$props, $$invalidate) {
|
|
23090
23117
|
let { classes = '' } = $$props;
|
|
23091
23118
|
let { size = '24px' } = $$props;
|
|
23092
23119
|
|
|
@@ -23101,13 +23128,13 @@ function instance$p($$self, $$props, $$invalidate) {
|
|
|
23101
23128
|
class Facebook_icon extends SvelteComponent {
|
|
23102
23129
|
constructor(options) {
|
|
23103
23130
|
super();
|
|
23104
|
-
init(this, options, instance$
|
|
23131
|
+
init(this, options, instance$q, create_fragment$p, safe_not_equal, { classes: 0, size: 1 });
|
|
23105
23132
|
}
|
|
23106
23133
|
}
|
|
23107
23134
|
|
|
23108
23135
|
/* src/lib/components/icons/google-icon.svelte generated by Svelte v3.59.2 */
|
|
23109
23136
|
|
|
23110
|
-
function create_fragment$
|
|
23137
|
+
function create_fragment$o(ctx) {
|
|
23111
23138
|
let svg;
|
|
23112
23139
|
let g;
|
|
23113
23140
|
let path0;
|
|
@@ -23172,7 +23199,7 @@ function create_fragment$n(ctx) {
|
|
|
23172
23199
|
};
|
|
23173
23200
|
}
|
|
23174
23201
|
|
|
23175
|
-
function instance$
|
|
23202
|
+
function instance$p($$self, $$props, $$invalidate) {
|
|
23176
23203
|
let { classes = '' } = $$props;
|
|
23177
23204
|
let { size = '24px' } = $$props;
|
|
23178
23205
|
|
|
@@ -23187,7 +23214,7 @@ function instance$o($$self, $$props, $$invalidate) {
|
|
|
23187
23214
|
class Google_icon extends SvelteComponent {
|
|
23188
23215
|
constructor(options) {
|
|
23189
23216
|
super();
|
|
23190
|
-
init(this, options, instance$
|
|
23217
|
+
init(this, options, instance$p, create_fragment$o, safe_not_equal, { classes: 0, size: 1 });
|
|
23191
23218
|
}
|
|
23192
23219
|
}
|
|
23193
23220
|
|
|
@@ -23678,7 +23705,7 @@ function create_each_block$6(ctx) {
|
|
|
23678
23705
|
}
|
|
23679
23706
|
|
|
23680
23707
|
// (81:0) {#if stepMetadata && stepMetadata.derived.numOfCallbacks > 1}
|
|
23681
|
-
function create_if_block$
|
|
23708
|
+
function create_if_block$e(ctx) {
|
|
23682
23709
|
let grid;
|
|
23683
23710
|
let current;
|
|
23684
23711
|
|
|
@@ -23732,7 +23759,7 @@ function create_default_slot$e(ctx) {
|
|
|
23732
23759
|
};
|
|
23733
23760
|
}
|
|
23734
23761
|
|
|
23735
|
-
function create_fragment$
|
|
23762
|
+
function create_fragment$n(ctx) {
|
|
23736
23763
|
let t;
|
|
23737
23764
|
let if_block_anchor;
|
|
23738
23765
|
let current;
|
|
@@ -23747,7 +23774,7 @@ function create_fragment$m(ctx) {
|
|
|
23747
23774
|
each_blocks[i] = null;
|
|
23748
23775
|
});
|
|
23749
23776
|
|
|
23750
|
-
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$
|
|
23777
|
+
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$e(ctx);
|
|
23751
23778
|
|
|
23752
23779
|
return {
|
|
23753
23780
|
c() {
|
|
@@ -23805,7 +23832,7 @@ function create_fragment$m(ctx) {
|
|
|
23805
23832
|
transition_in(if_block, 1);
|
|
23806
23833
|
}
|
|
23807
23834
|
} else {
|
|
23808
|
-
if_block = create_if_block$
|
|
23835
|
+
if_block = create_if_block$e(ctx);
|
|
23809
23836
|
if_block.c();
|
|
23810
23837
|
transition_in(if_block, 1);
|
|
23811
23838
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -23849,7 +23876,7 @@ function create_fragment$m(ctx) {
|
|
|
23849
23876
|
};
|
|
23850
23877
|
}
|
|
23851
23878
|
|
|
23852
|
-
function instance$
|
|
23879
|
+
function instance$o($$self, $$props, $$invalidate) {
|
|
23853
23880
|
const style = {};
|
|
23854
23881
|
let { callback } = $$props;
|
|
23855
23882
|
let { callbackMetadata } = $$props;
|
|
@@ -23919,7 +23946,7 @@ class Select_idp extends SvelteComponent {
|
|
|
23919
23946
|
constructor(options) {
|
|
23920
23947
|
super();
|
|
23921
23948
|
|
|
23922
|
-
init(this, options, instance$
|
|
23949
|
+
init(this, options, instance$o, create_fragment$n, safe_not_equal, {
|
|
23923
23950
|
style: 4,
|
|
23924
23951
|
callback: 5,
|
|
23925
23952
|
callbackMetadata: 3,
|
|
@@ -24046,7 +24073,7 @@ function create_if_block_1$7(ctx) {
|
|
|
24046
24073
|
}
|
|
24047
24074
|
|
|
24048
24075
|
// (24:0) {#if simplifiedFailures.length}
|
|
24049
|
-
function create_if_block$
|
|
24076
|
+
function create_if_block$d(ctx) {
|
|
24050
24077
|
let div;
|
|
24051
24078
|
let p;
|
|
24052
24079
|
let t0;
|
|
@@ -24193,12 +24220,12 @@ function create_each_block$5(ctx) {
|
|
|
24193
24220
|
};
|
|
24194
24221
|
}
|
|
24195
24222
|
|
|
24196
|
-
function create_fragment$
|
|
24223
|
+
function create_fragment$m(ctx) {
|
|
24197
24224
|
let current_block_type_index;
|
|
24198
24225
|
let if_block;
|
|
24199
24226
|
let if_block_anchor;
|
|
24200
24227
|
let current;
|
|
24201
|
-
const if_block_creators = [create_if_block$
|
|
24228
|
+
const if_block_creators = [create_if_block$d, create_if_block_1$7];
|
|
24202
24229
|
const if_blocks = [];
|
|
24203
24230
|
|
|
24204
24231
|
function select_block_type(ctx, dirty) {
|
|
@@ -24279,7 +24306,7 @@ function create_fragment$l(ctx) {
|
|
|
24279
24306
|
};
|
|
24280
24307
|
}
|
|
24281
24308
|
|
|
24282
|
-
function instance$
|
|
24309
|
+
function instance$n($$self, $$props, $$invalidate) {
|
|
24283
24310
|
let { callback } = $$props;
|
|
24284
24311
|
let { key = undefined } = $$props;
|
|
24285
24312
|
let { label } = $$props;
|
|
@@ -24337,7 +24364,7 @@ class Policies extends SvelteComponent {
|
|
|
24337
24364
|
constructor(options) {
|
|
24338
24365
|
super();
|
|
24339
24366
|
|
|
24340
|
-
init(this, options, instance$
|
|
24367
|
+
init(this, options, instance$n, create_fragment$m, safe_not_equal, {
|
|
24341
24368
|
callback: 5,
|
|
24342
24369
|
key: 0,
|
|
24343
24370
|
label: 6,
|
|
@@ -24461,7 +24488,7 @@ function create_key_block$2(ctx) {
|
|
|
24461
24488
|
};
|
|
24462
24489
|
}
|
|
24463
24490
|
|
|
24464
|
-
function create_fragment$
|
|
24491
|
+
function create_fragment$l(ctx) {
|
|
24465
24492
|
let previous_key = /*callback*/ ctx[0];
|
|
24466
24493
|
let key_block_anchor;
|
|
24467
24494
|
let current;
|
|
@@ -24506,7 +24533,7 @@ function create_fragment$k(ctx) {
|
|
|
24506
24533
|
};
|
|
24507
24534
|
}
|
|
24508
24535
|
|
|
24509
|
-
function instance$
|
|
24536
|
+
function instance$m($$self, $$props, $$invalidate) {
|
|
24510
24537
|
const selfSubmitFunction = null;
|
|
24511
24538
|
const stepMetadata = null;
|
|
24512
24539
|
let { callback } = $$props;
|
|
@@ -24582,7 +24609,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24582
24609
|
constructor(options) {
|
|
24583
24610
|
super();
|
|
24584
24611
|
|
|
24585
|
-
init(this, options, instance$
|
|
24612
|
+
init(this, options, instance$m, create_fragment$l, safe_not_equal, {
|
|
24586
24613
|
selfSubmitFunction: 11,
|
|
24587
24614
|
stepMetadata: 12,
|
|
24588
24615
|
callback: 0,
|
|
@@ -24602,7 +24629,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24602
24629
|
|
|
24603
24630
|
/* src/lib/components/primitives/link/link.svelte generated by Svelte v3.59.2 */
|
|
24604
24631
|
|
|
24605
|
-
function create_fragment$
|
|
24632
|
+
function create_fragment$k(ctx) {
|
|
24606
24633
|
let a;
|
|
24607
24634
|
let a_class_value;
|
|
24608
24635
|
let current;
|
|
@@ -24670,7 +24697,7 @@ function create_fragment$j(ctx) {
|
|
|
24670
24697
|
};
|
|
24671
24698
|
}
|
|
24672
24699
|
|
|
24673
|
-
function instance$
|
|
24700
|
+
function instance$l($$self, $$props, $$invalidate) {
|
|
24674
24701
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
24675
24702
|
let { classes = '' } = $$props;
|
|
24676
24703
|
let { href } = $$props;
|
|
@@ -24689,7 +24716,7 @@ function instance$k($$self, $$props, $$invalidate) {
|
|
|
24689
24716
|
class Link extends SvelteComponent {
|
|
24690
24717
|
constructor(options) {
|
|
24691
24718
|
super();
|
|
24692
|
-
init(this, options, instance$
|
|
24719
|
+
init(this, options, instance$l, create_fragment$k, safe_not_equal, { classes: 0, href: 1, target: 2 });
|
|
24693
24720
|
}
|
|
24694
24721
|
}
|
|
24695
24722
|
|
|
@@ -24717,7 +24744,7 @@ function create_else_block$5(ctx) {
|
|
|
24717
24744
|
}
|
|
24718
24745
|
|
|
24719
24746
|
// (27:0) {#if $linksStore?.termsAndConditions}
|
|
24720
|
-
function create_if_block$
|
|
24747
|
+
function create_if_block$c(ctx) {
|
|
24721
24748
|
let link;
|
|
24722
24749
|
let t;
|
|
24723
24750
|
let checkbox;
|
|
@@ -24843,12 +24870,12 @@ function create_default_slot$c(ctx) {
|
|
|
24843
24870
|
};
|
|
24844
24871
|
}
|
|
24845
24872
|
|
|
24846
|
-
function create_fragment$
|
|
24873
|
+
function create_fragment$j(ctx) {
|
|
24847
24874
|
let current_block_type_index;
|
|
24848
24875
|
let if_block;
|
|
24849
24876
|
let if_block_anchor;
|
|
24850
24877
|
let current;
|
|
24851
|
-
const if_block_creators = [create_if_block$
|
|
24878
|
+
const if_block_creators = [create_if_block$c, create_else_block$5];
|
|
24852
24879
|
const if_blocks = [];
|
|
24853
24880
|
|
|
24854
24881
|
function select_block_type(ctx, dirty) {
|
|
@@ -24912,7 +24939,7 @@ function create_fragment$i(ctx) {
|
|
|
24912
24939
|
};
|
|
24913
24940
|
}
|
|
24914
24941
|
|
|
24915
|
-
function instance$
|
|
24942
|
+
function instance$k($$self, $$props, $$invalidate) {
|
|
24916
24943
|
let $linksStore;
|
|
24917
24944
|
component_subscribe($$self, linksStore, $$value => $$invalidate(2, $linksStore = $$value));
|
|
24918
24945
|
const selfSubmitFunction = null;
|
|
@@ -24966,7 +24993,7 @@ class Terms_conditions extends SvelteComponent {
|
|
|
24966
24993
|
constructor(options) {
|
|
24967
24994
|
super();
|
|
24968
24995
|
|
|
24969
|
-
init(this, options, instance$
|
|
24996
|
+
init(this, options, instance$k, create_fragment$j, safe_not_equal, {
|
|
24970
24997
|
selfSubmitFunction: 5,
|
|
24971
24998
|
stepMetadata: 6,
|
|
24972
24999
|
style: 7,
|
|
@@ -25034,7 +25061,7 @@ function create_else_block$4(ctx) {
|
|
|
25034
25061
|
}
|
|
25035
25062
|
|
|
25036
25063
|
// (32:0) {#if callbackMessageType === 'info'}
|
|
25037
|
-
function create_if_block$
|
|
25064
|
+
function create_if_block$b(ctx) {
|
|
25038
25065
|
let text_1;
|
|
25039
25066
|
let current;
|
|
25040
25067
|
|
|
@@ -25123,12 +25150,12 @@ function create_default_slot$b(ctx) {
|
|
|
25123
25150
|
};
|
|
25124
25151
|
}
|
|
25125
25152
|
|
|
25126
|
-
function create_fragment$
|
|
25153
|
+
function create_fragment$i(ctx) {
|
|
25127
25154
|
let current_block_type_index;
|
|
25128
25155
|
let if_block;
|
|
25129
25156
|
let if_block_anchor;
|
|
25130
25157
|
let current;
|
|
25131
|
-
const if_block_creators = [create_if_block$
|
|
25158
|
+
const if_block_creators = [create_if_block$b, create_else_block$4];
|
|
25132
25159
|
const if_blocks = [];
|
|
25133
25160
|
|
|
25134
25161
|
function select_block_type(ctx, dirty) {
|
|
@@ -25205,7 +25232,7 @@ function getCallbackMessage(messageType) {
|
|
|
25205
25232
|
}
|
|
25206
25233
|
}
|
|
25207
25234
|
|
|
25208
|
-
function instance$
|
|
25235
|
+
function instance$j($$self, $$props, $$invalidate) {
|
|
25209
25236
|
const callbackMetadata = null;
|
|
25210
25237
|
const selfSubmitFunction = null;
|
|
25211
25238
|
const stepMetadata = null;
|
|
@@ -25245,7 +25272,7 @@ class Text_output extends SvelteComponent {
|
|
|
25245
25272
|
constructor(options) {
|
|
25246
25273
|
super();
|
|
25247
25274
|
|
|
25248
|
-
init(this, options, instance$
|
|
25275
|
+
init(this, options, instance$j, create_fragment$i, safe_not_equal, {
|
|
25249
25276
|
callbackMetadata: 2,
|
|
25250
25277
|
selfSubmitFunction: 3,
|
|
25251
25278
|
stepMetadata: 4,
|
|
@@ -25273,7 +25300,7 @@ class Text_output extends SvelteComponent {
|
|
|
25273
25300
|
|
|
25274
25301
|
/* src/lib/journey/callbacks/unknown/unknown.svelte generated by Svelte v3.59.2 */
|
|
25275
25302
|
|
|
25276
|
-
function create_fragment$
|
|
25303
|
+
function create_fragment$h(ctx) {
|
|
25277
25304
|
let p;
|
|
25278
25305
|
|
|
25279
25306
|
return {
|
|
@@ -25294,7 +25321,7 @@ function create_fragment$g(ctx) {
|
|
|
25294
25321
|
};
|
|
25295
25322
|
}
|
|
25296
25323
|
|
|
25297
|
-
function instance$
|
|
25324
|
+
function instance$i($$self, $$props, $$invalidate) {
|
|
25298
25325
|
const callbackMetadata = null;
|
|
25299
25326
|
const selfSubmitFunction = null;
|
|
25300
25327
|
const stepMetadata = null;
|
|
@@ -25313,7 +25340,7 @@ class Unknown extends SvelteComponent {
|
|
|
25313
25340
|
constructor(options) {
|
|
25314
25341
|
super();
|
|
25315
25342
|
|
|
25316
|
-
init(this, options, instance$
|
|
25343
|
+
init(this, options, instance$i, create_fragment$h, safe_not_equal, {
|
|
25317
25344
|
callbackMetadata: 1,
|
|
25318
25345
|
selfSubmitFunction: 2,
|
|
25319
25346
|
stepMetadata: 3,
|
|
@@ -25440,7 +25467,7 @@ function create_key_block$1(ctx) {
|
|
|
25440
25467
|
};
|
|
25441
25468
|
}
|
|
25442
25469
|
|
|
25443
|
-
function create_fragment$
|
|
25470
|
+
function create_fragment$g(ctx) {
|
|
25444
25471
|
let previous_key = /*callback*/ ctx[0];
|
|
25445
25472
|
let key_block_anchor;
|
|
25446
25473
|
let current;
|
|
@@ -25485,7 +25512,7 @@ function create_fragment$f(ctx) {
|
|
|
25485
25512
|
};
|
|
25486
25513
|
}
|
|
25487
25514
|
|
|
25488
|
-
function instance$
|
|
25515
|
+
function instance$h($$self, $$props, $$invalidate) {
|
|
25489
25516
|
const selfSubmitFunction = null;
|
|
25490
25517
|
const stepMetadata = null;
|
|
25491
25518
|
let { callback } = $$props;
|
|
@@ -25537,7 +25564,7 @@ class Validated_create_password extends SvelteComponent {
|
|
|
25537
25564
|
constructor(options) {
|
|
25538
25565
|
super();
|
|
25539
25566
|
|
|
25540
|
-
init(this, options, instance$
|
|
25567
|
+
init(this, options, instance$h, create_fragment$g, safe_not_equal, {
|
|
25541
25568
|
selfSubmitFunction: 7,
|
|
25542
25569
|
stepMetadata: 8,
|
|
25543
25570
|
callback: 0,
|
|
@@ -25671,7 +25698,7 @@ function create_key_block(ctx) {
|
|
|
25671
25698
|
};
|
|
25672
25699
|
}
|
|
25673
25700
|
|
|
25674
|
-
function create_fragment$
|
|
25701
|
+
function create_fragment$f(ctx) {
|
|
25675
25702
|
let previous_key = /*callback*/ ctx[0];
|
|
25676
25703
|
let key_block_anchor;
|
|
25677
25704
|
let current;
|
|
@@ -25716,7 +25743,7 @@ function create_fragment$e(ctx) {
|
|
|
25716
25743
|
};
|
|
25717
25744
|
}
|
|
25718
25745
|
|
|
25719
|
-
function instance$
|
|
25746
|
+
function instance$g($$self, $$props, $$invalidate) {
|
|
25720
25747
|
const selfSubmitFunction = null;
|
|
25721
25748
|
const stepMetadata = null;
|
|
25722
25749
|
let { callback } = $$props;
|
|
@@ -25781,7 +25808,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25781
25808
|
constructor(options) {
|
|
25782
25809
|
super();
|
|
25783
25810
|
|
|
25784
|
-
init(this, options, instance$
|
|
25811
|
+
init(this, options, instance$g, create_fragment$f, safe_not_equal, {
|
|
25785
25812
|
selfSubmitFunction: 10,
|
|
25786
25813
|
stepMetadata: 11,
|
|
25787
25814
|
callback: 0,
|
|
@@ -25801,7 +25828,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25801
25828
|
|
|
25802
25829
|
/* src/lib/journey/callbacks/device-profile/device-profile.svelte generated by Svelte v3.59.2 */
|
|
25803
25830
|
|
|
25804
|
-
function create_if_block$
|
|
25831
|
+
function create_if_block$a(ctx) {
|
|
25805
25832
|
let div;
|
|
25806
25833
|
let spinner;
|
|
25807
25834
|
let t;
|
|
@@ -25883,10 +25910,10 @@ function create_default_slot$8(ctx) {
|
|
|
25883
25910
|
};
|
|
25884
25911
|
}
|
|
25885
25912
|
|
|
25886
|
-
function create_fragment$
|
|
25913
|
+
function create_fragment$e(ctx) {
|
|
25887
25914
|
let if_block_anchor;
|
|
25888
25915
|
let current;
|
|
25889
|
-
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$
|
|
25916
|
+
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$a(ctx);
|
|
25890
25917
|
|
|
25891
25918
|
return {
|
|
25892
25919
|
c() {
|
|
@@ -25907,7 +25934,7 @@ function create_fragment$d(ctx) {
|
|
|
25907
25934
|
transition_in(if_block, 1);
|
|
25908
25935
|
}
|
|
25909
25936
|
} else {
|
|
25910
|
-
if_block = create_if_block$
|
|
25937
|
+
if_block = create_if_block$a(ctx);
|
|
25911
25938
|
if_block.c();
|
|
25912
25939
|
transition_in(if_block, 1);
|
|
25913
25940
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -25938,7 +25965,7 @@ function create_fragment$d(ctx) {
|
|
|
25938
25965
|
};
|
|
25939
25966
|
}
|
|
25940
25967
|
|
|
25941
|
-
function instance$
|
|
25968
|
+
function instance$f($$self, $$props, $$invalidate) {
|
|
25942
25969
|
let { callback } = $$props;
|
|
25943
25970
|
let { callbackMetadata = null } = $$props;
|
|
25944
25971
|
let { stepMetadata = null } = $$props;
|
|
@@ -25975,7 +26002,7 @@ class Device_profile extends SvelteComponent {
|
|
|
25975
26002
|
constructor(options) {
|
|
25976
26003
|
super();
|
|
25977
26004
|
|
|
25978
|
-
init(this, options, instance$
|
|
26005
|
+
init(this, options, instance$f, create_fragment$e, safe_not_equal, {
|
|
25979
26006
|
callback: 3,
|
|
25980
26007
|
callbackMetadata: 2,
|
|
25981
26008
|
stepMetadata: 0,
|
|
@@ -25984,6 +26011,166 @@ class Device_profile extends SvelteComponent {
|
|
|
25984
26011
|
}
|
|
25985
26012
|
}
|
|
25986
26013
|
|
|
26014
|
+
/* src/lib/journey/callbacks/recaptcha/recaptcha.svelte generated by Svelte v3.59.2 */
|
|
26015
|
+
|
|
26016
|
+
function create_if_block$9(ctx) {
|
|
26017
|
+
let script;
|
|
26018
|
+
let script_src_value;
|
|
26019
|
+
|
|
26020
|
+
return {
|
|
26021
|
+
c() {
|
|
26022
|
+
script = element("script");
|
|
26023
|
+
if (!src_url_equal(script.src, script_src_value = /*recaptchaApi*/ ctx[1])) attr(script, "src", script_src_value);
|
|
26024
|
+
script.async = true;
|
|
26025
|
+
script.defer = true;
|
|
26026
|
+
},
|
|
26027
|
+
m(target, anchor) {
|
|
26028
|
+
insert(target, script, anchor);
|
|
26029
|
+
},
|
|
26030
|
+
p: noop,
|
|
26031
|
+
d(detaching) {
|
|
26032
|
+
if (detaching) detach(script);
|
|
26033
|
+
}
|
|
26034
|
+
};
|
|
26035
|
+
}
|
|
26036
|
+
|
|
26037
|
+
function create_fragment$d(ctx) {
|
|
26038
|
+
let t;
|
|
26039
|
+
let div;
|
|
26040
|
+
let if_block = /*recaptchaApi*/ ctx[1].length && create_if_block$9(ctx);
|
|
26041
|
+
|
|
26042
|
+
return {
|
|
26043
|
+
c() {
|
|
26044
|
+
if (if_block) if_block.c();
|
|
26045
|
+
t = space();
|
|
26046
|
+
div = element("div");
|
|
26047
|
+
attr(div, "id", "fr-recaptcha");
|
|
26048
|
+
attr(div, "class", `${/*recaptchaClass*/ ctx[2]} tw_flex-1 tw_w-full tw_input-spacing`);
|
|
26049
|
+
attr(div, "data-sitekey", /*siteKey*/ ctx[0]);
|
|
26050
|
+
attr(div, "data-expired-callback", "frHandleExpiredCallback");
|
|
26051
|
+
attr(div, "data-chalexpired-callback", "frHandleExpiredCallback");
|
|
26052
|
+
attr(div, "data-error-callback", "frHandleErrorCallback");
|
|
26053
|
+
attr(div, "data-callback", "frHandleCaptcha");
|
|
26054
|
+
},
|
|
26055
|
+
m(target, anchor) {
|
|
26056
|
+
if (if_block) if_block.m(target, anchor);
|
|
26057
|
+
insert(target, t, anchor);
|
|
26058
|
+
insert(target, div, anchor);
|
|
26059
|
+
},
|
|
26060
|
+
p(ctx, [dirty]) {
|
|
26061
|
+
if (/*recaptchaApi*/ ctx[1].length) if_block.p(ctx, dirty);
|
|
26062
|
+
},
|
|
26063
|
+
i: noop,
|
|
26064
|
+
o: noop,
|
|
26065
|
+
d(detaching) {
|
|
26066
|
+
if (if_block) if_block.d(detaching);
|
|
26067
|
+
if (detaching) detach(t);
|
|
26068
|
+
if (detaching) detach(div);
|
|
26069
|
+
}
|
|
26070
|
+
};
|
|
26071
|
+
}
|
|
26072
|
+
|
|
26073
|
+
function instance$e($$self, $$props, $$invalidate) {
|
|
26074
|
+
let { callback } = $$props;
|
|
26075
|
+
const selfSubmitFunction = null;
|
|
26076
|
+
const stepMetadata = null;
|
|
26077
|
+
const style = {};
|
|
26078
|
+
const siteKey = callback?.getSiteKey() ?? '';
|
|
26079
|
+
let recaptchaApi = `${callback?.getOutputByName('captchaApiUri', '') ?? ''}`;
|
|
26080
|
+
|
|
26081
|
+
/**
|
|
26082
|
+
* AM defaults the class name to g-captcha which is wrong
|
|
26083
|
+
* I dont think we should be manipulating the class here,
|
|
26084
|
+
* but the classname should be g-recaptcha for google
|
|
26085
|
+
*/
|
|
26086
|
+
const recaptchaClass = callback?.getOutputByName('captchaDivClass', 'h-captcha') ?? 'h-captcha';
|
|
26087
|
+
|
|
26088
|
+
onMount(() => {
|
|
26089
|
+
window.frHandleCaptchaError = function handleCaptchaError() {
|
|
26090
|
+
callback?.setResult('');
|
|
26091
|
+
|
|
26092
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26093
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26094
|
+
sitekey: siteKey,
|
|
26095
|
+
callback: 'frHandleCaptcha',
|
|
26096
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26097
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26098
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26099
|
+
});
|
|
26100
|
+
} else {
|
|
26101
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26102
|
+
sitekey: siteKey,
|
|
26103
|
+
callback: window.frHandleCaptcha,
|
|
26104
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26105
|
+
});
|
|
26106
|
+
}
|
|
26107
|
+
};
|
|
26108
|
+
|
|
26109
|
+
window.frHandleCaptcha = function handleCaptchaToken(token) {
|
|
26110
|
+
callback?.setResult(token);
|
|
26111
|
+
};
|
|
26112
|
+
|
|
26113
|
+
window.frHandleExpiredCallback = function handleExpiredCallback() {
|
|
26114
|
+
callback?.setResult('');
|
|
26115
|
+
|
|
26116
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26117
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26118
|
+
sitekey: siteKey,
|
|
26119
|
+
callback: 'frHandleCaptcha',
|
|
26120
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26121
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26122
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26123
|
+
});
|
|
26124
|
+
} else {
|
|
26125
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26126
|
+
sitekey: siteKey,
|
|
26127
|
+
callback: window.frHandleCaptcha,
|
|
26128
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26129
|
+
});
|
|
26130
|
+
}
|
|
26131
|
+
};
|
|
26132
|
+
});
|
|
26133
|
+
|
|
26134
|
+
$$self.$$set = $$props => {
|
|
26135
|
+
if ('callback' in $$props) $$invalidate(3, callback = $$props.callback);
|
|
26136
|
+
};
|
|
26137
|
+
|
|
26138
|
+
return [
|
|
26139
|
+
siteKey,
|
|
26140
|
+
recaptchaApi,
|
|
26141
|
+
recaptchaClass,
|
|
26142
|
+
callback,
|
|
26143
|
+
selfSubmitFunction,
|
|
26144
|
+
stepMetadata,
|
|
26145
|
+
style
|
|
26146
|
+
];
|
|
26147
|
+
}
|
|
26148
|
+
|
|
26149
|
+
class Recaptcha extends SvelteComponent {
|
|
26150
|
+
constructor(options) {
|
|
26151
|
+
super();
|
|
26152
|
+
|
|
26153
|
+
init(this, options, instance$e, create_fragment$d, safe_not_equal, {
|
|
26154
|
+
callback: 3,
|
|
26155
|
+
selfSubmitFunction: 4,
|
|
26156
|
+
stepMetadata: 5,
|
|
26157
|
+
style: 6
|
|
26158
|
+
});
|
|
26159
|
+
}
|
|
26160
|
+
|
|
26161
|
+
get selfSubmitFunction() {
|
|
26162
|
+
return this.$$.ctx[4];
|
|
26163
|
+
}
|
|
26164
|
+
|
|
26165
|
+
get stepMetadata() {
|
|
26166
|
+
return this.$$.ctx[5];
|
|
26167
|
+
}
|
|
26168
|
+
|
|
26169
|
+
get style() {
|
|
26170
|
+
return this.$$.ctx[6];
|
|
26171
|
+
}
|
|
26172
|
+
}
|
|
26173
|
+
|
|
25987
26174
|
/* src/lib/journey/callbacks/metadata/metadata.svelte generated by Svelte v3.59.2 */
|
|
25988
26175
|
|
|
25989
26176
|
function instance$d($$self, $$props, $$invalidate) {
|
|
@@ -26036,10 +26223,22 @@ function get_else_ctx(ctx) {
|
|
|
26036
26223
|
|
|
26037
26224
|
const constants_0 = {
|
|
26038
26225
|
.../*props*/ child_ctx[0],
|
|
26039
|
-
callback: /*_FRCallback*/ child_ctx[
|
|
26226
|
+
callback: /*_FRCallback*/ child_ctx[21]
|
|
26227
|
+
};
|
|
26228
|
+
|
|
26229
|
+
child_ctx[22] = constants_0;
|
|
26230
|
+
return child_ctx;
|
|
26231
|
+
}
|
|
26232
|
+
|
|
26233
|
+
function get_if_ctx_18(ctx) {
|
|
26234
|
+
const child_ctx = ctx.slice();
|
|
26235
|
+
|
|
26236
|
+
const constants_0 = {
|
|
26237
|
+
.../*props*/ child_ctx[0],
|
|
26238
|
+
callback: /*_RecaptchaCallback*/ child_ctx[20]
|
|
26040
26239
|
};
|
|
26041
26240
|
|
|
26042
|
-
child_ctx[
|
|
26241
|
+
child_ctx[22] = constants_0;
|
|
26043
26242
|
return child_ctx;
|
|
26044
26243
|
}
|
|
26045
26244
|
|
|
@@ -26051,7 +26250,7 @@ function get_if_ctx_17(ctx) {
|
|
|
26051
26250
|
callback: /*_MetadataCallback*/ child_ctx[18]
|
|
26052
26251
|
};
|
|
26053
26252
|
|
|
26054
|
-
child_ctx[
|
|
26253
|
+
child_ctx[22] = constants_0;
|
|
26055
26254
|
return child_ctx;
|
|
26056
26255
|
}
|
|
26057
26256
|
|
|
@@ -26063,7 +26262,7 @@ function get_if_ctx_16(ctx) {
|
|
|
26063
26262
|
callback: /*_DeviceProfileCallback*/ child_ctx[19]
|
|
26064
26263
|
};
|
|
26065
26264
|
|
|
26066
|
-
child_ctx[
|
|
26265
|
+
child_ctx[22] = constants_0;
|
|
26067
26266
|
return child_ctx;
|
|
26068
26267
|
}
|
|
26069
26268
|
|
|
@@ -26075,7 +26274,7 @@ function get_if_ctx_15(ctx) {
|
|
|
26075
26274
|
callback: /*_SuspendedTextOutputCallback*/ child_ctx[17]
|
|
26076
26275
|
};
|
|
26077
26276
|
|
|
26078
|
-
child_ctx[
|
|
26277
|
+
child_ctx[22] = constants_0;
|
|
26079
26278
|
return child_ctx;
|
|
26080
26279
|
}
|
|
26081
26280
|
|
|
@@ -26087,7 +26286,7 @@ function get_if_ctx_14(ctx) {
|
|
|
26087
26286
|
callback: /*_TextOutputCallback*/ child_ctx[16]
|
|
26088
26287
|
};
|
|
26089
26288
|
|
|
26090
|
-
child_ctx[
|
|
26289
|
+
child_ctx[22] = constants_0;
|
|
26091
26290
|
return child_ctx;
|
|
26092
26291
|
}
|
|
26093
26292
|
|
|
@@ -26099,7 +26298,7 @@ function get_if_ctx_13(ctx) {
|
|
|
26099
26298
|
callback: /*_TermsAndConditionsCallback*/ child_ctx[15]
|
|
26100
26299
|
};
|
|
26101
26300
|
|
|
26102
|
-
child_ctx[
|
|
26301
|
+
child_ctx[22] = constants_0;
|
|
26103
26302
|
return child_ctx;
|
|
26104
26303
|
}
|
|
26105
26304
|
|
|
@@ -26111,7 +26310,7 @@ function get_if_ctx_12(ctx) {
|
|
|
26111
26310
|
callback: /*_ValidatedCreateUsernameCallback*/ child_ctx[14]
|
|
26112
26311
|
};
|
|
26113
26312
|
|
|
26114
|
-
child_ctx[
|
|
26313
|
+
child_ctx[22] = constants_0;
|
|
26115
26314
|
return child_ctx;
|
|
26116
26315
|
}
|
|
26117
26316
|
|
|
@@ -26123,7 +26322,7 @@ function get_if_ctx_11(ctx) {
|
|
|
26123
26322
|
callback: /*_ValidatedCreatePasswordCallback*/ child_ctx[13]
|
|
26124
26323
|
};
|
|
26125
26324
|
|
|
26126
|
-
child_ctx[
|
|
26325
|
+
child_ctx[22] = constants_0;
|
|
26127
26326
|
return child_ctx;
|
|
26128
26327
|
}
|
|
26129
26328
|
|
|
@@ -26135,7 +26334,7 @@ function get_if_ctx_10(ctx) {
|
|
|
26135
26334
|
callback: /*_StringAttributeInputCallback*/ child_ctx[12]
|
|
26136
26335
|
};
|
|
26137
26336
|
|
|
26138
|
-
child_ctx[
|
|
26337
|
+
child_ctx[22] = constants_0;
|
|
26139
26338
|
return child_ctx;
|
|
26140
26339
|
}
|
|
26141
26340
|
|
|
@@ -26147,7 +26346,7 @@ function get_if_ctx_9(ctx) {
|
|
|
26147
26346
|
callback: /*_SelectIdPCallback*/ child_ctx[11]
|
|
26148
26347
|
};
|
|
26149
26348
|
|
|
26150
|
-
child_ctx[
|
|
26349
|
+
child_ctx[22] = constants_0;
|
|
26151
26350
|
return child_ctx;
|
|
26152
26351
|
}
|
|
26153
26352
|
|
|
@@ -26159,7 +26358,7 @@ function get_if_ctx_8(ctx) {
|
|
|
26159
26358
|
callback: /*_RedirectCallback*/ child_ctx[10]
|
|
26160
26359
|
};
|
|
26161
26360
|
|
|
26162
|
-
child_ctx[
|
|
26361
|
+
child_ctx[22] = constants_0;
|
|
26163
26362
|
return child_ctx;
|
|
26164
26363
|
}
|
|
26165
26364
|
|
|
@@ -26171,7 +26370,7 @@ function get_if_ctx_7(ctx) {
|
|
|
26171
26370
|
callback: /*_PollingWaitCallback*/ child_ctx[9]
|
|
26172
26371
|
};
|
|
26173
26372
|
|
|
26174
|
-
child_ctx[
|
|
26373
|
+
child_ctx[22] = constants_0;
|
|
26175
26374
|
return child_ctx;
|
|
26176
26375
|
}
|
|
26177
26376
|
|
|
@@ -26183,7 +26382,7 @@ function get_if_ctx_6(ctx) {
|
|
|
26183
26382
|
callback: /*_PasswordCallback*/ child_ctx[8]
|
|
26184
26383
|
};
|
|
26185
26384
|
|
|
26186
|
-
child_ctx[
|
|
26385
|
+
child_ctx[22] = constants_0;
|
|
26187
26386
|
return child_ctx;
|
|
26188
26387
|
}
|
|
26189
26388
|
|
|
@@ -26195,7 +26394,7 @@ function get_if_ctx_5(ctx) {
|
|
|
26195
26394
|
callback: /*_NameCallback*/ child_ctx[7]
|
|
26196
26395
|
};
|
|
26197
26396
|
|
|
26198
|
-
child_ctx[
|
|
26397
|
+
child_ctx[22] = constants_0;
|
|
26199
26398
|
return child_ctx;
|
|
26200
26399
|
}
|
|
26201
26400
|
|
|
@@ -26207,7 +26406,7 @@ function get_if_ctx_4(ctx) {
|
|
|
26207
26406
|
callback: /*_KbaCreateCallback*/ child_ctx[6]
|
|
26208
26407
|
};
|
|
26209
26408
|
|
|
26210
|
-
child_ctx[
|
|
26409
|
+
child_ctx[22] = constants_0;
|
|
26211
26410
|
return child_ctx;
|
|
26212
26411
|
}
|
|
26213
26412
|
|
|
@@ -26219,7 +26418,7 @@ function get_if_ctx_3(ctx) {
|
|
|
26219
26418
|
callback: /*_HiddenValueCallback*/ child_ctx[5]
|
|
26220
26419
|
};
|
|
26221
26420
|
|
|
26222
|
-
child_ctx[
|
|
26421
|
+
child_ctx[22] = constants_0;
|
|
26223
26422
|
return child_ctx;
|
|
26224
26423
|
}
|
|
26225
26424
|
|
|
@@ -26231,7 +26430,7 @@ function get_if_ctx_2(ctx) {
|
|
|
26231
26430
|
callback: /*_ConfirmationCallback*/ child_ctx[4]
|
|
26232
26431
|
};
|
|
26233
26432
|
|
|
26234
|
-
child_ctx[
|
|
26433
|
+
child_ctx[22] = constants_0;
|
|
26235
26434
|
return child_ctx;
|
|
26236
26435
|
}
|
|
26237
26436
|
|
|
@@ -26243,7 +26442,7 @@ function get_if_ctx_1(ctx) {
|
|
|
26243
26442
|
callback: /*_ChoiceCallback*/ child_ctx[3]
|
|
26244
26443
|
};
|
|
26245
26444
|
|
|
26246
|
-
child_ctx[
|
|
26445
|
+
child_ctx[22] = constants_0;
|
|
26247
26446
|
return child_ctx;
|
|
26248
26447
|
}
|
|
26249
26448
|
|
|
@@ -26255,15 +26454,15 @@ function get_if_ctx(ctx) {
|
|
|
26255
26454
|
callback: /*_BooleanAttributeInputCallback*/ child_ctx[2]
|
|
26256
26455
|
};
|
|
26257
26456
|
|
|
26258
|
-
child_ctx[
|
|
26457
|
+
child_ctx[22] = constants_0;
|
|
26259
26458
|
return child_ctx;
|
|
26260
26459
|
}
|
|
26261
26460
|
|
|
26262
|
-
// (
|
|
26461
|
+
// (231:0) {:else}
|
|
26263
26462
|
function create_else_block$3(ctx) {
|
|
26264
26463
|
let unknown;
|
|
26265
26464
|
let current;
|
|
26266
|
-
const unknown_spread_levels = [/*newProps*/ ctx[
|
|
26465
|
+
const unknown_spread_levels = [/*newProps*/ ctx[22]];
|
|
26267
26466
|
let unknown_props = {};
|
|
26268
26467
|
|
|
26269
26468
|
for (let i = 0; i < unknown_spread_levels.length; i += 1) {
|
|
@@ -26281,8 +26480,8 @@ function create_else_block$3(ctx) {
|
|
|
26281
26480
|
current = true;
|
|
26282
26481
|
},
|
|
26283
26482
|
p(ctx, dirty) {
|
|
26284
|
-
const unknown_changes = (dirty & /*props, _FRCallback*/
|
|
26285
|
-
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26483
|
+
const unknown_changes = (dirty & /*props, _FRCallback*/ 2097153)
|
|
26484
|
+
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26286
26485
|
: {};
|
|
26287
26486
|
|
|
26288
26487
|
unknown.$set(unknown_changes);
|
|
@@ -26302,11 +26501,54 @@ function create_else_block$3(ctx) {
|
|
|
26302
26501
|
};
|
|
26303
26502
|
}
|
|
26304
26503
|
|
|
26305
|
-
// (
|
|
26504
|
+
// (225:52)
|
|
26505
|
+
function create_if_block_18(ctx) {
|
|
26506
|
+
let recaptcha;
|
|
26507
|
+
let current;
|
|
26508
|
+
const recaptcha_spread_levels = [/*newProps*/ ctx[22]];
|
|
26509
|
+
let recaptcha_props = {};
|
|
26510
|
+
|
|
26511
|
+
for (let i = 0; i < recaptcha_spread_levels.length; i += 1) {
|
|
26512
|
+
recaptcha_props = assign(recaptcha_props, recaptcha_spread_levels[i]);
|
|
26513
|
+
}
|
|
26514
|
+
|
|
26515
|
+
recaptcha = new Recaptcha({ props: recaptcha_props });
|
|
26516
|
+
|
|
26517
|
+
return {
|
|
26518
|
+
c() {
|
|
26519
|
+
create_component(recaptcha.$$.fragment);
|
|
26520
|
+
},
|
|
26521
|
+
m(target, anchor) {
|
|
26522
|
+
mount_component(recaptcha, target, anchor);
|
|
26523
|
+
current = true;
|
|
26524
|
+
},
|
|
26525
|
+
p(ctx, dirty) {
|
|
26526
|
+
const recaptcha_changes = (dirty & /*props, _RecaptchaCallback*/ 1048577)
|
|
26527
|
+
? get_spread_update(recaptcha_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26528
|
+
: {};
|
|
26529
|
+
|
|
26530
|
+
recaptcha.$set(recaptcha_changes);
|
|
26531
|
+
},
|
|
26532
|
+
i(local) {
|
|
26533
|
+
if (current) return;
|
|
26534
|
+
transition_in(recaptcha.$$.fragment, local);
|
|
26535
|
+
current = true;
|
|
26536
|
+
},
|
|
26537
|
+
o(local) {
|
|
26538
|
+
transition_out(recaptcha.$$.fragment, local);
|
|
26539
|
+
current = false;
|
|
26540
|
+
},
|
|
26541
|
+
d(detaching) {
|
|
26542
|
+
destroy_component(recaptcha, detaching);
|
|
26543
|
+
}
|
|
26544
|
+
};
|
|
26545
|
+
}
|
|
26546
|
+
|
|
26547
|
+
// (219:51)
|
|
26306
26548
|
function create_if_block_17(ctx) {
|
|
26307
26549
|
let metadata;
|
|
26308
26550
|
let current;
|
|
26309
|
-
const metadata_spread_levels = [/*newProps*/ ctx[
|
|
26551
|
+
const metadata_spread_levels = [/*newProps*/ ctx[22]];
|
|
26310
26552
|
let metadata_props = {};
|
|
26311
26553
|
|
|
26312
26554
|
for (let i = 0; i < metadata_spread_levels.length; i += 1) {
|
|
@@ -26325,7 +26567,7 @@ function create_if_block_17(ctx) {
|
|
|
26325
26567
|
},
|
|
26326
26568
|
p(ctx, dirty) {
|
|
26327
26569
|
const metadata_changes = (dirty & /*props, _MetadataCallback*/ 262145)
|
|
26328
|
-
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26570
|
+
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26329
26571
|
: {};
|
|
26330
26572
|
|
|
26331
26573
|
metadata.$set(metadata_changes);
|
|
@@ -26345,11 +26587,11 @@ function create_if_block_17(ctx) {
|
|
|
26345
26587
|
};
|
|
26346
26588
|
}
|
|
26347
26589
|
|
|
26348
|
-
// (
|
|
26590
|
+
// (213:56)
|
|
26349
26591
|
function create_if_block_16(ctx) {
|
|
26350
26592
|
let deviceprofile;
|
|
26351
26593
|
let current;
|
|
26352
|
-
const deviceprofile_spread_levels = [/*newProps*/ ctx[
|
|
26594
|
+
const deviceprofile_spread_levels = [/*newProps*/ ctx[22]];
|
|
26353
26595
|
let deviceprofile_props = {};
|
|
26354
26596
|
|
|
26355
26597
|
for (let i = 0; i < deviceprofile_spread_levels.length; i += 1) {
|
|
@@ -26368,7 +26610,7 @@ function create_if_block_16(ctx) {
|
|
|
26368
26610
|
},
|
|
26369
26611
|
p(ctx, dirty) {
|
|
26370
26612
|
const deviceprofile_changes = (dirty & /*props, _DeviceProfileCallback*/ 524289)
|
|
26371
|
-
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26613
|
+
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26372
26614
|
: {};
|
|
26373
26615
|
|
|
26374
26616
|
deviceprofile.$set(deviceprofile_changes);
|
|
@@ -26388,11 +26630,11 @@ function create_if_block_16(ctx) {
|
|
|
26388
26630
|
};
|
|
26389
26631
|
}
|
|
26390
26632
|
|
|
26391
|
-
// (
|
|
26633
|
+
// (207:62)
|
|
26392
26634
|
function create_if_block_15(ctx) {
|
|
26393
26635
|
let textoutput;
|
|
26394
26636
|
let current;
|
|
26395
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26637
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26396
26638
|
let textoutput_props = {};
|
|
26397
26639
|
|
|
26398
26640
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26411,7 +26653,7 @@ function create_if_block_15(ctx) {
|
|
|
26411
26653
|
},
|
|
26412
26654
|
p(ctx, dirty) {
|
|
26413
26655
|
const textoutput_changes = (dirty & /*props, _SuspendedTextOutputCallback*/ 131073)
|
|
26414
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26656
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26415
26657
|
: {};
|
|
26416
26658
|
|
|
26417
26659
|
textoutput.$set(textoutput_changes);
|
|
@@ -26431,11 +26673,11 @@ function create_if_block_15(ctx) {
|
|
|
26431
26673
|
};
|
|
26432
26674
|
}
|
|
26433
26675
|
|
|
26434
|
-
// (
|
|
26676
|
+
// (201:53)
|
|
26435
26677
|
function create_if_block_14(ctx) {
|
|
26436
26678
|
let textoutput;
|
|
26437
26679
|
let current;
|
|
26438
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26680
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26439
26681
|
let textoutput_props = {};
|
|
26440
26682
|
|
|
26441
26683
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26454,7 +26696,7 @@ function create_if_block_14(ctx) {
|
|
|
26454
26696
|
},
|
|
26455
26697
|
p(ctx, dirty) {
|
|
26456
26698
|
const textoutput_changes = (dirty & /*props, _TextOutputCallback*/ 65537)
|
|
26457
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26699
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26458
26700
|
: {};
|
|
26459
26701
|
|
|
26460
26702
|
textoutput.$set(textoutput_changes);
|
|
@@ -26474,11 +26716,11 @@ function create_if_block_14(ctx) {
|
|
|
26474
26716
|
};
|
|
26475
26717
|
}
|
|
26476
26718
|
|
|
26477
|
-
// (
|
|
26719
|
+
// (195:61)
|
|
26478
26720
|
function create_if_block_13(ctx) {
|
|
26479
26721
|
let termsconditions;
|
|
26480
26722
|
let current;
|
|
26481
|
-
const termsconditions_spread_levels = [/*newProps*/ ctx[
|
|
26723
|
+
const termsconditions_spread_levels = [/*newProps*/ ctx[22]];
|
|
26482
26724
|
let termsconditions_props = {};
|
|
26483
26725
|
|
|
26484
26726
|
for (let i = 0; i < termsconditions_spread_levels.length; i += 1) {
|
|
@@ -26497,7 +26739,7 @@ function create_if_block_13(ctx) {
|
|
|
26497
26739
|
},
|
|
26498
26740
|
p(ctx, dirty) {
|
|
26499
26741
|
const termsconditions_changes = (dirty & /*props, _TermsAndConditionsCallback*/ 32769)
|
|
26500
|
-
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26742
|
+
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26501
26743
|
: {};
|
|
26502
26744
|
|
|
26503
26745
|
termsconditions.$set(termsconditions_changes);
|
|
@@ -26517,11 +26759,11 @@ function create_if_block_13(ctx) {
|
|
|
26517
26759
|
};
|
|
26518
26760
|
}
|
|
26519
26761
|
|
|
26520
|
-
// (
|
|
26762
|
+
// (189:66)
|
|
26521
26763
|
function create_if_block_12(ctx) {
|
|
26522
26764
|
let validatedcreateusername;
|
|
26523
26765
|
let current;
|
|
26524
|
-
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[
|
|
26766
|
+
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[22]];
|
|
26525
26767
|
let validatedcreateusername_props = {};
|
|
26526
26768
|
|
|
26527
26769
|
for (let i = 0; i < validatedcreateusername_spread_levels.length; i += 1) {
|
|
@@ -26540,7 +26782,7 @@ function create_if_block_12(ctx) {
|
|
|
26540
26782
|
},
|
|
26541
26783
|
p(ctx, dirty) {
|
|
26542
26784
|
const validatedcreateusername_changes = (dirty & /*props, _ValidatedCreateUsernameCallback*/ 16385)
|
|
26543
|
-
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26785
|
+
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26544
26786
|
: {};
|
|
26545
26787
|
|
|
26546
26788
|
validatedcreateusername.$set(validatedcreateusername_changes);
|
|
@@ -26560,11 +26802,11 @@ function create_if_block_12(ctx) {
|
|
|
26560
26802
|
};
|
|
26561
26803
|
}
|
|
26562
26804
|
|
|
26563
|
-
// (
|
|
26805
|
+
// (183:66)
|
|
26564
26806
|
function create_if_block_11(ctx) {
|
|
26565
26807
|
let validatedcreatepassword;
|
|
26566
26808
|
let current;
|
|
26567
|
-
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[
|
|
26809
|
+
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[22]];
|
|
26568
26810
|
let validatedcreatepassword_props = {};
|
|
26569
26811
|
|
|
26570
26812
|
for (let i = 0; i < validatedcreatepassword_spread_levels.length; i += 1) {
|
|
@@ -26583,7 +26825,7 @@ function create_if_block_11(ctx) {
|
|
|
26583
26825
|
},
|
|
26584
26826
|
p(ctx, dirty) {
|
|
26585
26827
|
const validatedcreatepassword_changes = (dirty & /*props, _ValidatedCreatePasswordCallback*/ 8193)
|
|
26586
|
-
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26828
|
+
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26587
26829
|
: {};
|
|
26588
26830
|
|
|
26589
26831
|
validatedcreatepassword.$set(validatedcreatepassword_changes);
|
|
@@ -26603,11 +26845,11 @@ function create_if_block_11(ctx) {
|
|
|
26603
26845
|
};
|
|
26604
26846
|
}
|
|
26605
26847
|
|
|
26606
|
-
// (
|
|
26848
|
+
// (177:63)
|
|
26607
26849
|
function create_if_block_10(ctx) {
|
|
26608
26850
|
let stringattributeinput;
|
|
26609
26851
|
let current;
|
|
26610
|
-
const stringattributeinput_spread_levels = [/*newProps*/ ctx[
|
|
26852
|
+
const stringattributeinput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26611
26853
|
let stringattributeinput_props = {};
|
|
26612
26854
|
|
|
26613
26855
|
for (let i = 0; i < stringattributeinput_spread_levels.length; i += 1) {
|
|
@@ -26626,7 +26868,7 @@ function create_if_block_10(ctx) {
|
|
|
26626
26868
|
},
|
|
26627
26869
|
p(ctx, dirty) {
|
|
26628
26870
|
const stringattributeinput_changes = (dirty & /*props, _StringAttributeInputCallback*/ 4097)
|
|
26629
|
-
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26871
|
+
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26630
26872
|
: {};
|
|
26631
26873
|
|
|
26632
26874
|
stringattributeinput.$set(stringattributeinput_changes);
|
|
@@ -26646,11 +26888,11 @@ function create_if_block_10(ctx) {
|
|
|
26646
26888
|
};
|
|
26647
26889
|
}
|
|
26648
26890
|
|
|
26649
|
-
// (
|
|
26891
|
+
// (171:52)
|
|
26650
26892
|
function create_if_block_9(ctx) {
|
|
26651
26893
|
let selectidp;
|
|
26652
26894
|
let current;
|
|
26653
|
-
const selectidp_spread_levels = [/*newProps*/ ctx[
|
|
26895
|
+
const selectidp_spread_levels = [/*newProps*/ ctx[22]];
|
|
26654
26896
|
let selectidp_props = {};
|
|
26655
26897
|
|
|
26656
26898
|
for (let i = 0; i < selectidp_spread_levels.length; i += 1) {
|
|
@@ -26669,7 +26911,7 @@ function create_if_block_9(ctx) {
|
|
|
26669
26911
|
},
|
|
26670
26912
|
p(ctx, dirty) {
|
|
26671
26913
|
const selectidp_changes = (dirty & /*props, _SelectIdPCallback*/ 2049)
|
|
26672
|
-
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26914
|
+
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26673
26915
|
: {};
|
|
26674
26916
|
|
|
26675
26917
|
selectidp.$set(selectidp_changes);
|
|
@@ -26689,11 +26931,11 @@ function create_if_block_9(ctx) {
|
|
|
26689
26931
|
};
|
|
26690
26932
|
}
|
|
26691
26933
|
|
|
26692
|
-
// (
|
|
26934
|
+
// (165:51)
|
|
26693
26935
|
function create_if_block_8(ctx) {
|
|
26694
26936
|
let redirect;
|
|
26695
26937
|
let current;
|
|
26696
|
-
const redirect_spread_levels = [/*newProps*/ ctx[
|
|
26938
|
+
const redirect_spread_levels = [/*newProps*/ ctx[22]];
|
|
26697
26939
|
let redirect_props = {};
|
|
26698
26940
|
|
|
26699
26941
|
for (let i = 0; i < redirect_spread_levels.length; i += 1) {
|
|
@@ -26712,7 +26954,7 @@ function create_if_block_8(ctx) {
|
|
|
26712
26954
|
},
|
|
26713
26955
|
p(ctx, dirty) {
|
|
26714
26956
|
const redirect_changes = (dirty & /*props, _RedirectCallback*/ 1025)
|
|
26715
|
-
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26957
|
+
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26716
26958
|
: {};
|
|
26717
26959
|
|
|
26718
26960
|
redirect.$set(redirect_changes);
|
|
@@ -26732,11 +26974,11 @@ function create_if_block_8(ctx) {
|
|
|
26732
26974
|
};
|
|
26733
26975
|
}
|
|
26734
26976
|
|
|
26735
|
-
// (
|
|
26977
|
+
// (159:54)
|
|
26736
26978
|
function create_if_block_7(ctx) {
|
|
26737
26979
|
let pollingwait;
|
|
26738
26980
|
let current;
|
|
26739
|
-
const pollingwait_spread_levels = [/*newProps*/ ctx[
|
|
26981
|
+
const pollingwait_spread_levels = [/*newProps*/ ctx[22]];
|
|
26740
26982
|
let pollingwait_props = {};
|
|
26741
26983
|
|
|
26742
26984
|
for (let i = 0; i < pollingwait_spread_levels.length; i += 1) {
|
|
@@ -26755,7 +26997,7 @@ function create_if_block_7(ctx) {
|
|
|
26755
26997
|
},
|
|
26756
26998
|
p(ctx, dirty) {
|
|
26757
26999
|
const pollingwait_changes = (dirty & /*props, _PollingWaitCallback*/ 513)
|
|
26758
|
-
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27000
|
+
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26759
27001
|
: {};
|
|
26760
27002
|
|
|
26761
27003
|
pollingwait.$set(pollingwait_changes);
|
|
@@ -26775,11 +27017,11 @@ function create_if_block_7(ctx) {
|
|
|
26775
27017
|
};
|
|
26776
27018
|
}
|
|
26777
27019
|
|
|
26778
|
-
// (
|
|
27020
|
+
// (153:51)
|
|
26779
27021
|
function create_if_block_6(ctx) {
|
|
26780
27022
|
let password;
|
|
26781
27023
|
let current;
|
|
26782
|
-
const password_spread_levels = [/*newProps*/ ctx[
|
|
27024
|
+
const password_spread_levels = [/*newProps*/ ctx[22]];
|
|
26783
27025
|
let password_props = {};
|
|
26784
27026
|
|
|
26785
27027
|
for (let i = 0; i < password_spread_levels.length; i += 1) {
|
|
@@ -26798,7 +27040,7 @@ function create_if_block_6(ctx) {
|
|
|
26798
27040
|
},
|
|
26799
27041
|
p(ctx, dirty) {
|
|
26800
27042
|
const password_changes = (dirty & /*props, _PasswordCallback*/ 257)
|
|
26801
|
-
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27043
|
+
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26802
27044
|
: {};
|
|
26803
27045
|
|
|
26804
27046
|
password.$set(password_changes);
|
|
@@ -26818,11 +27060,11 @@ function create_if_block_6(ctx) {
|
|
|
26818
27060
|
};
|
|
26819
27061
|
}
|
|
26820
27062
|
|
|
26821
|
-
// (
|
|
27063
|
+
// (147:47)
|
|
26822
27064
|
function create_if_block_5(ctx) {
|
|
26823
27065
|
let name;
|
|
26824
27066
|
let current;
|
|
26825
|
-
const name_spread_levels = [/*newProps*/ ctx[
|
|
27067
|
+
const name_spread_levels = [/*newProps*/ ctx[22]];
|
|
26826
27068
|
let name_props = {};
|
|
26827
27069
|
|
|
26828
27070
|
for (let i = 0; i < name_spread_levels.length; i += 1) {
|
|
@@ -26841,7 +27083,7 @@ function create_if_block_5(ctx) {
|
|
|
26841
27083
|
},
|
|
26842
27084
|
p(ctx, dirty) {
|
|
26843
27085
|
const name_changes = (dirty & /*props, _NameCallback*/ 129)
|
|
26844
|
-
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27086
|
+
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26845
27087
|
: {};
|
|
26846
27088
|
|
|
26847
27089
|
name.$set(name_changes);
|
|
@@ -26861,11 +27103,11 @@ function create_if_block_5(ctx) {
|
|
|
26861
27103
|
};
|
|
26862
27104
|
}
|
|
26863
27105
|
|
|
26864
|
-
// (
|
|
27106
|
+
// (141:52)
|
|
26865
27107
|
function create_if_block_4$1(ctx) {
|
|
26866
27108
|
let kbacreate;
|
|
26867
27109
|
let current;
|
|
26868
|
-
const kbacreate_spread_levels = [/*newProps*/ ctx[
|
|
27110
|
+
const kbacreate_spread_levels = [/*newProps*/ ctx[22]];
|
|
26869
27111
|
let kbacreate_props = {};
|
|
26870
27112
|
|
|
26871
27113
|
for (let i = 0; i < kbacreate_spread_levels.length; i += 1) {
|
|
@@ -26884,7 +27126,7 @@ function create_if_block_4$1(ctx) {
|
|
|
26884
27126
|
},
|
|
26885
27127
|
p(ctx, dirty) {
|
|
26886
27128
|
const kbacreate_changes = (dirty & /*props, _KbaCreateCallback*/ 65)
|
|
26887
|
-
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27129
|
+
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26888
27130
|
: {};
|
|
26889
27131
|
|
|
26890
27132
|
kbacreate.$set(kbacreate_changes);
|
|
@@ -26904,11 +27146,11 @@ function create_if_block_4$1(ctx) {
|
|
|
26904
27146
|
};
|
|
26905
27147
|
}
|
|
26906
27148
|
|
|
26907
|
-
// (
|
|
27149
|
+
// (135:54)
|
|
26908
27150
|
function create_if_block_3$4(ctx) {
|
|
26909
27151
|
let hiddenvalue;
|
|
26910
27152
|
let current;
|
|
26911
|
-
const hiddenvalue_spread_levels = [/*newProps*/ ctx[
|
|
27153
|
+
const hiddenvalue_spread_levels = [/*newProps*/ ctx[22]];
|
|
26912
27154
|
let hiddenvalue_props = {};
|
|
26913
27155
|
|
|
26914
27156
|
for (let i = 0; i < hiddenvalue_spread_levels.length; i += 1) {
|
|
@@ -26927,7 +27169,7 @@ function create_if_block_3$4(ctx) {
|
|
|
26927
27169
|
},
|
|
26928
27170
|
p(ctx, dirty) {
|
|
26929
27171
|
const hiddenvalue_changes = (dirty & /*props, _HiddenValueCallback*/ 33)
|
|
26930
|
-
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27172
|
+
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26931
27173
|
: {};
|
|
26932
27174
|
|
|
26933
27175
|
hiddenvalue.$set(hiddenvalue_changes);
|
|
@@ -26947,11 +27189,11 @@ function create_if_block_3$4(ctx) {
|
|
|
26947
27189
|
};
|
|
26948
27190
|
}
|
|
26949
27191
|
|
|
26950
|
-
// (
|
|
27192
|
+
// (129:55)
|
|
26951
27193
|
function create_if_block_2$6(ctx) {
|
|
26952
27194
|
let confirmation;
|
|
26953
27195
|
let current;
|
|
26954
|
-
const confirmation_spread_levels = [/*newProps*/ ctx[
|
|
27196
|
+
const confirmation_spread_levels = [/*newProps*/ ctx[22]];
|
|
26955
27197
|
let confirmation_props = {};
|
|
26956
27198
|
|
|
26957
27199
|
for (let i = 0; i < confirmation_spread_levels.length; i += 1) {
|
|
@@ -26970,7 +27212,7 @@ function create_if_block_2$6(ctx) {
|
|
|
26970
27212
|
},
|
|
26971
27213
|
p(ctx, dirty) {
|
|
26972
27214
|
const confirmation_changes = (dirty & /*props, _ConfirmationCallback*/ 17)
|
|
26973
|
-
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27215
|
+
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26974
27216
|
: {};
|
|
26975
27217
|
|
|
26976
27218
|
confirmation.$set(confirmation_changes);
|
|
@@ -26990,11 +27232,11 @@ function create_if_block_2$6(ctx) {
|
|
|
26990
27232
|
};
|
|
26991
27233
|
}
|
|
26992
27234
|
|
|
26993
|
-
// (
|
|
27235
|
+
// (123:49)
|
|
26994
27236
|
function create_if_block_1$6(ctx) {
|
|
26995
27237
|
let choice;
|
|
26996
27238
|
let current;
|
|
26997
|
-
const choice_spread_levels = [/*newProps*/ ctx[
|
|
27239
|
+
const choice_spread_levels = [/*newProps*/ ctx[22]];
|
|
26998
27240
|
let choice_props = {};
|
|
26999
27241
|
|
|
27000
27242
|
for (let i = 0; i < choice_spread_levels.length; i += 1) {
|
|
@@ -27013,7 +27255,7 @@ function create_if_block_1$6(ctx) {
|
|
|
27013
27255
|
},
|
|
27014
27256
|
p(ctx, dirty) {
|
|
27015
27257
|
const choice_changes = (dirty & /*props, _ChoiceCallback*/ 9)
|
|
27016
|
-
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27258
|
+
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27017
27259
|
: {};
|
|
27018
27260
|
|
|
27019
27261
|
choice.$set(choice_changes);
|
|
@@ -27033,11 +27275,11 @@ function create_if_block_1$6(ctx) {
|
|
|
27033
27275
|
};
|
|
27034
27276
|
}
|
|
27035
27277
|
|
|
27036
|
-
// (
|
|
27278
|
+
// (117:0) {#if cbType === CallbackType.BooleanAttributeInputCallback}
|
|
27037
27279
|
function create_if_block$8(ctx) {
|
|
27038
27280
|
let boolean;
|
|
27039
27281
|
let current;
|
|
27040
|
-
const boolean_spread_levels = [/*newProps*/ ctx[
|
|
27282
|
+
const boolean_spread_levels = [/*newProps*/ ctx[22]];
|
|
27041
27283
|
let boolean_props = {};
|
|
27042
27284
|
|
|
27043
27285
|
for (let i = 0; i < boolean_spread_levels.length; i += 1) {
|
|
@@ -27056,7 +27298,7 @@ function create_if_block$8(ctx) {
|
|
|
27056
27298
|
},
|
|
27057
27299
|
p(ctx, dirty) {
|
|
27058
27300
|
const boolean_changes = (dirty & /*props, _BooleanAttributeInputCallback*/ 5)
|
|
27059
|
-
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27301
|
+
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27060
27302
|
: {};
|
|
27061
27303
|
|
|
27062
27304
|
boolean.$set(boolean_changes);
|
|
@@ -27101,6 +27343,7 @@ function create_fragment$c(ctx) {
|
|
|
27101
27343
|
create_if_block_15,
|
|
27102
27344
|
create_if_block_16,
|
|
27103
27345
|
create_if_block_17,
|
|
27346
|
+
create_if_block_18,
|
|
27104
27347
|
create_else_block$3
|
|
27105
27348
|
];
|
|
27106
27349
|
|
|
@@ -27125,7 +27368,8 @@ function create_fragment$c(ctx) {
|
|
|
27125
27368
|
if (/*cbType*/ ctx[1] === CallbackType.SuspendedTextOutputCallback) return 15;
|
|
27126
27369
|
if (/*cbType*/ ctx[1] === CallbackType.DeviceProfileCallback) return 16;
|
|
27127
27370
|
if (/*cbType*/ ctx[1] === CallbackType.MetadataCallback) return 17;
|
|
27128
|
-
return 18;
|
|
27371
|
+
if (/*cbType*/ ctx[1] === CallbackType.ReCaptchaCallback) return 18;
|
|
27372
|
+
return 19;
|
|
27129
27373
|
}
|
|
27130
27374
|
|
|
27131
27375
|
function select_block_ctx(ctx, index) {
|
|
@@ -27147,6 +27391,7 @@ function create_fragment$c(ctx) {
|
|
|
27147
27391
|
if (index === 15) return get_if_ctx_15(ctx);
|
|
27148
27392
|
if (index === 16) return get_if_ctx_16(ctx);
|
|
27149
27393
|
if (index === 17) return get_if_ctx_17(ctx);
|
|
27394
|
+
if (index === 18) return get_if_ctx_18(ctx);
|
|
27150
27395
|
return get_else_ctx(ctx);
|
|
27151
27396
|
}
|
|
27152
27397
|
|
|
@@ -27227,6 +27472,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27227
27472
|
let _SuspendedTextOutputCallback;
|
|
27228
27473
|
let _MetadataCallback;
|
|
27229
27474
|
let _DeviceProfileCallback;
|
|
27475
|
+
let _RecaptchaCallback;
|
|
27230
27476
|
let _FRCallback;
|
|
27231
27477
|
|
|
27232
27478
|
$$self.$$set = $$props => {
|
|
@@ -27257,6 +27503,9 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27257
27503
|
case CallbackType.NameCallback:
|
|
27258
27504
|
$$invalidate(7, _NameCallback = props.callback);
|
|
27259
27505
|
break;
|
|
27506
|
+
case CallbackType.ReCaptchaCallback:
|
|
27507
|
+
$$invalidate(20, _RecaptchaCallback = props.callback);
|
|
27508
|
+
break;
|
|
27260
27509
|
case CallbackType.PasswordCallback:
|
|
27261
27510
|
$$invalidate(8, _PasswordCallback = props.callback);
|
|
27262
27511
|
break;
|
|
@@ -27294,7 +27543,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27294
27543
|
$$invalidate(18, _MetadataCallback = props.callback);
|
|
27295
27544
|
break;
|
|
27296
27545
|
default:
|
|
27297
|
-
$$invalidate(
|
|
27546
|
+
$$invalidate(21, _FRCallback = props.callback);
|
|
27298
27547
|
}
|
|
27299
27548
|
}
|
|
27300
27549
|
}
|
|
@@ -27321,6 +27570,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27321
27570
|
_SuspendedTextOutputCallback,
|
|
27322
27571
|
_MetadataCallback,
|
|
27323
27572
|
_DeviceProfileCallback,
|
|
27573
|
+
_RecaptchaCallback,
|
|
27324
27574
|
_FRCallback
|
|
27325
27575
|
];
|
|
27326
27576
|
}
|