@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.js
CHANGED
|
@@ -50,6 +50,14 @@ function is_function(thing) {
|
|
|
50
50
|
function safe_not_equal(a, b) {
|
|
51
51
|
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
|
52
52
|
}
|
|
53
|
+
let src_url_equal_anchor;
|
|
54
|
+
function src_url_equal(element_src, url) {
|
|
55
|
+
if (!src_url_equal_anchor) {
|
|
56
|
+
src_url_equal_anchor = document.createElement('a');
|
|
57
|
+
}
|
|
58
|
+
src_url_equal_anchor.href = url;
|
|
59
|
+
return element_src === src_url_equal_anchor.href;
|
|
60
|
+
}
|
|
53
61
|
function is_empty(obj) {
|
|
54
62
|
return Object.keys(obj).length === 0;
|
|
55
63
|
}
|
|
@@ -9085,7 +9093,8 @@ const configSchema = z
|
|
|
9085
9093
|
realmPath: z.string(),
|
|
9086
9094
|
redirectUri: z.string().optional(),
|
|
9087
9095
|
scope: z.string().optional(),
|
|
9088
|
-
serverConfig: z
|
|
9096
|
+
serverConfig: z
|
|
9097
|
+
.object({
|
|
9089
9098
|
baseUrl: z
|
|
9090
9099
|
.string({
|
|
9091
9100
|
invalid_type_error: '`serverConfig.baseUrl` is a required URL string (this is generated by the Zod library).',
|
|
@@ -9096,25 +9105,28 @@ const configSchema = z
|
|
|
9096
9105
|
}),
|
|
9097
9106
|
paths: z
|
|
9098
9107
|
.object({
|
|
9099
|
-
authenticate: z.string(),
|
|
9100
|
-
authorize: z.string(),
|
|
9101
|
-
accessToken: z.string(),
|
|
9102
|
-
endSession: z.string(),
|
|
9103
|
-
userInfo: z.string(),
|
|
9104
|
-
revoke: z.string(),
|
|
9105
|
-
sessions: z.string(),
|
|
9108
|
+
authenticate: z.string().optional(),
|
|
9109
|
+
authorize: z.string().optional(),
|
|
9110
|
+
accessToken: z.string().optional(),
|
|
9111
|
+
endSession: z.string().optional(),
|
|
9112
|
+
userInfo: z.string().optional(),
|
|
9113
|
+
revoke: z.string().optional(),
|
|
9114
|
+
sessions: z.string().optional(),
|
|
9106
9115
|
})
|
|
9116
|
+
.strict()
|
|
9107
9117
|
.optional(),
|
|
9108
|
-
|
|
9109
|
-
|
|
9118
|
+
timeout: z
|
|
9119
|
+
.number({
|
|
9110
9120
|
invalid_type_error: '`serverConfig.timeout` is a required number and in milliseconds (this is generated by the Zod library).',
|
|
9111
|
-
|
|
9112
|
-
|
|
9113
|
-
})
|
|
9121
|
+
})
|
|
9122
|
+
.optional(),
|
|
9123
|
+
})
|
|
9124
|
+
.strict(),
|
|
9114
9125
|
support: z.union([z.literal('legacy'), z.literal('modern')]).optional(),
|
|
9115
9126
|
tokenStore: z
|
|
9116
9127
|
.union([
|
|
9117
|
-
z
|
|
9128
|
+
z
|
|
9129
|
+
.object({
|
|
9118
9130
|
get: z
|
|
9119
9131
|
.function()
|
|
9120
9132
|
.args(z.string())
|
|
@@ -9126,7 +9138,8 @@ const configSchema = z
|
|
|
9126
9138
|
}))),
|
|
9127
9139
|
set: z.function().args(z.string()).returns(z.promise(z.void())),
|
|
9128
9140
|
remove: z.function().args(z.string()).returns(z.promise(z.void())),
|
|
9129
|
-
})
|
|
9141
|
+
})
|
|
9142
|
+
.strict(),
|
|
9130
9143
|
z.literal('sessionStorage'),
|
|
9131
9144
|
z.literal('localStorage'),
|
|
9132
9145
|
])
|
|
@@ -12068,7 +12081,9 @@ function initialize$3(customLinks) {
|
|
|
12068
12081
|
return linksStore;
|
|
12069
12082
|
}
|
|
12070
12083
|
|
|
12084
|
+
const authorizationTimedOut = 'Authorization timed out';
|
|
12071
12085
|
const interactionNeeded = 'The request requires some interaction that is not allowed.';
|
|
12086
|
+
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.';
|
|
12072
12087
|
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.`;
|
|
12073
12088
|
const oauthStore = writable({
|
|
12074
12089
|
completed: false,
|
|
@@ -12077,6 +12092,16 @@ const oauthStore = writable({
|
|
|
12077
12092
|
successful: false,
|
|
12078
12093
|
response: null,
|
|
12079
12094
|
});
|
|
12095
|
+
function getTroubleshootingMessage(message) {
|
|
12096
|
+
switch (message) {
|
|
12097
|
+
case interactionNeeded:
|
|
12098
|
+
return sessionCookieConsentMessage;
|
|
12099
|
+
case authorizationTimedOut:
|
|
12100
|
+
return timeoutErrorMessage;
|
|
12101
|
+
default:
|
|
12102
|
+
return '';
|
|
12103
|
+
}
|
|
12104
|
+
}
|
|
12080
12105
|
/**
|
|
12081
12106
|
* @function initialize - Initializes the OAuth store with a get function and a reset function
|
|
12082
12107
|
* @param {object} initOptions - The options to pass to the TokenManager.getTokens function
|
|
@@ -12117,7 +12142,7 @@ function initialize$2(initOptions) {
|
|
|
12117
12142
|
completed: true,
|
|
12118
12143
|
error: {
|
|
12119
12144
|
message: err.message,
|
|
12120
|
-
troubleshoot: err.message
|
|
12145
|
+
troubleshoot: getTroubleshootingMessage(err.message),
|
|
12121
12146
|
},
|
|
12122
12147
|
loading: false,
|
|
12123
12148
|
successful: false,
|
|
@@ -12243,11 +12268,13 @@ const styleSchema = z
|
|
|
12243
12268
|
.object({
|
|
12244
12269
|
header: z.boolean().optional(),
|
|
12245
12270
|
})
|
|
12271
|
+
.strict()
|
|
12246
12272
|
.optional(),
|
|
12247
12273
|
stage: z
|
|
12248
12274
|
.object({
|
|
12249
12275
|
icon: z.boolean().optional(),
|
|
12250
12276
|
})
|
|
12277
|
+
.strict()
|
|
12251
12278
|
.optional(),
|
|
12252
12279
|
})
|
|
12253
12280
|
.strict();
|
|
@@ -12615,7 +12642,7 @@ function create_else_block$c(ctx) {
|
|
|
12615
12642
|
}
|
|
12616
12643
|
|
|
12617
12644
|
// (11:0) {#if html}
|
|
12618
|
-
function create_if_block$
|
|
12645
|
+
function create_if_block$s(ctx) {
|
|
12619
12646
|
let current;
|
|
12620
12647
|
const default_slot_template = /*#slots*/ ctx[5].default;
|
|
12621
12648
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null);
|
|
@@ -12712,12 +12739,12 @@ function fallback_block$2(ctx) {
|
|
|
12712
12739
|
};
|
|
12713
12740
|
}
|
|
12714
12741
|
|
|
12715
|
-
function create_fragment$
|
|
12742
|
+
function create_fragment$13(ctx) {
|
|
12716
12743
|
let current_block_type_index;
|
|
12717
12744
|
let if_block;
|
|
12718
12745
|
let if_block_anchor;
|
|
12719
12746
|
let current;
|
|
12720
|
-
const if_block_creators = [create_if_block$
|
|
12747
|
+
const if_block_creators = [create_if_block$s, create_else_block$c];
|
|
12721
12748
|
const if_blocks = [];
|
|
12722
12749
|
|
|
12723
12750
|
function select_block_type(ctx, dirty) {
|
|
@@ -12781,7 +12808,7 @@ function create_fragment$12(ctx) {
|
|
|
12781
12808
|
};
|
|
12782
12809
|
}
|
|
12783
12810
|
|
|
12784
|
-
function instance$
|
|
12811
|
+
function instance$15($$self, $$props, $$invalidate) {
|
|
12785
12812
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12786
12813
|
let { html = false } = $$props;
|
|
12787
12814
|
let { key } = $$props;
|
|
@@ -12809,13 +12836,13 @@ function instance$14($$self, $$props, $$invalidate) {
|
|
|
12809
12836
|
class Locale_strings extends SvelteComponent {
|
|
12810
12837
|
constructor(options) {
|
|
12811
12838
|
super();
|
|
12812
|
-
init(this, options, instance$
|
|
12839
|
+
init(this, options, instance$15, create_fragment$13, safe_not_equal, { html: 0, key: 2, values: 3 });
|
|
12813
12840
|
}
|
|
12814
12841
|
}
|
|
12815
12842
|
|
|
12816
12843
|
/* src/lib/components/icons/x-icon.svelte generated by Svelte v3.59.2 */
|
|
12817
12844
|
|
|
12818
|
-
function create_fragment$
|
|
12845
|
+
function create_fragment$12(ctx) {
|
|
12819
12846
|
let svg;
|
|
12820
12847
|
let path;
|
|
12821
12848
|
let title;
|
|
@@ -12891,7 +12918,7 @@ function create_fragment$11(ctx) {
|
|
|
12891
12918
|
};
|
|
12892
12919
|
}
|
|
12893
12920
|
|
|
12894
|
-
function instance$
|
|
12921
|
+
function instance$14($$self, $$props, $$invalidate) {
|
|
12895
12922
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12896
12923
|
let { classes = '' } = $$props;
|
|
12897
12924
|
let { size = '24px' } = $$props;
|
|
@@ -12908,7 +12935,7 @@ function instance$13($$self, $$props, $$invalidate) {
|
|
|
12908
12935
|
class X_icon extends SvelteComponent {
|
|
12909
12936
|
constructor(options) {
|
|
12910
12937
|
super();
|
|
12911
|
-
init(this, options, instance$
|
|
12938
|
+
init(this, options, instance$14, create_fragment$12, safe_not_equal, { classes: 0, size: 1 });
|
|
12912
12939
|
}
|
|
12913
12940
|
}
|
|
12914
12941
|
|
|
@@ -13013,7 +13040,7 @@ function create_else_block$b(ctx) {
|
|
|
13013
13040
|
}
|
|
13014
13041
|
|
|
13015
13042
|
// (39:2) {#if withHeader}
|
|
13016
|
-
function create_if_block$
|
|
13043
|
+
function create_if_block$r(ctx) {
|
|
13017
13044
|
let div1;
|
|
13018
13045
|
let div0;
|
|
13019
13046
|
let div0_style_value;
|
|
@@ -13189,7 +13216,7 @@ function create_default_slot$t(ctx) {
|
|
|
13189
13216
|
};
|
|
13190
13217
|
}
|
|
13191
13218
|
|
|
13192
|
-
function create_fragment$
|
|
13219
|
+
function create_fragment$11(ctx) {
|
|
13193
13220
|
let dialog;
|
|
13194
13221
|
let current_block_type_index;
|
|
13195
13222
|
let if_block;
|
|
@@ -13197,7 +13224,7 @@ function create_fragment$10(ctx) {
|
|
|
13197
13224
|
let div;
|
|
13198
13225
|
let dialog_class_value;
|
|
13199
13226
|
let current;
|
|
13200
|
-
const if_block_creators = [create_if_block$
|
|
13227
|
+
const if_block_creators = [create_if_block$r, create_else_block$b];
|
|
13201
13228
|
const if_blocks = [];
|
|
13202
13229
|
|
|
13203
13230
|
function select_block_type(ctx, dirty) {
|
|
@@ -13309,7 +13336,7 @@ function create_fragment$10(ctx) {
|
|
|
13309
13336
|
};
|
|
13310
13337
|
}
|
|
13311
13338
|
|
|
13312
|
-
function instance$
|
|
13339
|
+
function instance$13($$self, $$props, $$invalidate) {
|
|
13313
13340
|
let $styleStore;
|
|
13314
13341
|
component_subscribe($$self, styleStore, $$value => $$invalidate(5, $styleStore = $$value));
|
|
13315
13342
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
@@ -13383,7 +13410,7 @@ class Dialog extends SvelteComponent {
|
|
|
13383
13410
|
constructor(options) {
|
|
13384
13411
|
super();
|
|
13385
13412
|
|
|
13386
|
-
init(this, options, instance$
|
|
13413
|
+
init(this, options, instance$13, create_fragment$11, safe_not_equal, {
|
|
13387
13414
|
dialogEl: 0,
|
|
13388
13415
|
dialogId: 1,
|
|
13389
13416
|
forceOpen: 2,
|
|
@@ -13399,7 +13426,7 @@ class Dialog extends SvelteComponent {
|
|
|
13399
13426
|
|
|
13400
13427
|
/* src/lib/components/icons/alert-icon.svelte generated by Svelte v3.59.2 */
|
|
13401
13428
|
|
|
13402
|
-
function create_fragment
|
|
13429
|
+
function create_fragment$10(ctx) {
|
|
13403
13430
|
let svg;
|
|
13404
13431
|
let path;
|
|
13405
13432
|
let title;
|
|
@@ -13475,7 +13502,7 @@ function create_fragment$$(ctx) {
|
|
|
13475
13502
|
};
|
|
13476
13503
|
}
|
|
13477
13504
|
|
|
13478
|
-
function instance$
|
|
13505
|
+
function instance$12($$self, $$props, $$invalidate) {
|
|
13479
13506
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13480
13507
|
let { classes = '' } = $$props;
|
|
13481
13508
|
let { size = '24px' } = $$props;
|
|
@@ -13492,13 +13519,13 @@ function instance$11($$self, $$props, $$invalidate) {
|
|
|
13492
13519
|
class Alert_icon extends SvelteComponent {
|
|
13493
13520
|
constructor(options) {
|
|
13494
13521
|
super();
|
|
13495
|
-
init(this, options, instance$
|
|
13522
|
+
init(this, options, instance$12, create_fragment$10, safe_not_equal, { classes: 0, size: 1 });
|
|
13496
13523
|
}
|
|
13497
13524
|
}
|
|
13498
13525
|
|
|
13499
13526
|
/* src/lib/components/icons/info-icon.svelte generated by Svelte v3.59.2 */
|
|
13500
13527
|
|
|
13501
|
-
function create_fragment
|
|
13528
|
+
function create_fragment$$(ctx) {
|
|
13502
13529
|
let svg;
|
|
13503
13530
|
let path;
|
|
13504
13531
|
let title;
|
|
@@ -13574,7 +13601,7 @@ function create_fragment$_(ctx) {
|
|
|
13574
13601
|
};
|
|
13575
13602
|
}
|
|
13576
13603
|
|
|
13577
|
-
function instance$
|
|
13604
|
+
function instance$11($$self, $$props, $$invalidate) {
|
|
13578
13605
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13579
13606
|
let { classes = '' } = $$props;
|
|
13580
13607
|
let { size = '24px' } = $$props;
|
|
@@ -13591,13 +13618,13 @@ function instance$10($$self, $$props, $$invalidate) {
|
|
|
13591
13618
|
class Info_icon extends SvelteComponent {
|
|
13592
13619
|
constructor(options) {
|
|
13593
13620
|
super();
|
|
13594
|
-
init(this, options, instance$
|
|
13621
|
+
init(this, options, instance$11, create_fragment$$, safe_not_equal, { classes: 0, size: 1 });
|
|
13595
13622
|
}
|
|
13596
13623
|
}
|
|
13597
13624
|
|
|
13598
13625
|
/* src/lib/components/icons/warning-icon.svelte generated by Svelte v3.59.2 */
|
|
13599
13626
|
|
|
13600
|
-
function create_fragment$
|
|
13627
|
+
function create_fragment$_(ctx) {
|
|
13601
13628
|
let svg;
|
|
13602
13629
|
let path;
|
|
13603
13630
|
let title;
|
|
@@ -13673,7 +13700,7 @@ function create_fragment$Z(ctx) {
|
|
|
13673
13700
|
};
|
|
13674
13701
|
}
|
|
13675
13702
|
|
|
13676
|
-
function instance
|
|
13703
|
+
function instance$10($$self, $$props, $$invalidate) {
|
|
13677
13704
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13678
13705
|
let { classes = '' } = $$props;
|
|
13679
13706
|
let { size = '24px' } = $$props;
|
|
@@ -13690,7 +13717,7 @@ function instance$$($$self, $$props, $$invalidate) {
|
|
|
13690
13717
|
class Warning_icon extends SvelteComponent {
|
|
13691
13718
|
constructor(options) {
|
|
13692
13719
|
super();
|
|
13693
|
-
init(this, options, instance
|
|
13720
|
+
init(this, options, instance$10, create_fragment$_, safe_not_equal, { classes: 0, size: 1 });
|
|
13694
13721
|
}
|
|
13695
13722
|
}
|
|
13696
13723
|
|
|
@@ -13754,7 +13781,7 @@ function create_if_block_1$c(ctx) {
|
|
|
13754
13781
|
}
|
|
13755
13782
|
|
|
13756
13783
|
// (41:4) {#if type === 'error'}
|
|
13757
|
-
function create_if_block$
|
|
13784
|
+
function create_if_block$q(ctx) {
|
|
13758
13785
|
let alerticon;
|
|
13759
13786
|
let current;
|
|
13760
13787
|
alerticon = new Alert_icon({});
|
|
@@ -13782,7 +13809,7 @@ function create_if_block$p(ctx) {
|
|
|
13782
13809
|
};
|
|
13783
13810
|
}
|
|
13784
13811
|
|
|
13785
|
-
function create_fragment$
|
|
13812
|
+
function create_fragment$Z(ctx) {
|
|
13786
13813
|
let div;
|
|
13787
13814
|
let p;
|
|
13788
13815
|
let current_block_type_index;
|
|
@@ -13791,7 +13818,7 @@ function create_fragment$Y(ctx) {
|
|
|
13791
13818
|
let span;
|
|
13792
13819
|
let div_class_value;
|
|
13793
13820
|
let current;
|
|
13794
|
-
const if_block_creators = [create_if_block$
|
|
13821
|
+
const if_block_creators = [create_if_block$q, create_if_block_1$c, create_else_block$a];
|
|
13795
13822
|
const if_blocks = [];
|
|
13796
13823
|
|
|
13797
13824
|
function select_block_type(ctx, dirty) {
|
|
@@ -13918,7 +13945,7 @@ function generateClassString$3(...args) {
|
|
|
13918
13945
|
);
|
|
13919
13946
|
}
|
|
13920
13947
|
|
|
13921
|
-
function instance
|
|
13948
|
+
function instance$$($$self, $$props, $$invalidate) {
|
|
13922
13949
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13923
13950
|
let { id } = $$props;
|
|
13924
13951
|
let { needsFocus = false } = $$props;
|
|
@@ -13955,13 +13982,13 @@ function instance$_($$self, $$props, $$invalidate) {
|
|
|
13955
13982
|
class Alert extends SvelteComponent {
|
|
13956
13983
|
constructor(options) {
|
|
13957
13984
|
super();
|
|
13958
|
-
init(this, options, instance
|
|
13985
|
+
init(this, options, instance$$, create_fragment$Z, safe_not_equal, { id: 0, needsFocus: 3, type: 1 });
|
|
13959
13986
|
}
|
|
13960
13987
|
}
|
|
13961
13988
|
|
|
13962
13989
|
/* src/lib/components/primitives/spinner/spinner.svelte generated by Svelte v3.59.2 */
|
|
13963
13990
|
|
|
13964
|
-
function create_fragment$
|
|
13991
|
+
function create_fragment$Y(ctx) {
|
|
13965
13992
|
let div;
|
|
13966
13993
|
let span;
|
|
13967
13994
|
let t;
|
|
@@ -14005,7 +14032,7 @@ function create_fragment$X(ctx) {
|
|
|
14005
14032
|
};
|
|
14006
14033
|
}
|
|
14007
14034
|
|
|
14008
|
-
function instance$
|
|
14035
|
+
function instance$_($$self, $$props, $$invalidate) {
|
|
14009
14036
|
let { colorClass } = $$props;
|
|
14010
14037
|
let { layoutClasses } = $$props;
|
|
14011
14038
|
|
|
@@ -14020,13 +14047,13 @@ function instance$Z($$self, $$props, $$invalidate) {
|
|
|
14020
14047
|
class Spinner extends SvelteComponent {
|
|
14021
14048
|
constructor(options) {
|
|
14022
14049
|
super();
|
|
14023
|
-
init(this, options, instance$
|
|
14050
|
+
init(this, options, instance$_, create_fragment$Y, safe_not_equal, { colorClass: 0, layoutClasses: 1 });
|
|
14024
14051
|
}
|
|
14025
14052
|
}
|
|
14026
14053
|
|
|
14027
14054
|
/* src/lib/components/primitives/button/button.svelte generated by Svelte v3.59.2 */
|
|
14028
14055
|
|
|
14029
|
-
function create_if_block$
|
|
14056
|
+
function create_if_block$p(ctx) {
|
|
14030
14057
|
let spinner;
|
|
14031
14058
|
let current;
|
|
14032
14059
|
|
|
@@ -14077,14 +14104,14 @@ function fallback_block$1(ctx) {
|
|
|
14077
14104
|
};
|
|
14078
14105
|
}
|
|
14079
14106
|
|
|
14080
|
-
function create_fragment$
|
|
14107
|
+
function create_fragment$X(ctx) {
|
|
14081
14108
|
let button;
|
|
14082
14109
|
let t;
|
|
14083
14110
|
let button_class_value;
|
|
14084
14111
|
let current;
|
|
14085
14112
|
let mounted;
|
|
14086
14113
|
let dispose;
|
|
14087
|
-
let if_block = /*busy*/ ctx[0] && create_if_block$
|
|
14114
|
+
let if_block = /*busy*/ ctx[0] && create_if_block$p();
|
|
14088
14115
|
const default_slot_template = /*#slots*/ ctx[7].default;
|
|
14089
14116
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[6], null);
|
|
14090
14117
|
const default_slot_or_fallback = default_slot || fallback_block$1();
|
|
@@ -14126,7 +14153,7 @@ function create_fragment$W(ctx) {
|
|
|
14126
14153
|
transition_in(if_block, 1);
|
|
14127
14154
|
}
|
|
14128
14155
|
} else {
|
|
14129
|
-
if_block = create_if_block$
|
|
14156
|
+
if_block = create_if_block$p();
|
|
14130
14157
|
if_block.c();
|
|
14131
14158
|
transition_in(if_block, 1);
|
|
14132
14159
|
if_block.m(button, t);
|
|
@@ -14207,7 +14234,7 @@ function generateClassString$2(...args) {
|
|
|
14207
14234
|
);
|
|
14208
14235
|
}
|
|
14209
14236
|
|
|
14210
|
-
function instance$
|
|
14237
|
+
function instance$Z($$self, $$props, $$invalidate) {
|
|
14211
14238
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14212
14239
|
let { busy = false } = $$props;
|
|
14213
14240
|
let { classes = '' } = $$props;
|
|
@@ -14237,7 +14264,7 @@ class Button extends SvelteComponent {
|
|
|
14237
14264
|
constructor(options) {
|
|
14238
14265
|
super();
|
|
14239
14266
|
|
|
14240
|
-
init(this, options, instance$
|
|
14267
|
+
init(this, options, instance$Z, create_fragment$X, safe_not_equal, {
|
|
14241
14268
|
busy: 0,
|
|
14242
14269
|
classes: 1,
|
|
14243
14270
|
onClick: 2,
|
|
@@ -14250,7 +14277,7 @@ class Button extends SvelteComponent {
|
|
|
14250
14277
|
|
|
14251
14278
|
/* src/lib/components/primitives/form/form.svelte generated by Svelte v3.59.2 */
|
|
14252
14279
|
|
|
14253
|
-
function create_fragment$
|
|
14280
|
+
function create_fragment$W(ctx) {
|
|
14254
14281
|
let form;
|
|
14255
14282
|
let form_class_value;
|
|
14256
14283
|
let current;
|
|
@@ -14337,7 +14364,7 @@ function create_fragment$V(ctx) {
|
|
|
14337
14364
|
};
|
|
14338
14365
|
}
|
|
14339
14366
|
|
|
14340
|
-
function instance$
|
|
14367
|
+
function instance$Y($$self, $$props, $$invalidate) {
|
|
14341
14368
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14342
14369
|
let { ariaDescribedBy } = $$props;
|
|
14343
14370
|
let { formEl = null } = $$props;
|
|
@@ -14464,7 +14491,7 @@ class Form extends SvelteComponent {
|
|
|
14464
14491
|
constructor(options) {
|
|
14465
14492
|
super();
|
|
14466
14493
|
|
|
14467
|
-
init(this, options, instance$
|
|
14494
|
+
init(this, options, instance$Y, create_fragment$W, safe_not_equal, {
|
|
14468
14495
|
ariaDescribedBy: 1,
|
|
14469
14496
|
formEl: 0,
|
|
14470
14497
|
id: 2,
|
|
@@ -14529,7 +14556,7 @@ function create_else_block$9(ctx) {
|
|
|
14529
14556
|
}
|
|
14530
14557
|
|
|
14531
14558
|
// (10:0) {#if html}
|
|
14532
|
-
function create_if_block$
|
|
14559
|
+
function create_if_block$o(ctx) {
|
|
14533
14560
|
let current;
|
|
14534
14561
|
const default_slot_template = /*#slots*/ ctx[4].default;
|
|
14535
14562
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[3], null);
|
|
@@ -14626,12 +14653,12 @@ function fallback_block(ctx) {
|
|
|
14626
14653
|
};
|
|
14627
14654
|
}
|
|
14628
14655
|
|
|
14629
|
-
function create_fragment$
|
|
14656
|
+
function create_fragment$V(ctx) {
|
|
14630
14657
|
let current_block_type_index;
|
|
14631
14658
|
let if_block;
|
|
14632
14659
|
let if_block_anchor;
|
|
14633
14660
|
let current;
|
|
14634
|
-
const if_block_creators = [create_if_block$
|
|
14661
|
+
const if_block_creators = [create_if_block$o, create_else_block$9];
|
|
14635
14662
|
const if_blocks = [];
|
|
14636
14663
|
|
|
14637
14664
|
function select_block_type(ctx, dirty) {
|
|
@@ -14695,7 +14722,7 @@ function create_fragment$U(ctx) {
|
|
|
14695
14722
|
};
|
|
14696
14723
|
}
|
|
14697
14724
|
|
|
14698
|
-
function instance$
|
|
14725
|
+
function instance$X($$self, $$props, $$invalidate) {
|
|
14699
14726
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14700
14727
|
let { html = false } = $$props;
|
|
14701
14728
|
let { string } = $$props;
|
|
@@ -14721,13 +14748,13 @@ function instance$W($$self, $$props, $$invalidate) {
|
|
|
14721
14748
|
class Server_strings extends SvelteComponent {
|
|
14722
14749
|
constructor(options) {
|
|
14723
14750
|
super();
|
|
14724
|
-
init(this, options, instance$
|
|
14751
|
+
init(this, options, instance$X, create_fragment$V, safe_not_equal, { html: 0, string: 2 });
|
|
14725
14752
|
}
|
|
14726
14753
|
}
|
|
14727
14754
|
|
|
14728
14755
|
/* src/lib/components/icons/shield-icon.svelte generated by Svelte v3.59.2 */
|
|
14729
14756
|
|
|
14730
|
-
function create_fragment$
|
|
14757
|
+
function create_fragment$U(ctx) {
|
|
14731
14758
|
let svg;
|
|
14732
14759
|
let path;
|
|
14733
14760
|
let title;
|
|
@@ -14803,7 +14830,7 @@ function create_fragment$T(ctx) {
|
|
|
14803
14830
|
};
|
|
14804
14831
|
}
|
|
14805
14832
|
|
|
14806
|
-
function instance$
|
|
14833
|
+
function instance$W($$self, $$props, $$invalidate) {
|
|
14807
14834
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14808
14835
|
let { classes = '' } = $$props;
|
|
14809
14836
|
let { size = '24px' } = $$props;
|
|
@@ -14820,13 +14847,13 @@ function instance$V($$self, $$props, $$invalidate) {
|
|
|
14820
14847
|
class Shield_icon extends SvelteComponent {
|
|
14821
14848
|
constructor(options) {
|
|
14822
14849
|
super();
|
|
14823
|
-
init(this, options, instance$
|
|
14850
|
+
init(this, options, instance$W, create_fragment$U, safe_not_equal, { classes: 0, size: 1 });
|
|
14824
14851
|
}
|
|
14825
14852
|
}
|
|
14826
14853
|
|
|
14827
14854
|
/* src/lib/journey/stages/_utilities/back-to.svelte generated by Svelte v3.59.2 */
|
|
14828
14855
|
|
|
14829
|
-
function create_if_block$
|
|
14856
|
+
function create_if_block$n(ctx) {
|
|
14830
14857
|
let p;
|
|
14831
14858
|
let button;
|
|
14832
14859
|
let t_value = interpolate(/*string*/ ctx[1]) + "";
|
|
@@ -14862,9 +14889,9 @@ function create_if_block$m(ctx) {
|
|
|
14862
14889
|
};
|
|
14863
14890
|
}
|
|
14864
14891
|
|
|
14865
|
-
function create_fragment$
|
|
14892
|
+
function create_fragment$T(ctx) {
|
|
14866
14893
|
let if_block_anchor;
|
|
14867
|
-
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$
|
|
14894
|
+
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$n(ctx);
|
|
14868
14895
|
|
|
14869
14896
|
return {
|
|
14870
14897
|
c() {
|
|
@@ -14880,7 +14907,7 @@ function create_fragment$S(ctx) {
|
|
|
14880
14907
|
if (if_block) {
|
|
14881
14908
|
if_block.p(ctx, dirty);
|
|
14882
14909
|
} else {
|
|
14883
|
-
if_block = create_if_block$
|
|
14910
|
+
if_block = create_if_block$n(ctx);
|
|
14884
14911
|
if_block.c();
|
|
14885
14912
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
14886
14913
|
}
|
|
@@ -14898,7 +14925,7 @@ function create_fragment$S(ctx) {
|
|
|
14898
14925
|
};
|
|
14899
14926
|
}
|
|
14900
14927
|
|
|
14901
|
-
function instance$
|
|
14928
|
+
function instance$V($$self, $$props, $$invalidate) {
|
|
14902
14929
|
let $stack;
|
|
14903
14930
|
let $configuredJourneysStore;
|
|
14904
14931
|
component_subscribe($$self, configuredJourneysStore, $$value => $$invalidate(5, $configuredJourneysStore = $$value));
|
|
@@ -14939,7 +14966,7 @@ function instance$U($$self, $$props, $$invalidate) {
|
|
|
14939
14966
|
class Back_to extends SvelteComponent {
|
|
14940
14967
|
constructor(options) {
|
|
14941
14968
|
super();
|
|
14942
|
-
init(this, options, instance$
|
|
14969
|
+
init(this, options, instance$V, create_fragment$T, safe_not_equal, { journey: 0 });
|
|
14943
14970
|
}
|
|
14944
14971
|
}
|
|
14945
14972
|
|
|
@@ -15403,7 +15430,7 @@ function getAttributeValidationFailureText(callback) {
|
|
|
15403
15430
|
|
|
15404
15431
|
/* src/lib/components/primitives/message/input-message.svelte generated by Svelte v3.59.2 */
|
|
15405
15432
|
|
|
15406
|
-
function create_if_block$
|
|
15433
|
+
function create_if_block$m(ctx) {
|
|
15407
15434
|
let p;
|
|
15408
15435
|
let p_class_value;
|
|
15409
15436
|
let p_id_value;
|
|
@@ -15434,9 +15461,9 @@ function create_if_block$l(ctx) {
|
|
|
15434
15461
|
};
|
|
15435
15462
|
}
|
|
15436
15463
|
|
|
15437
|
-
function create_fragment$
|
|
15464
|
+
function create_fragment$S(ctx) {
|
|
15438
15465
|
let if_block_anchor;
|
|
15439
|
-
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$
|
|
15466
|
+
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$m(ctx);
|
|
15440
15467
|
|
|
15441
15468
|
return {
|
|
15442
15469
|
c() {
|
|
@@ -15452,7 +15479,7 @@ function create_fragment$R(ctx) {
|
|
|
15452
15479
|
if (if_block) {
|
|
15453
15480
|
if_block.p(ctx, dirty);
|
|
15454
15481
|
} else {
|
|
15455
|
-
if_block = create_if_block$
|
|
15482
|
+
if_block = create_if_block$m(ctx);
|
|
15456
15483
|
if_block.c();
|
|
15457
15484
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
15458
15485
|
}
|
|
@@ -15484,7 +15511,7 @@ function generateClassString$1(...args) {
|
|
|
15484
15511
|
);
|
|
15485
15512
|
}
|
|
15486
15513
|
|
|
15487
|
-
function instance$
|
|
15514
|
+
function instance$U($$self, $$props, $$invalidate) {
|
|
15488
15515
|
let { classes = '' } = $$props;
|
|
15489
15516
|
let { dirtyMessage } = $$props;
|
|
15490
15517
|
let { key = undefined } = $$props;
|
|
@@ -15515,7 +15542,7 @@ class Input_message extends SvelteComponent {
|
|
|
15515
15542
|
constructor(options) {
|
|
15516
15543
|
super();
|
|
15517
15544
|
|
|
15518
|
-
init(this, options, instance$
|
|
15545
|
+
init(this, options, instance$U, create_fragment$S, safe_not_equal, {
|
|
15519
15546
|
classes: 0,
|
|
15520
15547
|
dirtyMessage: 1,
|
|
15521
15548
|
key: 2,
|
|
@@ -15527,7 +15554,7 @@ class Input_message extends SvelteComponent {
|
|
|
15527
15554
|
|
|
15528
15555
|
/* src/lib/components/primitives/label/label.svelte generated by Svelte v3.59.2 */
|
|
15529
15556
|
|
|
15530
|
-
function create_fragment$
|
|
15557
|
+
function create_fragment$R(ctx) {
|
|
15531
15558
|
let label;
|
|
15532
15559
|
let label_class_value;
|
|
15533
15560
|
let current;
|
|
@@ -15590,7 +15617,7 @@ function create_fragment$Q(ctx) {
|
|
|
15590
15617
|
};
|
|
15591
15618
|
}
|
|
15592
15619
|
|
|
15593
|
-
function instance$
|
|
15620
|
+
function instance$T($$self, $$props, $$invalidate) {
|
|
15594
15621
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15595
15622
|
let { key } = $$props;
|
|
15596
15623
|
let { classes = '' } = $$props;
|
|
@@ -15607,7 +15634,7 @@ function instance$S($$self, $$props, $$invalidate) {
|
|
|
15607
15634
|
class Label extends SvelteComponent {
|
|
15608
15635
|
constructor(options) {
|
|
15609
15636
|
super();
|
|
15610
|
-
init(this, options, instance$
|
|
15637
|
+
init(this, options, instance$T, create_fragment$R, safe_not_equal, { key: 0, classes: 1 });
|
|
15611
15638
|
}
|
|
15612
15639
|
}
|
|
15613
15640
|
|
|
@@ -15670,7 +15697,7 @@ function create_default_slot$s(ctx) {
|
|
|
15670
15697
|
};
|
|
15671
15698
|
}
|
|
15672
15699
|
|
|
15673
|
-
function create_fragment$
|
|
15700
|
+
function create_fragment$Q(ctx) {
|
|
15674
15701
|
let div1;
|
|
15675
15702
|
let input;
|
|
15676
15703
|
let input_data_message_value;
|
|
@@ -15794,7 +15821,7 @@ function create_fragment$P(ctx) {
|
|
|
15794
15821
|
};
|
|
15795
15822
|
}
|
|
15796
15823
|
|
|
15797
|
-
function instance$
|
|
15824
|
+
function instance$S($$self, $$props, $$invalidate) {
|
|
15798
15825
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15799
15826
|
let { checkValidity = null } = $$props;
|
|
15800
15827
|
let { message = '' } = $$props;
|
|
@@ -15863,7 +15890,7 @@ let Animated$1 = class Animated extends SvelteComponent {
|
|
|
15863
15890
|
constructor(options) {
|
|
15864
15891
|
super();
|
|
15865
15892
|
|
|
15866
|
-
init(this, options, instance$
|
|
15893
|
+
init(this, options, instance$S, create_fragment$Q, safe_not_equal, {
|
|
15867
15894
|
checkValidity: 8,
|
|
15868
15895
|
message: 1,
|
|
15869
15896
|
isFirstInvalidInput: 9,
|
|
@@ -15926,7 +15953,7 @@ function create_default_slot$r(ctx) {
|
|
|
15926
15953
|
};
|
|
15927
15954
|
}
|
|
15928
15955
|
|
|
15929
|
-
function create_fragment$
|
|
15956
|
+
function create_fragment$P(ctx) {
|
|
15930
15957
|
let input;
|
|
15931
15958
|
let input_aria_describedby_value;
|
|
15932
15959
|
let t;
|
|
@@ -16023,7 +16050,7 @@ function create_fragment$O(ctx) {
|
|
|
16023
16050
|
};
|
|
16024
16051
|
}
|
|
16025
16052
|
|
|
16026
|
-
function instance$
|
|
16053
|
+
function instance$R($$self, $$props, $$invalidate) {
|
|
16027
16054
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16028
16055
|
let { isFirstInvalidInput } = $$props;
|
|
16029
16056
|
let { isRequired = false } = $$props;
|
|
@@ -16074,7 +16101,7 @@ class Checkbox extends SvelteComponent {
|
|
|
16074
16101
|
constructor(options) {
|
|
16075
16102
|
super();
|
|
16076
16103
|
|
|
16077
|
-
init(this, options, instance$
|
|
16104
|
+
init(this, options, instance$R, create_fragment$P, safe_not_equal, {
|
|
16078
16105
|
isFirstInvalidInput: 6,
|
|
16079
16106
|
isRequired: 0,
|
|
16080
16107
|
isInvalid: 1,
|
|
@@ -16134,7 +16161,7 @@ function create_default_slot$q(ctx) {
|
|
|
16134
16161
|
};
|
|
16135
16162
|
}
|
|
16136
16163
|
|
|
16137
|
-
function create_fragment$
|
|
16164
|
+
function create_fragment$O(ctx) {
|
|
16138
16165
|
let div;
|
|
16139
16166
|
let checkbox;
|
|
16140
16167
|
let t;
|
|
@@ -16221,7 +16248,7 @@ function create_fragment$N(ctx) {
|
|
|
16221
16248
|
};
|
|
16222
16249
|
}
|
|
16223
16250
|
|
|
16224
|
-
function instance$
|
|
16251
|
+
function instance$Q($$self, $$props, $$invalidate) {
|
|
16225
16252
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16226
16253
|
let { checkValidity = null } = $$props;
|
|
16227
16254
|
let { message = '' } = $$props;
|
|
@@ -16274,7 +16301,7 @@ let Standard$1 = class Standard extends SvelteComponent {
|
|
|
16274
16301
|
constructor(options) {
|
|
16275
16302
|
super();
|
|
16276
16303
|
|
|
16277
|
-
init(this, options, instance$
|
|
16304
|
+
init(this, options, instance$Q, create_fragment$O, safe_not_equal, {
|
|
16278
16305
|
checkValidity: 8,
|
|
16279
16306
|
message: 1,
|
|
16280
16307
|
isFirstInvalidInput: 2,
|
|
@@ -16365,7 +16392,7 @@ function create_key_block$5(ctx) {
|
|
|
16365
16392
|
};
|
|
16366
16393
|
}
|
|
16367
16394
|
|
|
16368
|
-
function create_fragment$
|
|
16395
|
+
function create_fragment$N(ctx) {
|
|
16369
16396
|
let previous_key = /*callback*/ ctx[0];
|
|
16370
16397
|
let key_block_anchor;
|
|
16371
16398
|
let current;
|
|
@@ -16410,7 +16437,7 @@ function create_fragment$M(ctx) {
|
|
|
16410
16437
|
};
|
|
16411
16438
|
}
|
|
16412
16439
|
|
|
16413
|
-
function instance$
|
|
16440
|
+
function instance$P($$self, $$props, $$invalidate) {
|
|
16414
16441
|
const stepMetadata = null;
|
|
16415
16442
|
const selfSubmitFunction = null;
|
|
16416
16443
|
let { callback } = $$props;
|
|
@@ -16477,7 +16504,7 @@ let Boolean$1 = class Boolean extends SvelteComponent {
|
|
|
16477
16504
|
constructor(options) {
|
|
16478
16505
|
super();
|
|
16479
16506
|
|
|
16480
|
-
init(this, options, instance$
|
|
16507
|
+
init(this, options, instance$P, create_fragment$N, safe_not_equal, {
|
|
16481
16508
|
stepMetadata: 9,
|
|
16482
16509
|
selfSubmitFunction: 10,
|
|
16483
16510
|
callback: 0,
|
|
@@ -16645,7 +16672,7 @@ function create_each_block$a(ctx) {
|
|
|
16645
16672
|
};
|
|
16646
16673
|
}
|
|
16647
16674
|
|
|
16648
|
-
function create_fragment$
|
|
16675
|
+
function create_fragment$M(ctx) {
|
|
16649
16676
|
let fieldset;
|
|
16650
16677
|
let legend;
|
|
16651
16678
|
let t0;
|
|
@@ -16776,7 +16803,7 @@ function create_fragment$L(ctx) {
|
|
|
16776
16803
|
};
|
|
16777
16804
|
}
|
|
16778
16805
|
|
|
16779
|
-
function instance$
|
|
16806
|
+
function instance$O($$self, $$props, $$invalidate) {
|
|
16780
16807
|
let { defaultOption = null } = $$props;
|
|
16781
16808
|
let { message = '' } = $$props;
|
|
16782
16809
|
let { groupLabel = '' } = $$props;
|
|
@@ -16838,7 +16865,7 @@ class Animated extends SvelteComponent {
|
|
|
16838
16865
|
constructor(options) {
|
|
16839
16866
|
super();
|
|
16840
16867
|
|
|
16841
|
-
init(this, options, instance$
|
|
16868
|
+
init(this, options, instance$O, create_fragment$M, safe_not_equal, {
|
|
16842
16869
|
defaultOption: 0,
|
|
16843
16870
|
message: 1,
|
|
16844
16871
|
groupLabel: 2,
|
|
@@ -16903,7 +16930,7 @@ function create_default_slot$n(ctx) {
|
|
|
16903
16930
|
};
|
|
16904
16931
|
}
|
|
16905
16932
|
|
|
16906
|
-
function create_fragment$
|
|
16933
|
+
function create_fragment$L(ctx) {
|
|
16907
16934
|
let input;
|
|
16908
16935
|
let input_aria_describedby_value;
|
|
16909
16936
|
let t;
|
|
@@ -17010,7 +17037,7 @@ function create_fragment$K(ctx) {
|
|
|
17010
17037
|
};
|
|
17011
17038
|
}
|
|
17012
17039
|
|
|
17013
|
-
function instance$
|
|
17040
|
+
function instance$N($$self, $$props, $$invalidate) {
|
|
17014
17041
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
17015
17042
|
let { checked = false } = $$props;
|
|
17016
17043
|
let { isFirstInvalidInput } = $$props;
|
|
@@ -17067,7 +17094,7 @@ class Radio extends SvelteComponent {
|
|
|
17067
17094
|
constructor(options) {
|
|
17068
17095
|
super();
|
|
17069
17096
|
|
|
17070
|
-
init(this, options, instance$
|
|
17097
|
+
init(this, options, instance$N, create_fragment$L, safe_not_equal, {
|
|
17071
17098
|
checked: 0,
|
|
17072
17099
|
isFirstInvalidInput: 8,
|
|
17073
17100
|
isRequired: 1,
|
|
@@ -17177,7 +17204,7 @@ function create_each_block$9(ctx) {
|
|
|
17177
17204
|
};
|
|
17178
17205
|
}
|
|
17179
17206
|
|
|
17180
|
-
function create_fragment$
|
|
17207
|
+
function create_fragment$K(ctx) {
|
|
17181
17208
|
let fieldset;
|
|
17182
17209
|
let legend;
|
|
17183
17210
|
let t0;
|
|
@@ -17305,7 +17332,7 @@ function create_fragment$J(ctx) {
|
|
|
17305
17332
|
};
|
|
17306
17333
|
}
|
|
17307
17334
|
|
|
17308
|
-
function instance$
|
|
17335
|
+
function instance$M($$self, $$props, $$invalidate) {
|
|
17309
17336
|
let { defaultOption = null } = $$props;
|
|
17310
17337
|
let { message = '' } = $$props;
|
|
17311
17338
|
let { groupLabel = '' } = $$props;
|
|
@@ -17351,7 +17378,7 @@ class Standard extends SvelteComponent {
|
|
|
17351
17378
|
constructor(options) {
|
|
17352
17379
|
super();
|
|
17353
17380
|
|
|
17354
|
-
init(this, options, instance$
|
|
17381
|
+
init(this, options, instance$M, create_fragment$K, safe_not_equal, {
|
|
17355
17382
|
defaultOption: 0,
|
|
17356
17383
|
message: 1,
|
|
17357
17384
|
groupLabel: 2,
|
|
@@ -17485,7 +17512,7 @@ function create_each_block$8(ctx) {
|
|
|
17485
17512
|
}
|
|
17486
17513
|
|
|
17487
17514
|
// (61:0) {#if labelOrder === 'last'}
|
|
17488
|
-
function create_if_block$
|
|
17515
|
+
function create_if_block$l(ctx) {
|
|
17489
17516
|
let label_1;
|
|
17490
17517
|
let current;
|
|
17491
17518
|
|
|
@@ -17557,7 +17584,7 @@ function create_default_slot$l(ctx) {
|
|
|
17557
17584
|
};
|
|
17558
17585
|
}
|
|
17559
17586
|
|
|
17560
|
-
function create_fragment$
|
|
17587
|
+
function create_fragment$J(ctx) {
|
|
17561
17588
|
let t0;
|
|
17562
17589
|
let select;
|
|
17563
17590
|
let select_aria_describedby_value;
|
|
@@ -17575,7 +17602,7 @@ function create_fragment$I(ctx) {
|
|
|
17575
17602
|
each_blocks[i] = create_each_block$8(get_each_context$8(ctx, each_value, i));
|
|
17576
17603
|
}
|
|
17577
17604
|
|
|
17578
|
-
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$
|
|
17605
|
+
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$l(ctx);
|
|
17579
17606
|
|
|
17580
17607
|
return {
|
|
17581
17608
|
c() {
|
|
@@ -17699,7 +17726,7 @@ function create_fragment$I(ctx) {
|
|
|
17699
17726
|
transition_in(if_block1, 1);
|
|
17700
17727
|
}
|
|
17701
17728
|
} else {
|
|
17702
|
-
if_block1 = create_if_block$
|
|
17729
|
+
if_block1 = create_if_block$l(ctx);
|
|
17703
17730
|
if_block1.c();
|
|
17704
17731
|
transition_in(if_block1, 1);
|
|
17705
17732
|
if_block1.m(if_block1_anchor.parentNode, if_block1_anchor);
|
|
@@ -17740,7 +17767,7 @@ function create_fragment$I(ctx) {
|
|
|
17740
17767
|
};
|
|
17741
17768
|
}
|
|
17742
17769
|
|
|
17743
|
-
function instance$
|
|
17770
|
+
function instance$L($$self, $$props, $$invalidate) {
|
|
17744
17771
|
let { selectClasses = '' } = $$props;
|
|
17745
17772
|
let { defaultOption = null } = $$props;
|
|
17746
17773
|
let { isFirstInvalidInput } = $$props;
|
|
@@ -17827,7 +17854,7 @@ class Select extends SvelteComponent {
|
|
|
17827
17854
|
constructor(options) {
|
|
17828
17855
|
super();
|
|
17829
17856
|
|
|
17830
|
-
init(this, options, instance$
|
|
17857
|
+
init(this, options, instance$L, create_fragment$J, safe_not_equal, {
|
|
17831
17858
|
selectClasses: 0,
|
|
17832
17859
|
defaultOption: 1,
|
|
17833
17860
|
isFirstInvalidInput: 12,
|
|
@@ -17845,7 +17872,7 @@ class Select extends SvelteComponent {
|
|
|
17845
17872
|
|
|
17846
17873
|
/* src/lib/components/compositions/select-floating/floating-label.svelte generated by Svelte v3.59.2 */
|
|
17847
17874
|
|
|
17848
|
-
function create_fragment$
|
|
17875
|
+
function create_fragment$I(ctx) {
|
|
17849
17876
|
let div;
|
|
17850
17877
|
let select;
|
|
17851
17878
|
let t;
|
|
@@ -17928,7 +17955,7 @@ function create_fragment$H(ctx) {
|
|
|
17928
17955
|
};
|
|
17929
17956
|
}
|
|
17930
17957
|
|
|
17931
|
-
function instance$
|
|
17958
|
+
function instance$K($$self, $$props, $$invalidate) {
|
|
17932
17959
|
let { checkValidity = null } = $$props;
|
|
17933
17960
|
let { defaultOption = null } = $$props;
|
|
17934
17961
|
let { message = '' } = $$props;
|
|
@@ -17983,7 +18010,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
17983
18010
|
constructor(options) {
|
|
17984
18011
|
super();
|
|
17985
18012
|
|
|
17986
|
-
init(this, options, instance$
|
|
18013
|
+
init(this, options, instance$K, create_fragment$I, safe_not_equal, {
|
|
17987
18014
|
checkValidity: 10,
|
|
17988
18015
|
defaultOption: 1,
|
|
17989
18016
|
message: 2,
|
|
@@ -18001,7 +18028,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
18001
18028
|
|
|
18002
18029
|
/* src/lib/components/compositions/select-stacked/stacked-label.svelte generated by Svelte v3.59.2 */
|
|
18003
18030
|
|
|
18004
|
-
function create_fragment$
|
|
18031
|
+
function create_fragment$H(ctx) {
|
|
18005
18032
|
let div;
|
|
18006
18033
|
let select;
|
|
18007
18034
|
let t;
|
|
@@ -18083,7 +18110,7 @@ function create_fragment$G(ctx) {
|
|
|
18083
18110
|
};
|
|
18084
18111
|
}
|
|
18085
18112
|
|
|
18086
|
-
function instance$
|
|
18113
|
+
function instance$J($$self, $$props, $$invalidate) {
|
|
18087
18114
|
let { checkValidity = null } = $$props;
|
|
18088
18115
|
let { defaultOption = null } = $$props;
|
|
18089
18116
|
let { message = '' } = $$props;
|
|
@@ -18138,7 +18165,7 @@ let Stacked_label$1 = class Stacked_label extends SvelteComponent {
|
|
|
18138
18165
|
constructor(options) {
|
|
18139
18166
|
super();
|
|
18140
18167
|
|
|
18141
|
-
init(this, options, instance$
|
|
18168
|
+
init(this, options, instance$J, create_fragment$H, safe_not_equal, {
|
|
18142
18169
|
checkValidity: 10,
|
|
18143
18170
|
defaultOption: 1,
|
|
18144
18171
|
message: 2,
|
|
@@ -18205,7 +18232,7 @@ function create_else_block$8(ctx) {
|
|
|
18205
18232
|
}
|
|
18206
18233
|
|
|
18207
18234
|
// (52:0) {#if callbackMetadata?.platform?.displayType === 'radio'}
|
|
18208
|
-
function create_if_block$
|
|
18235
|
+
function create_if_block$k(ctx) {
|
|
18209
18236
|
let radio;
|
|
18210
18237
|
let current;
|
|
18211
18238
|
|
|
@@ -18255,12 +18282,12 @@ function create_if_block$j(ctx) {
|
|
|
18255
18282
|
};
|
|
18256
18283
|
}
|
|
18257
18284
|
|
|
18258
|
-
function create_fragment$
|
|
18285
|
+
function create_fragment$G(ctx) {
|
|
18259
18286
|
let current_block_type_index;
|
|
18260
18287
|
let if_block;
|
|
18261
18288
|
let if_block_anchor;
|
|
18262
18289
|
let current;
|
|
18263
|
-
const if_block_creators = [create_if_block$
|
|
18290
|
+
const if_block_creators = [create_if_block$k, create_else_block$8];
|
|
18264
18291
|
const if_blocks = [];
|
|
18265
18292
|
|
|
18266
18293
|
function select_block_type(ctx, dirty) {
|
|
@@ -18324,7 +18351,7 @@ function create_fragment$F(ctx) {
|
|
|
18324
18351
|
};
|
|
18325
18352
|
}
|
|
18326
18353
|
|
|
18327
|
-
function instance$
|
|
18354
|
+
function instance$I($$self, $$props, $$invalidate) {
|
|
18328
18355
|
const selfSubmitFunction = null;
|
|
18329
18356
|
const stepMetadata = null;
|
|
18330
18357
|
let { callback } = $$props;
|
|
@@ -18412,7 +18439,7 @@ class Choice extends SvelteComponent {
|
|
|
18412
18439
|
constructor(options) {
|
|
18413
18440
|
super();
|
|
18414
18441
|
|
|
18415
|
-
init(this, options, instance$
|
|
18442
|
+
init(this, options, instance$I, create_fragment$G, safe_not_equal, {
|
|
18416
18443
|
selfSubmitFunction: 9,
|
|
18417
18444
|
stepMetadata: 10,
|
|
18418
18445
|
callback: 11,
|
|
@@ -18432,7 +18459,7 @@ class Choice extends SvelteComponent {
|
|
|
18432
18459
|
|
|
18433
18460
|
/* src/lib/components/primitives/grid/grid.svelte generated by Svelte v3.59.2 */
|
|
18434
18461
|
|
|
18435
|
-
function create_fragment$
|
|
18462
|
+
function create_fragment$F(ctx) {
|
|
18436
18463
|
let div;
|
|
18437
18464
|
let div_class_value;
|
|
18438
18465
|
let current;
|
|
@@ -18508,7 +18535,7 @@ function generateClassString(...args) {
|
|
|
18508
18535
|
);
|
|
18509
18536
|
}
|
|
18510
18537
|
|
|
18511
|
-
function instance$
|
|
18538
|
+
function instance$H($$self, $$props, $$invalidate) {
|
|
18512
18539
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
18513
18540
|
let { num = 2 } = $$props;
|
|
18514
18541
|
|
|
@@ -18523,7 +18550,7 @@ function instance$G($$self, $$props, $$invalidate) {
|
|
|
18523
18550
|
class Grid extends SvelteComponent {
|
|
18524
18551
|
constructor(options) {
|
|
18525
18552
|
super();
|
|
18526
|
-
init(this, options, instance$
|
|
18553
|
+
init(this, options, instance$H, create_fragment$F, safe_not_equal, { num: 0 });
|
|
18527
18554
|
}
|
|
18528
18555
|
}
|
|
18529
18556
|
|
|
@@ -18536,7 +18563,7 @@ function get_each_context$7(ctx, list, i) {
|
|
|
18536
18563
|
}
|
|
18537
18564
|
|
|
18538
18565
|
// (81:0) {#if stepMetadata?.platform?.stageName !== 'OneTimePassword'}
|
|
18539
|
-
function create_if_block$
|
|
18566
|
+
function create_if_block$j(ctx) {
|
|
18540
18567
|
let show_if;
|
|
18541
18568
|
let current_block_type_index;
|
|
18542
18569
|
let if_block;
|
|
@@ -19015,10 +19042,10 @@ function create_default_slot$k(ctx) {
|
|
|
19015
19042
|
};
|
|
19016
19043
|
}
|
|
19017
19044
|
|
|
19018
|
-
function create_fragment$
|
|
19045
|
+
function create_fragment$E(ctx) {
|
|
19019
19046
|
let if_block_anchor;
|
|
19020
19047
|
let current;
|
|
19021
|
-
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$
|
|
19048
|
+
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$j(ctx);
|
|
19022
19049
|
|
|
19023
19050
|
return {
|
|
19024
19051
|
c() {
|
|
@@ -19039,7 +19066,7 @@ function create_fragment$D(ctx) {
|
|
|
19039
19066
|
transition_in(if_block, 1);
|
|
19040
19067
|
}
|
|
19041
19068
|
} else {
|
|
19042
|
-
if_block = create_if_block$
|
|
19069
|
+
if_block = create_if_block$j(ctx);
|
|
19043
19070
|
if_block.c();
|
|
19044
19071
|
transition_in(if_block, 1);
|
|
19045
19072
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -19070,7 +19097,7 @@ function create_fragment$D(ctx) {
|
|
|
19070
19097
|
};
|
|
19071
19098
|
}
|
|
19072
19099
|
|
|
19073
|
-
function instance$
|
|
19100
|
+
function instance$G($$self, $$props, $$invalidate) {
|
|
19074
19101
|
const style = {};
|
|
19075
19102
|
let { callback } = $$props;
|
|
19076
19103
|
let { callbackMetadata } = $$props;
|
|
@@ -19189,7 +19216,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19189
19216
|
constructor(options) {
|
|
19190
19217
|
super();
|
|
19191
19218
|
|
|
19192
|
-
init(this, options, instance$
|
|
19219
|
+
init(this, options, instance$G, create_fragment$E, safe_not_equal, {
|
|
19193
19220
|
style: 11,
|
|
19194
19221
|
callback: 12,
|
|
19195
19222
|
callbackMetadata: 0,
|
|
@@ -19205,7 +19232,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19205
19232
|
|
|
19206
19233
|
/* src/lib/journey/callbacks/hidden-value/hidden-value.svelte generated by Svelte v3.59.2 */
|
|
19207
19234
|
|
|
19208
|
-
function instance$
|
|
19235
|
+
function instance$F($$self, $$props, $$invalidate) {
|
|
19209
19236
|
const callback = null;
|
|
19210
19237
|
const callbackMetadata = null;
|
|
19211
19238
|
const selfSubmitFunction = null;
|
|
@@ -19218,7 +19245,7 @@ class Hidden_value extends SvelteComponent {
|
|
|
19218
19245
|
constructor(options) {
|
|
19219
19246
|
super();
|
|
19220
19247
|
|
|
19221
|
-
init(this, options, instance$
|
|
19248
|
+
init(this, options, instance$F, null, safe_not_equal, {
|
|
19222
19249
|
callback: 0,
|
|
19223
19250
|
callbackMetadata: 1,
|
|
19224
19251
|
selfSubmitFunction: 2,
|
|
@@ -19798,7 +19825,7 @@ function create_if_block_1$9(ctx) {
|
|
|
19798
19825
|
}
|
|
19799
19826
|
|
|
19800
19827
|
// (129:0) {#if labelOrder === 'last'}
|
|
19801
|
-
function create_if_block$
|
|
19828
|
+
function create_if_block$i(ctx) {
|
|
19802
19829
|
let label_1;
|
|
19803
19830
|
let current;
|
|
19804
19831
|
|
|
@@ -19865,7 +19892,7 @@ function create_default_slot$j(ctx) {
|
|
|
19865
19892
|
};
|
|
19866
19893
|
}
|
|
19867
19894
|
|
|
19868
|
-
function create_fragment$
|
|
19895
|
+
function create_fragment$D(ctx) {
|
|
19869
19896
|
let t0;
|
|
19870
19897
|
let t1;
|
|
19871
19898
|
let t2;
|
|
@@ -19882,7 +19909,7 @@ function create_fragment$C(ctx) {
|
|
|
19882
19909
|
let if_block4 = /*type*/ ctx[11] === 'password' && create_if_block_3$6(ctx);
|
|
19883
19910
|
let if_block5 = /*type*/ ctx[11] === 'phone' && create_if_block_2$8(ctx);
|
|
19884
19911
|
let if_block6 = /*type*/ ctx[11] === 'text' && create_if_block_1$9(ctx);
|
|
19885
|
-
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$
|
|
19912
|
+
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$i(ctx);
|
|
19886
19913
|
|
|
19887
19914
|
return {
|
|
19888
19915
|
c() {
|
|
@@ -20032,7 +20059,7 @@ function create_fragment$C(ctx) {
|
|
|
20032
20059
|
transition_in(if_block7, 1);
|
|
20033
20060
|
}
|
|
20034
20061
|
} else {
|
|
20035
|
-
if_block7 = create_if_block$
|
|
20062
|
+
if_block7 = create_if_block$i(ctx);
|
|
20036
20063
|
if_block7.c();
|
|
20037
20064
|
transition_in(if_block7, 1);
|
|
20038
20065
|
if_block7.m(if_block7_anchor.parentNode, if_block7_anchor);
|
|
@@ -20079,7 +20106,7 @@ function create_fragment$C(ctx) {
|
|
|
20079
20106
|
};
|
|
20080
20107
|
}
|
|
20081
20108
|
|
|
20082
|
-
function instance$
|
|
20109
|
+
function instance$E($$self, $$props, $$invalidate) {
|
|
20083
20110
|
let { forceValidityFailure = false } = $$props;
|
|
20084
20111
|
let { isFirstInvalidInput } = $$props;
|
|
20085
20112
|
let { inputClasses = '' } = $$props;
|
|
@@ -20223,7 +20250,7 @@ class Input extends SvelteComponent {
|
|
|
20223
20250
|
constructor(options) {
|
|
20224
20251
|
super();
|
|
20225
20252
|
|
|
20226
|
-
init(this, options, instance$
|
|
20253
|
+
init(this, options, instance$E, create_fragment$D, safe_not_equal, {
|
|
20227
20254
|
forceValidityFailure: 1,
|
|
20228
20255
|
isFirstInvalidInput: 13,
|
|
20229
20256
|
inputClasses: 2,
|
|
@@ -20245,7 +20272,7 @@ class Input extends SvelteComponent {
|
|
|
20245
20272
|
const get_input_button_slot_changes$1 = dirty => ({});
|
|
20246
20273
|
const get_input_button_slot_context$1 = ctx => ({});
|
|
20247
20274
|
|
|
20248
|
-
function create_fragment$
|
|
20275
|
+
function create_fragment$C(ctx) {
|
|
20249
20276
|
let div1;
|
|
20250
20277
|
let input;
|
|
20251
20278
|
let updating_value;
|
|
@@ -20420,7 +20447,7 @@ function create_fragment$B(ctx) {
|
|
|
20420
20447
|
};
|
|
20421
20448
|
}
|
|
20422
20449
|
|
|
20423
|
-
function instance$
|
|
20450
|
+
function instance$D($$self, $$props, $$invalidate) {
|
|
20424
20451
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20425
20452
|
let { checkValidity = null } = $$props;
|
|
20426
20453
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20491,7 +20518,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20491
20518
|
constructor(options) {
|
|
20492
20519
|
super();
|
|
20493
20520
|
|
|
20494
|
-
init(this, options, instance$
|
|
20521
|
+
init(this, options, instance$D, create_fragment$C, safe_not_equal, {
|
|
20495
20522
|
checkValidity: 12,
|
|
20496
20523
|
forceValidityFailure: 2,
|
|
20497
20524
|
message: 3,
|
|
@@ -20513,7 +20540,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20513
20540
|
const get_input_button_slot_changes = dirty => ({});
|
|
20514
20541
|
const get_input_button_slot_context = ctx => ({});
|
|
20515
20542
|
|
|
20516
|
-
function create_fragment$
|
|
20543
|
+
function create_fragment$B(ctx) {
|
|
20517
20544
|
let div1;
|
|
20518
20545
|
let input;
|
|
20519
20546
|
let updating_value;
|
|
@@ -20692,7 +20719,7 @@ function create_fragment$A(ctx) {
|
|
|
20692
20719
|
};
|
|
20693
20720
|
}
|
|
20694
20721
|
|
|
20695
|
-
function instance$
|
|
20722
|
+
function instance$C($$self, $$props, $$invalidate) {
|
|
20696
20723
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20697
20724
|
let { checkValidity = null } = $$props;
|
|
20698
20725
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20766,7 +20793,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20766
20793
|
constructor(options) {
|
|
20767
20794
|
super();
|
|
20768
20795
|
|
|
20769
|
-
init(this, options, instance$
|
|
20796
|
+
init(this, options, instance$C, create_fragment$B, safe_not_equal, {
|
|
20770
20797
|
checkValidity: 13,
|
|
20771
20798
|
forceValidityFailure: 2,
|
|
20772
20799
|
isFirstInvalidInput: 3,
|
|
@@ -20787,7 +20814,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20787
20814
|
|
|
20788
20815
|
/* src/lib/components/icons/lock-icon.svelte generated by Svelte v3.59.2 */
|
|
20789
20816
|
|
|
20790
|
-
function create_fragment$
|
|
20817
|
+
function create_fragment$A(ctx) {
|
|
20791
20818
|
let svg;
|
|
20792
20819
|
let path0;
|
|
20793
20820
|
let path1;
|
|
@@ -20868,7 +20895,7 @@ function create_fragment$z(ctx) {
|
|
|
20868
20895
|
};
|
|
20869
20896
|
}
|
|
20870
20897
|
|
|
20871
|
-
function instance$
|
|
20898
|
+
function instance$B($$self, $$props, $$invalidate) {
|
|
20872
20899
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20873
20900
|
let { classes = '' } = $$props;
|
|
20874
20901
|
let { size = '24px' } = $$props;
|
|
@@ -20885,13 +20912,13 @@ function instance$A($$self, $$props, $$invalidate) {
|
|
|
20885
20912
|
class Lock_icon extends SvelteComponent {
|
|
20886
20913
|
constructor(options) {
|
|
20887
20914
|
super();
|
|
20888
|
-
init(this, options, instance$
|
|
20915
|
+
init(this, options, instance$B, create_fragment$A, safe_not_equal, { classes: 0, size: 1 });
|
|
20889
20916
|
}
|
|
20890
20917
|
}
|
|
20891
20918
|
|
|
20892
20919
|
/* src/lib/journey/callbacks/kba/kba-create.svelte generated by Svelte v3.59.2 */
|
|
20893
20920
|
|
|
20894
|
-
function create_if_block$
|
|
20921
|
+
function create_if_block$h(ctx) {
|
|
20895
20922
|
let input;
|
|
20896
20923
|
let current;
|
|
20897
20924
|
|
|
@@ -20936,7 +20963,7 @@ function create_if_block$g(ctx) {
|
|
|
20936
20963
|
};
|
|
20937
20964
|
}
|
|
20938
20965
|
|
|
20939
|
-
function create_fragment$
|
|
20966
|
+
function create_fragment$z(ctx) {
|
|
20940
20967
|
let fieldset;
|
|
20941
20968
|
let legend;
|
|
20942
20969
|
let t0;
|
|
@@ -20972,7 +20999,7 @@ function create_fragment$y(ctx) {
|
|
|
20972
20999
|
}
|
|
20973
21000
|
});
|
|
20974
21001
|
|
|
20975
|
-
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$
|
|
21002
|
+
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$h(ctx);
|
|
20976
21003
|
|
|
20977
21004
|
function input_value_binding(value) {
|
|
20978
21005
|
/*input_value_binding*/ ctx[21](value);
|
|
@@ -21051,7 +21078,7 @@ function create_fragment$y(ctx) {
|
|
|
21051
21078
|
transition_in(if_block, 1);
|
|
21052
21079
|
}
|
|
21053
21080
|
} else {
|
|
21054
|
-
if_block = create_if_block$
|
|
21081
|
+
if_block = create_if_block$h(ctx);
|
|
21055
21082
|
if_block.c();
|
|
21056
21083
|
transition_in(if_block, 1);
|
|
21057
21084
|
if_block.m(fieldset, t6);
|
|
@@ -21109,7 +21136,7 @@ function create_fragment$y(ctx) {
|
|
|
21109
21136
|
};
|
|
21110
21137
|
}
|
|
21111
21138
|
|
|
21112
|
-
function instance$
|
|
21139
|
+
function instance$A($$self, $$props, $$invalidate) {
|
|
21113
21140
|
let $value;
|
|
21114
21141
|
const selfSubmitFunction = null;
|
|
21115
21142
|
const stepMetadata = null;
|
|
@@ -21265,7 +21292,7 @@ class Kba_create extends SvelteComponent {
|
|
|
21265
21292
|
constructor(options) {
|
|
21266
21293
|
super();
|
|
21267
21294
|
|
|
21268
|
-
init(this, options, instance$
|
|
21295
|
+
init(this, options, instance$A, create_fragment$z, safe_not_equal, {
|
|
21269
21296
|
selfSubmitFunction: 13,
|
|
21270
21297
|
stepMetadata: 14,
|
|
21271
21298
|
callback: 15,
|
|
@@ -21338,7 +21365,7 @@ function create_key_block$4(ctx) {
|
|
|
21338
21365
|
};
|
|
21339
21366
|
}
|
|
21340
21367
|
|
|
21341
|
-
function create_fragment$
|
|
21368
|
+
function create_fragment$y(ctx) {
|
|
21342
21369
|
let previous_key = /*callback*/ ctx[0];
|
|
21343
21370
|
let key_block_anchor;
|
|
21344
21371
|
let current;
|
|
@@ -21383,7 +21410,7 @@ function create_fragment$x(ctx) {
|
|
|
21383
21410
|
};
|
|
21384
21411
|
}
|
|
21385
21412
|
|
|
21386
|
-
function instance$
|
|
21413
|
+
function instance$z($$self, $$props, $$invalidate) {
|
|
21387
21414
|
const selfSubmitFunction = null;
|
|
21388
21415
|
const stepMetadata = null;
|
|
21389
21416
|
let { callback } = $$props;
|
|
@@ -21435,7 +21462,7 @@ class Name extends SvelteComponent {
|
|
|
21435
21462
|
constructor(options) {
|
|
21436
21463
|
super();
|
|
21437
21464
|
|
|
21438
|
-
init(this, options, instance$
|
|
21465
|
+
init(this, options, instance$z, create_fragment$y, safe_not_equal, {
|
|
21439
21466
|
selfSubmitFunction: 8,
|
|
21440
21467
|
stepMetadata: 9,
|
|
21441
21468
|
callback: 0,
|
|
@@ -21537,7 +21564,7 @@ function create_else_block$6(ctx) {
|
|
|
21537
21564
|
}
|
|
21538
21565
|
|
|
21539
21566
|
// (6:0) {#if !visible}
|
|
21540
|
-
function create_if_block$
|
|
21567
|
+
function create_if_block$g(ctx) {
|
|
21541
21568
|
let svg;
|
|
21542
21569
|
let path0;
|
|
21543
21570
|
let path1;
|
|
@@ -21618,12 +21645,12 @@ function create_if_block$f(ctx) {
|
|
|
21618
21645
|
};
|
|
21619
21646
|
}
|
|
21620
21647
|
|
|
21621
|
-
function create_fragment$
|
|
21648
|
+
function create_fragment$x(ctx) {
|
|
21622
21649
|
let current_block_type_index;
|
|
21623
21650
|
let if_block;
|
|
21624
21651
|
let if_block_anchor;
|
|
21625
21652
|
let current;
|
|
21626
|
-
const if_block_creators = [create_if_block$
|
|
21653
|
+
const if_block_creators = [create_if_block$g, create_else_block$6];
|
|
21627
21654
|
const if_blocks = [];
|
|
21628
21655
|
|
|
21629
21656
|
function select_block_type(ctx, dirty) {
|
|
@@ -21687,7 +21714,7 @@ function create_fragment$w(ctx) {
|
|
|
21687
21714
|
};
|
|
21688
21715
|
}
|
|
21689
21716
|
|
|
21690
|
-
function instance$
|
|
21717
|
+
function instance$y($$self, $$props, $$invalidate) {
|
|
21691
21718
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21692
21719
|
let { classes = '' } = $$props;
|
|
21693
21720
|
let { size = '24px' } = $$props;
|
|
@@ -21706,7 +21733,7 @@ function instance$x($$self, $$props, $$invalidate) {
|
|
|
21706
21733
|
class Eye_icon extends SvelteComponent {
|
|
21707
21734
|
constructor(options) {
|
|
21708
21735
|
super();
|
|
21709
|
-
init(this, options, instance$
|
|
21736
|
+
init(this, options, instance$y, create_fragment$x, safe_not_equal, { classes: 0, size: 1, visible: 2 });
|
|
21710
21737
|
}
|
|
21711
21738
|
}
|
|
21712
21739
|
|
|
@@ -21852,7 +21879,7 @@ function create_input_button_slot$1(ctx) {
|
|
|
21852
21879
|
};
|
|
21853
21880
|
}
|
|
21854
21881
|
|
|
21855
|
-
function create_fragment$
|
|
21882
|
+
function create_fragment$w(ctx) {
|
|
21856
21883
|
let input;
|
|
21857
21884
|
let current;
|
|
21858
21885
|
|
|
@@ -21923,7 +21950,7 @@ function create_fragment$v(ctx) {
|
|
|
21923
21950
|
};
|
|
21924
21951
|
}
|
|
21925
21952
|
|
|
21926
|
-
function instance$
|
|
21953
|
+
function instance$x($$self, $$props, $$invalidate) {
|
|
21927
21954
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21928
21955
|
let { forceValidityFailure = false } = $$props;
|
|
21929
21956
|
let { passwordsDoNotMatch = false } = $$props;
|
|
@@ -22010,7 +22037,7 @@ class Confirm_input extends SvelteComponent {
|
|
|
22010
22037
|
constructor(options) {
|
|
22011
22038
|
super();
|
|
22012
22039
|
|
|
22013
|
-
init(this, options, instance$
|
|
22040
|
+
init(this, options, instance$x, create_fragment$w, safe_not_equal, {
|
|
22014
22041
|
forceValidityFailure: 0,
|
|
22015
22042
|
passwordsDoNotMatch: 1,
|
|
22016
22043
|
isRequired: 2,
|
|
@@ -22166,7 +22193,7 @@ function create_input_button_slot(ctx) {
|
|
|
22166
22193
|
}
|
|
22167
22194
|
|
|
22168
22195
|
// (102:2) {#if callbackMetadata?.platform?.confirmPassword}
|
|
22169
|
-
function create_if_block$
|
|
22196
|
+
function create_if_block$f(ctx) {
|
|
22170
22197
|
let confirminput;
|
|
22171
22198
|
let current;
|
|
22172
22199
|
|
|
@@ -22249,7 +22276,7 @@ function create_key_block$3(ctx) {
|
|
|
22249
22276
|
}
|
|
22250
22277
|
});
|
|
22251
22278
|
|
|
22252
|
-
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$
|
|
22279
|
+
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$f(ctx);
|
|
22253
22280
|
|
|
22254
22281
|
return {
|
|
22255
22282
|
c() {
|
|
@@ -22298,7 +22325,7 @@ function create_key_block$3(ctx) {
|
|
|
22298
22325
|
transition_in(if_block, 1);
|
|
22299
22326
|
}
|
|
22300
22327
|
} else {
|
|
22301
|
-
if_block = create_if_block$
|
|
22328
|
+
if_block = create_if_block$f(ctx);
|
|
22302
22329
|
if_block.c();
|
|
22303
22330
|
transition_in(if_block, 1);
|
|
22304
22331
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -22333,7 +22360,7 @@ function create_key_block$3(ctx) {
|
|
|
22333
22360
|
};
|
|
22334
22361
|
}
|
|
22335
22362
|
|
|
22336
|
-
function create_fragment$
|
|
22363
|
+
function create_fragment$v(ctx) {
|
|
22337
22364
|
let previous_key = /*callback*/ ctx[1];
|
|
22338
22365
|
let key_block_anchor;
|
|
22339
22366
|
let current;
|
|
@@ -22378,7 +22405,7 @@ function create_fragment$u(ctx) {
|
|
|
22378
22405
|
};
|
|
22379
22406
|
}
|
|
22380
22407
|
|
|
22381
|
-
function instance$
|
|
22408
|
+
function instance$w($$self, $$props, $$invalidate) {
|
|
22382
22409
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22383
22410
|
let { callback } = $$props;
|
|
22384
22411
|
let { callbackMetadata } = $$props;
|
|
@@ -22503,7 +22530,7 @@ class Base extends SvelteComponent {
|
|
|
22503
22530
|
constructor(options) {
|
|
22504
22531
|
super();
|
|
22505
22532
|
|
|
22506
|
-
init(this, options, instance$
|
|
22533
|
+
init(this, options, instance$w, create_fragment$v, safe_not_equal, {
|
|
22507
22534
|
callback: 1,
|
|
22508
22535
|
callbackMetadata: 2,
|
|
22509
22536
|
key: 0,
|
|
@@ -22518,7 +22545,7 @@ class Base extends SvelteComponent {
|
|
|
22518
22545
|
|
|
22519
22546
|
/* src/lib/journey/callbacks/password/password.svelte generated by Svelte v3.59.2 */
|
|
22520
22547
|
|
|
22521
|
-
function create_fragment$
|
|
22548
|
+
function create_fragment$u(ctx) {
|
|
22522
22549
|
let base;
|
|
22523
22550
|
let current;
|
|
22524
22551
|
|
|
@@ -22562,7 +22589,7 @@ function create_fragment$t(ctx) {
|
|
|
22562
22589
|
};
|
|
22563
22590
|
}
|
|
22564
22591
|
|
|
22565
|
-
function instance$
|
|
22592
|
+
function instance$v($$self, $$props, $$invalidate) {
|
|
22566
22593
|
const selfSubmitFunction = null;
|
|
22567
22594
|
const stepMetadata = null;
|
|
22568
22595
|
let { callback } = $$props;
|
|
@@ -22592,7 +22619,7 @@ class Password extends SvelteComponent {
|
|
|
22592
22619
|
constructor(options) {
|
|
22593
22620
|
super();
|
|
22594
22621
|
|
|
22595
|
-
init(this, options, instance$
|
|
22622
|
+
init(this, options, instance$v, create_fragment$u, safe_not_equal, {
|
|
22596
22623
|
selfSubmitFunction: 4,
|
|
22597
22624
|
stepMetadata: 5,
|
|
22598
22625
|
callback: 0,
|
|
@@ -22612,7 +22639,7 @@ class Password extends SvelteComponent {
|
|
|
22612
22639
|
|
|
22613
22640
|
/* src/lib/components/primitives/text/text.svelte generated by Svelte v3.59.2 */
|
|
22614
22641
|
|
|
22615
|
-
function create_fragment$
|
|
22642
|
+
function create_fragment$t(ctx) {
|
|
22616
22643
|
let p;
|
|
22617
22644
|
let p_class_value;
|
|
22618
22645
|
let current;
|
|
@@ -22670,7 +22697,7 @@ function create_fragment$s(ctx) {
|
|
|
22670
22697
|
};
|
|
22671
22698
|
}
|
|
22672
22699
|
|
|
22673
|
-
function instance$
|
|
22700
|
+
function instance$u($$self, $$props, $$invalidate) {
|
|
22674
22701
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22675
22702
|
let { classes = '' } = $$props;
|
|
22676
22703
|
|
|
@@ -22685,7 +22712,7 @@ function instance$t($$self, $$props, $$invalidate) {
|
|
|
22685
22712
|
class Text extends SvelteComponent {
|
|
22686
22713
|
constructor(options) {
|
|
22687
22714
|
super();
|
|
22688
|
-
init(this, options, instance$
|
|
22715
|
+
init(this, options, instance$u, create_fragment$t, safe_not_equal, { classes: 0 });
|
|
22689
22716
|
}
|
|
22690
22717
|
}
|
|
22691
22718
|
|
|
@@ -22710,7 +22737,7 @@ function create_default_slot$g(ctx) {
|
|
|
22710
22737
|
};
|
|
22711
22738
|
}
|
|
22712
22739
|
|
|
22713
|
-
function create_fragment$
|
|
22740
|
+
function create_fragment$s(ctx) {
|
|
22714
22741
|
let div;
|
|
22715
22742
|
let spinner;
|
|
22716
22743
|
let t;
|
|
@@ -22774,7 +22801,7 @@ function create_fragment$r(ctx) {
|
|
|
22774
22801
|
};
|
|
22775
22802
|
}
|
|
22776
22803
|
|
|
22777
|
-
function instance$
|
|
22804
|
+
function instance$t($$self, $$props, $$invalidate) {
|
|
22778
22805
|
const stepMetadata = null;
|
|
22779
22806
|
const style = {};
|
|
22780
22807
|
let { callback } = $$props;
|
|
@@ -22816,7 +22843,7 @@ class Polling_wait extends SvelteComponent {
|
|
|
22816
22843
|
constructor(options) {
|
|
22817
22844
|
super();
|
|
22818
22845
|
|
|
22819
|
-
init(this, options, instance$
|
|
22846
|
+
init(this, options, instance$t, create_fragment$s, safe_not_equal, {
|
|
22820
22847
|
stepMetadata: 3,
|
|
22821
22848
|
style: 4,
|
|
22822
22849
|
callback: 1,
|
|
@@ -22855,7 +22882,7 @@ function create_default_slot$f(ctx) {
|
|
|
22855
22882
|
};
|
|
22856
22883
|
}
|
|
22857
22884
|
|
|
22858
|
-
function create_fragment$
|
|
22885
|
+
function create_fragment$r(ctx) {
|
|
22859
22886
|
let div;
|
|
22860
22887
|
let spinner;
|
|
22861
22888
|
let t;
|
|
@@ -22920,7 +22947,7 @@ function create_fragment$q(ctx) {
|
|
|
22920
22947
|
};
|
|
22921
22948
|
}
|
|
22922
22949
|
|
|
22923
|
-
function instance$
|
|
22950
|
+
function instance$s($$self, $$props, $$invalidate) {
|
|
22924
22951
|
const callbackMetadata = null;
|
|
22925
22952
|
const selfSubmitFunction = null;
|
|
22926
22953
|
const stepMetadata = null;
|
|
@@ -22947,7 +22974,7 @@ class Redirect extends SvelteComponent {
|
|
|
22947
22974
|
constructor(options) {
|
|
22948
22975
|
super();
|
|
22949
22976
|
|
|
22950
|
-
init(this, options, instance$
|
|
22977
|
+
init(this, options, instance$s, create_fragment$r, safe_not_equal, {
|
|
22951
22978
|
callbackMetadata: 1,
|
|
22952
22979
|
selfSubmitFunction: 2,
|
|
22953
22980
|
stepMetadata: 3,
|
|
@@ -22975,7 +23002,7 @@ class Redirect extends SvelteComponent {
|
|
|
22975
23002
|
|
|
22976
23003
|
/* src/lib/components/icons/apple-icon.svelte generated by Svelte v3.59.2 */
|
|
22977
23004
|
|
|
22978
|
-
function create_fragment$
|
|
23005
|
+
function create_fragment$q(ctx) {
|
|
22979
23006
|
let svg;
|
|
22980
23007
|
let path0;
|
|
22981
23008
|
let path1;
|
|
@@ -23020,7 +23047,7 @@ function create_fragment$p(ctx) {
|
|
|
23020
23047
|
};
|
|
23021
23048
|
}
|
|
23022
23049
|
|
|
23023
|
-
function instance$
|
|
23050
|
+
function instance$r($$self, $$props, $$invalidate) {
|
|
23024
23051
|
let { classes = '' } = $$props;
|
|
23025
23052
|
let { size = '24px' } = $$props;
|
|
23026
23053
|
|
|
@@ -23035,13 +23062,13 @@ function instance$q($$self, $$props, $$invalidate) {
|
|
|
23035
23062
|
class Apple_icon extends SvelteComponent {
|
|
23036
23063
|
constructor(options) {
|
|
23037
23064
|
super();
|
|
23038
|
-
init(this, options, instance$
|
|
23065
|
+
init(this, options, instance$r, create_fragment$q, safe_not_equal, { classes: 0, size: 1 });
|
|
23039
23066
|
}
|
|
23040
23067
|
}
|
|
23041
23068
|
|
|
23042
23069
|
/* src/lib/components/icons/facebook-icon.svelte generated by Svelte v3.59.2 */
|
|
23043
23070
|
|
|
23044
|
-
function create_fragment$
|
|
23071
|
+
function create_fragment$p(ctx) {
|
|
23045
23072
|
let svg;
|
|
23046
23073
|
let path;
|
|
23047
23074
|
|
|
@@ -23082,7 +23109,7 @@ function create_fragment$o(ctx) {
|
|
|
23082
23109
|
};
|
|
23083
23110
|
}
|
|
23084
23111
|
|
|
23085
|
-
function instance$
|
|
23112
|
+
function instance$q($$self, $$props, $$invalidate) {
|
|
23086
23113
|
let { classes = '' } = $$props;
|
|
23087
23114
|
let { size = '24px' } = $$props;
|
|
23088
23115
|
|
|
@@ -23097,13 +23124,13 @@ function instance$p($$self, $$props, $$invalidate) {
|
|
|
23097
23124
|
class Facebook_icon extends SvelteComponent {
|
|
23098
23125
|
constructor(options) {
|
|
23099
23126
|
super();
|
|
23100
|
-
init(this, options, instance$
|
|
23127
|
+
init(this, options, instance$q, create_fragment$p, safe_not_equal, { classes: 0, size: 1 });
|
|
23101
23128
|
}
|
|
23102
23129
|
}
|
|
23103
23130
|
|
|
23104
23131
|
/* src/lib/components/icons/google-icon.svelte generated by Svelte v3.59.2 */
|
|
23105
23132
|
|
|
23106
|
-
function create_fragment$
|
|
23133
|
+
function create_fragment$o(ctx) {
|
|
23107
23134
|
let svg;
|
|
23108
23135
|
let g;
|
|
23109
23136
|
let path0;
|
|
@@ -23168,7 +23195,7 @@ function create_fragment$n(ctx) {
|
|
|
23168
23195
|
};
|
|
23169
23196
|
}
|
|
23170
23197
|
|
|
23171
|
-
function instance$
|
|
23198
|
+
function instance$p($$self, $$props, $$invalidate) {
|
|
23172
23199
|
let { classes = '' } = $$props;
|
|
23173
23200
|
let { size = '24px' } = $$props;
|
|
23174
23201
|
|
|
@@ -23183,7 +23210,7 @@ function instance$o($$self, $$props, $$invalidate) {
|
|
|
23183
23210
|
class Google_icon extends SvelteComponent {
|
|
23184
23211
|
constructor(options) {
|
|
23185
23212
|
super();
|
|
23186
|
-
init(this, options, instance$
|
|
23213
|
+
init(this, options, instance$p, create_fragment$o, safe_not_equal, { classes: 0, size: 1 });
|
|
23187
23214
|
}
|
|
23188
23215
|
}
|
|
23189
23216
|
|
|
@@ -23674,7 +23701,7 @@ function create_each_block$6(ctx) {
|
|
|
23674
23701
|
}
|
|
23675
23702
|
|
|
23676
23703
|
// (81:0) {#if stepMetadata && stepMetadata.derived.numOfCallbacks > 1}
|
|
23677
|
-
function create_if_block$
|
|
23704
|
+
function create_if_block$e(ctx) {
|
|
23678
23705
|
let grid;
|
|
23679
23706
|
let current;
|
|
23680
23707
|
|
|
@@ -23728,7 +23755,7 @@ function create_default_slot$e(ctx) {
|
|
|
23728
23755
|
};
|
|
23729
23756
|
}
|
|
23730
23757
|
|
|
23731
|
-
function create_fragment$
|
|
23758
|
+
function create_fragment$n(ctx) {
|
|
23732
23759
|
let t;
|
|
23733
23760
|
let if_block_anchor;
|
|
23734
23761
|
let current;
|
|
@@ -23743,7 +23770,7 @@ function create_fragment$m(ctx) {
|
|
|
23743
23770
|
each_blocks[i] = null;
|
|
23744
23771
|
});
|
|
23745
23772
|
|
|
23746
|
-
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$
|
|
23773
|
+
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$e(ctx);
|
|
23747
23774
|
|
|
23748
23775
|
return {
|
|
23749
23776
|
c() {
|
|
@@ -23801,7 +23828,7 @@ function create_fragment$m(ctx) {
|
|
|
23801
23828
|
transition_in(if_block, 1);
|
|
23802
23829
|
}
|
|
23803
23830
|
} else {
|
|
23804
|
-
if_block = create_if_block$
|
|
23831
|
+
if_block = create_if_block$e(ctx);
|
|
23805
23832
|
if_block.c();
|
|
23806
23833
|
transition_in(if_block, 1);
|
|
23807
23834
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -23845,7 +23872,7 @@ function create_fragment$m(ctx) {
|
|
|
23845
23872
|
};
|
|
23846
23873
|
}
|
|
23847
23874
|
|
|
23848
|
-
function instance$
|
|
23875
|
+
function instance$o($$self, $$props, $$invalidate) {
|
|
23849
23876
|
const style = {};
|
|
23850
23877
|
let { callback } = $$props;
|
|
23851
23878
|
let { callbackMetadata } = $$props;
|
|
@@ -23915,7 +23942,7 @@ class Select_idp extends SvelteComponent {
|
|
|
23915
23942
|
constructor(options) {
|
|
23916
23943
|
super();
|
|
23917
23944
|
|
|
23918
|
-
init(this, options, instance$
|
|
23945
|
+
init(this, options, instance$o, create_fragment$n, safe_not_equal, {
|
|
23919
23946
|
style: 4,
|
|
23920
23947
|
callback: 5,
|
|
23921
23948
|
callbackMetadata: 3,
|
|
@@ -24042,7 +24069,7 @@ function create_if_block_1$7(ctx) {
|
|
|
24042
24069
|
}
|
|
24043
24070
|
|
|
24044
24071
|
// (24:0) {#if simplifiedFailures.length}
|
|
24045
|
-
function create_if_block$
|
|
24072
|
+
function create_if_block$d(ctx) {
|
|
24046
24073
|
let div;
|
|
24047
24074
|
let p;
|
|
24048
24075
|
let t0;
|
|
@@ -24189,12 +24216,12 @@ function create_each_block$5(ctx) {
|
|
|
24189
24216
|
};
|
|
24190
24217
|
}
|
|
24191
24218
|
|
|
24192
|
-
function create_fragment$
|
|
24219
|
+
function create_fragment$m(ctx) {
|
|
24193
24220
|
let current_block_type_index;
|
|
24194
24221
|
let if_block;
|
|
24195
24222
|
let if_block_anchor;
|
|
24196
24223
|
let current;
|
|
24197
|
-
const if_block_creators = [create_if_block$
|
|
24224
|
+
const if_block_creators = [create_if_block$d, create_if_block_1$7];
|
|
24198
24225
|
const if_blocks = [];
|
|
24199
24226
|
|
|
24200
24227
|
function select_block_type(ctx, dirty) {
|
|
@@ -24275,7 +24302,7 @@ function create_fragment$l(ctx) {
|
|
|
24275
24302
|
};
|
|
24276
24303
|
}
|
|
24277
24304
|
|
|
24278
|
-
function instance$
|
|
24305
|
+
function instance$n($$self, $$props, $$invalidate) {
|
|
24279
24306
|
let { callback } = $$props;
|
|
24280
24307
|
let { key = undefined } = $$props;
|
|
24281
24308
|
let { label } = $$props;
|
|
@@ -24333,7 +24360,7 @@ class Policies extends SvelteComponent {
|
|
|
24333
24360
|
constructor(options) {
|
|
24334
24361
|
super();
|
|
24335
24362
|
|
|
24336
|
-
init(this, options, instance$
|
|
24363
|
+
init(this, options, instance$n, create_fragment$m, safe_not_equal, {
|
|
24337
24364
|
callback: 5,
|
|
24338
24365
|
key: 0,
|
|
24339
24366
|
label: 6,
|
|
@@ -24457,7 +24484,7 @@ function create_key_block$2(ctx) {
|
|
|
24457
24484
|
};
|
|
24458
24485
|
}
|
|
24459
24486
|
|
|
24460
|
-
function create_fragment$
|
|
24487
|
+
function create_fragment$l(ctx) {
|
|
24461
24488
|
let previous_key = /*callback*/ ctx[0];
|
|
24462
24489
|
let key_block_anchor;
|
|
24463
24490
|
let current;
|
|
@@ -24502,7 +24529,7 @@ function create_fragment$k(ctx) {
|
|
|
24502
24529
|
};
|
|
24503
24530
|
}
|
|
24504
24531
|
|
|
24505
|
-
function instance$
|
|
24532
|
+
function instance$m($$self, $$props, $$invalidate) {
|
|
24506
24533
|
const selfSubmitFunction = null;
|
|
24507
24534
|
const stepMetadata = null;
|
|
24508
24535
|
let { callback } = $$props;
|
|
@@ -24578,7 +24605,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24578
24605
|
constructor(options) {
|
|
24579
24606
|
super();
|
|
24580
24607
|
|
|
24581
|
-
init(this, options, instance$
|
|
24608
|
+
init(this, options, instance$m, create_fragment$l, safe_not_equal, {
|
|
24582
24609
|
selfSubmitFunction: 11,
|
|
24583
24610
|
stepMetadata: 12,
|
|
24584
24611
|
callback: 0,
|
|
@@ -24598,7 +24625,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24598
24625
|
|
|
24599
24626
|
/* src/lib/components/primitives/link/link.svelte generated by Svelte v3.59.2 */
|
|
24600
24627
|
|
|
24601
|
-
function create_fragment$
|
|
24628
|
+
function create_fragment$k(ctx) {
|
|
24602
24629
|
let a;
|
|
24603
24630
|
let a_class_value;
|
|
24604
24631
|
let current;
|
|
@@ -24666,7 +24693,7 @@ function create_fragment$j(ctx) {
|
|
|
24666
24693
|
};
|
|
24667
24694
|
}
|
|
24668
24695
|
|
|
24669
|
-
function instance$
|
|
24696
|
+
function instance$l($$self, $$props, $$invalidate) {
|
|
24670
24697
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
24671
24698
|
let { classes = '' } = $$props;
|
|
24672
24699
|
let { href } = $$props;
|
|
@@ -24685,7 +24712,7 @@ function instance$k($$self, $$props, $$invalidate) {
|
|
|
24685
24712
|
class Link extends SvelteComponent {
|
|
24686
24713
|
constructor(options) {
|
|
24687
24714
|
super();
|
|
24688
|
-
init(this, options, instance$
|
|
24715
|
+
init(this, options, instance$l, create_fragment$k, safe_not_equal, { classes: 0, href: 1, target: 2 });
|
|
24689
24716
|
}
|
|
24690
24717
|
}
|
|
24691
24718
|
|
|
@@ -24713,7 +24740,7 @@ function create_else_block$5(ctx) {
|
|
|
24713
24740
|
}
|
|
24714
24741
|
|
|
24715
24742
|
// (27:0) {#if $linksStore?.termsAndConditions}
|
|
24716
|
-
function create_if_block$
|
|
24743
|
+
function create_if_block$c(ctx) {
|
|
24717
24744
|
let link;
|
|
24718
24745
|
let t;
|
|
24719
24746
|
let checkbox;
|
|
@@ -24839,12 +24866,12 @@ function create_default_slot$c(ctx) {
|
|
|
24839
24866
|
};
|
|
24840
24867
|
}
|
|
24841
24868
|
|
|
24842
|
-
function create_fragment$
|
|
24869
|
+
function create_fragment$j(ctx) {
|
|
24843
24870
|
let current_block_type_index;
|
|
24844
24871
|
let if_block;
|
|
24845
24872
|
let if_block_anchor;
|
|
24846
24873
|
let current;
|
|
24847
|
-
const if_block_creators = [create_if_block$
|
|
24874
|
+
const if_block_creators = [create_if_block$c, create_else_block$5];
|
|
24848
24875
|
const if_blocks = [];
|
|
24849
24876
|
|
|
24850
24877
|
function select_block_type(ctx, dirty) {
|
|
@@ -24908,7 +24935,7 @@ function create_fragment$i(ctx) {
|
|
|
24908
24935
|
};
|
|
24909
24936
|
}
|
|
24910
24937
|
|
|
24911
|
-
function instance$
|
|
24938
|
+
function instance$k($$self, $$props, $$invalidate) {
|
|
24912
24939
|
let $linksStore;
|
|
24913
24940
|
component_subscribe($$self, linksStore, $$value => $$invalidate(2, $linksStore = $$value));
|
|
24914
24941
|
const selfSubmitFunction = null;
|
|
@@ -24962,7 +24989,7 @@ class Terms_conditions extends SvelteComponent {
|
|
|
24962
24989
|
constructor(options) {
|
|
24963
24990
|
super();
|
|
24964
24991
|
|
|
24965
|
-
init(this, options, instance$
|
|
24992
|
+
init(this, options, instance$k, create_fragment$j, safe_not_equal, {
|
|
24966
24993
|
selfSubmitFunction: 5,
|
|
24967
24994
|
stepMetadata: 6,
|
|
24968
24995
|
style: 7,
|
|
@@ -25030,7 +25057,7 @@ function create_else_block$4(ctx) {
|
|
|
25030
25057
|
}
|
|
25031
25058
|
|
|
25032
25059
|
// (32:0) {#if callbackMessageType === 'info'}
|
|
25033
|
-
function create_if_block$
|
|
25060
|
+
function create_if_block$b(ctx) {
|
|
25034
25061
|
let text_1;
|
|
25035
25062
|
let current;
|
|
25036
25063
|
|
|
@@ -25119,12 +25146,12 @@ function create_default_slot$b(ctx) {
|
|
|
25119
25146
|
};
|
|
25120
25147
|
}
|
|
25121
25148
|
|
|
25122
|
-
function create_fragment$
|
|
25149
|
+
function create_fragment$i(ctx) {
|
|
25123
25150
|
let current_block_type_index;
|
|
25124
25151
|
let if_block;
|
|
25125
25152
|
let if_block_anchor;
|
|
25126
25153
|
let current;
|
|
25127
|
-
const if_block_creators = [create_if_block$
|
|
25154
|
+
const if_block_creators = [create_if_block$b, create_else_block$4];
|
|
25128
25155
|
const if_blocks = [];
|
|
25129
25156
|
|
|
25130
25157
|
function select_block_type(ctx, dirty) {
|
|
@@ -25201,7 +25228,7 @@ function getCallbackMessage(messageType) {
|
|
|
25201
25228
|
}
|
|
25202
25229
|
}
|
|
25203
25230
|
|
|
25204
|
-
function instance$
|
|
25231
|
+
function instance$j($$self, $$props, $$invalidate) {
|
|
25205
25232
|
const callbackMetadata = null;
|
|
25206
25233
|
const selfSubmitFunction = null;
|
|
25207
25234
|
const stepMetadata = null;
|
|
@@ -25241,7 +25268,7 @@ class Text_output extends SvelteComponent {
|
|
|
25241
25268
|
constructor(options) {
|
|
25242
25269
|
super();
|
|
25243
25270
|
|
|
25244
|
-
init(this, options, instance$
|
|
25271
|
+
init(this, options, instance$j, create_fragment$i, safe_not_equal, {
|
|
25245
25272
|
callbackMetadata: 2,
|
|
25246
25273
|
selfSubmitFunction: 3,
|
|
25247
25274
|
stepMetadata: 4,
|
|
@@ -25269,7 +25296,7 @@ class Text_output extends SvelteComponent {
|
|
|
25269
25296
|
|
|
25270
25297
|
/* src/lib/journey/callbacks/unknown/unknown.svelte generated by Svelte v3.59.2 */
|
|
25271
25298
|
|
|
25272
|
-
function create_fragment$
|
|
25299
|
+
function create_fragment$h(ctx) {
|
|
25273
25300
|
let p;
|
|
25274
25301
|
|
|
25275
25302
|
return {
|
|
@@ -25290,7 +25317,7 @@ function create_fragment$g(ctx) {
|
|
|
25290
25317
|
};
|
|
25291
25318
|
}
|
|
25292
25319
|
|
|
25293
|
-
function instance$
|
|
25320
|
+
function instance$i($$self, $$props, $$invalidate) {
|
|
25294
25321
|
const callbackMetadata = null;
|
|
25295
25322
|
const selfSubmitFunction = null;
|
|
25296
25323
|
const stepMetadata = null;
|
|
@@ -25309,7 +25336,7 @@ class Unknown extends SvelteComponent {
|
|
|
25309
25336
|
constructor(options) {
|
|
25310
25337
|
super();
|
|
25311
25338
|
|
|
25312
|
-
init(this, options, instance$
|
|
25339
|
+
init(this, options, instance$i, create_fragment$h, safe_not_equal, {
|
|
25313
25340
|
callbackMetadata: 1,
|
|
25314
25341
|
selfSubmitFunction: 2,
|
|
25315
25342
|
stepMetadata: 3,
|
|
@@ -25436,7 +25463,7 @@ function create_key_block$1(ctx) {
|
|
|
25436
25463
|
};
|
|
25437
25464
|
}
|
|
25438
25465
|
|
|
25439
|
-
function create_fragment$
|
|
25466
|
+
function create_fragment$g(ctx) {
|
|
25440
25467
|
let previous_key = /*callback*/ ctx[0];
|
|
25441
25468
|
let key_block_anchor;
|
|
25442
25469
|
let current;
|
|
@@ -25481,7 +25508,7 @@ function create_fragment$f(ctx) {
|
|
|
25481
25508
|
};
|
|
25482
25509
|
}
|
|
25483
25510
|
|
|
25484
|
-
function instance$
|
|
25511
|
+
function instance$h($$self, $$props, $$invalidate) {
|
|
25485
25512
|
const selfSubmitFunction = null;
|
|
25486
25513
|
const stepMetadata = null;
|
|
25487
25514
|
let { callback } = $$props;
|
|
@@ -25533,7 +25560,7 @@ class Validated_create_password extends SvelteComponent {
|
|
|
25533
25560
|
constructor(options) {
|
|
25534
25561
|
super();
|
|
25535
25562
|
|
|
25536
|
-
init(this, options, instance$
|
|
25563
|
+
init(this, options, instance$h, create_fragment$g, safe_not_equal, {
|
|
25537
25564
|
selfSubmitFunction: 7,
|
|
25538
25565
|
stepMetadata: 8,
|
|
25539
25566
|
callback: 0,
|
|
@@ -25667,7 +25694,7 @@ function create_key_block(ctx) {
|
|
|
25667
25694
|
};
|
|
25668
25695
|
}
|
|
25669
25696
|
|
|
25670
|
-
function create_fragment$
|
|
25697
|
+
function create_fragment$f(ctx) {
|
|
25671
25698
|
let previous_key = /*callback*/ ctx[0];
|
|
25672
25699
|
let key_block_anchor;
|
|
25673
25700
|
let current;
|
|
@@ -25712,7 +25739,7 @@ function create_fragment$e(ctx) {
|
|
|
25712
25739
|
};
|
|
25713
25740
|
}
|
|
25714
25741
|
|
|
25715
|
-
function instance$
|
|
25742
|
+
function instance$g($$self, $$props, $$invalidate) {
|
|
25716
25743
|
const selfSubmitFunction = null;
|
|
25717
25744
|
const stepMetadata = null;
|
|
25718
25745
|
let { callback } = $$props;
|
|
@@ -25777,7 +25804,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25777
25804
|
constructor(options) {
|
|
25778
25805
|
super();
|
|
25779
25806
|
|
|
25780
|
-
init(this, options, instance$
|
|
25807
|
+
init(this, options, instance$g, create_fragment$f, safe_not_equal, {
|
|
25781
25808
|
selfSubmitFunction: 10,
|
|
25782
25809
|
stepMetadata: 11,
|
|
25783
25810
|
callback: 0,
|
|
@@ -25797,7 +25824,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25797
25824
|
|
|
25798
25825
|
/* src/lib/journey/callbacks/device-profile/device-profile.svelte generated by Svelte v3.59.2 */
|
|
25799
25826
|
|
|
25800
|
-
function create_if_block$
|
|
25827
|
+
function create_if_block$a(ctx) {
|
|
25801
25828
|
let div;
|
|
25802
25829
|
let spinner;
|
|
25803
25830
|
let t;
|
|
@@ -25879,10 +25906,10 @@ function create_default_slot$8(ctx) {
|
|
|
25879
25906
|
};
|
|
25880
25907
|
}
|
|
25881
25908
|
|
|
25882
|
-
function create_fragment$
|
|
25909
|
+
function create_fragment$e(ctx) {
|
|
25883
25910
|
let if_block_anchor;
|
|
25884
25911
|
let current;
|
|
25885
|
-
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$
|
|
25912
|
+
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$a(ctx);
|
|
25886
25913
|
|
|
25887
25914
|
return {
|
|
25888
25915
|
c() {
|
|
@@ -25903,7 +25930,7 @@ function create_fragment$d(ctx) {
|
|
|
25903
25930
|
transition_in(if_block, 1);
|
|
25904
25931
|
}
|
|
25905
25932
|
} else {
|
|
25906
|
-
if_block = create_if_block$
|
|
25933
|
+
if_block = create_if_block$a(ctx);
|
|
25907
25934
|
if_block.c();
|
|
25908
25935
|
transition_in(if_block, 1);
|
|
25909
25936
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -25934,7 +25961,7 @@ function create_fragment$d(ctx) {
|
|
|
25934
25961
|
};
|
|
25935
25962
|
}
|
|
25936
25963
|
|
|
25937
|
-
function instance$
|
|
25964
|
+
function instance$f($$self, $$props, $$invalidate) {
|
|
25938
25965
|
let { callback } = $$props;
|
|
25939
25966
|
let { callbackMetadata = null } = $$props;
|
|
25940
25967
|
let { stepMetadata = null } = $$props;
|
|
@@ -25971,7 +25998,7 @@ class Device_profile extends SvelteComponent {
|
|
|
25971
25998
|
constructor(options) {
|
|
25972
25999
|
super();
|
|
25973
26000
|
|
|
25974
|
-
init(this, options, instance$
|
|
26001
|
+
init(this, options, instance$f, create_fragment$e, safe_not_equal, {
|
|
25975
26002
|
callback: 3,
|
|
25976
26003
|
callbackMetadata: 2,
|
|
25977
26004
|
stepMetadata: 0,
|
|
@@ -25980,6 +26007,166 @@ class Device_profile extends SvelteComponent {
|
|
|
25980
26007
|
}
|
|
25981
26008
|
}
|
|
25982
26009
|
|
|
26010
|
+
/* src/lib/journey/callbacks/recaptcha/recaptcha.svelte generated by Svelte v3.59.2 */
|
|
26011
|
+
|
|
26012
|
+
function create_if_block$9(ctx) {
|
|
26013
|
+
let script;
|
|
26014
|
+
let script_src_value;
|
|
26015
|
+
|
|
26016
|
+
return {
|
|
26017
|
+
c() {
|
|
26018
|
+
script = element("script");
|
|
26019
|
+
if (!src_url_equal(script.src, script_src_value = /*recaptchaApi*/ ctx[1])) attr(script, "src", script_src_value);
|
|
26020
|
+
script.async = true;
|
|
26021
|
+
script.defer = true;
|
|
26022
|
+
},
|
|
26023
|
+
m(target, anchor) {
|
|
26024
|
+
insert(target, script, anchor);
|
|
26025
|
+
},
|
|
26026
|
+
p: noop,
|
|
26027
|
+
d(detaching) {
|
|
26028
|
+
if (detaching) detach(script);
|
|
26029
|
+
}
|
|
26030
|
+
};
|
|
26031
|
+
}
|
|
26032
|
+
|
|
26033
|
+
function create_fragment$d(ctx) {
|
|
26034
|
+
let t;
|
|
26035
|
+
let div;
|
|
26036
|
+
let if_block = /*recaptchaApi*/ ctx[1].length && create_if_block$9(ctx);
|
|
26037
|
+
|
|
26038
|
+
return {
|
|
26039
|
+
c() {
|
|
26040
|
+
if (if_block) if_block.c();
|
|
26041
|
+
t = space();
|
|
26042
|
+
div = element("div");
|
|
26043
|
+
attr(div, "id", "fr-recaptcha");
|
|
26044
|
+
attr(div, "class", `${/*recaptchaClass*/ ctx[2]} tw_flex-1 tw_w-full tw_input-spacing`);
|
|
26045
|
+
attr(div, "data-sitekey", /*siteKey*/ ctx[0]);
|
|
26046
|
+
attr(div, "data-expired-callback", "frHandleExpiredCallback");
|
|
26047
|
+
attr(div, "data-chalexpired-callback", "frHandleExpiredCallback");
|
|
26048
|
+
attr(div, "data-error-callback", "frHandleErrorCallback");
|
|
26049
|
+
attr(div, "data-callback", "frHandleCaptcha");
|
|
26050
|
+
},
|
|
26051
|
+
m(target, anchor) {
|
|
26052
|
+
if (if_block) if_block.m(target, anchor);
|
|
26053
|
+
insert(target, t, anchor);
|
|
26054
|
+
insert(target, div, anchor);
|
|
26055
|
+
},
|
|
26056
|
+
p(ctx, [dirty]) {
|
|
26057
|
+
if (/*recaptchaApi*/ ctx[1].length) if_block.p(ctx, dirty);
|
|
26058
|
+
},
|
|
26059
|
+
i: noop,
|
|
26060
|
+
o: noop,
|
|
26061
|
+
d(detaching) {
|
|
26062
|
+
if (if_block) if_block.d(detaching);
|
|
26063
|
+
if (detaching) detach(t);
|
|
26064
|
+
if (detaching) detach(div);
|
|
26065
|
+
}
|
|
26066
|
+
};
|
|
26067
|
+
}
|
|
26068
|
+
|
|
26069
|
+
function instance$e($$self, $$props, $$invalidate) {
|
|
26070
|
+
let { callback } = $$props;
|
|
26071
|
+
const selfSubmitFunction = null;
|
|
26072
|
+
const stepMetadata = null;
|
|
26073
|
+
const style = {};
|
|
26074
|
+
const siteKey = callback?.getSiteKey() ?? '';
|
|
26075
|
+
let recaptchaApi = `${callback?.getOutputByName('captchaApiUri', '') ?? ''}`;
|
|
26076
|
+
|
|
26077
|
+
/**
|
|
26078
|
+
* AM defaults the class name to g-captcha which is wrong
|
|
26079
|
+
* I dont think we should be manipulating the class here,
|
|
26080
|
+
* but the classname should be g-recaptcha for google
|
|
26081
|
+
*/
|
|
26082
|
+
const recaptchaClass = callback?.getOutputByName('captchaDivClass', 'h-captcha') ?? 'h-captcha';
|
|
26083
|
+
|
|
26084
|
+
onMount(() => {
|
|
26085
|
+
window.frHandleCaptchaError = function handleCaptchaError() {
|
|
26086
|
+
callback?.setResult('');
|
|
26087
|
+
|
|
26088
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26089
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26090
|
+
sitekey: siteKey,
|
|
26091
|
+
callback: 'frHandleCaptcha',
|
|
26092
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26093
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26094
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26095
|
+
});
|
|
26096
|
+
} else {
|
|
26097
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26098
|
+
sitekey: siteKey,
|
|
26099
|
+
callback: window.frHandleCaptcha,
|
|
26100
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26101
|
+
});
|
|
26102
|
+
}
|
|
26103
|
+
};
|
|
26104
|
+
|
|
26105
|
+
window.frHandleCaptcha = function handleCaptchaToken(token) {
|
|
26106
|
+
callback?.setResult(token);
|
|
26107
|
+
};
|
|
26108
|
+
|
|
26109
|
+
window.frHandleExpiredCallback = function handleExpiredCallback() {
|
|
26110
|
+
callback?.setResult('');
|
|
26111
|
+
|
|
26112
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26113
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26114
|
+
sitekey: siteKey,
|
|
26115
|
+
callback: 'frHandleCaptcha',
|
|
26116
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26117
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26118
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26119
|
+
});
|
|
26120
|
+
} else {
|
|
26121
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26122
|
+
sitekey: siteKey,
|
|
26123
|
+
callback: window.frHandleCaptcha,
|
|
26124
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26125
|
+
});
|
|
26126
|
+
}
|
|
26127
|
+
};
|
|
26128
|
+
});
|
|
26129
|
+
|
|
26130
|
+
$$self.$$set = $$props => {
|
|
26131
|
+
if ('callback' in $$props) $$invalidate(3, callback = $$props.callback);
|
|
26132
|
+
};
|
|
26133
|
+
|
|
26134
|
+
return [
|
|
26135
|
+
siteKey,
|
|
26136
|
+
recaptchaApi,
|
|
26137
|
+
recaptchaClass,
|
|
26138
|
+
callback,
|
|
26139
|
+
selfSubmitFunction,
|
|
26140
|
+
stepMetadata,
|
|
26141
|
+
style
|
|
26142
|
+
];
|
|
26143
|
+
}
|
|
26144
|
+
|
|
26145
|
+
class Recaptcha extends SvelteComponent {
|
|
26146
|
+
constructor(options) {
|
|
26147
|
+
super();
|
|
26148
|
+
|
|
26149
|
+
init(this, options, instance$e, create_fragment$d, safe_not_equal, {
|
|
26150
|
+
callback: 3,
|
|
26151
|
+
selfSubmitFunction: 4,
|
|
26152
|
+
stepMetadata: 5,
|
|
26153
|
+
style: 6
|
|
26154
|
+
});
|
|
26155
|
+
}
|
|
26156
|
+
|
|
26157
|
+
get selfSubmitFunction() {
|
|
26158
|
+
return this.$$.ctx[4];
|
|
26159
|
+
}
|
|
26160
|
+
|
|
26161
|
+
get stepMetadata() {
|
|
26162
|
+
return this.$$.ctx[5];
|
|
26163
|
+
}
|
|
26164
|
+
|
|
26165
|
+
get style() {
|
|
26166
|
+
return this.$$.ctx[6];
|
|
26167
|
+
}
|
|
26168
|
+
}
|
|
26169
|
+
|
|
25983
26170
|
/* src/lib/journey/callbacks/metadata/metadata.svelte generated by Svelte v3.59.2 */
|
|
25984
26171
|
|
|
25985
26172
|
function instance$d($$self, $$props, $$invalidate) {
|
|
@@ -26032,10 +26219,22 @@ function get_else_ctx(ctx) {
|
|
|
26032
26219
|
|
|
26033
26220
|
const constants_0 = {
|
|
26034
26221
|
.../*props*/ child_ctx[0],
|
|
26035
|
-
callback: /*_FRCallback*/ child_ctx[
|
|
26222
|
+
callback: /*_FRCallback*/ child_ctx[21]
|
|
26223
|
+
};
|
|
26224
|
+
|
|
26225
|
+
child_ctx[22] = constants_0;
|
|
26226
|
+
return child_ctx;
|
|
26227
|
+
}
|
|
26228
|
+
|
|
26229
|
+
function get_if_ctx_18(ctx) {
|
|
26230
|
+
const child_ctx = ctx.slice();
|
|
26231
|
+
|
|
26232
|
+
const constants_0 = {
|
|
26233
|
+
.../*props*/ child_ctx[0],
|
|
26234
|
+
callback: /*_RecaptchaCallback*/ child_ctx[20]
|
|
26036
26235
|
};
|
|
26037
26236
|
|
|
26038
|
-
child_ctx[
|
|
26237
|
+
child_ctx[22] = constants_0;
|
|
26039
26238
|
return child_ctx;
|
|
26040
26239
|
}
|
|
26041
26240
|
|
|
@@ -26047,7 +26246,7 @@ function get_if_ctx_17(ctx) {
|
|
|
26047
26246
|
callback: /*_MetadataCallback*/ child_ctx[18]
|
|
26048
26247
|
};
|
|
26049
26248
|
|
|
26050
|
-
child_ctx[
|
|
26249
|
+
child_ctx[22] = constants_0;
|
|
26051
26250
|
return child_ctx;
|
|
26052
26251
|
}
|
|
26053
26252
|
|
|
@@ -26059,7 +26258,7 @@ function get_if_ctx_16(ctx) {
|
|
|
26059
26258
|
callback: /*_DeviceProfileCallback*/ child_ctx[19]
|
|
26060
26259
|
};
|
|
26061
26260
|
|
|
26062
|
-
child_ctx[
|
|
26261
|
+
child_ctx[22] = constants_0;
|
|
26063
26262
|
return child_ctx;
|
|
26064
26263
|
}
|
|
26065
26264
|
|
|
@@ -26071,7 +26270,7 @@ function get_if_ctx_15(ctx) {
|
|
|
26071
26270
|
callback: /*_SuspendedTextOutputCallback*/ child_ctx[17]
|
|
26072
26271
|
};
|
|
26073
26272
|
|
|
26074
|
-
child_ctx[
|
|
26273
|
+
child_ctx[22] = constants_0;
|
|
26075
26274
|
return child_ctx;
|
|
26076
26275
|
}
|
|
26077
26276
|
|
|
@@ -26083,7 +26282,7 @@ function get_if_ctx_14(ctx) {
|
|
|
26083
26282
|
callback: /*_TextOutputCallback*/ child_ctx[16]
|
|
26084
26283
|
};
|
|
26085
26284
|
|
|
26086
|
-
child_ctx[
|
|
26285
|
+
child_ctx[22] = constants_0;
|
|
26087
26286
|
return child_ctx;
|
|
26088
26287
|
}
|
|
26089
26288
|
|
|
@@ -26095,7 +26294,7 @@ function get_if_ctx_13(ctx) {
|
|
|
26095
26294
|
callback: /*_TermsAndConditionsCallback*/ child_ctx[15]
|
|
26096
26295
|
};
|
|
26097
26296
|
|
|
26098
|
-
child_ctx[
|
|
26297
|
+
child_ctx[22] = constants_0;
|
|
26099
26298
|
return child_ctx;
|
|
26100
26299
|
}
|
|
26101
26300
|
|
|
@@ -26107,7 +26306,7 @@ function get_if_ctx_12(ctx) {
|
|
|
26107
26306
|
callback: /*_ValidatedCreateUsernameCallback*/ child_ctx[14]
|
|
26108
26307
|
};
|
|
26109
26308
|
|
|
26110
|
-
child_ctx[
|
|
26309
|
+
child_ctx[22] = constants_0;
|
|
26111
26310
|
return child_ctx;
|
|
26112
26311
|
}
|
|
26113
26312
|
|
|
@@ -26119,7 +26318,7 @@ function get_if_ctx_11(ctx) {
|
|
|
26119
26318
|
callback: /*_ValidatedCreatePasswordCallback*/ child_ctx[13]
|
|
26120
26319
|
};
|
|
26121
26320
|
|
|
26122
|
-
child_ctx[
|
|
26321
|
+
child_ctx[22] = constants_0;
|
|
26123
26322
|
return child_ctx;
|
|
26124
26323
|
}
|
|
26125
26324
|
|
|
@@ -26131,7 +26330,7 @@ function get_if_ctx_10(ctx) {
|
|
|
26131
26330
|
callback: /*_StringAttributeInputCallback*/ child_ctx[12]
|
|
26132
26331
|
};
|
|
26133
26332
|
|
|
26134
|
-
child_ctx[
|
|
26333
|
+
child_ctx[22] = constants_0;
|
|
26135
26334
|
return child_ctx;
|
|
26136
26335
|
}
|
|
26137
26336
|
|
|
@@ -26143,7 +26342,7 @@ function get_if_ctx_9(ctx) {
|
|
|
26143
26342
|
callback: /*_SelectIdPCallback*/ child_ctx[11]
|
|
26144
26343
|
};
|
|
26145
26344
|
|
|
26146
|
-
child_ctx[
|
|
26345
|
+
child_ctx[22] = constants_0;
|
|
26147
26346
|
return child_ctx;
|
|
26148
26347
|
}
|
|
26149
26348
|
|
|
@@ -26155,7 +26354,7 @@ function get_if_ctx_8(ctx) {
|
|
|
26155
26354
|
callback: /*_RedirectCallback*/ child_ctx[10]
|
|
26156
26355
|
};
|
|
26157
26356
|
|
|
26158
|
-
child_ctx[
|
|
26357
|
+
child_ctx[22] = constants_0;
|
|
26159
26358
|
return child_ctx;
|
|
26160
26359
|
}
|
|
26161
26360
|
|
|
@@ -26167,7 +26366,7 @@ function get_if_ctx_7(ctx) {
|
|
|
26167
26366
|
callback: /*_PollingWaitCallback*/ child_ctx[9]
|
|
26168
26367
|
};
|
|
26169
26368
|
|
|
26170
|
-
child_ctx[
|
|
26369
|
+
child_ctx[22] = constants_0;
|
|
26171
26370
|
return child_ctx;
|
|
26172
26371
|
}
|
|
26173
26372
|
|
|
@@ -26179,7 +26378,7 @@ function get_if_ctx_6(ctx) {
|
|
|
26179
26378
|
callback: /*_PasswordCallback*/ child_ctx[8]
|
|
26180
26379
|
};
|
|
26181
26380
|
|
|
26182
|
-
child_ctx[
|
|
26381
|
+
child_ctx[22] = constants_0;
|
|
26183
26382
|
return child_ctx;
|
|
26184
26383
|
}
|
|
26185
26384
|
|
|
@@ -26191,7 +26390,7 @@ function get_if_ctx_5(ctx) {
|
|
|
26191
26390
|
callback: /*_NameCallback*/ child_ctx[7]
|
|
26192
26391
|
};
|
|
26193
26392
|
|
|
26194
|
-
child_ctx[
|
|
26393
|
+
child_ctx[22] = constants_0;
|
|
26195
26394
|
return child_ctx;
|
|
26196
26395
|
}
|
|
26197
26396
|
|
|
@@ -26203,7 +26402,7 @@ function get_if_ctx_4(ctx) {
|
|
|
26203
26402
|
callback: /*_KbaCreateCallback*/ child_ctx[6]
|
|
26204
26403
|
};
|
|
26205
26404
|
|
|
26206
|
-
child_ctx[
|
|
26405
|
+
child_ctx[22] = constants_0;
|
|
26207
26406
|
return child_ctx;
|
|
26208
26407
|
}
|
|
26209
26408
|
|
|
@@ -26215,7 +26414,7 @@ function get_if_ctx_3(ctx) {
|
|
|
26215
26414
|
callback: /*_HiddenValueCallback*/ child_ctx[5]
|
|
26216
26415
|
};
|
|
26217
26416
|
|
|
26218
|
-
child_ctx[
|
|
26417
|
+
child_ctx[22] = constants_0;
|
|
26219
26418
|
return child_ctx;
|
|
26220
26419
|
}
|
|
26221
26420
|
|
|
@@ -26227,7 +26426,7 @@ function get_if_ctx_2(ctx) {
|
|
|
26227
26426
|
callback: /*_ConfirmationCallback*/ child_ctx[4]
|
|
26228
26427
|
};
|
|
26229
26428
|
|
|
26230
|
-
child_ctx[
|
|
26429
|
+
child_ctx[22] = constants_0;
|
|
26231
26430
|
return child_ctx;
|
|
26232
26431
|
}
|
|
26233
26432
|
|
|
@@ -26239,7 +26438,7 @@ function get_if_ctx_1(ctx) {
|
|
|
26239
26438
|
callback: /*_ChoiceCallback*/ child_ctx[3]
|
|
26240
26439
|
};
|
|
26241
26440
|
|
|
26242
|
-
child_ctx[
|
|
26441
|
+
child_ctx[22] = constants_0;
|
|
26243
26442
|
return child_ctx;
|
|
26244
26443
|
}
|
|
26245
26444
|
|
|
@@ -26251,15 +26450,15 @@ function get_if_ctx(ctx) {
|
|
|
26251
26450
|
callback: /*_BooleanAttributeInputCallback*/ child_ctx[2]
|
|
26252
26451
|
};
|
|
26253
26452
|
|
|
26254
|
-
child_ctx[
|
|
26453
|
+
child_ctx[22] = constants_0;
|
|
26255
26454
|
return child_ctx;
|
|
26256
26455
|
}
|
|
26257
26456
|
|
|
26258
|
-
// (
|
|
26457
|
+
// (231:0) {:else}
|
|
26259
26458
|
function create_else_block$3(ctx) {
|
|
26260
26459
|
let unknown;
|
|
26261
26460
|
let current;
|
|
26262
|
-
const unknown_spread_levels = [/*newProps*/ ctx[
|
|
26461
|
+
const unknown_spread_levels = [/*newProps*/ ctx[22]];
|
|
26263
26462
|
let unknown_props = {};
|
|
26264
26463
|
|
|
26265
26464
|
for (let i = 0; i < unknown_spread_levels.length; i += 1) {
|
|
@@ -26277,8 +26476,8 @@ function create_else_block$3(ctx) {
|
|
|
26277
26476
|
current = true;
|
|
26278
26477
|
},
|
|
26279
26478
|
p(ctx, dirty) {
|
|
26280
|
-
const unknown_changes = (dirty & /*props, _FRCallback*/
|
|
26281
|
-
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26479
|
+
const unknown_changes = (dirty & /*props, _FRCallback*/ 2097153)
|
|
26480
|
+
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26282
26481
|
: {};
|
|
26283
26482
|
|
|
26284
26483
|
unknown.$set(unknown_changes);
|
|
@@ -26298,11 +26497,54 @@ function create_else_block$3(ctx) {
|
|
|
26298
26497
|
};
|
|
26299
26498
|
}
|
|
26300
26499
|
|
|
26301
|
-
// (
|
|
26500
|
+
// (225:52)
|
|
26501
|
+
function create_if_block_18(ctx) {
|
|
26502
|
+
let recaptcha;
|
|
26503
|
+
let current;
|
|
26504
|
+
const recaptcha_spread_levels = [/*newProps*/ ctx[22]];
|
|
26505
|
+
let recaptcha_props = {};
|
|
26506
|
+
|
|
26507
|
+
for (let i = 0; i < recaptcha_spread_levels.length; i += 1) {
|
|
26508
|
+
recaptcha_props = assign(recaptcha_props, recaptcha_spread_levels[i]);
|
|
26509
|
+
}
|
|
26510
|
+
|
|
26511
|
+
recaptcha = new Recaptcha({ props: recaptcha_props });
|
|
26512
|
+
|
|
26513
|
+
return {
|
|
26514
|
+
c() {
|
|
26515
|
+
create_component(recaptcha.$$.fragment);
|
|
26516
|
+
},
|
|
26517
|
+
m(target, anchor) {
|
|
26518
|
+
mount_component(recaptcha, target, anchor);
|
|
26519
|
+
current = true;
|
|
26520
|
+
},
|
|
26521
|
+
p(ctx, dirty) {
|
|
26522
|
+
const recaptcha_changes = (dirty & /*props, _RecaptchaCallback*/ 1048577)
|
|
26523
|
+
? get_spread_update(recaptcha_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26524
|
+
: {};
|
|
26525
|
+
|
|
26526
|
+
recaptcha.$set(recaptcha_changes);
|
|
26527
|
+
},
|
|
26528
|
+
i(local) {
|
|
26529
|
+
if (current) return;
|
|
26530
|
+
transition_in(recaptcha.$$.fragment, local);
|
|
26531
|
+
current = true;
|
|
26532
|
+
},
|
|
26533
|
+
o(local) {
|
|
26534
|
+
transition_out(recaptcha.$$.fragment, local);
|
|
26535
|
+
current = false;
|
|
26536
|
+
},
|
|
26537
|
+
d(detaching) {
|
|
26538
|
+
destroy_component(recaptcha, detaching);
|
|
26539
|
+
}
|
|
26540
|
+
};
|
|
26541
|
+
}
|
|
26542
|
+
|
|
26543
|
+
// (219:51)
|
|
26302
26544
|
function create_if_block_17(ctx) {
|
|
26303
26545
|
let metadata;
|
|
26304
26546
|
let current;
|
|
26305
|
-
const metadata_spread_levels = [/*newProps*/ ctx[
|
|
26547
|
+
const metadata_spread_levels = [/*newProps*/ ctx[22]];
|
|
26306
26548
|
let metadata_props = {};
|
|
26307
26549
|
|
|
26308
26550
|
for (let i = 0; i < metadata_spread_levels.length; i += 1) {
|
|
@@ -26321,7 +26563,7 @@ function create_if_block_17(ctx) {
|
|
|
26321
26563
|
},
|
|
26322
26564
|
p(ctx, dirty) {
|
|
26323
26565
|
const metadata_changes = (dirty & /*props, _MetadataCallback*/ 262145)
|
|
26324
|
-
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26566
|
+
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26325
26567
|
: {};
|
|
26326
26568
|
|
|
26327
26569
|
metadata.$set(metadata_changes);
|
|
@@ -26341,11 +26583,11 @@ function create_if_block_17(ctx) {
|
|
|
26341
26583
|
};
|
|
26342
26584
|
}
|
|
26343
26585
|
|
|
26344
|
-
// (
|
|
26586
|
+
// (213:56)
|
|
26345
26587
|
function create_if_block_16(ctx) {
|
|
26346
26588
|
let deviceprofile;
|
|
26347
26589
|
let current;
|
|
26348
|
-
const deviceprofile_spread_levels = [/*newProps*/ ctx[
|
|
26590
|
+
const deviceprofile_spread_levels = [/*newProps*/ ctx[22]];
|
|
26349
26591
|
let deviceprofile_props = {};
|
|
26350
26592
|
|
|
26351
26593
|
for (let i = 0; i < deviceprofile_spread_levels.length; i += 1) {
|
|
@@ -26364,7 +26606,7 @@ function create_if_block_16(ctx) {
|
|
|
26364
26606
|
},
|
|
26365
26607
|
p(ctx, dirty) {
|
|
26366
26608
|
const deviceprofile_changes = (dirty & /*props, _DeviceProfileCallback*/ 524289)
|
|
26367
|
-
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26609
|
+
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26368
26610
|
: {};
|
|
26369
26611
|
|
|
26370
26612
|
deviceprofile.$set(deviceprofile_changes);
|
|
@@ -26384,11 +26626,11 @@ function create_if_block_16(ctx) {
|
|
|
26384
26626
|
};
|
|
26385
26627
|
}
|
|
26386
26628
|
|
|
26387
|
-
// (
|
|
26629
|
+
// (207:62)
|
|
26388
26630
|
function create_if_block_15(ctx) {
|
|
26389
26631
|
let textoutput;
|
|
26390
26632
|
let current;
|
|
26391
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26633
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26392
26634
|
let textoutput_props = {};
|
|
26393
26635
|
|
|
26394
26636
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26407,7 +26649,7 @@ function create_if_block_15(ctx) {
|
|
|
26407
26649
|
},
|
|
26408
26650
|
p(ctx, dirty) {
|
|
26409
26651
|
const textoutput_changes = (dirty & /*props, _SuspendedTextOutputCallback*/ 131073)
|
|
26410
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26652
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26411
26653
|
: {};
|
|
26412
26654
|
|
|
26413
26655
|
textoutput.$set(textoutput_changes);
|
|
@@ -26427,11 +26669,11 @@ function create_if_block_15(ctx) {
|
|
|
26427
26669
|
};
|
|
26428
26670
|
}
|
|
26429
26671
|
|
|
26430
|
-
// (
|
|
26672
|
+
// (201:53)
|
|
26431
26673
|
function create_if_block_14(ctx) {
|
|
26432
26674
|
let textoutput;
|
|
26433
26675
|
let current;
|
|
26434
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26676
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26435
26677
|
let textoutput_props = {};
|
|
26436
26678
|
|
|
26437
26679
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26450,7 +26692,7 @@ function create_if_block_14(ctx) {
|
|
|
26450
26692
|
},
|
|
26451
26693
|
p(ctx, dirty) {
|
|
26452
26694
|
const textoutput_changes = (dirty & /*props, _TextOutputCallback*/ 65537)
|
|
26453
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26695
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26454
26696
|
: {};
|
|
26455
26697
|
|
|
26456
26698
|
textoutput.$set(textoutput_changes);
|
|
@@ -26470,11 +26712,11 @@ function create_if_block_14(ctx) {
|
|
|
26470
26712
|
};
|
|
26471
26713
|
}
|
|
26472
26714
|
|
|
26473
|
-
// (
|
|
26715
|
+
// (195:61)
|
|
26474
26716
|
function create_if_block_13(ctx) {
|
|
26475
26717
|
let termsconditions;
|
|
26476
26718
|
let current;
|
|
26477
|
-
const termsconditions_spread_levels = [/*newProps*/ ctx[
|
|
26719
|
+
const termsconditions_spread_levels = [/*newProps*/ ctx[22]];
|
|
26478
26720
|
let termsconditions_props = {};
|
|
26479
26721
|
|
|
26480
26722
|
for (let i = 0; i < termsconditions_spread_levels.length; i += 1) {
|
|
@@ -26493,7 +26735,7 @@ function create_if_block_13(ctx) {
|
|
|
26493
26735
|
},
|
|
26494
26736
|
p(ctx, dirty) {
|
|
26495
26737
|
const termsconditions_changes = (dirty & /*props, _TermsAndConditionsCallback*/ 32769)
|
|
26496
|
-
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26738
|
+
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26497
26739
|
: {};
|
|
26498
26740
|
|
|
26499
26741
|
termsconditions.$set(termsconditions_changes);
|
|
@@ -26513,11 +26755,11 @@ function create_if_block_13(ctx) {
|
|
|
26513
26755
|
};
|
|
26514
26756
|
}
|
|
26515
26757
|
|
|
26516
|
-
// (
|
|
26758
|
+
// (189:66)
|
|
26517
26759
|
function create_if_block_12(ctx) {
|
|
26518
26760
|
let validatedcreateusername;
|
|
26519
26761
|
let current;
|
|
26520
|
-
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[
|
|
26762
|
+
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[22]];
|
|
26521
26763
|
let validatedcreateusername_props = {};
|
|
26522
26764
|
|
|
26523
26765
|
for (let i = 0; i < validatedcreateusername_spread_levels.length; i += 1) {
|
|
@@ -26536,7 +26778,7 @@ function create_if_block_12(ctx) {
|
|
|
26536
26778
|
},
|
|
26537
26779
|
p(ctx, dirty) {
|
|
26538
26780
|
const validatedcreateusername_changes = (dirty & /*props, _ValidatedCreateUsernameCallback*/ 16385)
|
|
26539
|
-
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26781
|
+
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26540
26782
|
: {};
|
|
26541
26783
|
|
|
26542
26784
|
validatedcreateusername.$set(validatedcreateusername_changes);
|
|
@@ -26556,11 +26798,11 @@ function create_if_block_12(ctx) {
|
|
|
26556
26798
|
};
|
|
26557
26799
|
}
|
|
26558
26800
|
|
|
26559
|
-
// (
|
|
26801
|
+
// (183:66)
|
|
26560
26802
|
function create_if_block_11(ctx) {
|
|
26561
26803
|
let validatedcreatepassword;
|
|
26562
26804
|
let current;
|
|
26563
|
-
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[
|
|
26805
|
+
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[22]];
|
|
26564
26806
|
let validatedcreatepassword_props = {};
|
|
26565
26807
|
|
|
26566
26808
|
for (let i = 0; i < validatedcreatepassword_spread_levels.length; i += 1) {
|
|
@@ -26579,7 +26821,7 @@ function create_if_block_11(ctx) {
|
|
|
26579
26821
|
},
|
|
26580
26822
|
p(ctx, dirty) {
|
|
26581
26823
|
const validatedcreatepassword_changes = (dirty & /*props, _ValidatedCreatePasswordCallback*/ 8193)
|
|
26582
|
-
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26824
|
+
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26583
26825
|
: {};
|
|
26584
26826
|
|
|
26585
26827
|
validatedcreatepassword.$set(validatedcreatepassword_changes);
|
|
@@ -26599,11 +26841,11 @@ function create_if_block_11(ctx) {
|
|
|
26599
26841
|
};
|
|
26600
26842
|
}
|
|
26601
26843
|
|
|
26602
|
-
// (
|
|
26844
|
+
// (177:63)
|
|
26603
26845
|
function create_if_block_10(ctx) {
|
|
26604
26846
|
let stringattributeinput;
|
|
26605
26847
|
let current;
|
|
26606
|
-
const stringattributeinput_spread_levels = [/*newProps*/ ctx[
|
|
26848
|
+
const stringattributeinput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26607
26849
|
let stringattributeinput_props = {};
|
|
26608
26850
|
|
|
26609
26851
|
for (let i = 0; i < stringattributeinput_spread_levels.length; i += 1) {
|
|
@@ -26622,7 +26864,7 @@ function create_if_block_10(ctx) {
|
|
|
26622
26864
|
},
|
|
26623
26865
|
p(ctx, dirty) {
|
|
26624
26866
|
const stringattributeinput_changes = (dirty & /*props, _StringAttributeInputCallback*/ 4097)
|
|
26625
|
-
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26867
|
+
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26626
26868
|
: {};
|
|
26627
26869
|
|
|
26628
26870
|
stringattributeinput.$set(stringattributeinput_changes);
|
|
@@ -26642,11 +26884,11 @@ function create_if_block_10(ctx) {
|
|
|
26642
26884
|
};
|
|
26643
26885
|
}
|
|
26644
26886
|
|
|
26645
|
-
// (
|
|
26887
|
+
// (171:52)
|
|
26646
26888
|
function create_if_block_9(ctx) {
|
|
26647
26889
|
let selectidp;
|
|
26648
26890
|
let current;
|
|
26649
|
-
const selectidp_spread_levels = [/*newProps*/ ctx[
|
|
26891
|
+
const selectidp_spread_levels = [/*newProps*/ ctx[22]];
|
|
26650
26892
|
let selectidp_props = {};
|
|
26651
26893
|
|
|
26652
26894
|
for (let i = 0; i < selectidp_spread_levels.length; i += 1) {
|
|
@@ -26665,7 +26907,7 @@ function create_if_block_9(ctx) {
|
|
|
26665
26907
|
},
|
|
26666
26908
|
p(ctx, dirty) {
|
|
26667
26909
|
const selectidp_changes = (dirty & /*props, _SelectIdPCallback*/ 2049)
|
|
26668
|
-
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26910
|
+
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26669
26911
|
: {};
|
|
26670
26912
|
|
|
26671
26913
|
selectidp.$set(selectidp_changes);
|
|
@@ -26685,11 +26927,11 @@ function create_if_block_9(ctx) {
|
|
|
26685
26927
|
};
|
|
26686
26928
|
}
|
|
26687
26929
|
|
|
26688
|
-
// (
|
|
26930
|
+
// (165:51)
|
|
26689
26931
|
function create_if_block_8(ctx) {
|
|
26690
26932
|
let redirect;
|
|
26691
26933
|
let current;
|
|
26692
|
-
const redirect_spread_levels = [/*newProps*/ ctx[
|
|
26934
|
+
const redirect_spread_levels = [/*newProps*/ ctx[22]];
|
|
26693
26935
|
let redirect_props = {};
|
|
26694
26936
|
|
|
26695
26937
|
for (let i = 0; i < redirect_spread_levels.length; i += 1) {
|
|
@@ -26708,7 +26950,7 @@ function create_if_block_8(ctx) {
|
|
|
26708
26950
|
},
|
|
26709
26951
|
p(ctx, dirty) {
|
|
26710
26952
|
const redirect_changes = (dirty & /*props, _RedirectCallback*/ 1025)
|
|
26711
|
-
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26953
|
+
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26712
26954
|
: {};
|
|
26713
26955
|
|
|
26714
26956
|
redirect.$set(redirect_changes);
|
|
@@ -26728,11 +26970,11 @@ function create_if_block_8(ctx) {
|
|
|
26728
26970
|
};
|
|
26729
26971
|
}
|
|
26730
26972
|
|
|
26731
|
-
// (
|
|
26973
|
+
// (159:54)
|
|
26732
26974
|
function create_if_block_7(ctx) {
|
|
26733
26975
|
let pollingwait;
|
|
26734
26976
|
let current;
|
|
26735
|
-
const pollingwait_spread_levels = [/*newProps*/ ctx[
|
|
26977
|
+
const pollingwait_spread_levels = [/*newProps*/ ctx[22]];
|
|
26736
26978
|
let pollingwait_props = {};
|
|
26737
26979
|
|
|
26738
26980
|
for (let i = 0; i < pollingwait_spread_levels.length; i += 1) {
|
|
@@ -26751,7 +26993,7 @@ function create_if_block_7(ctx) {
|
|
|
26751
26993
|
},
|
|
26752
26994
|
p(ctx, dirty) {
|
|
26753
26995
|
const pollingwait_changes = (dirty & /*props, _PollingWaitCallback*/ 513)
|
|
26754
|
-
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26996
|
+
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26755
26997
|
: {};
|
|
26756
26998
|
|
|
26757
26999
|
pollingwait.$set(pollingwait_changes);
|
|
@@ -26771,11 +27013,11 @@ function create_if_block_7(ctx) {
|
|
|
26771
27013
|
};
|
|
26772
27014
|
}
|
|
26773
27015
|
|
|
26774
|
-
// (
|
|
27016
|
+
// (153:51)
|
|
26775
27017
|
function create_if_block_6(ctx) {
|
|
26776
27018
|
let password;
|
|
26777
27019
|
let current;
|
|
26778
|
-
const password_spread_levels = [/*newProps*/ ctx[
|
|
27020
|
+
const password_spread_levels = [/*newProps*/ ctx[22]];
|
|
26779
27021
|
let password_props = {};
|
|
26780
27022
|
|
|
26781
27023
|
for (let i = 0; i < password_spread_levels.length; i += 1) {
|
|
@@ -26794,7 +27036,7 @@ function create_if_block_6(ctx) {
|
|
|
26794
27036
|
},
|
|
26795
27037
|
p(ctx, dirty) {
|
|
26796
27038
|
const password_changes = (dirty & /*props, _PasswordCallback*/ 257)
|
|
26797
|
-
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27039
|
+
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26798
27040
|
: {};
|
|
26799
27041
|
|
|
26800
27042
|
password.$set(password_changes);
|
|
@@ -26814,11 +27056,11 @@ function create_if_block_6(ctx) {
|
|
|
26814
27056
|
};
|
|
26815
27057
|
}
|
|
26816
27058
|
|
|
26817
|
-
// (
|
|
27059
|
+
// (147:47)
|
|
26818
27060
|
function create_if_block_5(ctx) {
|
|
26819
27061
|
let name;
|
|
26820
27062
|
let current;
|
|
26821
|
-
const name_spread_levels = [/*newProps*/ ctx[
|
|
27063
|
+
const name_spread_levels = [/*newProps*/ ctx[22]];
|
|
26822
27064
|
let name_props = {};
|
|
26823
27065
|
|
|
26824
27066
|
for (let i = 0; i < name_spread_levels.length; i += 1) {
|
|
@@ -26837,7 +27079,7 @@ function create_if_block_5(ctx) {
|
|
|
26837
27079
|
},
|
|
26838
27080
|
p(ctx, dirty) {
|
|
26839
27081
|
const name_changes = (dirty & /*props, _NameCallback*/ 129)
|
|
26840
|
-
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27082
|
+
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26841
27083
|
: {};
|
|
26842
27084
|
|
|
26843
27085
|
name.$set(name_changes);
|
|
@@ -26857,11 +27099,11 @@ function create_if_block_5(ctx) {
|
|
|
26857
27099
|
};
|
|
26858
27100
|
}
|
|
26859
27101
|
|
|
26860
|
-
// (
|
|
27102
|
+
// (141:52)
|
|
26861
27103
|
function create_if_block_4$1(ctx) {
|
|
26862
27104
|
let kbacreate;
|
|
26863
27105
|
let current;
|
|
26864
|
-
const kbacreate_spread_levels = [/*newProps*/ ctx[
|
|
27106
|
+
const kbacreate_spread_levels = [/*newProps*/ ctx[22]];
|
|
26865
27107
|
let kbacreate_props = {};
|
|
26866
27108
|
|
|
26867
27109
|
for (let i = 0; i < kbacreate_spread_levels.length; i += 1) {
|
|
@@ -26880,7 +27122,7 @@ function create_if_block_4$1(ctx) {
|
|
|
26880
27122
|
},
|
|
26881
27123
|
p(ctx, dirty) {
|
|
26882
27124
|
const kbacreate_changes = (dirty & /*props, _KbaCreateCallback*/ 65)
|
|
26883
|
-
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27125
|
+
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26884
27126
|
: {};
|
|
26885
27127
|
|
|
26886
27128
|
kbacreate.$set(kbacreate_changes);
|
|
@@ -26900,11 +27142,11 @@ function create_if_block_4$1(ctx) {
|
|
|
26900
27142
|
};
|
|
26901
27143
|
}
|
|
26902
27144
|
|
|
26903
|
-
// (
|
|
27145
|
+
// (135:54)
|
|
26904
27146
|
function create_if_block_3$4(ctx) {
|
|
26905
27147
|
let hiddenvalue;
|
|
26906
27148
|
let current;
|
|
26907
|
-
const hiddenvalue_spread_levels = [/*newProps*/ ctx[
|
|
27149
|
+
const hiddenvalue_spread_levels = [/*newProps*/ ctx[22]];
|
|
26908
27150
|
let hiddenvalue_props = {};
|
|
26909
27151
|
|
|
26910
27152
|
for (let i = 0; i < hiddenvalue_spread_levels.length; i += 1) {
|
|
@@ -26923,7 +27165,7 @@ function create_if_block_3$4(ctx) {
|
|
|
26923
27165
|
},
|
|
26924
27166
|
p(ctx, dirty) {
|
|
26925
27167
|
const hiddenvalue_changes = (dirty & /*props, _HiddenValueCallback*/ 33)
|
|
26926
|
-
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27168
|
+
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26927
27169
|
: {};
|
|
26928
27170
|
|
|
26929
27171
|
hiddenvalue.$set(hiddenvalue_changes);
|
|
@@ -26943,11 +27185,11 @@ function create_if_block_3$4(ctx) {
|
|
|
26943
27185
|
};
|
|
26944
27186
|
}
|
|
26945
27187
|
|
|
26946
|
-
// (
|
|
27188
|
+
// (129:55)
|
|
26947
27189
|
function create_if_block_2$6(ctx) {
|
|
26948
27190
|
let confirmation;
|
|
26949
27191
|
let current;
|
|
26950
|
-
const confirmation_spread_levels = [/*newProps*/ ctx[
|
|
27192
|
+
const confirmation_spread_levels = [/*newProps*/ ctx[22]];
|
|
26951
27193
|
let confirmation_props = {};
|
|
26952
27194
|
|
|
26953
27195
|
for (let i = 0; i < confirmation_spread_levels.length; i += 1) {
|
|
@@ -26966,7 +27208,7 @@ function create_if_block_2$6(ctx) {
|
|
|
26966
27208
|
},
|
|
26967
27209
|
p(ctx, dirty) {
|
|
26968
27210
|
const confirmation_changes = (dirty & /*props, _ConfirmationCallback*/ 17)
|
|
26969
|
-
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27211
|
+
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26970
27212
|
: {};
|
|
26971
27213
|
|
|
26972
27214
|
confirmation.$set(confirmation_changes);
|
|
@@ -26986,11 +27228,11 @@ function create_if_block_2$6(ctx) {
|
|
|
26986
27228
|
};
|
|
26987
27229
|
}
|
|
26988
27230
|
|
|
26989
|
-
// (
|
|
27231
|
+
// (123:49)
|
|
26990
27232
|
function create_if_block_1$6(ctx) {
|
|
26991
27233
|
let choice;
|
|
26992
27234
|
let current;
|
|
26993
|
-
const choice_spread_levels = [/*newProps*/ ctx[
|
|
27235
|
+
const choice_spread_levels = [/*newProps*/ ctx[22]];
|
|
26994
27236
|
let choice_props = {};
|
|
26995
27237
|
|
|
26996
27238
|
for (let i = 0; i < choice_spread_levels.length; i += 1) {
|
|
@@ -27009,7 +27251,7 @@ function create_if_block_1$6(ctx) {
|
|
|
27009
27251
|
},
|
|
27010
27252
|
p(ctx, dirty) {
|
|
27011
27253
|
const choice_changes = (dirty & /*props, _ChoiceCallback*/ 9)
|
|
27012
|
-
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27254
|
+
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27013
27255
|
: {};
|
|
27014
27256
|
|
|
27015
27257
|
choice.$set(choice_changes);
|
|
@@ -27029,11 +27271,11 @@ function create_if_block_1$6(ctx) {
|
|
|
27029
27271
|
};
|
|
27030
27272
|
}
|
|
27031
27273
|
|
|
27032
|
-
// (
|
|
27274
|
+
// (117:0) {#if cbType === CallbackType.BooleanAttributeInputCallback}
|
|
27033
27275
|
function create_if_block$8(ctx) {
|
|
27034
27276
|
let boolean;
|
|
27035
27277
|
let current;
|
|
27036
|
-
const boolean_spread_levels = [/*newProps*/ ctx[
|
|
27278
|
+
const boolean_spread_levels = [/*newProps*/ ctx[22]];
|
|
27037
27279
|
let boolean_props = {};
|
|
27038
27280
|
|
|
27039
27281
|
for (let i = 0; i < boolean_spread_levels.length; i += 1) {
|
|
@@ -27052,7 +27294,7 @@ function create_if_block$8(ctx) {
|
|
|
27052
27294
|
},
|
|
27053
27295
|
p(ctx, dirty) {
|
|
27054
27296
|
const boolean_changes = (dirty & /*props, _BooleanAttributeInputCallback*/ 5)
|
|
27055
|
-
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27297
|
+
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27056
27298
|
: {};
|
|
27057
27299
|
|
|
27058
27300
|
boolean.$set(boolean_changes);
|
|
@@ -27097,6 +27339,7 @@ function create_fragment$c(ctx) {
|
|
|
27097
27339
|
create_if_block_15,
|
|
27098
27340
|
create_if_block_16,
|
|
27099
27341
|
create_if_block_17,
|
|
27342
|
+
create_if_block_18,
|
|
27100
27343
|
create_else_block$3
|
|
27101
27344
|
];
|
|
27102
27345
|
|
|
@@ -27121,7 +27364,8 @@ function create_fragment$c(ctx) {
|
|
|
27121
27364
|
if (/*cbType*/ ctx[1] === CallbackType.SuspendedTextOutputCallback) return 15;
|
|
27122
27365
|
if (/*cbType*/ ctx[1] === CallbackType.DeviceProfileCallback) return 16;
|
|
27123
27366
|
if (/*cbType*/ ctx[1] === CallbackType.MetadataCallback) return 17;
|
|
27124
|
-
return 18;
|
|
27367
|
+
if (/*cbType*/ ctx[1] === CallbackType.ReCaptchaCallback) return 18;
|
|
27368
|
+
return 19;
|
|
27125
27369
|
}
|
|
27126
27370
|
|
|
27127
27371
|
function select_block_ctx(ctx, index) {
|
|
@@ -27143,6 +27387,7 @@ function create_fragment$c(ctx) {
|
|
|
27143
27387
|
if (index === 15) return get_if_ctx_15(ctx);
|
|
27144
27388
|
if (index === 16) return get_if_ctx_16(ctx);
|
|
27145
27389
|
if (index === 17) return get_if_ctx_17(ctx);
|
|
27390
|
+
if (index === 18) return get_if_ctx_18(ctx);
|
|
27146
27391
|
return get_else_ctx(ctx);
|
|
27147
27392
|
}
|
|
27148
27393
|
|
|
@@ -27223,6 +27468,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27223
27468
|
let _SuspendedTextOutputCallback;
|
|
27224
27469
|
let _MetadataCallback;
|
|
27225
27470
|
let _DeviceProfileCallback;
|
|
27471
|
+
let _RecaptchaCallback;
|
|
27226
27472
|
let _FRCallback;
|
|
27227
27473
|
|
|
27228
27474
|
$$self.$$set = $$props => {
|
|
@@ -27253,6 +27499,9 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27253
27499
|
case CallbackType.NameCallback:
|
|
27254
27500
|
$$invalidate(7, _NameCallback = props.callback);
|
|
27255
27501
|
break;
|
|
27502
|
+
case CallbackType.ReCaptchaCallback:
|
|
27503
|
+
$$invalidate(20, _RecaptchaCallback = props.callback);
|
|
27504
|
+
break;
|
|
27256
27505
|
case CallbackType.PasswordCallback:
|
|
27257
27506
|
$$invalidate(8, _PasswordCallback = props.callback);
|
|
27258
27507
|
break;
|
|
@@ -27290,7 +27539,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27290
27539
|
$$invalidate(18, _MetadataCallback = props.callback);
|
|
27291
27540
|
break;
|
|
27292
27541
|
default:
|
|
27293
|
-
$$invalidate(
|
|
27542
|
+
$$invalidate(21, _FRCallback = props.callback);
|
|
27294
27543
|
}
|
|
27295
27544
|
}
|
|
27296
27545
|
}
|
|
@@ -27317,6 +27566,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27317
27566
|
_SuspendedTextOutputCallback,
|
|
27318
27567
|
_MetadataCallback,
|
|
27319
27568
|
_DeviceProfileCallback,
|
|
27569
|
+
_RecaptchaCallback,
|
|
27320
27570
|
_FRCallback
|
|
27321
27571
|
];
|
|
27322
27572
|
}
|