@forgerock/login-widget 1.2.0-beta.5 → 1.2.0-beta.7
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 +566 -348
- package/index.cjs.map +1 -1
- package/index.js +566 -348
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -54,6 +54,14 @@ function is_function(thing) {
|
|
|
54
54
|
function safe_not_equal(a, b) {
|
|
55
55
|
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
|
56
56
|
}
|
|
57
|
+
let src_url_equal_anchor;
|
|
58
|
+
function src_url_equal(element_src, url) {
|
|
59
|
+
if (!src_url_equal_anchor) {
|
|
60
|
+
src_url_equal_anchor = document.createElement('a');
|
|
61
|
+
}
|
|
62
|
+
src_url_equal_anchor.href = url;
|
|
63
|
+
return element_src === src_url_equal_anchor.href;
|
|
64
|
+
}
|
|
57
65
|
function is_empty(obj) {
|
|
58
66
|
return Object.keys(obj).length === 0;
|
|
59
67
|
}
|
|
@@ -12339,7 +12347,10 @@ function widgetApiFactory(componentApi) {
|
|
|
12339
12347
|
// https://backstage.forgerock.com/docs/am/7/setup-guide/sec-rest-realm-rest.html#rest-api-list-realm
|
|
12340
12348
|
realmPath: 'alpha',
|
|
12341
12349
|
// TODO: Once we move to SSR, this default should be more intelligent
|
|
12342
|
-
redirectUri: typeof window === 'object'
|
|
12350
|
+
redirectUri: typeof window === 'object'
|
|
12351
|
+
? // Construct URL with origin and path only, stripping off hash and query params
|
|
12352
|
+
`${window.location.origin}${window.location.pathname}`
|
|
12353
|
+
: 'https://localhost:3000/callback',
|
|
12343
12354
|
scope: 'openid email',
|
|
12344
12355
|
},
|
|
12345
12356
|
// Let user provided config override defaults
|
|
@@ -12638,7 +12649,7 @@ function create_else_block$c(ctx) {
|
|
|
12638
12649
|
}
|
|
12639
12650
|
|
|
12640
12651
|
// (11:0) {#if html}
|
|
12641
|
-
function create_if_block$
|
|
12652
|
+
function create_if_block$s(ctx) {
|
|
12642
12653
|
let current;
|
|
12643
12654
|
const default_slot_template = /*#slots*/ ctx[5].default;
|
|
12644
12655
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null);
|
|
@@ -12735,12 +12746,12 @@ function fallback_block$2(ctx) {
|
|
|
12735
12746
|
};
|
|
12736
12747
|
}
|
|
12737
12748
|
|
|
12738
|
-
function create_fragment$
|
|
12749
|
+
function create_fragment$13(ctx) {
|
|
12739
12750
|
let current_block_type_index;
|
|
12740
12751
|
let if_block;
|
|
12741
12752
|
let if_block_anchor;
|
|
12742
12753
|
let current;
|
|
12743
|
-
const if_block_creators = [create_if_block$
|
|
12754
|
+
const if_block_creators = [create_if_block$s, create_else_block$c];
|
|
12744
12755
|
const if_blocks = [];
|
|
12745
12756
|
|
|
12746
12757
|
function select_block_type(ctx, dirty) {
|
|
@@ -12804,7 +12815,7 @@ function create_fragment$12(ctx) {
|
|
|
12804
12815
|
};
|
|
12805
12816
|
}
|
|
12806
12817
|
|
|
12807
|
-
function instance$
|
|
12818
|
+
function instance$15($$self, $$props, $$invalidate) {
|
|
12808
12819
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12809
12820
|
let { html = false } = $$props;
|
|
12810
12821
|
let { key } = $$props;
|
|
@@ -12832,13 +12843,13 @@ function instance$14($$self, $$props, $$invalidate) {
|
|
|
12832
12843
|
class Locale_strings extends SvelteComponent {
|
|
12833
12844
|
constructor(options) {
|
|
12834
12845
|
super();
|
|
12835
|
-
init(this, options, instance$
|
|
12846
|
+
init(this, options, instance$15, create_fragment$13, safe_not_equal, { html: 0, key: 2, values: 3 });
|
|
12836
12847
|
}
|
|
12837
12848
|
}
|
|
12838
12849
|
|
|
12839
12850
|
/* src/lib/components/icons/x-icon.svelte generated by Svelte v3.59.2 */
|
|
12840
12851
|
|
|
12841
|
-
function create_fragment$
|
|
12852
|
+
function create_fragment$12(ctx) {
|
|
12842
12853
|
let svg;
|
|
12843
12854
|
let path;
|
|
12844
12855
|
let title;
|
|
@@ -12914,7 +12925,7 @@ function create_fragment$11(ctx) {
|
|
|
12914
12925
|
};
|
|
12915
12926
|
}
|
|
12916
12927
|
|
|
12917
|
-
function instance$
|
|
12928
|
+
function instance$14($$self, $$props, $$invalidate) {
|
|
12918
12929
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
12919
12930
|
let { classes = '' } = $$props;
|
|
12920
12931
|
let { size = '24px' } = $$props;
|
|
@@ -12931,7 +12942,7 @@ function instance$13($$self, $$props, $$invalidate) {
|
|
|
12931
12942
|
class X_icon extends SvelteComponent {
|
|
12932
12943
|
constructor(options) {
|
|
12933
12944
|
super();
|
|
12934
|
-
init(this, options, instance$
|
|
12945
|
+
init(this, options, instance$14, create_fragment$12, safe_not_equal, { classes: 0, size: 1 });
|
|
12935
12946
|
}
|
|
12936
12947
|
}
|
|
12937
12948
|
|
|
@@ -13036,7 +13047,7 @@ function create_else_block$b(ctx) {
|
|
|
13036
13047
|
}
|
|
13037
13048
|
|
|
13038
13049
|
// (39:2) {#if withHeader}
|
|
13039
|
-
function create_if_block$
|
|
13050
|
+
function create_if_block$r(ctx) {
|
|
13040
13051
|
let div1;
|
|
13041
13052
|
let div0;
|
|
13042
13053
|
let div0_style_value;
|
|
@@ -13212,7 +13223,7 @@ function create_default_slot$t(ctx) {
|
|
|
13212
13223
|
};
|
|
13213
13224
|
}
|
|
13214
13225
|
|
|
13215
|
-
function create_fragment$
|
|
13226
|
+
function create_fragment$11(ctx) {
|
|
13216
13227
|
let dialog;
|
|
13217
13228
|
let current_block_type_index;
|
|
13218
13229
|
let if_block;
|
|
@@ -13220,7 +13231,7 @@ function create_fragment$10(ctx) {
|
|
|
13220
13231
|
let div;
|
|
13221
13232
|
let dialog_class_value;
|
|
13222
13233
|
let current;
|
|
13223
|
-
const if_block_creators = [create_if_block$
|
|
13234
|
+
const if_block_creators = [create_if_block$r, create_else_block$b];
|
|
13224
13235
|
const if_blocks = [];
|
|
13225
13236
|
|
|
13226
13237
|
function select_block_type(ctx, dirty) {
|
|
@@ -13332,7 +13343,7 @@ function create_fragment$10(ctx) {
|
|
|
13332
13343
|
};
|
|
13333
13344
|
}
|
|
13334
13345
|
|
|
13335
|
-
function instance$
|
|
13346
|
+
function instance$13($$self, $$props, $$invalidate) {
|
|
13336
13347
|
let $styleStore;
|
|
13337
13348
|
component_subscribe($$self, styleStore, $$value => $$invalidate(5, $styleStore = $$value));
|
|
13338
13349
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
@@ -13406,7 +13417,7 @@ class Dialog extends SvelteComponent {
|
|
|
13406
13417
|
constructor(options) {
|
|
13407
13418
|
super();
|
|
13408
13419
|
|
|
13409
|
-
init(this, options, instance$
|
|
13420
|
+
init(this, options, instance$13, create_fragment$11, safe_not_equal, {
|
|
13410
13421
|
dialogEl: 0,
|
|
13411
13422
|
dialogId: 1,
|
|
13412
13423
|
forceOpen: 2,
|
|
@@ -13422,7 +13433,7 @@ class Dialog extends SvelteComponent {
|
|
|
13422
13433
|
|
|
13423
13434
|
/* src/lib/components/icons/alert-icon.svelte generated by Svelte v3.59.2 */
|
|
13424
13435
|
|
|
13425
|
-
function create_fragment
|
|
13436
|
+
function create_fragment$10(ctx) {
|
|
13426
13437
|
let svg;
|
|
13427
13438
|
let path;
|
|
13428
13439
|
let title;
|
|
@@ -13498,7 +13509,7 @@ function create_fragment$$(ctx) {
|
|
|
13498
13509
|
};
|
|
13499
13510
|
}
|
|
13500
13511
|
|
|
13501
|
-
function instance$
|
|
13512
|
+
function instance$12($$self, $$props, $$invalidate) {
|
|
13502
13513
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13503
13514
|
let { classes = '' } = $$props;
|
|
13504
13515
|
let { size = '24px' } = $$props;
|
|
@@ -13515,13 +13526,13 @@ function instance$11($$self, $$props, $$invalidate) {
|
|
|
13515
13526
|
class Alert_icon extends SvelteComponent {
|
|
13516
13527
|
constructor(options) {
|
|
13517
13528
|
super();
|
|
13518
|
-
init(this, options, instance$
|
|
13529
|
+
init(this, options, instance$12, create_fragment$10, safe_not_equal, { classes: 0, size: 1 });
|
|
13519
13530
|
}
|
|
13520
13531
|
}
|
|
13521
13532
|
|
|
13522
13533
|
/* src/lib/components/icons/info-icon.svelte generated by Svelte v3.59.2 */
|
|
13523
13534
|
|
|
13524
|
-
function create_fragment
|
|
13535
|
+
function create_fragment$$(ctx) {
|
|
13525
13536
|
let svg;
|
|
13526
13537
|
let path;
|
|
13527
13538
|
let title;
|
|
@@ -13597,7 +13608,7 @@ function create_fragment$_(ctx) {
|
|
|
13597
13608
|
};
|
|
13598
13609
|
}
|
|
13599
13610
|
|
|
13600
|
-
function instance$
|
|
13611
|
+
function instance$11($$self, $$props, $$invalidate) {
|
|
13601
13612
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13602
13613
|
let { classes = '' } = $$props;
|
|
13603
13614
|
let { size = '24px' } = $$props;
|
|
@@ -13614,13 +13625,13 @@ function instance$10($$self, $$props, $$invalidate) {
|
|
|
13614
13625
|
class Info_icon extends SvelteComponent {
|
|
13615
13626
|
constructor(options) {
|
|
13616
13627
|
super();
|
|
13617
|
-
init(this, options, instance$
|
|
13628
|
+
init(this, options, instance$11, create_fragment$$, safe_not_equal, { classes: 0, size: 1 });
|
|
13618
13629
|
}
|
|
13619
13630
|
}
|
|
13620
13631
|
|
|
13621
13632
|
/* src/lib/components/icons/warning-icon.svelte generated by Svelte v3.59.2 */
|
|
13622
13633
|
|
|
13623
|
-
function create_fragment$
|
|
13634
|
+
function create_fragment$_(ctx) {
|
|
13624
13635
|
let svg;
|
|
13625
13636
|
let path;
|
|
13626
13637
|
let title;
|
|
@@ -13696,7 +13707,7 @@ function create_fragment$Z(ctx) {
|
|
|
13696
13707
|
};
|
|
13697
13708
|
}
|
|
13698
13709
|
|
|
13699
|
-
function instance
|
|
13710
|
+
function instance$10($$self, $$props, $$invalidate) {
|
|
13700
13711
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13701
13712
|
let { classes = '' } = $$props;
|
|
13702
13713
|
let { size = '24px' } = $$props;
|
|
@@ -13713,7 +13724,7 @@ function instance$$($$self, $$props, $$invalidate) {
|
|
|
13713
13724
|
class Warning_icon extends SvelteComponent {
|
|
13714
13725
|
constructor(options) {
|
|
13715
13726
|
super();
|
|
13716
|
-
init(this, options, instance
|
|
13727
|
+
init(this, options, instance$10, create_fragment$_, safe_not_equal, { classes: 0, size: 1 });
|
|
13717
13728
|
}
|
|
13718
13729
|
}
|
|
13719
13730
|
|
|
@@ -13777,7 +13788,7 @@ function create_if_block_1$c(ctx) {
|
|
|
13777
13788
|
}
|
|
13778
13789
|
|
|
13779
13790
|
// (41:4) {#if type === 'error'}
|
|
13780
|
-
function create_if_block$
|
|
13791
|
+
function create_if_block$q(ctx) {
|
|
13781
13792
|
let alerticon;
|
|
13782
13793
|
let current;
|
|
13783
13794
|
alerticon = new Alert_icon({});
|
|
@@ -13805,7 +13816,7 @@ function create_if_block$p(ctx) {
|
|
|
13805
13816
|
};
|
|
13806
13817
|
}
|
|
13807
13818
|
|
|
13808
|
-
function create_fragment$
|
|
13819
|
+
function create_fragment$Z(ctx) {
|
|
13809
13820
|
let div;
|
|
13810
13821
|
let p;
|
|
13811
13822
|
let current_block_type_index;
|
|
@@ -13814,7 +13825,7 @@ function create_fragment$Y(ctx) {
|
|
|
13814
13825
|
let span;
|
|
13815
13826
|
let div_class_value;
|
|
13816
13827
|
let current;
|
|
13817
|
-
const if_block_creators = [create_if_block$
|
|
13828
|
+
const if_block_creators = [create_if_block$q, create_if_block_1$c, create_else_block$a];
|
|
13818
13829
|
const if_blocks = [];
|
|
13819
13830
|
|
|
13820
13831
|
function select_block_type(ctx, dirty) {
|
|
@@ -13941,7 +13952,7 @@ function generateClassString$3(...args) {
|
|
|
13941
13952
|
);
|
|
13942
13953
|
}
|
|
13943
13954
|
|
|
13944
|
-
function instance
|
|
13955
|
+
function instance$$($$self, $$props, $$invalidate) {
|
|
13945
13956
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
13946
13957
|
let { id } = $$props;
|
|
13947
13958
|
let { needsFocus = false } = $$props;
|
|
@@ -13978,13 +13989,13 @@ function instance$_($$self, $$props, $$invalidate) {
|
|
|
13978
13989
|
class Alert extends SvelteComponent {
|
|
13979
13990
|
constructor(options) {
|
|
13980
13991
|
super();
|
|
13981
|
-
init(this, options, instance
|
|
13992
|
+
init(this, options, instance$$, create_fragment$Z, safe_not_equal, { id: 0, needsFocus: 3, type: 1 });
|
|
13982
13993
|
}
|
|
13983
13994
|
}
|
|
13984
13995
|
|
|
13985
13996
|
/* src/lib/components/primitives/spinner/spinner.svelte generated by Svelte v3.59.2 */
|
|
13986
13997
|
|
|
13987
|
-
function create_fragment$
|
|
13998
|
+
function create_fragment$Y(ctx) {
|
|
13988
13999
|
let div;
|
|
13989
14000
|
let span;
|
|
13990
14001
|
let t;
|
|
@@ -14028,7 +14039,7 @@ function create_fragment$X(ctx) {
|
|
|
14028
14039
|
};
|
|
14029
14040
|
}
|
|
14030
14041
|
|
|
14031
|
-
function instance$
|
|
14042
|
+
function instance$_($$self, $$props, $$invalidate) {
|
|
14032
14043
|
let { colorClass } = $$props;
|
|
14033
14044
|
let { layoutClasses } = $$props;
|
|
14034
14045
|
|
|
@@ -14043,13 +14054,13 @@ function instance$Z($$self, $$props, $$invalidate) {
|
|
|
14043
14054
|
class Spinner extends SvelteComponent {
|
|
14044
14055
|
constructor(options) {
|
|
14045
14056
|
super();
|
|
14046
|
-
init(this, options, instance$
|
|
14057
|
+
init(this, options, instance$_, create_fragment$Y, safe_not_equal, { colorClass: 0, layoutClasses: 1 });
|
|
14047
14058
|
}
|
|
14048
14059
|
}
|
|
14049
14060
|
|
|
14050
14061
|
/* src/lib/components/primitives/button/button.svelte generated by Svelte v3.59.2 */
|
|
14051
14062
|
|
|
14052
|
-
function create_if_block$
|
|
14063
|
+
function create_if_block$p(ctx) {
|
|
14053
14064
|
let spinner;
|
|
14054
14065
|
let current;
|
|
14055
14066
|
|
|
@@ -14100,14 +14111,14 @@ function fallback_block$1(ctx) {
|
|
|
14100
14111
|
};
|
|
14101
14112
|
}
|
|
14102
14113
|
|
|
14103
|
-
function create_fragment$
|
|
14114
|
+
function create_fragment$X(ctx) {
|
|
14104
14115
|
let button;
|
|
14105
14116
|
let t;
|
|
14106
14117
|
let button_class_value;
|
|
14107
14118
|
let current;
|
|
14108
14119
|
let mounted;
|
|
14109
14120
|
let dispose;
|
|
14110
|
-
let if_block = /*busy*/ ctx[0] && create_if_block$
|
|
14121
|
+
let if_block = /*busy*/ ctx[0] && create_if_block$p();
|
|
14111
14122
|
const default_slot_template = /*#slots*/ ctx[7].default;
|
|
14112
14123
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[6], null);
|
|
14113
14124
|
const default_slot_or_fallback = default_slot || fallback_block$1();
|
|
@@ -14149,7 +14160,7 @@ function create_fragment$W(ctx) {
|
|
|
14149
14160
|
transition_in(if_block, 1);
|
|
14150
14161
|
}
|
|
14151
14162
|
} else {
|
|
14152
|
-
if_block = create_if_block$
|
|
14163
|
+
if_block = create_if_block$p();
|
|
14153
14164
|
if_block.c();
|
|
14154
14165
|
transition_in(if_block, 1);
|
|
14155
14166
|
if_block.m(button, t);
|
|
@@ -14230,7 +14241,7 @@ function generateClassString$2(...args) {
|
|
|
14230
14241
|
);
|
|
14231
14242
|
}
|
|
14232
14243
|
|
|
14233
|
-
function instance$
|
|
14244
|
+
function instance$Z($$self, $$props, $$invalidate) {
|
|
14234
14245
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14235
14246
|
let { busy = false } = $$props;
|
|
14236
14247
|
let { classes = '' } = $$props;
|
|
@@ -14260,7 +14271,7 @@ class Button extends SvelteComponent {
|
|
|
14260
14271
|
constructor(options) {
|
|
14261
14272
|
super();
|
|
14262
14273
|
|
|
14263
|
-
init(this, options, instance$
|
|
14274
|
+
init(this, options, instance$Z, create_fragment$X, safe_not_equal, {
|
|
14264
14275
|
busy: 0,
|
|
14265
14276
|
classes: 1,
|
|
14266
14277
|
onClick: 2,
|
|
@@ -14273,7 +14284,7 @@ class Button extends SvelteComponent {
|
|
|
14273
14284
|
|
|
14274
14285
|
/* src/lib/components/primitives/form/form.svelte generated by Svelte v3.59.2 */
|
|
14275
14286
|
|
|
14276
|
-
function create_fragment$
|
|
14287
|
+
function create_fragment$W(ctx) {
|
|
14277
14288
|
let form;
|
|
14278
14289
|
let form_class_value;
|
|
14279
14290
|
let current;
|
|
@@ -14360,7 +14371,7 @@ function create_fragment$V(ctx) {
|
|
|
14360
14371
|
};
|
|
14361
14372
|
}
|
|
14362
14373
|
|
|
14363
|
-
function instance$
|
|
14374
|
+
function instance$Y($$self, $$props, $$invalidate) {
|
|
14364
14375
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14365
14376
|
let { ariaDescribedBy } = $$props;
|
|
14366
14377
|
let { formEl = null } = $$props;
|
|
@@ -14487,7 +14498,7 @@ class Form extends SvelteComponent {
|
|
|
14487
14498
|
constructor(options) {
|
|
14488
14499
|
super();
|
|
14489
14500
|
|
|
14490
|
-
init(this, options, instance$
|
|
14501
|
+
init(this, options, instance$Y, create_fragment$W, safe_not_equal, {
|
|
14491
14502
|
ariaDescribedBy: 1,
|
|
14492
14503
|
formEl: 0,
|
|
14493
14504
|
id: 2,
|
|
@@ -14552,7 +14563,7 @@ function create_else_block$9(ctx) {
|
|
|
14552
14563
|
}
|
|
14553
14564
|
|
|
14554
14565
|
// (10:0) {#if html}
|
|
14555
|
-
function create_if_block$
|
|
14566
|
+
function create_if_block$o(ctx) {
|
|
14556
14567
|
let current;
|
|
14557
14568
|
const default_slot_template = /*#slots*/ ctx[4].default;
|
|
14558
14569
|
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[3], null);
|
|
@@ -14649,12 +14660,12 @@ function fallback_block(ctx) {
|
|
|
14649
14660
|
};
|
|
14650
14661
|
}
|
|
14651
14662
|
|
|
14652
|
-
function create_fragment$
|
|
14663
|
+
function create_fragment$V(ctx) {
|
|
14653
14664
|
let current_block_type_index;
|
|
14654
14665
|
let if_block;
|
|
14655
14666
|
let if_block_anchor;
|
|
14656
14667
|
let current;
|
|
14657
|
-
const if_block_creators = [create_if_block$
|
|
14668
|
+
const if_block_creators = [create_if_block$o, create_else_block$9];
|
|
14658
14669
|
const if_blocks = [];
|
|
14659
14670
|
|
|
14660
14671
|
function select_block_type(ctx, dirty) {
|
|
@@ -14718,7 +14729,7 @@ function create_fragment$U(ctx) {
|
|
|
14718
14729
|
};
|
|
14719
14730
|
}
|
|
14720
14731
|
|
|
14721
|
-
function instance$
|
|
14732
|
+
function instance$X($$self, $$props, $$invalidate) {
|
|
14722
14733
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14723
14734
|
let { html = false } = $$props;
|
|
14724
14735
|
let { string } = $$props;
|
|
@@ -14744,13 +14755,13 @@ function instance$W($$self, $$props, $$invalidate) {
|
|
|
14744
14755
|
class Server_strings extends SvelteComponent {
|
|
14745
14756
|
constructor(options) {
|
|
14746
14757
|
super();
|
|
14747
|
-
init(this, options, instance$
|
|
14758
|
+
init(this, options, instance$X, create_fragment$V, safe_not_equal, { html: 0, string: 2 });
|
|
14748
14759
|
}
|
|
14749
14760
|
}
|
|
14750
14761
|
|
|
14751
14762
|
/* src/lib/components/icons/shield-icon.svelte generated by Svelte v3.59.2 */
|
|
14752
14763
|
|
|
14753
|
-
function create_fragment$
|
|
14764
|
+
function create_fragment$U(ctx) {
|
|
14754
14765
|
let svg;
|
|
14755
14766
|
let path;
|
|
14756
14767
|
let title;
|
|
@@ -14826,7 +14837,7 @@ function create_fragment$T(ctx) {
|
|
|
14826
14837
|
};
|
|
14827
14838
|
}
|
|
14828
14839
|
|
|
14829
|
-
function instance$
|
|
14840
|
+
function instance$W($$self, $$props, $$invalidate) {
|
|
14830
14841
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
14831
14842
|
let { classes = '' } = $$props;
|
|
14832
14843
|
let { size = '24px' } = $$props;
|
|
@@ -14843,13 +14854,13 @@ function instance$V($$self, $$props, $$invalidate) {
|
|
|
14843
14854
|
class Shield_icon extends SvelteComponent {
|
|
14844
14855
|
constructor(options) {
|
|
14845
14856
|
super();
|
|
14846
|
-
init(this, options, instance$
|
|
14857
|
+
init(this, options, instance$W, create_fragment$U, safe_not_equal, { classes: 0, size: 1 });
|
|
14847
14858
|
}
|
|
14848
14859
|
}
|
|
14849
14860
|
|
|
14850
14861
|
/* src/lib/journey/stages/_utilities/back-to.svelte generated by Svelte v3.59.2 */
|
|
14851
14862
|
|
|
14852
|
-
function create_if_block$
|
|
14863
|
+
function create_if_block$n(ctx) {
|
|
14853
14864
|
let p;
|
|
14854
14865
|
let button;
|
|
14855
14866
|
let t_value = interpolate(/*string*/ ctx[1]) + "";
|
|
@@ -14885,9 +14896,9 @@ function create_if_block$m(ctx) {
|
|
|
14885
14896
|
};
|
|
14886
14897
|
}
|
|
14887
14898
|
|
|
14888
|
-
function create_fragment$
|
|
14899
|
+
function create_fragment$T(ctx) {
|
|
14889
14900
|
let if_block_anchor;
|
|
14890
|
-
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$
|
|
14901
|
+
let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$n(ctx);
|
|
14891
14902
|
|
|
14892
14903
|
return {
|
|
14893
14904
|
c() {
|
|
@@ -14903,7 +14914,7 @@ function create_fragment$S(ctx) {
|
|
|
14903
14914
|
if (if_block) {
|
|
14904
14915
|
if_block.p(ctx, dirty);
|
|
14905
14916
|
} else {
|
|
14906
|
-
if_block = create_if_block$
|
|
14917
|
+
if_block = create_if_block$n(ctx);
|
|
14907
14918
|
if_block.c();
|
|
14908
14919
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
14909
14920
|
}
|
|
@@ -14921,7 +14932,7 @@ function create_fragment$S(ctx) {
|
|
|
14921
14932
|
};
|
|
14922
14933
|
}
|
|
14923
14934
|
|
|
14924
|
-
function instance$
|
|
14935
|
+
function instance$V($$self, $$props, $$invalidate) {
|
|
14925
14936
|
let $stack;
|
|
14926
14937
|
let $configuredJourneysStore;
|
|
14927
14938
|
component_subscribe($$self, configuredJourneysStore, $$value => $$invalidate(5, $configuredJourneysStore = $$value));
|
|
@@ -14962,7 +14973,7 @@ function instance$U($$self, $$props, $$invalidate) {
|
|
|
14962
14973
|
class Back_to extends SvelteComponent {
|
|
14963
14974
|
constructor(options) {
|
|
14964
14975
|
super();
|
|
14965
|
-
init(this, options, instance$
|
|
14976
|
+
init(this, options, instance$V, create_fragment$T, safe_not_equal, { journey: 0 });
|
|
14966
14977
|
}
|
|
14967
14978
|
}
|
|
14968
14979
|
|
|
@@ -15426,7 +15437,7 @@ function getAttributeValidationFailureText(callback) {
|
|
|
15426
15437
|
|
|
15427
15438
|
/* src/lib/components/primitives/message/input-message.svelte generated by Svelte v3.59.2 */
|
|
15428
15439
|
|
|
15429
|
-
function create_if_block$
|
|
15440
|
+
function create_if_block$m(ctx) {
|
|
15430
15441
|
let p;
|
|
15431
15442
|
let p_class_value;
|
|
15432
15443
|
let p_id_value;
|
|
@@ -15457,9 +15468,9 @@ function create_if_block$l(ctx) {
|
|
|
15457
15468
|
};
|
|
15458
15469
|
}
|
|
15459
15470
|
|
|
15460
|
-
function create_fragment$
|
|
15471
|
+
function create_fragment$S(ctx) {
|
|
15461
15472
|
let if_block_anchor;
|
|
15462
|
-
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$
|
|
15473
|
+
let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$m(ctx);
|
|
15463
15474
|
|
|
15464
15475
|
return {
|
|
15465
15476
|
c() {
|
|
@@ -15475,7 +15486,7 @@ function create_fragment$R(ctx) {
|
|
|
15475
15486
|
if (if_block) {
|
|
15476
15487
|
if_block.p(ctx, dirty);
|
|
15477
15488
|
} else {
|
|
15478
|
-
if_block = create_if_block$
|
|
15489
|
+
if_block = create_if_block$m(ctx);
|
|
15479
15490
|
if_block.c();
|
|
15480
15491
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
15481
15492
|
}
|
|
@@ -15507,7 +15518,7 @@ function generateClassString$1(...args) {
|
|
|
15507
15518
|
);
|
|
15508
15519
|
}
|
|
15509
15520
|
|
|
15510
|
-
function instance$
|
|
15521
|
+
function instance$U($$self, $$props, $$invalidate) {
|
|
15511
15522
|
let { classes = '' } = $$props;
|
|
15512
15523
|
let { dirtyMessage } = $$props;
|
|
15513
15524
|
let { key = undefined } = $$props;
|
|
@@ -15538,7 +15549,7 @@ class Input_message extends SvelteComponent {
|
|
|
15538
15549
|
constructor(options) {
|
|
15539
15550
|
super();
|
|
15540
15551
|
|
|
15541
|
-
init(this, options, instance$
|
|
15552
|
+
init(this, options, instance$U, create_fragment$S, safe_not_equal, {
|
|
15542
15553
|
classes: 0,
|
|
15543
15554
|
dirtyMessage: 1,
|
|
15544
15555
|
key: 2,
|
|
@@ -15550,7 +15561,7 @@ class Input_message extends SvelteComponent {
|
|
|
15550
15561
|
|
|
15551
15562
|
/* src/lib/components/primitives/label/label.svelte generated by Svelte v3.59.2 */
|
|
15552
15563
|
|
|
15553
|
-
function create_fragment$
|
|
15564
|
+
function create_fragment$R(ctx) {
|
|
15554
15565
|
let label;
|
|
15555
15566
|
let label_class_value;
|
|
15556
15567
|
let current;
|
|
@@ -15613,7 +15624,7 @@ function create_fragment$Q(ctx) {
|
|
|
15613
15624
|
};
|
|
15614
15625
|
}
|
|
15615
15626
|
|
|
15616
|
-
function instance$
|
|
15627
|
+
function instance$T($$self, $$props, $$invalidate) {
|
|
15617
15628
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15618
15629
|
let { key } = $$props;
|
|
15619
15630
|
let { classes = '' } = $$props;
|
|
@@ -15630,7 +15641,7 @@ function instance$S($$self, $$props, $$invalidate) {
|
|
|
15630
15641
|
class Label extends SvelteComponent {
|
|
15631
15642
|
constructor(options) {
|
|
15632
15643
|
super();
|
|
15633
|
-
init(this, options, instance$
|
|
15644
|
+
init(this, options, instance$T, create_fragment$R, safe_not_equal, { key: 0, classes: 1 });
|
|
15634
15645
|
}
|
|
15635
15646
|
}
|
|
15636
15647
|
|
|
@@ -15693,7 +15704,7 @@ function create_default_slot$s(ctx) {
|
|
|
15693
15704
|
};
|
|
15694
15705
|
}
|
|
15695
15706
|
|
|
15696
|
-
function create_fragment$
|
|
15707
|
+
function create_fragment$Q(ctx) {
|
|
15697
15708
|
let div1;
|
|
15698
15709
|
let input;
|
|
15699
15710
|
let input_data_message_value;
|
|
@@ -15817,7 +15828,7 @@ function create_fragment$P(ctx) {
|
|
|
15817
15828
|
};
|
|
15818
15829
|
}
|
|
15819
15830
|
|
|
15820
|
-
function instance$
|
|
15831
|
+
function instance$S($$self, $$props, $$invalidate) {
|
|
15821
15832
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
15822
15833
|
let { checkValidity = null } = $$props;
|
|
15823
15834
|
let { message = '' } = $$props;
|
|
@@ -15886,7 +15897,7 @@ let Animated$1 = class Animated extends SvelteComponent {
|
|
|
15886
15897
|
constructor(options) {
|
|
15887
15898
|
super();
|
|
15888
15899
|
|
|
15889
|
-
init(this, options, instance$
|
|
15900
|
+
init(this, options, instance$S, create_fragment$Q, safe_not_equal, {
|
|
15890
15901
|
checkValidity: 8,
|
|
15891
15902
|
message: 1,
|
|
15892
15903
|
isFirstInvalidInput: 9,
|
|
@@ -15949,7 +15960,7 @@ function create_default_slot$r(ctx) {
|
|
|
15949
15960
|
};
|
|
15950
15961
|
}
|
|
15951
15962
|
|
|
15952
|
-
function create_fragment$
|
|
15963
|
+
function create_fragment$P(ctx) {
|
|
15953
15964
|
let input;
|
|
15954
15965
|
let input_aria_describedby_value;
|
|
15955
15966
|
let t;
|
|
@@ -16046,7 +16057,7 @@ function create_fragment$O(ctx) {
|
|
|
16046
16057
|
};
|
|
16047
16058
|
}
|
|
16048
16059
|
|
|
16049
|
-
function instance$
|
|
16060
|
+
function instance$R($$self, $$props, $$invalidate) {
|
|
16050
16061
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16051
16062
|
let { isFirstInvalidInput } = $$props;
|
|
16052
16063
|
let { isRequired = false } = $$props;
|
|
@@ -16097,7 +16108,7 @@ class Checkbox extends SvelteComponent {
|
|
|
16097
16108
|
constructor(options) {
|
|
16098
16109
|
super();
|
|
16099
16110
|
|
|
16100
|
-
init(this, options, instance$
|
|
16111
|
+
init(this, options, instance$R, create_fragment$P, safe_not_equal, {
|
|
16101
16112
|
isFirstInvalidInput: 6,
|
|
16102
16113
|
isRequired: 0,
|
|
16103
16114
|
isInvalid: 1,
|
|
@@ -16157,7 +16168,7 @@ function create_default_slot$q(ctx) {
|
|
|
16157
16168
|
};
|
|
16158
16169
|
}
|
|
16159
16170
|
|
|
16160
|
-
function create_fragment$
|
|
16171
|
+
function create_fragment$O(ctx) {
|
|
16161
16172
|
let div;
|
|
16162
16173
|
let checkbox;
|
|
16163
16174
|
let t;
|
|
@@ -16244,7 +16255,7 @@ function create_fragment$N(ctx) {
|
|
|
16244
16255
|
};
|
|
16245
16256
|
}
|
|
16246
16257
|
|
|
16247
|
-
function instance$
|
|
16258
|
+
function instance$Q($$self, $$props, $$invalidate) {
|
|
16248
16259
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
16249
16260
|
let { checkValidity = null } = $$props;
|
|
16250
16261
|
let { message = '' } = $$props;
|
|
@@ -16297,7 +16308,7 @@ let Standard$1 = class Standard extends SvelteComponent {
|
|
|
16297
16308
|
constructor(options) {
|
|
16298
16309
|
super();
|
|
16299
16310
|
|
|
16300
|
-
init(this, options, instance$
|
|
16311
|
+
init(this, options, instance$Q, create_fragment$O, safe_not_equal, {
|
|
16301
16312
|
checkValidity: 8,
|
|
16302
16313
|
message: 1,
|
|
16303
16314
|
isFirstInvalidInput: 2,
|
|
@@ -16388,7 +16399,7 @@ function create_key_block$5(ctx) {
|
|
|
16388
16399
|
};
|
|
16389
16400
|
}
|
|
16390
16401
|
|
|
16391
|
-
function create_fragment$
|
|
16402
|
+
function create_fragment$N(ctx) {
|
|
16392
16403
|
let previous_key = /*callback*/ ctx[0];
|
|
16393
16404
|
let key_block_anchor;
|
|
16394
16405
|
let current;
|
|
@@ -16433,7 +16444,7 @@ function create_fragment$M(ctx) {
|
|
|
16433
16444
|
};
|
|
16434
16445
|
}
|
|
16435
16446
|
|
|
16436
|
-
function instance$
|
|
16447
|
+
function instance$P($$self, $$props, $$invalidate) {
|
|
16437
16448
|
const stepMetadata = null;
|
|
16438
16449
|
const selfSubmitFunction = null;
|
|
16439
16450
|
let { callback } = $$props;
|
|
@@ -16500,7 +16511,7 @@ let Boolean$1 = class Boolean extends SvelteComponent {
|
|
|
16500
16511
|
constructor(options) {
|
|
16501
16512
|
super();
|
|
16502
16513
|
|
|
16503
|
-
init(this, options, instance$
|
|
16514
|
+
init(this, options, instance$P, create_fragment$N, safe_not_equal, {
|
|
16504
16515
|
stepMetadata: 9,
|
|
16505
16516
|
selfSubmitFunction: 10,
|
|
16506
16517
|
callback: 0,
|
|
@@ -16526,7 +16537,7 @@ function get_each_context$a(ctx, list, i) {
|
|
|
16526
16537
|
return child_ctx;
|
|
16527
16538
|
}
|
|
16528
16539
|
|
|
16529
|
-
// (
|
|
16540
|
+
// (40:8) <Label key={`${key}-${option.value}`} classes="tw_input-spacing tw_grid tw_grid-cols-[2.5em_1fr] tw_relative" >
|
|
16530
16541
|
function create_default_slot$o(ctx) {
|
|
16531
16542
|
let span;
|
|
16532
16543
|
let t0;
|
|
@@ -16586,7 +16597,6 @@ function create_each_block$a(ctx) {
|
|
|
16586
16597
|
t0 = space();
|
|
16587
16598
|
create_component(label.$$.fragment);
|
|
16588
16599
|
t1 = space();
|
|
16589
|
-
attr(input, "aria-invalid", /*isInvalid*/ ctx[4]);
|
|
16590
16600
|
attr(input, "class", "tw_radio-input_animated dark:tw_radio-input_animated_dark tw_sr-only");
|
|
16591
16601
|
input.checked = input_checked_value = /*defaultOption*/ ctx[0] === /*option*/ ctx[13].value;
|
|
16592
16602
|
attr(input, "id", input_id_value = `${/*key*/ ctx[5]}-${/*option*/ ctx[13].value}`);
|
|
@@ -16616,10 +16626,6 @@ function create_each_block$a(ctx) {
|
|
|
16616
16626
|
p(new_ctx, dirty) {
|
|
16617
16627
|
ctx = new_ctx;
|
|
16618
16628
|
|
|
16619
|
-
if (!current || dirty & /*isInvalid*/ 16) {
|
|
16620
|
-
attr(input, "aria-invalid", /*isInvalid*/ ctx[4]);
|
|
16621
|
-
}
|
|
16622
|
-
|
|
16623
16629
|
if (!current || dirty & /*defaultOption, options*/ 257 && input_checked_value !== (input_checked_value = /*defaultOption*/ ctx[0] === /*option*/ ctx[13].value)) {
|
|
16624
16630
|
input.checked = input_checked_value;
|
|
16625
16631
|
}
|
|
@@ -16668,7 +16674,7 @@ function create_each_block$a(ctx) {
|
|
|
16668
16674
|
};
|
|
16669
16675
|
}
|
|
16670
16676
|
|
|
16671
|
-
function create_fragment$
|
|
16677
|
+
function create_fragment$M(ctx) {
|
|
16672
16678
|
let fieldset;
|
|
16673
16679
|
let legend;
|
|
16674
16680
|
let t0;
|
|
@@ -16737,7 +16743,7 @@ function create_fragment$L(ctx) {
|
|
|
16737
16743
|
p(ctx, [dirty]) {
|
|
16738
16744
|
if (!current || dirty & /*groupLabel*/ 4) set_data(t0, /*groupLabel*/ ctx[2]);
|
|
16739
16745
|
|
|
16740
|
-
if (dirty & /*key, options,
|
|
16746
|
+
if (dirty & /*key, options, defaultOption, name, isRequired, inputEl, onChange*/ 1513) {
|
|
16741
16747
|
each_value = /*options*/ ctx[8];
|
|
16742
16748
|
let i;
|
|
16743
16749
|
|
|
@@ -16799,7 +16805,7 @@ function create_fragment$L(ctx) {
|
|
|
16799
16805
|
};
|
|
16800
16806
|
}
|
|
16801
16807
|
|
|
16802
|
-
function instance$
|
|
16808
|
+
function instance$O($$self, $$props, $$invalidate) {
|
|
16803
16809
|
let { defaultOption = null } = $$props;
|
|
16804
16810
|
let { message = '' } = $$props;
|
|
16805
16811
|
let { groupLabel = '' } = $$props;
|
|
@@ -16861,7 +16867,7 @@ class Animated extends SvelteComponent {
|
|
|
16861
16867
|
constructor(options) {
|
|
16862
16868
|
super();
|
|
16863
16869
|
|
|
16864
|
-
init(this, options, instance$
|
|
16870
|
+
init(this, options, instance$O, create_fragment$M, safe_not_equal, {
|
|
16865
16871
|
defaultOption: 0,
|
|
16866
16872
|
message: 1,
|
|
16867
16873
|
groupLabel: 2,
|
|
@@ -16881,8 +16887,8 @@ class Animated extends SvelteComponent {
|
|
|
16881
16887
|
|
|
16882
16888
|
function create_default_slot$n(ctx) {
|
|
16883
16889
|
let current;
|
|
16884
|
-
const default_slot_template = /*#slots*/ ctx[
|
|
16885
|
-
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[
|
|
16890
|
+
const default_slot_template = /*#slots*/ ctx[8].default;
|
|
16891
|
+
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[10], null);
|
|
16886
16892
|
|
|
16887
16893
|
return {
|
|
16888
16894
|
c() {
|
|
@@ -16897,15 +16903,15 @@ function create_default_slot$n(ctx) {
|
|
|
16897
16903
|
},
|
|
16898
16904
|
p(ctx, dirty) {
|
|
16899
16905
|
if (default_slot) {
|
|
16900
|
-
if (default_slot.p && (!current || dirty & /*$$scope*/
|
|
16906
|
+
if (default_slot.p && (!current || dirty & /*$$scope*/ 1024)) {
|
|
16901
16907
|
update_slot_base(
|
|
16902
16908
|
default_slot,
|
|
16903
16909
|
default_slot_template,
|
|
16904
16910
|
ctx,
|
|
16905
|
-
/*$$scope*/ ctx[
|
|
16911
|
+
/*$$scope*/ ctx[10],
|
|
16906
16912
|
!current
|
|
16907
|
-
? get_all_dirty_from_scope(/*$$scope*/ ctx[
|
|
16908
|
-
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[
|
|
16913
|
+
? get_all_dirty_from_scope(/*$$scope*/ ctx[10])
|
|
16914
|
+
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[10], dirty, null),
|
|
16909
16915
|
null
|
|
16910
16916
|
);
|
|
16911
16917
|
}
|
|
@@ -16926,7 +16932,7 @@ function create_default_slot$n(ctx) {
|
|
|
16926
16932
|
};
|
|
16927
16933
|
}
|
|
16928
16934
|
|
|
16929
|
-
function create_fragment$
|
|
16935
|
+
function create_fragment$L(ctx) {
|
|
16930
16936
|
let input;
|
|
16931
16937
|
let input_aria_describedby_value;
|
|
16932
16938
|
let t;
|
|
@@ -16937,7 +16943,7 @@ function create_fragment$K(ctx) {
|
|
|
16937
16943
|
|
|
16938
16944
|
label = new Label({
|
|
16939
16945
|
props: {
|
|
16940
|
-
key: /*key*/ ctx[
|
|
16946
|
+
key: /*key*/ ctx[2],
|
|
16941
16947
|
$$slots: { default: [create_default_slot$n] },
|
|
16942
16948
|
$$scope: { ctx }
|
|
16943
16949
|
}
|
|
@@ -16948,26 +16954,25 @@ function create_fragment$K(ctx) {
|
|
|
16948
16954
|
input = element("input");
|
|
16949
16955
|
t = space();
|
|
16950
16956
|
create_component(label.$$.fragment);
|
|
16951
|
-
attr(input, "aria-describedby", input_aria_describedby_value = `${/*key*/ ctx[
|
|
16952
|
-
attr(input, "aria-invalid", /*isInvalid*/ ctx[2]);
|
|
16957
|
+
attr(input, "aria-describedby", input_aria_describedby_value = `${/*key*/ ctx[2]}-message`);
|
|
16953
16958
|
attr(input, "class", "tw_checkbox-input dark:tw_checkbox-input_dark tw_focusable-element dark:tw_focusable-element_dark");
|
|
16954
16959
|
input.checked = /*checked*/ ctx[0];
|
|
16955
|
-
attr(input, "id", /*key*/ ctx[
|
|
16956
|
-
attr(input, "name", /*name*/ ctx[
|
|
16960
|
+
attr(input, "id", /*key*/ ctx[2]);
|
|
16961
|
+
attr(input, "name", /*name*/ ctx[3]);
|
|
16957
16962
|
input.required = /*isRequired*/ ctx[1];
|
|
16958
16963
|
attr(input, "type", "radio");
|
|
16959
|
-
input.value = /*value*/ ctx[
|
|
16964
|
+
input.value = /*value*/ ctx[5];
|
|
16960
16965
|
},
|
|
16961
16966
|
m(target, anchor) {
|
|
16962
16967
|
insert(target, input, anchor);
|
|
16963
|
-
/*input_binding*/ ctx[
|
|
16968
|
+
/*input_binding*/ ctx[9](input);
|
|
16964
16969
|
insert(target, t, anchor);
|
|
16965
16970
|
mount_component(label, target, anchor);
|
|
16966
16971
|
current = true;
|
|
16967
16972
|
|
|
16968
16973
|
if (!mounted) {
|
|
16969
16974
|
dispose = listen(input, "change", function () {
|
|
16970
|
-
if (is_function(/*onChange*/ ctx[
|
|
16975
|
+
if (is_function(/*onChange*/ ctx[4])) /*onChange*/ ctx[4].apply(this, arguments);
|
|
16971
16976
|
});
|
|
16972
16977
|
|
|
16973
16978
|
mounted = true;
|
|
@@ -16976,38 +16981,34 @@ function create_fragment$K(ctx) {
|
|
|
16976
16981
|
p(new_ctx, [dirty]) {
|
|
16977
16982
|
ctx = new_ctx;
|
|
16978
16983
|
|
|
16979
|
-
if (!current || dirty & /*key*/
|
|
16984
|
+
if (!current || dirty & /*key*/ 4 && input_aria_describedby_value !== (input_aria_describedby_value = `${/*key*/ ctx[2]}-message`)) {
|
|
16980
16985
|
attr(input, "aria-describedby", input_aria_describedby_value);
|
|
16981
16986
|
}
|
|
16982
16987
|
|
|
16983
|
-
if (!current || dirty & /*isInvalid*/ 4) {
|
|
16984
|
-
attr(input, "aria-invalid", /*isInvalid*/ ctx[2]);
|
|
16985
|
-
}
|
|
16986
|
-
|
|
16987
16988
|
if (!current || dirty & /*checked*/ 1) {
|
|
16988
16989
|
input.checked = /*checked*/ ctx[0];
|
|
16989
16990
|
}
|
|
16990
16991
|
|
|
16991
|
-
if (!current || dirty & /*key*/
|
|
16992
|
-
attr(input, "id", /*key*/ ctx[
|
|
16992
|
+
if (!current || dirty & /*key*/ 4) {
|
|
16993
|
+
attr(input, "id", /*key*/ ctx[2]);
|
|
16993
16994
|
}
|
|
16994
16995
|
|
|
16995
|
-
if (!current || dirty & /*name*/
|
|
16996
|
-
attr(input, "name", /*name*/ ctx[
|
|
16996
|
+
if (!current || dirty & /*name*/ 8) {
|
|
16997
|
+
attr(input, "name", /*name*/ ctx[3]);
|
|
16997
16998
|
}
|
|
16998
16999
|
|
|
16999
17000
|
if (!current || dirty & /*isRequired*/ 2) {
|
|
17000
17001
|
input.required = /*isRequired*/ ctx[1];
|
|
17001
17002
|
}
|
|
17002
17003
|
|
|
17003
|
-
if (!current || dirty & /*value*/
|
|
17004
|
-
input.value = /*value*/ ctx[
|
|
17004
|
+
if (!current || dirty & /*value*/ 32) {
|
|
17005
|
+
input.value = /*value*/ ctx[5];
|
|
17005
17006
|
}
|
|
17006
17007
|
|
|
17007
17008
|
const label_changes = {};
|
|
17008
|
-
if (dirty & /*key*/
|
|
17009
|
+
if (dirty & /*key*/ 4) label_changes.key = /*key*/ ctx[2];
|
|
17009
17010
|
|
|
17010
|
-
if (dirty & /*$$scope*/
|
|
17011
|
+
if (dirty & /*$$scope*/ 1024) {
|
|
17011
17012
|
label_changes.$$scope = { dirty, ctx };
|
|
17012
17013
|
}
|
|
17013
17014
|
|
|
@@ -17024,7 +17025,7 @@ function create_fragment$K(ctx) {
|
|
|
17024
17025
|
},
|
|
17025
17026
|
d(detaching) {
|
|
17026
17027
|
if (detaching) detach(input);
|
|
17027
|
-
/*input_binding*/ ctx[
|
|
17028
|
+
/*input_binding*/ ctx[9](null);
|
|
17028
17029
|
if (detaching) detach(t);
|
|
17029
17030
|
destroy_component(label, detaching);
|
|
17030
17031
|
mounted = false;
|
|
@@ -17033,12 +17034,11 @@ function create_fragment$K(ctx) {
|
|
|
17033
17034
|
};
|
|
17034
17035
|
}
|
|
17035
17036
|
|
|
17036
|
-
function instance$
|
|
17037
|
+
function instance$N($$self, $$props, $$invalidate) {
|
|
17037
17038
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
17038
17039
|
let { checked = false } = $$props;
|
|
17039
17040
|
let { isFirstInvalidInput } = $$props;
|
|
17040
17041
|
let { isRequired = false } = $$props;
|
|
17041
|
-
let { isInvalid = false } = $$props;
|
|
17042
17042
|
let { key } = $$props;
|
|
17043
17043
|
let { name } = $$props;
|
|
17044
17044
|
let { onChange } = $$props;
|
|
@@ -17054,26 +17054,24 @@ function instance$M($$self, $$props, $$invalidate) {
|
|
|
17054
17054
|
function input_binding($$value) {
|
|
17055
17055
|
binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
|
17056
17056
|
inputEl = $$value;
|
|
17057
|
-
$$invalidate(
|
|
17057
|
+
$$invalidate(6, inputEl);
|
|
17058
17058
|
});
|
|
17059
17059
|
}
|
|
17060
17060
|
|
|
17061
17061
|
$$self.$$set = $$props => {
|
|
17062
17062
|
if ('checked' in $$props) $$invalidate(0, checked = $$props.checked);
|
|
17063
|
-
if ('isFirstInvalidInput' in $$props) $$invalidate(
|
|
17063
|
+
if ('isFirstInvalidInput' in $$props) $$invalidate(7, isFirstInvalidInput = $$props.isFirstInvalidInput);
|
|
17064
17064
|
if ('isRequired' in $$props) $$invalidate(1, isRequired = $$props.isRequired);
|
|
17065
|
-
if ('
|
|
17066
|
-
if ('
|
|
17067
|
-
if ('
|
|
17068
|
-
if ('
|
|
17069
|
-
if ('
|
|
17070
|
-
if ('$$scope' in $$props) $$invalidate(11, $$scope = $$props.$$scope);
|
|
17065
|
+
if ('key' in $$props) $$invalidate(2, key = $$props.key);
|
|
17066
|
+
if ('name' in $$props) $$invalidate(3, name = $$props.name);
|
|
17067
|
+
if ('onChange' in $$props) $$invalidate(4, onChange = $$props.onChange);
|
|
17068
|
+
if ('value' in $$props) $$invalidate(5, value = $$props.value);
|
|
17069
|
+
if ('$$scope' in $$props) $$invalidate(10, $$scope = $$props.$$scope);
|
|
17071
17070
|
};
|
|
17072
17071
|
|
|
17073
17072
|
return [
|
|
17074
17073
|
checked,
|
|
17075
17074
|
isRequired,
|
|
17076
|
-
isInvalid,
|
|
17077
17075
|
key,
|
|
17078
17076
|
name,
|
|
17079
17077
|
onChange,
|
|
@@ -17090,15 +17088,14 @@ class Radio extends SvelteComponent {
|
|
|
17090
17088
|
constructor(options) {
|
|
17091
17089
|
super();
|
|
17092
17090
|
|
|
17093
|
-
init(this, options, instance$
|
|
17091
|
+
init(this, options, instance$N, create_fragment$L, safe_not_equal, {
|
|
17094
17092
|
checked: 0,
|
|
17095
|
-
isFirstInvalidInput:
|
|
17093
|
+
isFirstInvalidInput: 7,
|
|
17096
17094
|
isRequired: 1,
|
|
17097
|
-
|
|
17098
|
-
|
|
17099
|
-
|
|
17100
|
-
|
|
17101
|
-
value: 6
|
|
17095
|
+
key: 2,
|
|
17096
|
+
name: 3,
|
|
17097
|
+
onChange: 4,
|
|
17098
|
+
value: 5
|
|
17102
17099
|
});
|
|
17103
17100
|
}
|
|
17104
17101
|
}
|
|
@@ -17111,7 +17108,7 @@ function get_each_context$9(ctx, list, i) {
|
|
|
17111
17108
|
return child_ctx;
|
|
17112
17109
|
}
|
|
17113
17110
|
|
|
17114
|
-
// (21:6) <Radio checked={defaultOption === option.value} {isFirstInvalidInput} {isRequired}
|
|
17111
|
+
// (21:6) <Radio checked={defaultOption === option.value} {isFirstInvalidInput} {isRequired} key={`${key}-${option.value}`} {name} {onChange} value={option.value} >
|
|
17115
17112
|
function create_default_slot$m(ctx) {
|
|
17116
17113
|
let t_value = /*option*/ ctx[11].text + "";
|
|
17117
17114
|
let t;
|
|
@@ -17144,7 +17141,6 @@ function create_each_block$9(ctx) {
|
|
|
17144
17141
|
checked: /*defaultOption*/ ctx[0] === /*option*/ ctx[11].value,
|
|
17145
17142
|
isFirstInvalidInput: /*isFirstInvalidInput*/ ctx[3],
|
|
17146
17143
|
isRequired: /*isRequired*/ ctx[4],
|
|
17147
|
-
isInvalid: /*isInvalid*/ ctx[5],
|
|
17148
17144
|
key: `${/*key*/ ctx[6]}-${/*option*/ ctx[11].value}`,
|
|
17149
17145
|
name: /*name*/ ctx[7],
|
|
17150
17146
|
onChange: /*onChange*/ ctx[8],
|
|
@@ -17172,7 +17168,6 @@ function create_each_block$9(ctx) {
|
|
|
17172
17168
|
if (dirty & /*defaultOption, options*/ 513) radio_changes.checked = /*defaultOption*/ ctx[0] === /*option*/ ctx[11].value;
|
|
17173
17169
|
if (dirty & /*isFirstInvalidInput*/ 8) radio_changes.isFirstInvalidInput = /*isFirstInvalidInput*/ ctx[3];
|
|
17174
17170
|
if (dirty & /*isRequired*/ 16) radio_changes.isRequired = /*isRequired*/ ctx[4];
|
|
17175
|
-
if (dirty & /*isInvalid*/ 32) radio_changes.isInvalid = /*isInvalid*/ ctx[5];
|
|
17176
17171
|
if (dirty & /*key, options*/ 576) radio_changes.key = `${/*key*/ ctx[6]}-${/*option*/ ctx[11].value}`;
|
|
17177
17172
|
if (dirty & /*name*/ 128) radio_changes.name = /*name*/ ctx[7];
|
|
17178
17173
|
if (dirty & /*onChange*/ 256) radio_changes.onChange = /*onChange*/ ctx[8];
|
|
@@ -17200,7 +17195,7 @@ function create_each_block$9(ctx) {
|
|
|
17200
17195
|
};
|
|
17201
17196
|
}
|
|
17202
17197
|
|
|
17203
|
-
function create_fragment$
|
|
17198
|
+
function create_fragment$K(ctx) {
|
|
17204
17199
|
let fieldset;
|
|
17205
17200
|
let legend;
|
|
17206
17201
|
let t0;
|
|
@@ -17266,7 +17261,7 @@ function create_fragment$J(ctx) {
|
|
|
17266
17261
|
p(ctx, [dirty]) {
|
|
17267
17262
|
if (!current || dirty & /*groupLabel*/ 4) set_data(t0, /*groupLabel*/ ctx[2]);
|
|
17268
17263
|
|
|
17269
|
-
if (dirty & /*defaultOption, options, isFirstInvalidInput, isRequired,
|
|
17264
|
+
if (dirty & /*defaultOption, options, isFirstInvalidInput, isRequired, key, name, onChange*/ 985) {
|
|
17270
17265
|
each_value = /*options*/ ctx[9];
|
|
17271
17266
|
let i;
|
|
17272
17267
|
|
|
@@ -17328,7 +17323,7 @@ function create_fragment$J(ctx) {
|
|
|
17328
17323
|
};
|
|
17329
17324
|
}
|
|
17330
17325
|
|
|
17331
|
-
function instance$
|
|
17326
|
+
function instance$M($$self, $$props, $$invalidate) {
|
|
17332
17327
|
let { defaultOption = null } = $$props;
|
|
17333
17328
|
let { message = '' } = $$props;
|
|
17334
17329
|
let { groupLabel = '' } = $$props;
|
|
@@ -17374,7 +17369,7 @@ class Standard extends SvelteComponent {
|
|
|
17374
17369
|
constructor(options) {
|
|
17375
17370
|
super();
|
|
17376
17371
|
|
|
17377
|
-
init(this, options, instance$
|
|
17372
|
+
init(this, options, instance$M, create_fragment$K, safe_not_equal, {
|
|
17378
17373
|
defaultOption: 0,
|
|
17379
17374
|
message: 1,
|
|
17380
17375
|
groupLabel: 2,
|
|
@@ -17508,7 +17503,7 @@ function create_each_block$8(ctx) {
|
|
|
17508
17503
|
}
|
|
17509
17504
|
|
|
17510
17505
|
// (61:0) {#if labelOrder === 'last'}
|
|
17511
|
-
function create_if_block$
|
|
17506
|
+
function create_if_block$l(ctx) {
|
|
17512
17507
|
let label_1;
|
|
17513
17508
|
let current;
|
|
17514
17509
|
|
|
@@ -17580,7 +17575,7 @@ function create_default_slot$l(ctx) {
|
|
|
17580
17575
|
};
|
|
17581
17576
|
}
|
|
17582
17577
|
|
|
17583
|
-
function create_fragment$
|
|
17578
|
+
function create_fragment$J(ctx) {
|
|
17584
17579
|
let t0;
|
|
17585
17580
|
let select;
|
|
17586
17581
|
let select_aria_describedby_value;
|
|
@@ -17598,7 +17593,7 @@ function create_fragment$I(ctx) {
|
|
|
17598
17593
|
each_blocks[i] = create_each_block$8(get_each_context$8(ctx, each_value, i));
|
|
17599
17594
|
}
|
|
17600
17595
|
|
|
17601
|
-
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$
|
|
17596
|
+
let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$l(ctx);
|
|
17602
17597
|
|
|
17603
17598
|
return {
|
|
17604
17599
|
c() {
|
|
@@ -17722,7 +17717,7 @@ function create_fragment$I(ctx) {
|
|
|
17722
17717
|
transition_in(if_block1, 1);
|
|
17723
17718
|
}
|
|
17724
17719
|
} else {
|
|
17725
|
-
if_block1 = create_if_block$
|
|
17720
|
+
if_block1 = create_if_block$l(ctx);
|
|
17726
17721
|
if_block1.c();
|
|
17727
17722
|
transition_in(if_block1, 1);
|
|
17728
17723
|
if_block1.m(if_block1_anchor.parentNode, if_block1_anchor);
|
|
@@ -17763,7 +17758,7 @@ function create_fragment$I(ctx) {
|
|
|
17763
17758
|
};
|
|
17764
17759
|
}
|
|
17765
17760
|
|
|
17766
|
-
function instance$
|
|
17761
|
+
function instance$L($$self, $$props, $$invalidate) {
|
|
17767
17762
|
let { selectClasses = '' } = $$props;
|
|
17768
17763
|
let { defaultOption = null } = $$props;
|
|
17769
17764
|
let { isFirstInvalidInput } = $$props;
|
|
@@ -17850,7 +17845,7 @@ class Select extends SvelteComponent {
|
|
|
17850
17845
|
constructor(options) {
|
|
17851
17846
|
super();
|
|
17852
17847
|
|
|
17853
|
-
init(this, options, instance$
|
|
17848
|
+
init(this, options, instance$L, create_fragment$J, safe_not_equal, {
|
|
17854
17849
|
selectClasses: 0,
|
|
17855
17850
|
defaultOption: 1,
|
|
17856
17851
|
isFirstInvalidInput: 12,
|
|
@@ -17868,7 +17863,7 @@ class Select extends SvelteComponent {
|
|
|
17868
17863
|
|
|
17869
17864
|
/* src/lib/components/compositions/select-floating/floating-label.svelte generated by Svelte v3.59.2 */
|
|
17870
17865
|
|
|
17871
|
-
function create_fragment$
|
|
17866
|
+
function create_fragment$I(ctx) {
|
|
17872
17867
|
let div;
|
|
17873
17868
|
let select;
|
|
17874
17869
|
let t;
|
|
@@ -17951,7 +17946,7 @@ function create_fragment$H(ctx) {
|
|
|
17951
17946
|
};
|
|
17952
17947
|
}
|
|
17953
17948
|
|
|
17954
|
-
function instance$
|
|
17949
|
+
function instance$K($$self, $$props, $$invalidate) {
|
|
17955
17950
|
let { checkValidity = null } = $$props;
|
|
17956
17951
|
let { defaultOption = null } = $$props;
|
|
17957
17952
|
let { message = '' } = $$props;
|
|
@@ -18006,7 +18001,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
18006
18001
|
constructor(options) {
|
|
18007
18002
|
super();
|
|
18008
18003
|
|
|
18009
|
-
init(this, options, instance$
|
|
18004
|
+
init(this, options, instance$K, create_fragment$I, safe_not_equal, {
|
|
18010
18005
|
checkValidity: 10,
|
|
18011
18006
|
defaultOption: 1,
|
|
18012
18007
|
message: 2,
|
|
@@ -18024,7 +18019,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
|
|
|
18024
18019
|
|
|
18025
18020
|
/* src/lib/components/compositions/select-stacked/stacked-label.svelte generated by Svelte v3.59.2 */
|
|
18026
18021
|
|
|
18027
|
-
function create_fragment$
|
|
18022
|
+
function create_fragment$H(ctx) {
|
|
18028
18023
|
let div;
|
|
18029
18024
|
let select;
|
|
18030
18025
|
let t;
|
|
@@ -18106,7 +18101,7 @@ function create_fragment$G(ctx) {
|
|
|
18106
18101
|
};
|
|
18107
18102
|
}
|
|
18108
18103
|
|
|
18109
|
-
function instance$
|
|
18104
|
+
function instance$J($$self, $$props, $$invalidate) {
|
|
18110
18105
|
let { checkValidity = null } = $$props;
|
|
18111
18106
|
let { defaultOption = null } = $$props;
|
|
18112
18107
|
let { message = '' } = $$props;
|
|
@@ -18161,7 +18156,7 @@ let Stacked_label$1 = class Stacked_label extends SvelteComponent {
|
|
|
18161
18156
|
constructor(options) {
|
|
18162
18157
|
super();
|
|
18163
18158
|
|
|
18164
|
-
init(this, options, instance$
|
|
18159
|
+
init(this, options, instance$J, create_fragment$H, safe_not_equal, {
|
|
18165
18160
|
checkValidity: 10,
|
|
18166
18161
|
defaultOption: 1,
|
|
18167
18162
|
message: 2,
|
|
@@ -18228,7 +18223,7 @@ function create_else_block$8(ctx) {
|
|
|
18228
18223
|
}
|
|
18229
18224
|
|
|
18230
18225
|
// (52:0) {#if callbackMetadata?.platform?.displayType === 'radio'}
|
|
18231
|
-
function create_if_block$
|
|
18226
|
+
function create_if_block$k(ctx) {
|
|
18232
18227
|
let radio;
|
|
18233
18228
|
let current;
|
|
18234
18229
|
|
|
@@ -18278,12 +18273,12 @@ function create_if_block$j(ctx) {
|
|
|
18278
18273
|
};
|
|
18279
18274
|
}
|
|
18280
18275
|
|
|
18281
|
-
function create_fragment$
|
|
18276
|
+
function create_fragment$G(ctx) {
|
|
18282
18277
|
let current_block_type_index;
|
|
18283
18278
|
let if_block;
|
|
18284
18279
|
let if_block_anchor;
|
|
18285
18280
|
let current;
|
|
18286
|
-
const if_block_creators = [create_if_block$
|
|
18281
|
+
const if_block_creators = [create_if_block$k, create_else_block$8];
|
|
18287
18282
|
const if_blocks = [];
|
|
18288
18283
|
|
|
18289
18284
|
function select_block_type(ctx, dirty) {
|
|
@@ -18347,7 +18342,7 @@ function create_fragment$F(ctx) {
|
|
|
18347
18342
|
};
|
|
18348
18343
|
}
|
|
18349
18344
|
|
|
18350
|
-
function instance$
|
|
18345
|
+
function instance$I($$self, $$props, $$invalidate) {
|
|
18351
18346
|
const selfSubmitFunction = null;
|
|
18352
18347
|
const stepMetadata = null;
|
|
18353
18348
|
let { callback } = $$props;
|
|
@@ -18435,7 +18430,7 @@ class Choice extends SvelteComponent {
|
|
|
18435
18430
|
constructor(options) {
|
|
18436
18431
|
super();
|
|
18437
18432
|
|
|
18438
|
-
init(this, options, instance$
|
|
18433
|
+
init(this, options, instance$I, create_fragment$G, safe_not_equal, {
|
|
18439
18434
|
selfSubmitFunction: 9,
|
|
18440
18435
|
stepMetadata: 10,
|
|
18441
18436
|
callback: 11,
|
|
@@ -18455,7 +18450,7 @@ class Choice extends SvelteComponent {
|
|
|
18455
18450
|
|
|
18456
18451
|
/* src/lib/components/primitives/grid/grid.svelte generated by Svelte v3.59.2 */
|
|
18457
18452
|
|
|
18458
|
-
function create_fragment$
|
|
18453
|
+
function create_fragment$F(ctx) {
|
|
18459
18454
|
let div;
|
|
18460
18455
|
let div_class_value;
|
|
18461
18456
|
let current;
|
|
@@ -18531,7 +18526,7 @@ function generateClassString(...args) {
|
|
|
18531
18526
|
);
|
|
18532
18527
|
}
|
|
18533
18528
|
|
|
18534
|
-
function instance$
|
|
18529
|
+
function instance$H($$self, $$props, $$invalidate) {
|
|
18535
18530
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
18536
18531
|
let { num = 2 } = $$props;
|
|
18537
18532
|
|
|
@@ -18546,7 +18541,7 @@ function instance$G($$self, $$props, $$invalidate) {
|
|
|
18546
18541
|
class Grid extends SvelteComponent {
|
|
18547
18542
|
constructor(options) {
|
|
18548
18543
|
super();
|
|
18549
|
-
init(this, options, instance$
|
|
18544
|
+
init(this, options, instance$H, create_fragment$F, safe_not_equal, { num: 0 });
|
|
18550
18545
|
}
|
|
18551
18546
|
}
|
|
18552
18547
|
|
|
@@ -18559,7 +18554,7 @@ function get_each_context$7(ctx, list, i) {
|
|
|
18559
18554
|
}
|
|
18560
18555
|
|
|
18561
18556
|
// (81:0) {#if stepMetadata?.platform?.stageName !== 'OneTimePassword'}
|
|
18562
|
-
function create_if_block$
|
|
18557
|
+
function create_if_block$j(ctx) {
|
|
18563
18558
|
let show_if;
|
|
18564
18559
|
let current_block_type_index;
|
|
18565
18560
|
let if_block;
|
|
@@ -19038,10 +19033,10 @@ function create_default_slot$k(ctx) {
|
|
|
19038
19033
|
};
|
|
19039
19034
|
}
|
|
19040
19035
|
|
|
19041
|
-
function create_fragment$
|
|
19036
|
+
function create_fragment$E(ctx) {
|
|
19042
19037
|
let if_block_anchor;
|
|
19043
19038
|
let current;
|
|
19044
|
-
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$
|
|
19039
|
+
let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$j(ctx);
|
|
19045
19040
|
|
|
19046
19041
|
return {
|
|
19047
19042
|
c() {
|
|
@@ -19062,7 +19057,7 @@ function create_fragment$D(ctx) {
|
|
|
19062
19057
|
transition_in(if_block, 1);
|
|
19063
19058
|
}
|
|
19064
19059
|
} else {
|
|
19065
|
-
if_block = create_if_block$
|
|
19060
|
+
if_block = create_if_block$j(ctx);
|
|
19066
19061
|
if_block.c();
|
|
19067
19062
|
transition_in(if_block, 1);
|
|
19068
19063
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -19093,7 +19088,7 @@ function create_fragment$D(ctx) {
|
|
|
19093
19088
|
};
|
|
19094
19089
|
}
|
|
19095
19090
|
|
|
19096
|
-
function instance$
|
|
19091
|
+
function instance$G($$self, $$props, $$invalidate) {
|
|
19097
19092
|
const style = {};
|
|
19098
19093
|
let { callback } = $$props;
|
|
19099
19094
|
let { callbackMetadata } = $$props;
|
|
@@ -19212,7 +19207,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19212
19207
|
constructor(options) {
|
|
19213
19208
|
super();
|
|
19214
19209
|
|
|
19215
|
-
init(this, options, instance$
|
|
19210
|
+
init(this, options, instance$G, create_fragment$E, safe_not_equal, {
|
|
19216
19211
|
style: 11,
|
|
19217
19212
|
callback: 12,
|
|
19218
19213
|
callbackMetadata: 0,
|
|
@@ -19228,7 +19223,7 @@ class Confirmation extends SvelteComponent {
|
|
|
19228
19223
|
|
|
19229
19224
|
/* src/lib/journey/callbacks/hidden-value/hidden-value.svelte generated by Svelte v3.59.2 */
|
|
19230
19225
|
|
|
19231
|
-
function instance$
|
|
19226
|
+
function instance$F($$self, $$props, $$invalidate) {
|
|
19232
19227
|
const callback = null;
|
|
19233
19228
|
const callbackMetadata = null;
|
|
19234
19229
|
const selfSubmitFunction = null;
|
|
@@ -19241,7 +19236,7 @@ class Hidden_value extends SvelteComponent {
|
|
|
19241
19236
|
constructor(options) {
|
|
19242
19237
|
super();
|
|
19243
19238
|
|
|
19244
|
-
init(this, options, instance$
|
|
19239
|
+
init(this, options, instance$F, null, safe_not_equal, {
|
|
19245
19240
|
callback: 0,
|
|
19246
19241
|
callbackMetadata: 1,
|
|
19247
19242
|
selfSubmitFunction: 2,
|
|
@@ -19821,7 +19816,7 @@ function create_if_block_1$9(ctx) {
|
|
|
19821
19816
|
}
|
|
19822
19817
|
|
|
19823
19818
|
// (129:0) {#if labelOrder === 'last'}
|
|
19824
|
-
function create_if_block$
|
|
19819
|
+
function create_if_block$i(ctx) {
|
|
19825
19820
|
let label_1;
|
|
19826
19821
|
let current;
|
|
19827
19822
|
|
|
@@ -19888,7 +19883,7 @@ function create_default_slot$j(ctx) {
|
|
|
19888
19883
|
};
|
|
19889
19884
|
}
|
|
19890
19885
|
|
|
19891
|
-
function create_fragment$
|
|
19886
|
+
function create_fragment$D(ctx) {
|
|
19892
19887
|
let t0;
|
|
19893
19888
|
let t1;
|
|
19894
19889
|
let t2;
|
|
@@ -19905,7 +19900,7 @@ function create_fragment$C(ctx) {
|
|
|
19905
19900
|
let if_block4 = /*type*/ ctx[11] === 'password' && create_if_block_3$6(ctx);
|
|
19906
19901
|
let if_block5 = /*type*/ ctx[11] === 'phone' && create_if_block_2$8(ctx);
|
|
19907
19902
|
let if_block6 = /*type*/ ctx[11] === 'text' && create_if_block_1$9(ctx);
|
|
19908
|
-
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$
|
|
19903
|
+
let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$i(ctx);
|
|
19909
19904
|
|
|
19910
19905
|
return {
|
|
19911
19906
|
c() {
|
|
@@ -20055,7 +20050,7 @@ function create_fragment$C(ctx) {
|
|
|
20055
20050
|
transition_in(if_block7, 1);
|
|
20056
20051
|
}
|
|
20057
20052
|
} else {
|
|
20058
|
-
if_block7 = create_if_block$
|
|
20053
|
+
if_block7 = create_if_block$i(ctx);
|
|
20059
20054
|
if_block7.c();
|
|
20060
20055
|
transition_in(if_block7, 1);
|
|
20061
20056
|
if_block7.m(if_block7_anchor.parentNode, if_block7_anchor);
|
|
@@ -20102,7 +20097,7 @@ function create_fragment$C(ctx) {
|
|
|
20102
20097
|
};
|
|
20103
20098
|
}
|
|
20104
20099
|
|
|
20105
|
-
function instance$
|
|
20100
|
+
function instance$E($$self, $$props, $$invalidate) {
|
|
20106
20101
|
let { forceValidityFailure = false } = $$props;
|
|
20107
20102
|
let { isFirstInvalidInput } = $$props;
|
|
20108
20103
|
let { inputClasses = '' } = $$props;
|
|
@@ -20246,7 +20241,7 @@ class Input extends SvelteComponent {
|
|
|
20246
20241
|
constructor(options) {
|
|
20247
20242
|
super();
|
|
20248
20243
|
|
|
20249
|
-
init(this, options, instance$
|
|
20244
|
+
init(this, options, instance$E, create_fragment$D, safe_not_equal, {
|
|
20250
20245
|
forceValidityFailure: 1,
|
|
20251
20246
|
isFirstInvalidInput: 13,
|
|
20252
20247
|
inputClasses: 2,
|
|
@@ -20268,7 +20263,7 @@ class Input extends SvelteComponent {
|
|
|
20268
20263
|
const get_input_button_slot_changes$1 = dirty => ({});
|
|
20269
20264
|
const get_input_button_slot_context$1 = ctx => ({});
|
|
20270
20265
|
|
|
20271
|
-
function create_fragment$
|
|
20266
|
+
function create_fragment$C(ctx) {
|
|
20272
20267
|
let div1;
|
|
20273
20268
|
let input;
|
|
20274
20269
|
let updating_value;
|
|
@@ -20443,7 +20438,7 @@ function create_fragment$B(ctx) {
|
|
|
20443
20438
|
};
|
|
20444
20439
|
}
|
|
20445
20440
|
|
|
20446
|
-
function instance$
|
|
20441
|
+
function instance$D($$self, $$props, $$invalidate) {
|
|
20447
20442
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20448
20443
|
let { checkValidity = null } = $$props;
|
|
20449
20444
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20514,7 +20509,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20514
20509
|
constructor(options) {
|
|
20515
20510
|
super();
|
|
20516
20511
|
|
|
20517
|
-
init(this, options, instance$
|
|
20512
|
+
init(this, options, instance$D, create_fragment$C, safe_not_equal, {
|
|
20518
20513
|
checkValidity: 12,
|
|
20519
20514
|
forceValidityFailure: 2,
|
|
20520
20515
|
message: 3,
|
|
@@ -20536,7 +20531,7 @@ class Floating_label extends SvelteComponent {
|
|
|
20536
20531
|
const get_input_button_slot_changes = dirty => ({});
|
|
20537
20532
|
const get_input_button_slot_context = ctx => ({});
|
|
20538
20533
|
|
|
20539
|
-
function create_fragment$
|
|
20534
|
+
function create_fragment$B(ctx) {
|
|
20540
20535
|
let div1;
|
|
20541
20536
|
let input;
|
|
20542
20537
|
let updating_value;
|
|
@@ -20715,7 +20710,7 @@ function create_fragment$A(ctx) {
|
|
|
20715
20710
|
};
|
|
20716
20711
|
}
|
|
20717
20712
|
|
|
20718
|
-
function instance$
|
|
20713
|
+
function instance$C($$self, $$props, $$invalidate) {
|
|
20719
20714
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20720
20715
|
let { checkValidity = null } = $$props;
|
|
20721
20716
|
let { forceValidityFailure = false } = $$props;
|
|
@@ -20789,7 +20784,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20789
20784
|
constructor(options) {
|
|
20790
20785
|
super();
|
|
20791
20786
|
|
|
20792
|
-
init(this, options, instance$
|
|
20787
|
+
init(this, options, instance$C, create_fragment$B, safe_not_equal, {
|
|
20793
20788
|
checkValidity: 13,
|
|
20794
20789
|
forceValidityFailure: 2,
|
|
20795
20790
|
isFirstInvalidInput: 3,
|
|
@@ -20810,7 +20805,7 @@ class Stacked_label extends SvelteComponent {
|
|
|
20810
20805
|
|
|
20811
20806
|
/* src/lib/components/icons/lock-icon.svelte generated by Svelte v3.59.2 */
|
|
20812
20807
|
|
|
20813
|
-
function create_fragment$
|
|
20808
|
+
function create_fragment$A(ctx) {
|
|
20814
20809
|
let svg;
|
|
20815
20810
|
let path0;
|
|
20816
20811
|
let path1;
|
|
@@ -20891,7 +20886,7 @@ function create_fragment$z(ctx) {
|
|
|
20891
20886
|
};
|
|
20892
20887
|
}
|
|
20893
20888
|
|
|
20894
|
-
function instance$
|
|
20889
|
+
function instance$B($$self, $$props, $$invalidate) {
|
|
20895
20890
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
20896
20891
|
let { classes = '' } = $$props;
|
|
20897
20892
|
let { size = '24px' } = $$props;
|
|
@@ -20908,13 +20903,13 @@ function instance$A($$self, $$props, $$invalidate) {
|
|
|
20908
20903
|
class Lock_icon extends SvelteComponent {
|
|
20909
20904
|
constructor(options) {
|
|
20910
20905
|
super();
|
|
20911
|
-
init(this, options, instance$
|
|
20906
|
+
init(this, options, instance$B, create_fragment$A, safe_not_equal, { classes: 0, size: 1 });
|
|
20912
20907
|
}
|
|
20913
20908
|
}
|
|
20914
20909
|
|
|
20915
20910
|
/* src/lib/journey/callbacks/kba/kba-create.svelte generated by Svelte v3.59.2 */
|
|
20916
20911
|
|
|
20917
|
-
function create_if_block$
|
|
20912
|
+
function create_if_block$h(ctx) {
|
|
20918
20913
|
let input;
|
|
20919
20914
|
let current;
|
|
20920
20915
|
|
|
@@ -20959,7 +20954,7 @@ function create_if_block$g(ctx) {
|
|
|
20959
20954
|
};
|
|
20960
20955
|
}
|
|
20961
20956
|
|
|
20962
|
-
function create_fragment$
|
|
20957
|
+
function create_fragment$z(ctx) {
|
|
20963
20958
|
let fieldset;
|
|
20964
20959
|
let legend;
|
|
20965
20960
|
let t0;
|
|
@@ -20995,7 +20990,7 @@ function create_fragment$y(ctx) {
|
|
|
20995
20990
|
}
|
|
20996
20991
|
});
|
|
20997
20992
|
|
|
20998
|
-
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$
|
|
20993
|
+
let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$h(ctx);
|
|
20999
20994
|
|
|
21000
20995
|
function input_value_binding(value) {
|
|
21001
20996
|
/*input_value_binding*/ ctx[21](value);
|
|
@@ -21074,7 +21069,7 @@ function create_fragment$y(ctx) {
|
|
|
21074
21069
|
transition_in(if_block, 1);
|
|
21075
21070
|
}
|
|
21076
21071
|
} else {
|
|
21077
|
-
if_block = create_if_block$
|
|
21072
|
+
if_block = create_if_block$h(ctx);
|
|
21078
21073
|
if_block.c();
|
|
21079
21074
|
transition_in(if_block, 1);
|
|
21080
21075
|
if_block.m(fieldset, t6);
|
|
@@ -21132,7 +21127,7 @@ function create_fragment$y(ctx) {
|
|
|
21132
21127
|
};
|
|
21133
21128
|
}
|
|
21134
21129
|
|
|
21135
|
-
function instance$
|
|
21130
|
+
function instance$A($$self, $$props, $$invalidate) {
|
|
21136
21131
|
let $value;
|
|
21137
21132
|
const selfSubmitFunction = null;
|
|
21138
21133
|
const stepMetadata = null;
|
|
@@ -21288,7 +21283,7 @@ class Kba_create extends SvelteComponent {
|
|
|
21288
21283
|
constructor(options) {
|
|
21289
21284
|
super();
|
|
21290
21285
|
|
|
21291
|
-
init(this, options, instance$
|
|
21286
|
+
init(this, options, instance$A, create_fragment$z, safe_not_equal, {
|
|
21292
21287
|
selfSubmitFunction: 13,
|
|
21293
21288
|
stepMetadata: 14,
|
|
21294
21289
|
callback: 15,
|
|
@@ -21361,7 +21356,7 @@ function create_key_block$4(ctx) {
|
|
|
21361
21356
|
};
|
|
21362
21357
|
}
|
|
21363
21358
|
|
|
21364
|
-
function create_fragment$
|
|
21359
|
+
function create_fragment$y(ctx) {
|
|
21365
21360
|
let previous_key = /*callback*/ ctx[0];
|
|
21366
21361
|
let key_block_anchor;
|
|
21367
21362
|
let current;
|
|
@@ -21406,7 +21401,7 @@ function create_fragment$x(ctx) {
|
|
|
21406
21401
|
};
|
|
21407
21402
|
}
|
|
21408
21403
|
|
|
21409
|
-
function instance$
|
|
21404
|
+
function instance$z($$self, $$props, $$invalidate) {
|
|
21410
21405
|
const selfSubmitFunction = null;
|
|
21411
21406
|
const stepMetadata = null;
|
|
21412
21407
|
let { callback } = $$props;
|
|
@@ -21458,7 +21453,7 @@ class Name extends SvelteComponent {
|
|
|
21458
21453
|
constructor(options) {
|
|
21459
21454
|
super();
|
|
21460
21455
|
|
|
21461
|
-
init(this, options, instance$
|
|
21456
|
+
init(this, options, instance$z, create_fragment$y, safe_not_equal, {
|
|
21462
21457
|
selfSubmitFunction: 8,
|
|
21463
21458
|
stepMetadata: 9,
|
|
21464
21459
|
callback: 0,
|
|
@@ -21560,7 +21555,7 @@ function create_else_block$6(ctx) {
|
|
|
21560
21555
|
}
|
|
21561
21556
|
|
|
21562
21557
|
// (6:0) {#if !visible}
|
|
21563
|
-
function create_if_block$
|
|
21558
|
+
function create_if_block$g(ctx) {
|
|
21564
21559
|
let svg;
|
|
21565
21560
|
let path0;
|
|
21566
21561
|
let path1;
|
|
@@ -21641,12 +21636,12 @@ function create_if_block$f(ctx) {
|
|
|
21641
21636
|
};
|
|
21642
21637
|
}
|
|
21643
21638
|
|
|
21644
|
-
function create_fragment$
|
|
21639
|
+
function create_fragment$x(ctx) {
|
|
21645
21640
|
let current_block_type_index;
|
|
21646
21641
|
let if_block;
|
|
21647
21642
|
let if_block_anchor;
|
|
21648
21643
|
let current;
|
|
21649
|
-
const if_block_creators = [create_if_block$
|
|
21644
|
+
const if_block_creators = [create_if_block$g, create_else_block$6];
|
|
21650
21645
|
const if_blocks = [];
|
|
21651
21646
|
|
|
21652
21647
|
function select_block_type(ctx, dirty) {
|
|
@@ -21710,7 +21705,7 @@ function create_fragment$w(ctx) {
|
|
|
21710
21705
|
};
|
|
21711
21706
|
}
|
|
21712
21707
|
|
|
21713
|
-
function instance$
|
|
21708
|
+
function instance$y($$self, $$props, $$invalidate) {
|
|
21714
21709
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21715
21710
|
let { classes = '' } = $$props;
|
|
21716
21711
|
let { size = '24px' } = $$props;
|
|
@@ -21729,7 +21724,7 @@ function instance$x($$self, $$props, $$invalidate) {
|
|
|
21729
21724
|
class Eye_icon extends SvelteComponent {
|
|
21730
21725
|
constructor(options) {
|
|
21731
21726
|
super();
|
|
21732
|
-
init(this, options, instance$
|
|
21727
|
+
init(this, options, instance$y, create_fragment$x, safe_not_equal, { classes: 0, size: 1, visible: 2 });
|
|
21733
21728
|
}
|
|
21734
21729
|
}
|
|
21735
21730
|
|
|
@@ -21875,7 +21870,7 @@ function create_input_button_slot$1(ctx) {
|
|
|
21875
21870
|
};
|
|
21876
21871
|
}
|
|
21877
21872
|
|
|
21878
|
-
function create_fragment$
|
|
21873
|
+
function create_fragment$w(ctx) {
|
|
21879
21874
|
let input;
|
|
21880
21875
|
let current;
|
|
21881
21876
|
|
|
@@ -21946,7 +21941,7 @@ function create_fragment$v(ctx) {
|
|
|
21946
21941
|
};
|
|
21947
21942
|
}
|
|
21948
21943
|
|
|
21949
|
-
function instance$
|
|
21944
|
+
function instance$x($$self, $$props, $$invalidate) {
|
|
21950
21945
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
21951
21946
|
let { forceValidityFailure = false } = $$props;
|
|
21952
21947
|
let { passwordsDoNotMatch = false } = $$props;
|
|
@@ -22033,7 +22028,7 @@ class Confirm_input extends SvelteComponent {
|
|
|
22033
22028
|
constructor(options) {
|
|
22034
22029
|
super();
|
|
22035
22030
|
|
|
22036
|
-
init(this, options, instance$
|
|
22031
|
+
init(this, options, instance$x, create_fragment$w, safe_not_equal, {
|
|
22037
22032
|
forceValidityFailure: 0,
|
|
22038
22033
|
passwordsDoNotMatch: 1,
|
|
22039
22034
|
isRequired: 2,
|
|
@@ -22189,7 +22184,7 @@ function create_input_button_slot(ctx) {
|
|
|
22189
22184
|
}
|
|
22190
22185
|
|
|
22191
22186
|
// (102:2) {#if callbackMetadata?.platform?.confirmPassword}
|
|
22192
|
-
function create_if_block$
|
|
22187
|
+
function create_if_block$f(ctx) {
|
|
22193
22188
|
let confirminput;
|
|
22194
22189
|
let current;
|
|
22195
22190
|
|
|
@@ -22272,7 +22267,7 @@ function create_key_block$3(ctx) {
|
|
|
22272
22267
|
}
|
|
22273
22268
|
});
|
|
22274
22269
|
|
|
22275
|
-
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$
|
|
22270
|
+
let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$f(ctx);
|
|
22276
22271
|
|
|
22277
22272
|
return {
|
|
22278
22273
|
c() {
|
|
@@ -22321,7 +22316,7 @@ function create_key_block$3(ctx) {
|
|
|
22321
22316
|
transition_in(if_block, 1);
|
|
22322
22317
|
}
|
|
22323
22318
|
} else {
|
|
22324
|
-
if_block = create_if_block$
|
|
22319
|
+
if_block = create_if_block$f(ctx);
|
|
22325
22320
|
if_block.c();
|
|
22326
22321
|
transition_in(if_block, 1);
|
|
22327
22322
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -22356,7 +22351,7 @@ function create_key_block$3(ctx) {
|
|
|
22356
22351
|
};
|
|
22357
22352
|
}
|
|
22358
22353
|
|
|
22359
|
-
function create_fragment$
|
|
22354
|
+
function create_fragment$v(ctx) {
|
|
22360
22355
|
let previous_key = /*callback*/ ctx[1];
|
|
22361
22356
|
let key_block_anchor;
|
|
22362
22357
|
let current;
|
|
@@ -22401,7 +22396,7 @@ function create_fragment$u(ctx) {
|
|
|
22401
22396
|
};
|
|
22402
22397
|
}
|
|
22403
22398
|
|
|
22404
|
-
function instance$
|
|
22399
|
+
function instance$w($$self, $$props, $$invalidate) {
|
|
22405
22400
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22406
22401
|
let { callback } = $$props;
|
|
22407
22402
|
let { callbackMetadata } = $$props;
|
|
@@ -22526,7 +22521,7 @@ class Base extends SvelteComponent {
|
|
|
22526
22521
|
constructor(options) {
|
|
22527
22522
|
super();
|
|
22528
22523
|
|
|
22529
|
-
init(this, options, instance$
|
|
22524
|
+
init(this, options, instance$w, create_fragment$v, safe_not_equal, {
|
|
22530
22525
|
callback: 1,
|
|
22531
22526
|
callbackMetadata: 2,
|
|
22532
22527
|
key: 0,
|
|
@@ -22541,7 +22536,7 @@ class Base extends SvelteComponent {
|
|
|
22541
22536
|
|
|
22542
22537
|
/* src/lib/journey/callbacks/password/password.svelte generated by Svelte v3.59.2 */
|
|
22543
22538
|
|
|
22544
|
-
function create_fragment$
|
|
22539
|
+
function create_fragment$u(ctx) {
|
|
22545
22540
|
let base;
|
|
22546
22541
|
let current;
|
|
22547
22542
|
|
|
@@ -22585,7 +22580,7 @@ function create_fragment$t(ctx) {
|
|
|
22585
22580
|
};
|
|
22586
22581
|
}
|
|
22587
22582
|
|
|
22588
|
-
function instance$
|
|
22583
|
+
function instance$v($$self, $$props, $$invalidate) {
|
|
22589
22584
|
const selfSubmitFunction = null;
|
|
22590
22585
|
const stepMetadata = null;
|
|
22591
22586
|
let { callback } = $$props;
|
|
@@ -22615,7 +22610,7 @@ class Password extends SvelteComponent {
|
|
|
22615
22610
|
constructor(options) {
|
|
22616
22611
|
super();
|
|
22617
22612
|
|
|
22618
|
-
init(this, options, instance$
|
|
22613
|
+
init(this, options, instance$v, create_fragment$u, safe_not_equal, {
|
|
22619
22614
|
selfSubmitFunction: 4,
|
|
22620
22615
|
stepMetadata: 5,
|
|
22621
22616
|
callback: 0,
|
|
@@ -22635,7 +22630,7 @@ class Password extends SvelteComponent {
|
|
|
22635
22630
|
|
|
22636
22631
|
/* src/lib/components/primitives/text/text.svelte generated by Svelte v3.59.2 */
|
|
22637
22632
|
|
|
22638
|
-
function create_fragment$
|
|
22633
|
+
function create_fragment$t(ctx) {
|
|
22639
22634
|
let p;
|
|
22640
22635
|
let p_class_value;
|
|
22641
22636
|
let current;
|
|
@@ -22693,7 +22688,7 @@ function create_fragment$s(ctx) {
|
|
|
22693
22688
|
};
|
|
22694
22689
|
}
|
|
22695
22690
|
|
|
22696
|
-
function instance$
|
|
22691
|
+
function instance$u($$self, $$props, $$invalidate) {
|
|
22697
22692
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
22698
22693
|
let { classes = '' } = $$props;
|
|
22699
22694
|
|
|
@@ -22708,7 +22703,7 @@ function instance$t($$self, $$props, $$invalidate) {
|
|
|
22708
22703
|
class Text extends SvelteComponent {
|
|
22709
22704
|
constructor(options) {
|
|
22710
22705
|
super();
|
|
22711
|
-
init(this, options, instance$
|
|
22706
|
+
init(this, options, instance$u, create_fragment$t, safe_not_equal, { classes: 0 });
|
|
22712
22707
|
}
|
|
22713
22708
|
}
|
|
22714
22709
|
|
|
@@ -22733,7 +22728,7 @@ function create_default_slot$g(ctx) {
|
|
|
22733
22728
|
};
|
|
22734
22729
|
}
|
|
22735
22730
|
|
|
22736
|
-
function create_fragment$
|
|
22731
|
+
function create_fragment$s(ctx) {
|
|
22737
22732
|
let div;
|
|
22738
22733
|
let spinner;
|
|
22739
22734
|
let t;
|
|
@@ -22797,7 +22792,7 @@ function create_fragment$r(ctx) {
|
|
|
22797
22792
|
};
|
|
22798
22793
|
}
|
|
22799
22794
|
|
|
22800
|
-
function instance$
|
|
22795
|
+
function instance$t($$self, $$props, $$invalidate) {
|
|
22801
22796
|
const stepMetadata = null;
|
|
22802
22797
|
const style = {};
|
|
22803
22798
|
let { callback } = $$props;
|
|
@@ -22839,7 +22834,7 @@ class Polling_wait extends SvelteComponent {
|
|
|
22839
22834
|
constructor(options) {
|
|
22840
22835
|
super();
|
|
22841
22836
|
|
|
22842
|
-
init(this, options, instance$
|
|
22837
|
+
init(this, options, instance$t, create_fragment$s, safe_not_equal, {
|
|
22843
22838
|
stepMetadata: 3,
|
|
22844
22839
|
style: 4,
|
|
22845
22840
|
callback: 1,
|
|
@@ -22878,7 +22873,7 @@ function create_default_slot$f(ctx) {
|
|
|
22878
22873
|
};
|
|
22879
22874
|
}
|
|
22880
22875
|
|
|
22881
|
-
function create_fragment$
|
|
22876
|
+
function create_fragment$r(ctx) {
|
|
22882
22877
|
let div;
|
|
22883
22878
|
let spinner;
|
|
22884
22879
|
let t;
|
|
@@ -22943,7 +22938,7 @@ function create_fragment$q(ctx) {
|
|
|
22943
22938
|
};
|
|
22944
22939
|
}
|
|
22945
22940
|
|
|
22946
|
-
function instance$
|
|
22941
|
+
function instance$s($$self, $$props, $$invalidate) {
|
|
22947
22942
|
const callbackMetadata = null;
|
|
22948
22943
|
const selfSubmitFunction = null;
|
|
22949
22944
|
const stepMetadata = null;
|
|
@@ -22970,7 +22965,7 @@ class Redirect extends SvelteComponent {
|
|
|
22970
22965
|
constructor(options) {
|
|
22971
22966
|
super();
|
|
22972
22967
|
|
|
22973
|
-
init(this, options, instance$
|
|
22968
|
+
init(this, options, instance$s, create_fragment$r, safe_not_equal, {
|
|
22974
22969
|
callbackMetadata: 1,
|
|
22975
22970
|
selfSubmitFunction: 2,
|
|
22976
22971
|
stepMetadata: 3,
|
|
@@ -22998,7 +22993,7 @@ class Redirect extends SvelteComponent {
|
|
|
22998
22993
|
|
|
22999
22994
|
/* src/lib/components/icons/apple-icon.svelte generated by Svelte v3.59.2 */
|
|
23000
22995
|
|
|
23001
|
-
function create_fragment$
|
|
22996
|
+
function create_fragment$q(ctx) {
|
|
23002
22997
|
let svg;
|
|
23003
22998
|
let path0;
|
|
23004
22999
|
let path1;
|
|
@@ -23043,7 +23038,7 @@ function create_fragment$p(ctx) {
|
|
|
23043
23038
|
};
|
|
23044
23039
|
}
|
|
23045
23040
|
|
|
23046
|
-
function instance$
|
|
23041
|
+
function instance$r($$self, $$props, $$invalidate) {
|
|
23047
23042
|
let { classes = '' } = $$props;
|
|
23048
23043
|
let { size = '24px' } = $$props;
|
|
23049
23044
|
|
|
@@ -23058,13 +23053,13 @@ function instance$q($$self, $$props, $$invalidate) {
|
|
|
23058
23053
|
class Apple_icon extends SvelteComponent {
|
|
23059
23054
|
constructor(options) {
|
|
23060
23055
|
super();
|
|
23061
|
-
init(this, options, instance$
|
|
23056
|
+
init(this, options, instance$r, create_fragment$q, safe_not_equal, { classes: 0, size: 1 });
|
|
23062
23057
|
}
|
|
23063
23058
|
}
|
|
23064
23059
|
|
|
23065
23060
|
/* src/lib/components/icons/facebook-icon.svelte generated by Svelte v3.59.2 */
|
|
23066
23061
|
|
|
23067
|
-
function create_fragment$
|
|
23062
|
+
function create_fragment$p(ctx) {
|
|
23068
23063
|
let svg;
|
|
23069
23064
|
let path;
|
|
23070
23065
|
|
|
@@ -23105,7 +23100,7 @@ function create_fragment$o(ctx) {
|
|
|
23105
23100
|
};
|
|
23106
23101
|
}
|
|
23107
23102
|
|
|
23108
|
-
function instance$
|
|
23103
|
+
function instance$q($$self, $$props, $$invalidate) {
|
|
23109
23104
|
let { classes = '' } = $$props;
|
|
23110
23105
|
let { size = '24px' } = $$props;
|
|
23111
23106
|
|
|
@@ -23120,13 +23115,13 @@ function instance$p($$self, $$props, $$invalidate) {
|
|
|
23120
23115
|
class Facebook_icon extends SvelteComponent {
|
|
23121
23116
|
constructor(options) {
|
|
23122
23117
|
super();
|
|
23123
|
-
init(this, options, instance$
|
|
23118
|
+
init(this, options, instance$q, create_fragment$p, safe_not_equal, { classes: 0, size: 1 });
|
|
23124
23119
|
}
|
|
23125
23120
|
}
|
|
23126
23121
|
|
|
23127
23122
|
/* src/lib/components/icons/google-icon.svelte generated by Svelte v3.59.2 */
|
|
23128
23123
|
|
|
23129
|
-
function create_fragment$
|
|
23124
|
+
function create_fragment$o(ctx) {
|
|
23130
23125
|
let svg;
|
|
23131
23126
|
let g;
|
|
23132
23127
|
let path0;
|
|
@@ -23191,7 +23186,7 @@ function create_fragment$n(ctx) {
|
|
|
23191
23186
|
};
|
|
23192
23187
|
}
|
|
23193
23188
|
|
|
23194
|
-
function instance$
|
|
23189
|
+
function instance$p($$self, $$props, $$invalidate) {
|
|
23195
23190
|
let { classes = '' } = $$props;
|
|
23196
23191
|
let { size = '24px' } = $$props;
|
|
23197
23192
|
|
|
@@ -23206,7 +23201,7 @@ function instance$o($$self, $$props, $$invalidate) {
|
|
|
23206
23201
|
class Google_icon extends SvelteComponent {
|
|
23207
23202
|
constructor(options) {
|
|
23208
23203
|
super();
|
|
23209
|
-
init(this, options, instance$
|
|
23204
|
+
init(this, options, instance$p, create_fragment$o, safe_not_equal, { classes: 0, size: 1 });
|
|
23210
23205
|
}
|
|
23211
23206
|
}
|
|
23212
23207
|
|
|
@@ -23697,7 +23692,7 @@ function create_each_block$6(ctx) {
|
|
|
23697
23692
|
}
|
|
23698
23693
|
|
|
23699
23694
|
// (81:0) {#if stepMetadata && stepMetadata.derived.numOfCallbacks > 1}
|
|
23700
|
-
function create_if_block$
|
|
23695
|
+
function create_if_block$e(ctx) {
|
|
23701
23696
|
let grid;
|
|
23702
23697
|
let current;
|
|
23703
23698
|
|
|
@@ -23751,7 +23746,7 @@ function create_default_slot$e(ctx) {
|
|
|
23751
23746
|
};
|
|
23752
23747
|
}
|
|
23753
23748
|
|
|
23754
|
-
function create_fragment$
|
|
23749
|
+
function create_fragment$n(ctx) {
|
|
23755
23750
|
let t;
|
|
23756
23751
|
let if_block_anchor;
|
|
23757
23752
|
let current;
|
|
@@ -23766,7 +23761,7 @@ function create_fragment$m(ctx) {
|
|
|
23766
23761
|
each_blocks[i] = null;
|
|
23767
23762
|
});
|
|
23768
23763
|
|
|
23769
|
-
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$
|
|
23764
|
+
let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$e(ctx);
|
|
23770
23765
|
|
|
23771
23766
|
return {
|
|
23772
23767
|
c() {
|
|
@@ -23824,7 +23819,7 @@ function create_fragment$m(ctx) {
|
|
|
23824
23819
|
transition_in(if_block, 1);
|
|
23825
23820
|
}
|
|
23826
23821
|
} else {
|
|
23827
|
-
if_block = create_if_block$
|
|
23822
|
+
if_block = create_if_block$e(ctx);
|
|
23828
23823
|
if_block.c();
|
|
23829
23824
|
transition_in(if_block, 1);
|
|
23830
23825
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -23868,7 +23863,7 @@ function create_fragment$m(ctx) {
|
|
|
23868
23863
|
};
|
|
23869
23864
|
}
|
|
23870
23865
|
|
|
23871
|
-
function instance$
|
|
23866
|
+
function instance$o($$self, $$props, $$invalidate) {
|
|
23872
23867
|
const style = {};
|
|
23873
23868
|
let { callback } = $$props;
|
|
23874
23869
|
let { callbackMetadata } = $$props;
|
|
@@ -23938,7 +23933,7 @@ class Select_idp extends SvelteComponent {
|
|
|
23938
23933
|
constructor(options) {
|
|
23939
23934
|
super();
|
|
23940
23935
|
|
|
23941
|
-
init(this, options, instance$
|
|
23936
|
+
init(this, options, instance$o, create_fragment$n, safe_not_equal, {
|
|
23942
23937
|
style: 4,
|
|
23943
23938
|
callback: 5,
|
|
23944
23939
|
callbackMetadata: 3,
|
|
@@ -24065,7 +24060,7 @@ function create_if_block_1$7(ctx) {
|
|
|
24065
24060
|
}
|
|
24066
24061
|
|
|
24067
24062
|
// (24:0) {#if simplifiedFailures.length}
|
|
24068
|
-
function create_if_block$
|
|
24063
|
+
function create_if_block$d(ctx) {
|
|
24069
24064
|
let div;
|
|
24070
24065
|
let p;
|
|
24071
24066
|
let t0;
|
|
@@ -24212,12 +24207,12 @@ function create_each_block$5(ctx) {
|
|
|
24212
24207
|
};
|
|
24213
24208
|
}
|
|
24214
24209
|
|
|
24215
|
-
function create_fragment$
|
|
24210
|
+
function create_fragment$m(ctx) {
|
|
24216
24211
|
let current_block_type_index;
|
|
24217
24212
|
let if_block;
|
|
24218
24213
|
let if_block_anchor;
|
|
24219
24214
|
let current;
|
|
24220
|
-
const if_block_creators = [create_if_block$
|
|
24215
|
+
const if_block_creators = [create_if_block$d, create_if_block_1$7];
|
|
24221
24216
|
const if_blocks = [];
|
|
24222
24217
|
|
|
24223
24218
|
function select_block_type(ctx, dirty) {
|
|
@@ -24298,7 +24293,7 @@ function create_fragment$l(ctx) {
|
|
|
24298
24293
|
};
|
|
24299
24294
|
}
|
|
24300
24295
|
|
|
24301
|
-
function instance$
|
|
24296
|
+
function instance$n($$self, $$props, $$invalidate) {
|
|
24302
24297
|
let { callback } = $$props;
|
|
24303
24298
|
let { key = undefined } = $$props;
|
|
24304
24299
|
let { label } = $$props;
|
|
@@ -24356,7 +24351,7 @@ class Policies extends SvelteComponent {
|
|
|
24356
24351
|
constructor(options) {
|
|
24357
24352
|
super();
|
|
24358
24353
|
|
|
24359
|
-
init(this, options, instance$
|
|
24354
|
+
init(this, options, instance$n, create_fragment$m, safe_not_equal, {
|
|
24360
24355
|
callback: 5,
|
|
24361
24356
|
key: 0,
|
|
24362
24357
|
label: 6,
|
|
@@ -24480,7 +24475,7 @@ function create_key_block$2(ctx) {
|
|
|
24480
24475
|
};
|
|
24481
24476
|
}
|
|
24482
24477
|
|
|
24483
|
-
function create_fragment$
|
|
24478
|
+
function create_fragment$l(ctx) {
|
|
24484
24479
|
let previous_key = /*callback*/ ctx[0];
|
|
24485
24480
|
let key_block_anchor;
|
|
24486
24481
|
let current;
|
|
@@ -24525,7 +24520,7 @@ function create_fragment$k(ctx) {
|
|
|
24525
24520
|
};
|
|
24526
24521
|
}
|
|
24527
24522
|
|
|
24528
|
-
function instance$
|
|
24523
|
+
function instance$m($$self, $$props, $$invalidate) {
|
|
24529
24524
|
const selfSubmitFunction = null;
|
|
24530
24525
|
const stepMetadata = null;
|
|
24531
24526
|
let { callback } = $$props;
|
|
@@ -24601,7 +24596,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24601
24596
|
constructor(options) {
|
|
24602
24597
|
super();
|
|
24603
24598
|
|
|
24604
|
-
init(this, options, instance$
|
|
24599
|
+
init(this, options, instance$m, create_fragment$l, safe_not_equal, {
|
|
24605
24600
|
selfSubmitFunction: 11,
|
|
24606
24601
|
stepMetadata: 12,
|
|
24607
24602
|
callback: 0,
|
|
@@ -24621,7 +24616,7 @@ class String_attribute_input extends SvelteComponent {
|
|
|
24621
24616
|
|
|
24622
24617
|
/* src/lib/components/primitives/link/link.svelte generated by Svelte v3.59.2 */
|
|
24623
24618
|
|
|
24624
|
-
function create_fragment$
|
|
24619
|
+
function create_fragment$k(ctx) {
|
|
24625
24620
|
let a;
|
|
24626
24621
|
let a_class_value;
|
|
24627
24622
|
let current;
|
|
@@ -24689,7 +24684,7 @@ function create_fragment$j(ctx) {
|
|
|
24689
24684
|
};
|
|
24690
24685
|
}
|
|
24691
24686
|
|
|
24692
|
-
function instance$
|
|
24687
|
+
function instance$l($$self, $$props, $$invalidate) {
|
|
24693
24688
|
let { $$slots: slots = {}, $$scope } = $$props;
|
|
24694
24689
|
let { classes = '' } = $$props;
|
|
24695
24690
|
let { href } = $$props;
|
|
@@ -24708,7 +24703,7 @@ function instance$k($$self, $$props, $$invalidate) {
|
|
|
24708
24703
|
class Link extends SvelteComponent {
|
|
24709
24704
|
constructor(options) {
|
|
24710
24705
|
super();
|
|
24711
|
-
init(this, options, instance$
|
|
24706
|
+
init(this, options, instance$l, create_fragment$k, safe_not_equal, { classes: 0, href: 1, target: 2 });
|
|
24712
24707
|
}
|
|
24713
24708
|
}
|
|
24714
24709
|
|
|
@@ -24736,7 +24731,7 @@ function create_else_block$5(ctx) {
|
|
|
24736
24731
|
}
|
|
24737
24732
|
|
|
24738
24733
|
// (27:0) {#if $linksStore?.termsAndConditions}
|
|
24739
|
-
function create_if_block$
|
|
24734
|
+
function create_if_block$c(ctx) {
|
|
24740
24735
|
let link;
|
|
24741
24736
|
let t;
|
|
24742
24737
|
let checkbox;
|
|
@@ -24862,12 +24857,12 @@ function create_default_slot$c(ctx) {
|
|
|
24862
24857
|
};
|
|
24863
24858
|
}
|
|
24864
24859
|
|
|
24865
|
-
function create_fragment$
|
|
24860
|
+
function create_fragment$j(ctx) {
|
|
24866
24861
|
let current_block_type_index;
|
|
24867
24862
|
let if_block;
|
|
24868
24863
|
let if_block_anchor;
|
|
24869
24864
|
let current;
|
|
24870
|
-
const if_block_creators = [create_if_block$
|
|
24865
|
+
const if_block_creators = [create_if_block$c, create_else_block$5];
|
|
24871
24866
|
const if_blocks = [];
|
|
24872
24867
|
|
|
24873
24868
|
function select_block_type(ctx, dirty) {
|
|
@@ -24931,7 +24926,7 @@ function create_fragment$i(ctx) {
|
|
|
24931
24926
|
};
|
|
24932
24927
|
}
|
|
24933
24928
|
|
|
24934
|
-
function instance$
|
|
24929
|
+
function instance$k($$self, $$props, $$invalidate) {
|
|
24935
24930
|
let $linksStore;
|
|
24936
24931
|
component_subscribe($$self, linksStore, $$value => $$invalidate(2, $linksStore = $$value));
|
|
24937
24932
|
const selfSubmitFunction = null;
|
|
@@ -24985,7 +24980,7 @@ class Terms_conditions extends SvelteComponent {
|
|
|
24985
24980
|
constructor(options) {
|
|
24986
24981
|
super();
|
|
24987
24982
|
|
|
24988
|
-
init(this, options, instance$
|
|
24983
|
+
init(this, options, instance$k, create_fragment$j, safe_not_equal, {
|
|
24989
24984
|
selfSubmitFunction: 5,
|
|
24990
24985
|
stepMetadata: 6,
|
|
24991
24986
|
style: 7,
|
|
@@ -25053,7 +25048,7 @@ function create_else_block$4(ctx) {
|
|
|
25053
25048
|
}
|
|
25054
25049
|
|
|
25055
25050
|
// (32:0) {#if callbackMessageType === 'info'}
|
|
25056
|
-
function create_if_block$
|
|
25051
|
+
function create_if_block$b(ctx) {
|
|
25057
25052
|
let text_1;
|
|
25058
25053
|
let current;
|
|
25059
25054
|
|
|
@@ -25142,12 +25137,12 @@ function create_default_slot$b(ctx) {
|
|
|
25142
25137
|
};
|
|
25143
25138
|
}
|
|
25144
25139
|
|
|
25145
|
-
function create_fragment$
|
|
25140
|
+
function create_fragment$i(ctx) {
|
|
25146
25141
|
let current_block_type_index;
|
|
25147
25142
|
let if_block;
|
|
25148
25143
|
let if_block_anchor;
|
|
25149
25144
|
let current;
|
|
25150
|
-
const if_block_creators = [create_if_block$
|
|
25145
|
+
const if_block_creators = [create_if_block$b, create_else_block$4];
|
|
25151
25146
|
const if_blocks = [];
|
|
25152
25147
|
|
|
25153
25148
|
function select_block_type(ctx, dirty) {
|
|
@@ -25224,7 +25219,7 @@ function getCallbackMessage(messageType) {
|
|
|
25224
25219
|
}
|
|
25225
25220
|
}
|
|
25226
25221
|
|
|
25227
|
-
function instance$
|
|
25222
|
+
function instance$j($$self, $$props, $$invalidate) {
|
|
25228
25223
|
const callbackMetadata = null;
|
|
25229
25224
|
const selfSubmitFunction = null;
|
|
25230
25225
|
const stepMetadata = null;
|
|
@@ -25264,7 +25259,7 @@ class Text_output extends SvelteComponent {
|
|
|
25264
25259
|
constructor(options) {
|
|
25265
25260
|
super();
|
|
25266
25261
|
|
|
25267
|
-
init(this, options, instance$
|
|
25262
|
+
init(this, options, instance$j, create_fragment$i, safe_not_equal, {
|
|
25268
25263
|
callbackMetadata: 2,
|
|
25269
25264
|
selfSubmitFunction: 3,
|
|
25270
25265
|
stepMetadata: 4,
|
|
@@ -25292,7 +25287,7 @@ class Text_output extends SvelteComponent {
|
|
|
25292
25287
|
|
|
25293
25288
|
/* src/lib/journey/callbacks/unknown/unknown.svelte generated by Svelte v3.59.2 */
|
|
25294
25289
|
|
|
25295
|
-
function create_fragment$
|
|
25290
|
+
function create_fragment$h(ctx) {
|
|
25296
25291
|
let p;
|
|
25297
25292
|
|
|
25298
25293
|
return {
|
|
@@ -25313,7 +25308,7 @@ function create_fragment$g(ctx) {
|
|
|
25313
25308
|
};
|
|
25314
25309
|
}
|
|
25315
25310
|
|
|
25316
|
-
function instance$
|
|
25311
|
+
function instance$i($$self, $$props, $$invalidate) {
|
|
25317
25312
|
const callbackMetadata = null;
|
|
25318
25313
|
const selfSubmitFunction = null;
|
|
25319
25314
|
const stepMetadata = null;
|
|
@@ -25332,7 +25327,7 @@ class Unknown extends SvelteComponent {
|
|
|
25332
25327
|
constructor(options) {
|
|
25333
25328
|
super();
|
|
25334
25329
|
|
|
25335
|
-
init(this, options, instance$
|
|
25330
|
+
init(this, options, instance$i, create_fragment$h, safe_not_equal, {
|
|
25336
25331
|
callbackMetadata: 1,
|
|
25337
25332
|
selfSubmitFunction: 2,
|
|
25338
25333
|
stepMetadata: 3,
|
|
@@ -25459,7 +25454,7 @@ function create_key_block$1(ctx) {
|
|
|
25459
25454
|
};
|
|
25460
25455
|
}
|
|
25461
25456
|
|
|
25462
|
-
function create_fragment$
|
|
25457
|
+
function create_fragment$g(ctx) {
|
|
25463
25458
|
let previous_key = /*callback*/ ctx[0];
|
|
25464
25459
|
let key_block_anchor;
|
|
25465
25460
|
let current;
|
|
@@ -25504,7 +25499,7 @@ function create_fragment$f(ctx) {
|
|
|
25504
25499
|
};
|
|
25505
25500
|
}
|
|
25506
25501
|
|
|
25507
|
-
function instance$
|
|
25502
|
+
function instance$h($$self, $$props, $$invalidate) {
|
|
25508
25503
|
const selfSubmitFunction = null;
|
|
25509
25504
|
const stepMetadata = null;
|
|
25510
25505
|
let { callback } = $$props;
|
|
@@ -25556,7 +25551,7 @@ class Validated_create_password extends SvelteComponent {
|
|
|
25556
25551
|
constructor(options) {
|
|
25557
25552
|
super();
|
|
25558
25553
|
|
|
25559
|
-
init(this, options, instance$
|
|
25554
|
+
init(this, options, instance$h, create_fragment$g, safe_not_equal, {
|
|
25560
25555
|
selfSubmitFunction: 7,
|
|
25561
25556
|
stepMetadata: 8,
|
|
25562
25557
|
callback: 0,
|
|
@@ -25690,7 +25685,7 @@ function create_key_block(ctx) {
|
|
|
25690
25685
|
};
|
|
25691
25686
|
}
|
|
25692
25687
|
|
|
25693
|
-
function create_fragment$
|
|
25688
|
+
function create_fragment$f(ctx) {
|
|
25694
25689
|
let previous_key = /*callback*/ ctx[0];
|
|
25695
25690
|
let key_block_anchor;
|
|
25696
25691
|
let current;
|
|
@@ -25735,7 +25730,7 @@ function create_fragment$e(ctx) {
|
|
|
25735
25730
|
};
|
|
25736
25731
|
}
|
|
25737
25732
|
|
|
25738
|
-
function instance$
|
|
25733
|
+
function instance$g($$self, $$props, $$invalidate) {
|
|
25739
25734
|
const selfSubmitFunction = null;
|
|
25740
25735
|
const stepMetadata = null;
|
|
25741
25736
|
let { callback } = $$props;
|
|
@@ -25800,7 +25795,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25800
25795
|
constructor(options) {
|
|
25801
25796
|
super();
|
|
25802
25797
|
|
|
25803
|
-
init(this, options, instance$
|
|
25798
|
+
init(this, options, instance$g, create_fragment$f, safe_not_equal, {
|
|
25804
25799
|
selfSubmitFunction: 10,
|
|
25805
25800
|
stepMetadata: 11,
|
|
25806
25801
|
callback: 0,
|
|
@@ -25820,7 +25815,7 @@ class Validated_create_username extends SvelteComponent {
|
|
|
25820
25815
|
|
|
25821
25816
|
/* src/lib/journey/callbacks/device-profile/device-profile.svelte generated by Svelte v3.59.2 */
|
|
25822
25817
|
|
|
25823
|
-
function create_if_block$
|
|
25818
|
+
function create_if_block$a(ctx) {
|
|
25824
25819
|
let div;
|
|
25825
25820
|
let spinner;
|
|
25826
25821
|
let t;
|
|
@@ -25902,10 +25897,10 @@ function create_default_slot$8(ctx) {
|
|
|
25902
25897
|
};
|
|
25903
25898
|
}
|
|
25904
25899
|
|
|
25905
|
-
function create_fragment$
|
|
25900
|
+
function create_fragment$e(ctx) {
|
|
25906
25901
|
let if_block_anchor;
|
|
25907
25902
|
let current;
|
|
25908
|
-
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$
|
|
25903
|
+
let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$a(ctx);
|
|
25909
25904
|
|
|
25910
25905
|
return {
|
|
25911
25906
|
c() {
|
|
@@ -25926,7 +25921,7 @@ function create_fragment$d(ctx) {
|
|
|
25926
25921
|
transition_in(if_block, 1);
|
|
25927
25922
|
}
|
|
25928
25923
|
} else {
|
|
25929
|
-
if_block = create_if_block$
|
|
25924
|
+
if_block = create_if_block$a(ctx);
|
|
25930
25925
|
if_block.c();
|
|
25931
25926
|
transition_in(if_block, 1);
|
|
25932
25927
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
@@ -25957,7 +25952,7 @@ function create_fragment$d(ctx) {
|
|
|
25957
25952
|
};
|
|
25958
25953
|
}
|
|
25959
25954
|
|
|
25960
|
-
function instance$
|
|
25955
|
+
function instance$f($$self, $$props, $$invalidate) {
|
|
25961
25956
|
let { callback } = $$props;
|
|
25962
25957
|
let { callbackMetadata = null } = $$props;
|
|
25963
25958
|
let { stepMetadata = null } = $$props;
|
|
@@ -25994,7 +25989,7 @@ class Device_profile extends SvelteComponent {
|
|
|
25994
25989
|
constructor(options) {
|
|
25995
25990
|
super();
|
|
25996
25991
|
|
|
25997
|
-
init(this, options, instance$
|
|
25992
|
+
init(this, options, instance$f, create_fragment$e, safe_not_equal, {
|
|
25998
25993
|
callback: 3,
|
|
25999
25994
|
callbackMetadata: 2,
|
|
26000
25995
|
stepMetadata: 0,
|
|
@@ -26003,6 +25998,166 @@ class Device_profile extends SvelteComponent {
|
|
|
26003
25998
|
}
|
|
26004
25999
|
}
|
|
26005
26000
|
|
|
26001
|
+
/* src/lib/journey/callbacks/recaptcha/recaptcha.svelte generated by Svelte v3.59.2 */
|
|
26002
|
+
|
|
26003
|
+
function create_if_block$9(ctx) {
|
|
26004
|
+
let script;
|
|
26005
|
+
let script_src_value;
|
|
26006
|
+
|
|
26007
|
+
return {
|
|
26008
|
+
c() {
|
|
26009
|
+
script = element("script");
|
|
26010
|
+
if (!src_url_equal(script.src, script_src_value = /*recaptchaApi*/ ctx[1])) attr(script, "src", script_src_value);
|
|
26011
|
+
script.async = true;
|
|
26012
|
+
script.defer = true;
|
|
26013
|
+
},
|
|
26014
|
+
m(target, anchor) {
|
|
26015
|
+
insert(target, script, anchor);
|
|
26016
|
+
},
|
|
26017
|
+
p: noop,
|
|
26018
|
+
d(detaching) {
|
|
26019
|
+
if (detaching) detach(script);
|
|
26020
|
+
}
|
|
26021
|
+
};
|
|
26022
|
+
}
|
|
26023
|
+
|
|
26024
|
+
function create_fragment$d(ctx) {
|
|
26025
|
+
let t;
|
|
26026
|
+
let div;
|
|
26027
|
+
let if_block = /*recaptchaApi*/ ctx[1].length && create_if_block$9(ctx);
|
|
26028
|
+
|
|
26029
|
+
return {
|
|
26030
|
+
c() {
|
|
26031
|
+
if (if_block) if_block.c();
|
|
26032
|
+
t = space();
|
|
26033
|
+
div = element("div");
|
|
26034
|
+
attr(div, "id", "fr-recaptcha");
|
|
26035
|
+
attr(div, "class", `${/*recaptchaClass*/ ctx[2]} tw_flex-1 tw_w-full tw_input-spacing`);
|
|
26036
|
+
attr(div, "data-sitekey", /*siteKey*/ ctx[0]);
|
|
26037
|
+
attr(div, "data-expired-callback", "frHandleExpiredCallback");
|
|
26038
|
+
attr(div, "data-chalexpired-callback", "frHandleExpiredCallback");
|
|
26039
|
+
attr(div, "data-error-callback", "frHandleErrorCallback");
|
|
26040
|
+
attr(div, "data-callback", "frHandleCaptcha");
|
|
26041
|
+
},
|
|
26042
|
+
m(target, anchor) {
|
|
26043
|
+
if (if_block) if_block.m(target, anchor);
|
|
26044
|
+
insert(target, t, anchor);
|
|
26045
|
+
insert(target, div, anchor);
|
|
26046
|
+
},
|
|
26047
|
+
p(ctx, [dirty]) {
|
|
26048
|
+
if (/*recaptchaApi*/ ctx[1].length) if_block.p(ctx, dirty);
|
|
26049
|
+
},
|
|
26050
|
+
i: noop,
|
|
26051
|
+
o: noop,
|
|
26052
|
+
d(detaching) {
|
|
26053
|
+
if (if_block) if_block.d(detaching);
|
|
26054
|
+
if (detaching) detach(t);
|
|
26055
|
+
if (detaching) detach(div);
|
|
26056
|
+
}
|
|
26057
|
+
};
|
|
26058
|
+
}
|
|
26059
|
+
|
|
26060
|
+
function instance$e($$self, $$props, $$invalidate) {
|
|
26061
|
+
let { callback } = $$props;
|
|
26062
|
+
const selfSubmitFunction = null;
|
|
26063
|
+
const stepMetadata = null;
|
|
26064
|
+
const style = {};
|
|
26065
|
+
const siteKey = callback?.getSiteKey() ?? '';
|
|
26066
|
+
let recaptchaApi = `${callback?.getOutputByName('captchaApiUri', '') ?? ''}`;
|
|
26067
|
+
|
|
26068
|
+
/**
|
|
26069
|
+
* AM defaults the class name to g-captcha which is wrong
|
|
26070
|
+
* I dont think we should be manipulating the class here,
|
|
26071
|
+
* but the classname should be g-recaptcha for google
|
|
26072
|
+
*/
|
|
26073
|
+
const recaptchaClass = callback?.getOutputByName('captchaDivClass', 'h-captcha') ?? 'h-captcha';
|
|
26074
|
+
|
|
26075
|
+
onMount(() => {
|
|
26076
|
+
window.frHandleCaptchaError = function handleCaptchaError() {
|
|
26077
|
+
callback?.setResult('');
|
|
26078
|
+
|
|
26079
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26080
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26081
|
+
sitekey: siteKey,
|
|
26082
|
+
callback: 'frHandleCaptcha',
|
|
26083
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26084
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26085
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26086
|
+
});
|
|
26087
|
+
} else {
|
|
26088
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26089
|
+
sitekey: siteKey,
|
|
26090
|
+
callback: window.frHandleCaptcha,
|
|
26091
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26092
|
+
});
|
|
26093
|
+
}
|
|
26094
|
+
};
|
|
26095
|
+
|
|
26096
|
+
window.frHandleCaptcha = function handleCaptchaToken(token) {
|
|
26097
|
+
callback?.setResult(token);
|
|
26098
|
+
};
|
|
26099
|
+
|
|
26100
|
+
window.frHandleExpiredCallback = function handleExpiredCallback() {
|
|
26101
|
+
callback?.setResult('');
|
|
26102
|
+
|
|
26103
|
+
if (recaptchaClass.startsWith('h')) {
|
|
26104
|
+
window.hcaptcha.render(recaptchaClass, {
|
|
26105
|
+
sitekey: siteKey,
|
|
26106
|
+
callback: 'frHandleCaptcha',
|
|
26107
|
+
'expired-callback': 'frHandleExpiredCallback',
|
|
26108
|
+
'chalexpired-callback': 'frHandleExpiredCallback',
|
|
26109
|
+
'error-callback': 'frHandleErrorCallback'
|
|
26110
|
+
});
|
|
26111
|
+
} else {
|
|
26112
|
+
window.grecaptcha.render(recaptchaClass, {
|
|
26113
|
+
sitekey: siteKey,
|
|
26114
|
+
callback: window.frHandleCaptcha,
|
|
26115
|
+
'expired-callback': window.frHandleExpiredCallback
|
|
26116
|
+
});
|
|
26117
|
+
}
|
|
26118
|
+
};
|
|
26119
|
+
});
|
|
26120
|
+
|
|
26121
|
+
$$self.$$set = $$props => {
|
|
26122
|
+
if ('callback' in $$props) $$invalidate(3, callback = $$props.callback);
|
|
26123
|
+
};
|
|
26124
|
+
|
|
26125
|
+
return [
|
|
26126
|
+
siteKey,
|
|
26127
|
+
recaptchaApi,
|
|
26128
|
+
recaptchaClass,
|
|
26129
|
+
callback,
|
|
26130
|
+
selfSubmitFunction,
|
|
26131
|
+
stepMetadata,
|
|
26132
|
+
style
|
|
26133
|
+
];
|
|
26134
|
+
}
|
|
26135
|
+
|
|
26136
|
+
class Recaptcha extends SvelteComponent {
|
|
26137
|
+
constructor(options) {
|
|
26138
|
+
super();
|
|
26139
|
+
|
|
26140
|
+
init(this, options, instance$e, create_fragment$d, safe_not_equal, {
|
|
26141
|
+
callback: 3,
|
|
26142
|
+
selfSubmitFunction: 4,
|
|
26143
|
+
stepMetadata: 5,
|
|
26144
|
+
style: 6
|
|
26145
|
+
});
|
|
26146
|
+
}
|
|
26147
|
+
|
|
26148
|
+
get selfSubmitFunction() {
|
|
26149
|
+
return this.$$.ctx[4];
|
|
26150
|
+
}
|
|
26151
|
+
|
|
26152
|
+
get stepMetadata() {
|
|
26153
|
+
return this.$$.ctx[5];
|
|
26154
|
+
}
|
|
26155
|
+
|
|
26156
|
+
get style() {
|
|
26157
|
+
return this.$$.ctx[6];
|
|
26158
|
+
}
|
|
26159
|
+
}
|
|
26160
|
+
|
|
26006
26161
|
/* src/lib/journey/callbacks/metadata/metadata.svelte generated by Svelte v3.59.2 */
|
|
26007
26162
|
|
|
26008
26163
|
function instance$d($$self, $$props, $$invalidate) {
|
|
@@ -26055,10 +26210,22 @@ function get_else_ctx(ctx) {
|
|
|
26055
26210
|
|
|
26056
26211
|
const constants_0 = {
|
|
26057
26212
|
.../*props*/ child_ctx[0],
|
|
26058
|
-
callback: /*_FRCallback*/ child_ctx[
|
|
26213
|
+
callback: /*_FRCallback*/ child_ctx[21]
|
|
26214
|
+
};
|
|
26215
|
+
|
|
26216
|
+
child_ctx[22] = constants_0;
|
|
26217
|
+
return child_ctx;
|
|
26218
|
+
}
|
|
26219
|
+
|
|
26220
|
+
function get_if_ctx_18(ctx) {
|
|
26221
|
+
const child_ctx = ctx.slice();
|
|
26222
|
+
|
|
26223
|
+
const constants_0 = {
|
|
26224
|
+
.../*props*/ child_ctx[0],
|
|
26225
|
+
callback: /*_RecaptchaCallback*/ child_ctx[20]
|
|
26059
26226
|
};
|
|
26060
26227
|
|
|
26061
|
-
child_ctx[
|
|
26228
|
+
child_ctx[22] = constants_0;
|
|
26062
26229
|
return child_ctx;
|
|
26063
26230
|
}
|
|
26064
26231
|
|
|
@@ -26070,7 +26237,7 @@ function get_if_ctx_17(ctx) {
|
|
|
26070
26237
|
callback: /*_MetadataCallback*/ child_ctx[18]
|
|
26071
26238
|
};
|
|
26072
26239
|
|
|
26073
|
-
child_ctx[
|
|
26240
|
+
child_ctx[22] = constants_0;
|
|
26074
26241
|
return child_ctx;
|
|
26075
26242
|
}
|
|
26076
26243
|
|
|
@@ -26082,7 +26249,7 @@ function get_if_ctx_16(ctx) {
|
|
|
26082
26249
|
callback: /*_DeviceProfileCallback*/ child_ctx[19]
|
|
26083
26250
|
};
|
|
26084
26251
|
|
|
26085
|
-
child_ctx[
|
|
26252
|
+
child_ctx[22] = constants_0;
|
|
26086
26253
|
return child_ctx;
|
|
26087
26254
|
}
|
|
26088
26255
|
|
|
@@ -26094,7 +26261,7 @@ function get_if_ctx_15(ctx) {
|
|
|
26094
26261
|
callback: /*_SuspendedTextOutputCallback*/ child_ctx[17]
|
|
26095
26262
|
};
|
|
26096
26263
|
|
|
26097
|
-
child_ctx[
|
|
26264
|
+
child_ctx[22] = constants_0;
|
|
26098
26265
|
return child_ctx;
|
|
26099
26266
|
}
|
|
26100
26267
|
|
|
@@ -26106,7 +26273,7 @@ function get_if_ctx_14(ctx) {
|
|
|
26106
26273
|
callback: /*_TextOutputCallback*/ child_ctx[16]
|
|
26107
26274
|
};
|
|
26108
26275
|
|
|
26109
|
-
child_ctx[
|
|
26276
|
+
child_ctx[22] = constants_0;
|
|
26110
26277
|
return child_ctx;
|
|
26111
26278
|
}
|
|
26112
26279
|
|
|
@@ -26118,7 +26285,7 @@ function get_if_ctx_13(ctx) {
|
|
|
26118
26285
|
callback: /*_TermsAndConditionsCallback*/ child_ctx[15]
|
|
26119
26286
|
};
|
|
26120
26287
|
|
|
26121
|
-
child_ctx[
|
|
26288
|
+
child_ctx[22] = constants_0;
|
|
26122
26289
|
return child_ctx;
|
|
26123
26290
|
}
|
|
26124
26291
|
|
|
@@ -26130,7 +26297,7 @@ function get_if_ctx_12(ctx) {
|
|
|
26130
26297
|
callback: /*_ValidatedCreateUsernameCallback*/ child_ctx[14]
|
|
26131
26298
|
};
|
|
26132
26299
|
|
|
26133
|
-
child_ctx[
|
|
26300
|
+
child_ctx[22] = constants_0;
|
|
26134
26301
|
return child_ctx;
|
|
26135
26302
|
}
|
|
26136
26303
|
|
|
@@ -26142,7 +26309,7 @@ function get_if_ctx_11(ctx) {
|
|
|
26142
26309
|
callback: /*_ValidatedCreatePasswordCallback*/ child_ctx[13]
|
|
26143
26310
|
};
|
|
26144
26311
|
|
|
26145
|
-
child_ctx[
|
|
26312
|
+
child_ctx[22] = constants_0;
|
|
26146
26313
|
return child_ctx;
|
|
26147
26314
|
}
|
|
26148
26315
|
|
|
@@ -26154,7 +26321,7 @@ function get_if_ctx_10(ctx) {
|
|
|
26154
26321
|
callback: /*_StringAttributeInputCallback*/ child_ctx[12]
|
|
26155
26322
|
};
|
|
26156
26323
|
|
|
26157
|
-
child_ctx[
|
|
26324
|
+
child_ctx[22] = constants_0;
|
|
26158
26325
|
return child_ctx;
|
|
26159
26326
|
}
|
|
26160
26327
|
|
|
@@ -26166,7 +26333,7 @@ function get_if_ctx_9(ctx) {
|
|
|
26166
26333
|
callback: /*_SelectIdPCallback*/ child_ctx[11]
|
|
26167
26334
|
};
|
|
26168
26335
|
|
|
26169
|
-
child_ctx[
|
|
26336
|
+
child_ctx[22] = constants_0;
|
|
26170
26337
|
return child_ctx;
|
|
26171
26338
|
}
|
|
26172
26339
|
|
|
@@ -26178,7 +26345,7 @@ function get_if_ctx_8(ctx) {
|
|
|
26178
26345
|
callback: /*_RedirectCallback*/ child_ctx[10]
|
|
26179
26346
|
};
|
|
26180
26347
|
|
|
26181
|
-
child_ctx[
|
|
26348
|
+
child_ctx[22] = constants_0;
|
|
26182
26349
|
return child_ctx;
|
|
26183
26350
|
}
|
|
26184
26351
|
|
|
@@ -26190,7 +26357,7 @@ function get_if_ctx_7(ctx) {
|
|
|
26190
26357
|
callback: /*_PollingWaitCallback*/ child_ctx[9]
|
|
26191
26358
|
};
|
|
26192
26359
|
|
|
26193
|
-
child_ctx[
|
|
26360
|
+
child_ctx[22] = constants_0;
|
|
26194
26361
|
return child_ctx;
|
|
26195
26362
|
}
|
|
26196
26363
|
|
|
@@ -26202,7 +26369,7 @@ function get_if_ctx_6(ctx) {
|
|
|
26202
26369
|
callback: /*_PasswordCallback*/ child_ctx[8]
|
|
26203
26370
|
};
|
|
26204
26371
|
|
|
26205
|
-
child_ctx[
|
|
26372
|
+
child_ctx[22] = constants_0;
|
|
26206
26373
|
return child_ctx;
|
|
26207
26374
|
}
|
|
26208
26375
|
|
|
@@ -26214,7 +26381,7 @@ function get_if_ctx_5(ctx) {
|
|
|
26214
26381
|
callback: /*_NameCallback*/ child_ctx[7]
|
|
26215
26382
|
};
|
|
26216
26383
|
|
|
26217
|
-
child_ctx[
|
|
26384
|
+
child_ctx[22] = constants_0;
|
|
26218
26385
|
return child_ctx;
|
|
26219
26386
|
}
|
|
26220
26387
|
|
|
@@ -26226,7 +26393,7 @@ function get_if_ctx_4(ctx) {
|
|
|
26226
26393
|
callback: /*_KbaCreateCallback*/ child_ctx[6]
|
|
26227
26394
|
};
|
|
26228
26395
|
|
|
26229
|
-
child_ctx[
|
|
26396
|
+
child_ctx[22] = constants_0;
|
|
26230
26397
|
return child_ctx;
|
|
26231
26398
|
}
|
|
26232
26399
|
|
|
@@ -26238,7 +26405,7 @@ function get_if_ctx_3(ctx) {
|
|
|
26238
26405
|
callback: /*_HiddenValueCallback*/ child_ctx[5]
|
|
26239
26406
|
};
|
|
26240
26407
|
|
|
26241
|
-
child_ctx[
|
|
26408
|
+
child_ctx[22] = constants_0;
|
|
26242
26409
|
return child_ctx;
|
|
26243
26410
|
}
|
|
26244
26411
|
|
|
@@ -26250,7 +26417,7 @@ function get_if_ctx_2(ctx) {
|
|
|
26250
26417
|
callback: /*_ConfirmationCallback*/ child_ctx[4]
|
|
26251
26418
|
};
|
|
26252
26419
|
|
|
26253
|
-
child_ctx[
|
|
26420
|
+
child_ctx[22] = constants_0;
|
|
26254
26421
|
return child_ctx;
|
|
26255
26422
|
}
|
|
26256
26423
|
|
|
@@ -26262,7 +26429,7 @@ function get_if_ctx_1(ctx) {
|
|
|
26262
26429
|
callback: /*_ChoiceCallback*/ child_ctx[3]
|
|
26263
26430
|
};
|
|
26264
26431
|
|
|
26265
|
-
child_ctx[
|
|
26432
|
+
child_ctx[22] = constants_0;
|
|
26266
26433
|
return child_ctx;
|
|
26267
26434
|
}
|
|
26268
26435
|
|
|
@@ -26274,15 +26441,15 @@ function get_if_ctx(ctx) {
|
|
|
26274
26441
|
callback: /*_BooleanAttributeInputCallback*/ child_ctx[2]
|
|
26275
26442
|
};
|
|
26276
26443
|
|
|
26277
|
-
child_ctx[
|
|
26444
|
+
child_ctx[22] = constants_0;
|
|
26278
26445
|
return child_ctx;
|
|
26279
26446
|
}
|
|
26280
26447
|
|
|
26281
|
-
// (
|
|
26448
|
+
// (231:0) {:else}
|
|
26282
26449
|
function create_else_block$3(ctx) {
|
|
26283
26450
|
let unknown;
|
|
26284
26451
|
let current;
|
|
26285
|
-
const unknown_spread_levels = [/*newProps*/ ctx[
|
|
26452
|
+
const unknown_spread_levels = [/*newProps*/ ctx[22]];
|
|
26286
26453
|
let unknown_props = {};
|
|
26287
26454
|
|
|
26288
26455
|
for (let i = 0; i < unknown_spread_levels.length; i += 1) {
|
|
@@ -26300,8 +26467,8 @@ function create_else_block$3(ctx) {
|
|
|
26300
26467
|
current = true;
|
|
26301
26468
|
},
|
|
26302
26469
|
p(ctx, dirty) {
|
|
26303
|
-
const unknown_changes = (dirty & /*props, _FRCallback*/
|
|
26304
|
-
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26470
|
+
const unknown_changes = (dirty & /*props, _FRCallback*/ 2097153)
|
|
26471
|
+
? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26305
26472
|
: {};
|
|
26306
26473
|
|
|
26307
26474
|
unknown.$set(unknown_changes);
|
|
@@ -26321,11 +26488,54 @@ function create_else_block$3(ctx) {
|
|
|
26321
26488
|
};
|
|
26322
26489
|
}
|
|
26323
26490
|
|
|
26324
|
-
// (
|
|
26491
|
+
// (225:52)
|
|
26492
|
+
function create_if_block_18(ctx) {
|
|
26493
|
+
let recaptcha;
|
|
26494
|
+
let current;
|
|
26495
|
+
const recaptcha_spread_levels = [/*newProps*/ ctx[22]];
|
|
26496
|
+
let recaptcha_props = {};
|
|
26497
|
+
|
|
26498
|
+
for (let i = 0; i < recaptcha_spread_levels.length; i += 1) {
|
|
26499
|
+
recaptcha_props = assign(recaptcha_props, recaptcha_spread_levels[i]);
|
|
26500
|
+
}
|
|
26501
|
+
|
|
26502
|
+
recaptcha = new Recaptcha({ props: recaptcha_props });
|
|
26503
|
+
|
|
26504
|
+
return {
|
|
26505
|
+
c() {
|
|
26506
|
+
create_component(recaptcha.$$.fragment);
|
|
26507
|
+
},
|
|
26508
|
+
m(target, anchor) {
|
|
26509
|
+
mount_component(recaptcha, target, anchor);
|
|
26510
|
+
current = true;
|
|
26511
|
+
},
|
|
26512
|
+
p(ctx, dirty) {
|
|
26513
|
+
const recaptcha_changes = (dirty & /*props, _RecaptchaCallback*/ 1048577)
|
|
26514
|
+
? get_spread_update(recaptcha_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26515
|
+
: {};
|
|
26516
|
+
|
|
26517
|
+
recaptcha.$set(recaptcha_changes);
|
|
26518
|
+
},
|
|
26519
|
+
i(local) {
|
|
26520
|
+
if (current) return;
|
|
26521
|
+
transition_in(recaptcha.$$.fragment, local);
|
|
26522
|
+
current = true;
|
|
26523
|
+
},
|
|
26524
|
+
o(local) {
|
|
26525
|
+
transition_out(recaptcha.$$.fragment, local);
|
|
26526
|
+
current = false;
|
|
26527
|
+
},
|
|
26528
|
+
d(detaching) {
|
|
26529
|
+
destroy_component(recaptcha, detaching);
|
|
26530
|
+
}
|
|
26531
|
+
};
|
|
26532
|
+
}
|
|
26533
|
+
|
|
26534
|
+
// (219:51)
|
|
26325
26535
|
function create_if_block_17(ctx) {
|
|
26326
26536
|
let metadata;
|
|
26327
26537
|
let current;
|
|
26328
|
-
const metadata_spread_levels = [/*newProps*/ ctx[
|
|
26538
|
+
const metadata_spread_levels = [/*newProps*/ ctx[22]];
|
|
26329
26539
|
let metadata_props = {};
|
|
26330
26540
|
|
|
26331
26541
|
for (let i = 0; i < metadata_spread_levels.length; i += 1) {
|
|
@@ -26344,7 +26554,7 @@ function create_if_block_17(ctx) {
|
|
|
26344
26554
|
},
|
|
26345
26555
|
p(ctx, dirty) {
|
|
26346
26556
|
const metadata_changes = (dirty & /*props, _MetadataCallback*/ 262145)
|
|
26347
|
-
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26557
|
+
? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26348
26558
|
: {};
|
|
26349
26559
|
|
|
26350
26560
|
metadata.$set(metadata_changes);
|
|
@@ -26364,11 +26574,11 @@ function create_if_block_17(ctx) {
|
|
|
26364
26574
|
};
|
|
26365
26575
|
}
|
|
26366
26576
|
|
|
26367
|
-
// (
|
|
26577
|
+
// (213:56)
|
|
26368
26578
|
function create_if_block_16(ctx) {
|
|
26369
26579
|
let deviceprofile;
|
|
26370
26580
|
let current;
|
|
26371
|
-
const deviceprofile_spread_levels = [/*newProps*/ ctx[
|
|
26581
|
+
const deviceprofile_spread_levels = [/*newProps*/ ctx[22]];
|
|
26372
26582
|
let deviceprofile_props = {};
|
|
26373
26583
|
|
|
26374
26584
|
for (let i = 0; i < deviceprofile_spread_levels.length; i += 1) {
|
|
@@ -26387,7 +26597,7 @@ function create_if_block_16(ctx) {
|
|
|
26387
26597
|
},
|
|
26388
26598
|
p(ctx, dirty) {
|
|
26389
26599
|
const deviceprofile_changes = (dirty & /*props, _DeviceProfileCallback*/ 524289)
|
|
26390
|
-
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26600
|
+
? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26391
26601
|
: {};
|
|
26392
26602
|
|
|
26393
26603
|
deviceprofile.$set(deviceprofile_changes);
|
|
@@ -26407,11 +26617,11 @@ function create_if_block_16(ctx) {
|
|
|
26407
26617
|
};
|
|
26408
26618
|
}
|
|
26409
26619
|
|
|
26410
|
-
// (
|
|
26620
|
+
// (207:62)
|
|
26411
26621
|
function create_if_block_15(ctx) {
|
|
26412
26622
|
let textoutput;
|
|
26413
26623
|
let current;
|
|
26414
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26624
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26415
26625
|
let textoutput_props = {};
|
|
26416
26626
|
|
|
26417
26627
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26430,7 +26640,7 @@ function create_if_block_15(ctx) {
|
|
|
26430
26640
|
},
|
|
26431
26641
|
p(ctx, dirty) {
|
|
26432
26642
|
const textoutput_changes = (dirty & /*props, _SuspendedTextOutputCallback*/ 131073)
|
|
26433
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26643
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26434
26644
|
: {};
|
|
26435
26645
|
|
|
26436
26646
|
textoutput.$set(textoutput_changes);
|
|
@@ -26450,11 +26660,11 @@ function create_if_block_15(ctx) {
|
|
|
26450
26660
|
};
|
|
26451
26661
|
}
|
|
26452
26662
|
|
|
26453
|
-
// (
|
|
26663
|
+
// (201:53)
|
|
26454
26664
|
function create_if_block_14(ctx) {
|
|
26455
26665
|
let textoutput;
|
|
26456
26666
|
let current;
|
|
26457
|
-
const textoutput_spread_levels = [/*newProps*/ ctx[
|
|
26667
|
+
const textoutput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26458
26668
|
let textoutput_props = {};
|
|
26459
26669
|
|
|
26460
26670
|
for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
|
|
@@ -26473,7 +26683,7 @@ function create_if_block_14(ctx) {
|
|
|
26473
26683
|
},
|
|
26474
26684
|
p(ctx, dirty) {
|
|
26475
26685
|
const textoutput_changes = (dirty & /*props, _TextOutputCallback*/ 65537)
|
|
26476
|
-
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26686
|
+
? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26477
26687
|
: {};
|
|
26478
26688
|
|
|
26479
26689
|
textoutput.$set(textoutput_changes);
|
|
@@ -26493,11 +26703,11 @@ function create_if_block_14(ctx) {
|
|
|
26493
26703
|
};
|
|
26494
26704
|
}
|
|
26495
26705
|
|
|
26496
|
-
// (
|
|
26706
|
+
// (195:61)
|
|
26497
26707
|
function create_if_block_13(ctx) {
|
|
26498
26708
|
let termsconditions;
|
|
26499
26709
|
let current;
|
|
26500
|
-
const termsconditions_spread_levels = [/*newProps*/ ctx[
|
|
26710
|
+
const termsconditions_spread_levels = [/*newProps*/ ctx[22]];
|
|
26501
26711
|
let termsconditions_props = {};
|
|
26502
26712
|
|
|
26503
26713
|
for (let i = 0; i < termsconditions_spread_levels.length; i += 1) {
|
|
@@ -26516,7 +26726,7 @@ function create_if_block_13(ctx) {
|
|
|
26516
26726
|
},
|
|
26517
26727
|
p(ctx, dirty) {
|
|
26518
26728
|
const termsconditions_changes = (dirty & /*props, _TermsAndConditionsCallback*/ 32769)
|
|
26519
|
-
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26729
|
+
? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26520
26730
|
: {};
|
|
26521
26731
|
|
|
26522
26732
|
termsconditions.$set(termsconditions_changes);
|
|
@@ -26536,11 +26746,11 @@ function create_if_block_13(ctx) {
|
|
|
26536
26746
|
};
|
|
26537
26747
|
}
|
|
26538
26748
|
|
|
26539
|
-
// (
|
|
26749
|
+
// (189:66)
|
|
26540
26750
|
function create_if_block_12(ctx) {
|
|
26541
26751
|
let validatedcreateusername;
|
|
26542
26752
|
let current;
|
|
26543
|
-
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[
|
|
26753
|
+
const validatedcreateusername_spread_levels = [/*newProps*/ ctx[22]];
|
|
26544
26754
|
let validatedcreateusername_props = {};
|
|
26545
26755
|
|
|
26546
26756
|
for (let i = 0; i < validatedcreateusername_spread_levels.length; i += 1) {
|
|
@@ -26559,7 +26769,7 @@ function create_if_block_12(ctx) {
|
|
|
26559
26769
|
},
|
|
26560
26770
|
p(ctx, dirty) {
|
|
26561
26771
|
const validatedcreateusername_changes = (dirty & /*props, _ValidatedCreateUsernameCallback*/ 16385)
|
|
26562
|
-
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26772
|
+
? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26563
26773
|
: {};
|
|
26564
26774
|
|
|
26565
26775
|
validatedcreateusername.$set(validatedcreateusername_changes);
|
|
@@ -26579,11 +26789,11 @@ function create_if_block_12(ctx) {
|
|
|
26579
26789
|
};
|
|
26580
26790
|
}
|
|
26581
26791
|
|
|
26582
|
-
// (
|
|
26792
|
+
// (183:66)
|
|
26583
26793
|
function create_if_block_11(ctx) {
|
|
26584
26794
|
let validatedcreatepassword;
|
|
26585
26795
|
let current;
|
|
26586
|
-
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[
|
|
26796
|
+
const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[22]];
|
|
26587
26797
|
let validatedcreatepassword_props = {};
|
|
26588
26798
|
|
|
26589
26799
|
for (let i = 0; i < validatedcreatepassword_spread_levels.length; i += 1) {
|
|
@@ -26602,7 +26812,7 @@ function create_if_block_11(ctx) {
|
|
|
26602
26812
|
},
|
|
26603
26813
|
p(ctx, dirty) {
|
|
26604
26814
|
const validatedcreatepassword_changes = (dirty & /*props, _ValidatedCreatePasswordCallback*/ 8193)
|
|
26605
|
-
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26815
|
+
? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26606
26816
|
: {};
|
|
26607
26817
|
|
|
26608
26818
|
validatedcreatepassword.$set(validatedcreatepassword_changes);
|
|
@@ -26622,11 +26832,11 @@ function create_if_block_11(ctx) {
|
|
|
26622
26832
|
};
|
|
26623
26833
|
}
|
|
26624
26834
|
|
|
26625
|
-
// (
|
|
26835
|
+
// (177:63)
|
|
26626
26836
|
function create_if_block_10(ctx) {
|
|
26627
26837
|
let stringattributeinput;
|
|
26628
26838
|
let current;
|
|
26629
|
-
const stringattributeinput_spread_levels = [/*newProps*/ ctx[
|
|
26839
|
+
const stringattributeinput_spread_levels = [/*newProps*/ ctx[22]];
|
|
26630
26840
|
let stringattributeinput_props = {};
|
|
26631
26841
|
|
|
26632
26842
|
for (let i = 0; i < stringattributeinput_spread_levels.length; i += 1) {
|
|
@@ -26645,7 +26855,7 @@ function create_if_block_10(ctx) {
|
|
|
26645
26855
|
},
|
|
26646
26856
|
p(ctx, dirty) {
|
|
26647
26857
|
const stringattributeinput_changes = (dirty & /*props, _StringAttributeInputCallback*/ 4097)
|
|
26648
|
-
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26858
|
+
? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26649
26859
|
: {};
|
|
26650
26860
|
|
|
26651
26861
|
stringattributeinput.$set(stringattributeinput_changes);
|
|
@@ -26665,11 +26875,11 @@ function create_if_block_10(ctx) {
|
|
|
26665
26875
|
};
|
|
26666
26876
|
}
|
|
26667
26877
|
|
|
26668
|
-
// (
|
|
26878
|
+
// (171:52)
|
|
26669
26879
|
function create_if_block_9(ctx) {
|
|
26670
26880
|
let selectidp;
|
|
26671
26881
|
let current;
|
|
26672
|
-
const selectidp_spread_levels = [/*newProps*/ ctx[
|
|
26882
|
+
const selectidp_spread_levels = [/*newProps*/ ctx[22]];
|
|
26673
26883
|
let selectidp_props = {};
|
|
26674
26884
|
|
|
26675
26885
|
for (let i = 0; i < selectidp_spread_levels.length; i += 1) {
|
|
@@ -26688,7 +26898,7 @@ function create_if_block_9(ctx) {
|
|
|
26688
26898
|
},
|
|
26689
26899
|
p(ctx, dirty) {
|
|
26690
26900
|
const selectidp_changes = (dirty & /*props, _SelectIdPCallback*/ 2049)
|
|
26691
|
-
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26901
|
+
? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26692
26902
|
: {};
|
|
26693
26903
|
|
|
26694
26904
|
selectidp.$set(selectidp_changes);
|
|
@@ -26708,11 +26918,11 @@ function create_if_block_9(ctx) {
|
|
|
26708
26918
|
};
|
|
26709
26919
|
}
|
|
26710
26920
|
|
|
26711
|
-
// (
|
|
26921
|
+
// (165:51)
|
|
26712
26922
|
function create_if_block_8(ctx) {
|
|
26713
26923
|
let redirect;
|
|
26714
26924
|
let current;
|
|
26715
|
-
const redirect_spread_levels = [/*newProps*/ ctx[
|
|
26925
|
+
const redirect_spread_levels = [/*newProps*/ ctx[22]];
|
|
26716
26926
|
let redirect_props = {};
|
|
26717
26927
|
|
|
26718
26928
|
for (let i = 0; i < redirect_spread_levels.length; i += 1) {
|
|
@@ -26731,7 +26941,7 @@ function create_if_block_8(ctx) {
|
|
|
26731
26941
|
},
|
|
26732
26942
|
p(ctx, dirty) {
|
|
26733
26943
|
const redirect_changes = (dirty & /*props, _RedirectCallback*/ 1025)
|
|
26734
|
-
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26944
|
+
? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26735
26945
|
: {};
|
|
26736
26946
|
|
|
26737
26947
|
redirect.$set(redirect_changes);
|
|
@@ -26751,11 +26961,11 @@ function create_if_block_8(ctx) {
|
|
|
26751
26961
|
};
|
|
26752
26962
|
}
|
|
26753
26963
|
|
|
26754
|
-
// (
|
|
26964
|
+
// (159:54)
|
|
26755
26965
|
function create_if_block_7(ctx) {
|
|
26756
26966
|
let pollingwait;
|
|
26757
26967
|
let current;
|
|
26758
|
-
const pollingwait_spread_levels = [/*newProps*/ ctx[
|
|
26968
|
+
const pollingwait_spread_levels = [/*newProps*/ ctx[22]];
|
|
26759
26969
|
let pollingwait_props = {};
|
|
26760
26970
|
|
|
26761
26971
|
for (let i = 0; i < pollingwait_spread_levels.length; i += 1) {
|
|
@@ -26774,7 +26984,7 @@ function create_if_block_7(ctx) {
|
|
|
26774
26984
|
},
|
|
26775
26985
|
p(ctx, dirty) {
|
|
26776
26986
|
const pollingwait_changes = (dirty & /*props, _PollingWaitCallback*/ 513)
|
|
26777
|
-
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
26987
|
+
? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26778
26988
|
: {};
|
|
26779
26989
|
|
|
26780
26990
|
pollingwait.$set(pollingwait_changes);
|
|
@@ -26794,11 +27004,11 @@ function create_if_block_7(ctx) {
|
|
|
26794
27004
|
};
|
|
26795
27005
|
}
|
|
26796
27006
|
|
|
26797
|
-
// (
|
|
27007
|
+
// (153:51)
|
|
26798
27008
|
function create_if_block_6(ctx) {
|
|
26799
27009
|
let password;
|
|
26800
27010
|
let current;
|
|
26801
|
-
const password_spread_levels = [/*newProps*/ ctx[
|
|
27011
|
+
const password_spread_levels = [/*newProps*/ ctx[22]];
|
|
26802
27012
|
let password_props = {};
|
|
26803
27013
|
|
|
26804
27014
|
for (let i = 0; i < password_spread_levels.length; i += 1) {
|
|
@@ -26817,7 +27027,7 @@ function create_if_block_6(ctx) {
|
|
|
26817
27027
|
},
|
|
26818
27028
|
p(ctx, dirty) {
|
|
26819
27029
|
const password_changes = (dirty & /*props, _PasswordCallback*/ 257)
|
|
26820
|
-
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27030
|
+
? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26821
27031
|
: {};
|
|
26822
27032
|
|
|
26823
27033
|
password.$set(password_changes);
|
|
@@ -26837,11 +27047,11 @@ function create_if_block_6(ctx) {
|
|
|
26837
27047
|
};
|
|
26838
27048
|
}
|
|
26839
27049
|
|
|
26840
|
-
// (
|
|
27050
|
+
// (147:47)
|
|
26841
27051
|
function create_if_block_5(ctx) {
|
|
26842
27052
|
let name;
|
|
26843
27053
|
let current;
|
|
26844
|
-
const name_spread_levels = [/*newProps*/ ctx[
|
|
27054
|
+
const name_spread_levels = [/*newProps*/ ctx[22]];
|
|
26845
27055
|
let name_props = {};
|
|
26846
27056
|
|
|
26847
27057
|
for (let i = 0; i < name_spread_levels.length; i += 1) {
|
|
@@ -26860,7 +27070,7 @@ function create_if_block_5(ctx) {
|
|
|
26860
27070
|
},
|
|
26861
27071
|
p(ctx, dirty) {
|
|
26862
27072
|
const name_changes = (dirty & /*props, _NameCallback*/ 129)
|
|
26863
|
-
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27073
|
+
? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26864
27074
|
: {};
|
|
26865
27075
|
|
|
26866
27076
|
name.$set(name_changes);
|
|
@@ -26880,11 +27090,11 @@ function create_if_block_5(ctx) {
|
|
|
26880
27090
|
};
|
|
26881
27091
|
}
|
|
26882
27092
|
|
|
26883
|
-
// (
|
|
27093
|
+
// (141:52)
|
|
26884
27094
|
function create_if_block_4$1(ctx) {
|
|
26885
27095
|
let kbacreate;
|
|
26886
27096
|
let current;
|
|
26887
|
-
const kbacreate_spread_levels = [/*newProps*/ ctx[
|
|
27097
|
+
const kbacreate_spread_levels = [/*newProps*/ ctx[22]];
|
|
26888
27098
|
let kbacreate_props = {};
|
|
26889
27099
|
|
|
26890
27100
|
for (let i = 0; i < kbacreate_spread_levels.length; i += 1) {
|
|
@@ -26903,7 +27113,7 @@ function create_if_block_4$1(ctx) {
|
|
|
26903
27113
|
},
|
|
26904
27114
|
p(ctx, dirty) {
|
|
26905
27115
|
const kbacreate_changes = (dirty & /*props, _KbaCreateCallback*/ 65)
|
|
26906
|
-
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27116
|
+
? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26907
27117
|
: {};
|
|
26908
27118
|
|
|
26909
27119
|
kbacreate.$set(kbacreate_changes);
|
|
@@ -26923,11 +27133,11 @@ function create_if_block_4$1(ctx) {
|
|
|
26923
27133
|
};
|
|
26924
27134
|
}
|
|
26925
27135
|
|
|
26926
|
-
// (
|
|
27136
|
+
// (135:54)
|
|
26927
27137
|
function create_if_block_3$4(ctx) {
|
|
26928
27138
|
let hiddenvalue;
|
|
26929
27139
|
let current;
|
|
26930
|
-
const hiddenvalue_spread_levels = [/*newProps*/ ctx[
|
|
27140
|
+
const hiddenvalue_spread_levels = [/*newProps*/ ctx[22]];
|
|
26931
27141
|
let hiddenvalue_props = {};
|
|
26932
27142
|
|
|
26933
27143
|
for (let i = 0; i < hiddenvalue_spread_levels.length; i += 1) {
|
|
@@ -26946,7 +27156,7 @@ function create_if_block_3$4(ctx) {
|
|
|
26946
27156
|
},
|
|
26947
27157
|
p(ctx, dirty) {
|
|
26948
27158
|
const hiddenvalue_changes = (dirty & /*props, _HiddenValueCallback*/ 33)
|
|
26949
|
-
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27159
|
+
? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26950
27160
|
: {};
|
|
26951
27161
|
|
|
26952
27162
|
hiddenvalue.$set(hiddenvalue_changes);
|
|
@@ -26966,11 +27176,11 @@ function create_if_block_3$4(ctx) {
|
|
|
26966
27176
|
};
|
|
26967
27177
|
}
|
|
26968
27178
|
|
|
26969
|
-
// (
|
|
27179
|
+
// (129:55)
|
|
26970
27180
|
function create_if_block_2$6(ctx) {
|
|
26971
27181
|
let confirmation;
|
|
26972
27182
|
let current;
|
|
26973
|
-
const confirmation_spread_levels = [/*newProps*/ ctx[
|
|
27183
|
+
const confirmation_spread_levels = [/*newProps*/ ctx[22]];
|
|
26974
27184
|
let confirmation_props = {};
|
|
26975
27185
|
|
|
26976
27186
|
for (let i = 0; i < confirmation_spread_levels.length; i += 1) {
|
|
@@ -26989,7 +27199,7 @@ function create_if_block_2$6(ctx) {
|
|
|
26989
27199
|
},
|
|
26990
27200
|
p(ctx, dirty) {
|
|
26991
27201
|
const confirmation_changes = (dirty & /*props, _ConfirmationCallback*/ 17)
|
|
26992
|
-
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27202
|
+
? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
26993
27203
|
: {};
|
|
26994
27204
|
|
|
26995
27205
|
confirmation.$set(confirmation_changes);
|
|
@@ -27009,11 +27219,11 @@ function create_if_block_2$6(ctx) {
|
|
|
27009
27219
|
};
|
|
27010
27220
|
}
|
|
27011
27221
|
|
|
27012
|
-
// (
|
|
27222
|
+
// (123:49)
|
|
27013
27223
|
function create_if_block_1$6(ctx) {
|
|
27014
27224
|
let choice;
|
|
27015
27225
|
let current;
|
|
27016
|
-
const choice_spread_levels = [/*newProps*/ ctx[
|
|
27226
|
+
const choice_spread_levels = [/*newProps*/ ctx[22]];
|
|
27017
27227
|
let choice_props = {};
|
|
27018
27228
|
|
|
27019
27229
|
for (let i = 0; i < choice_spread_levels.length; i += 1) {
|
|
@@ -27032,7 +27242,7 @@ function create_if_block_1$6(ctx) {
|
|
|
27032
27242
|
},
|
|
27033
27243
|
p(ctx, dirty) {
|
|
27034
27244
|
const choice_changes = (dirty & /*props, _ChoiceCallback*/ 9)
|
|
27035
|
-
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27245
|
+
? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27036
27246
|
: {};
|
|
27037
27247
|
|
|
27038
27248
|
choice.$set(choice_changes);
|
|
@@ -27052,11 +27262,11 @@ function create_if_block_1$6(ctx) {
|
|
|
27052
27262
|
};
|
|
27053
27263
|
}
|
|
27054
27264
|
|
|
27055
|
-
// (
|
|
27265
|
+
// (117:0) {#if cbType === CallbackType.BooleanAttributeInputCallback}
|
|
27056
27266
|
function create_if_block$8(ctx) {
|
|
27057
27267
|
let boolean;
|
|
27058
27268
|
let current;
|
|
27059
|
-
const boolean_spread_levels = [/*newProps*/ ctx[
|
|
27269
|
+
const boolean_spread_levels = [/*newProps*/ ctx[22]];
|
|
27060
27270
|
let boolean_props = {};
|
|
27061
27271
|
|
|
27062
27272
|
for (let i = 0; i < boolean_spread_levels.length; i += 1) {
|
|
@@ -27075,7 +27285,7 @@ function create_if_block$8(ctx) {
|
|
|
27075
27285
|
},
|
|
27076
27286
|
p(ctx, dirty) {
|
|
27077
27287
|
const boolean_changes = (dirty & /*props, _BooleanAttributeInputCallback*/ 5)
|
|
27078
|
-
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[
|
|
27288
|
+
? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
|
|
27079
27289
|
: {};
|
|
27080
27290
|
|
|
27081
27291
|
boolean.$set(boolean_changes);
|
|
@@ -27120,6 +27330,7 @@ function create_fragment$c(ctx) {
|
|
|
27120
27330
|
create_if_block_15,
|
|
27121
27331
|
create_if_block_16,
|
|
27122
27332
|
create_if_block_17,
|
|
27333
|
+
create_if_block_18,
|
|
27123
27334
|
create_else_block$3
|
|
27124
27335
|
];
|
|
27125
27336
|
|
|
@@ -27144,7 +27355,8 @@ function create_fragment$c(ctx) {
|
|
|
27144
27355
|
if (/*cbType*/ ctx[1] === CallbackType.SuspendedTextOutputCallback) return 15;
|
|
27145
27356
|
if (/*cbType*/ ctx[1] === CallbackType.DeviceProfileCallback) return 16;
|
|
27146
27357
|
if (/*cbType*/ ctx[1] === CallbackType.MetadataCallback) return 17;
|
|
27147
|
-
return 18;
|
|
27358
|
+
if (/*cbType*/ ctx[1] === CallbackType.ReCaptchaCallback) return 18;
|
|
27359
|
+
return 19;
|
|
27148
27360
|
}
|
|
27149
27361
|
|
|
27150
27362
|
function select_block_ctx(ctx, index) {
|
|
@@ -27166,6 +27378,7 @@ function create_fragment$c(ctx) {
|
|
|
27166
27378
|
if (index === 15) return get_if_ctx_15(ctx);
|
|
27167
27379
|
if (index === 16) return get_if_ctx_16(ctx);
|
|
27168
27380
|
if (index === 17) return get_if_ctx_17(ctx);
|
|
27381
|
+
if (index === 18) return get_if_ctx_18(ctx);
|
|
27169
27382
|
return get_else_ctx(ctx);
|
|
27170
27383
|
}
|
|
27171
27384
|
|
|
@@ -27246,6 +27459,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27246
27459
|
let _SuspendedTextOutputCallback;
|
|
27247
27460
|
let _MetadataCallback;
|
|
27248
27461
|
let _DeviceProfileCallback;
|
|
27462
|
+
let _RecaptchaCallback;
|
|
27249
27463
|
let _FRCallback;
|
|
27250
27464
|
|
|
27251
27465
|
$$self.$$set = $$props => {
|
|
@@ -27276,6 +27490,9 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27276
27490
|
case CallbackType.NameCallback:
|
|
27277
27491
|
$$invalidate(7, _NameCallback = props.callback);
|
|
27278
27492
|
break;
|
|
27493
|
+
case CallbackType.ReCaptchaCallback:
|
|
27494
|
+
$$invalidate(20, _RecaptchaCallback = props.callback);
|
|
27495
|
+
break;
|
|
27279
27496
|
case CallbackType.PasswordCallback:
|
|
27280
27497
|
$$invalidate(8, _PasswordCallback = props.callback);
|
|
27281
27498
|
break;
|
|
@@ -27313,7 +27530,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27313
27530
|
$$invalidate(18, _MetadataCallback = props.callback);
|
|
27314
27531
|
break;
|
|
27315
27532
|
default:
|
|
27316
|
-
$$invalidate(
|
|
27533
|
+
$$invalidate(21, _FRCallback = props.callback);
|
|
27317
27534
|
}
|
|
27318
27535
|
}
|
|
27319
27536
|
}
|
|
@@ -27340,6 +27557,7 @@ function instance$c($$self, $$props, $$invalidate) {
|
|
|
27340
27557
|
_SuspendedTextOutputCallback,
|
|
27341
27558
|
_MetadataCallback,
|
|
27342
27559
|
_DeviceProfileCallback,
|
|
27560
|
+
_RecaptchaCallback,
|
|
27343
27561
|
_FRCallback
|
|
27344
27562
|
];
|
|
27345
27563
|
}
|