@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/index.js CHANGED
@@ -50,6 +50,14 @@ function is_function(thing) {
50
50
  function safe_not_equal(a, b) {
51
51
  return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
52
52
  }
53
+ let src_url_equal_anchor;
54
+ function src_url_equal(element_src, url) {
55
+ if (!src_url_equal_anchor) {
56
+ src_url_equal_anchor = document.createElement('a');
57
+ }
58
+ src_url_equal_anchor.href = url;
59
+ return element_src === src_url_equal_anchor.href;
60
+ }
53
61
  function is_empty(obj) {
54
62
  return Object.keys(obj).length === 0;
55
63
  }
@@ -12335,7 +12343,10 @@ function widgetApiFactory(componentApi) {
12335
12343
  // https://backstage.forgerock.com/docs/am/7/setup-guide/sec-rest-realm-rest.html#rest-api-list-realm
12336
12344
  realmPath: 'alpha',
12337
12345
  // TODO: Once we move to SSR, this default should be more intelligent
12338
- redirectUri: typeof window === 'object' ? window.location.href : 'https://localhost:3000/callback',
12346
+ redirectUri: typeof window === 'object'
12347
+ ? // Construct URL with origin and path only, stripping off hash and query params
12348
+ `${window.location.origin}${window.location.pathname}`
12349
+ : 'https://localhost:3000/callback',
12339
12350
  scope: 'openid email',
12340
12351
  },
12341
12352
  // Let user provided config override defaults
@@ -12634,7 +12645,7 @@ function create_else_block$c(ctx) {
12634
12645
  }
12635
12646
 
12636
12647
  // (11:0) {#if html}
12637
- function create_if_block$r(ctx) {
12648
+ function create_if_block$s(ctx) {
12638
12649
  let current;
12639
12650
  const default_slot_template = /*#slots*/ ctx[5].default;
12640
12651
  const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null);
@@ -12731,12 +12742,12 @@ function fallback_block$2(ctx) {
12731
12742
  };
12732
12743
  }
12733
12744
 
12734
- function create_fragment$12(ctx) {
12745
+ function create_fragment$13(ctx) {
12735
12746
  let current_block_type_index;
12736
12747
  let if_block;
12737
12748
  let if_block_anchor;
12738
12749
  let current;
12739
- const if_block_creators = [create_if_block$r, create_else_block$c];
12750
+ const if_block_creators = [create_if_block$s, create_else_block$c];
12740
12751
  const if_blocks = [];
12741
12752
 
12742
12753
  function select_block_type(ctx, dirty) {
@@ -12800,7 +12811,7 @@ function create_fragment$12(ctx) {
12800
12811
  };
12801
12812
  }
12802
12813
 
12803
- function instance$14($$self, $$props, $$invalidate) {
12814
+ function instance$15($$self, $$props, $$invalidate) {
12804
12815
  let { $$slots: slots = {}, $$scope } = $$props;
12805
12816
  let { html = false } = $$props;
12806
12817
  let { key } = $$props;
@@ -12828,13 +12839,13 @@ function instance$14($$self, $$props, $$invalidate) {
12828
12839
  class Locale_strings extends SvelteComponent {
12829
12840
  constructor(options) {
12830
12841
  super();
12831
- init(this, options, instance$14, create_fragment$12, safe_not_equal, { html: 0, key: 2, values: 3 });
12842
+ init(this, options, instance$15, create_fragment$13, safe_not_equal, { html: 0, key: 2, values: 3 });
12832
12843
  }
12833
12844
  }
12834
12845
 
12835
12846
  /* src/lib/components/icons/x-icon.svelte generated by Svelte v3.59.2 */
12836
12847
 
12837
- function create_fragment$11(ctx) {
12848
+ function create_fragment$12(ctx) {
12838
12849
  let svg;
12839
12850
  let path;
12840
12851
  let title;
@@ -12910,7 +12921,7 @@ function create_fragment$11(ctx) {
12910
12921
  };
12911
12922
  }
12912
12923
 
12913
- function instance$13($$self, $$props, $$invalidate) {
12924
+ function instance$14($$self, $$props, $$invalidate) {
12914
12925
  let { $$slots: slots = {}, $$scope } = $$props;
12915
12926
  let { classes = '' } = $$props;
12916
12927
  let { size = '24px' } = $$props;
@@ -12927,7 +12938,7 @@ function instance$13($$self, $$props, $$invalidate) {
12927
12938
  class X_icon extends SvelteComponent {
12928
12939
  constructor(options) {
12929
12940
  super();
12930
- init(this, options, instance$13, create_fragment$11, safe_not_equal, { classes: 0, size: 1 });
12941
+ init(this, options, instance$14, create_fragment$12, safe_not_equal, { classes: 0, size: 1 });
12931
12942
  }
12932
12943
  }
12933
12944
 
@@ -13032,7 +13043,7 @@ function create_else_block$b(ctx) {
13032
13043
  }
13033
13044
 
13034
13045
  // (39:2) {#if withHeader}
13035
- function create_if_block$q(ctx) {
13046
+ function create_if_block$r(ctx) {
13036
13047
  let div1;
13037
13048
  let div0;
13038
13049
  let div0_style_value;
@@ -13208,7 +13219,7 @@ function create_default_slot$t(ctx) {
13208
13219
  };
13209
13220
  }
13210
13221
 
13211
- function create_fragment$10(ctx) {
13222
+ function create_fragment$11(ctx) {
13212
13223
  let dialog;
13213
13224
  let current_block_type_index;
13214
13225
  let if_block;
@@ -13216,7 +13227,7 @@ function create_fragment$10(ctx) {
13216
13227
  let div;
13217
13228
  let dialog_class_value;
13218
13229
  let current;
13219
- const if_block_creators = [create_if_block$q, create_else_block$b];
13230
+ const if_block_creators = [create_if_block$r, create_else_block$b];
13220
13231
  const if_blocks = [];
13221
13232
 
13222
13233
  function select_block_type(ctx, dirty) {
@@ -13328,7 +13339,7 @@ function create_fragment$10(ctx) {
13328
13339
  };
13329
13340
  }
13330
13341
 
13331
- function instance$12($$self, $$props, $$invalidate) {
13342
+ function instance$13($$self, $$props, $$invalidate) {
13332
13343
  let $styleStore;
13333
13344
  component_subscribe($$self, styleStore, $$value => $$invalidate(5, $styleStore = $$value));
13334
13345
  let { $$slots: slots = {}, $$scope } = $$props;
@@ -13402,7 +13413,7 @@ class Dialog extends SvelteComponent {
13402
13413
  constructor(options) {
13403
13414
  super();
13404
13415
 
13405
- init(this, options, instance$12, create_fragment$10, safe_not_equal, {
13416
+ init(this, options, instance$13, create_fragment$11, safe_not_equal, {
13406
13417
  dialogEl: 0,
13407
13418
  dialogId: 1,
13408
13419
  forceOpen: 2,
@@ -13418,7 +13429,7 @@ class Dialog extends SvelteComponent {
13418
13429
 
13419
13430
  /* src/lib/components/icons/alert-icon.svelte generated by Svelte v3.59.2 */
13420
13431
 
13421
- function create_fragment$$(ctx) {
13432
+ function create_fragment$10(ctx) {
13422
13433
  let svg;
13423
13434
  let path;
13424
13435
  let title;
@@ -13494,7 +13505,7 @@ function create_fragment$$(ctx) {
13494
13505
  };
13495
13506
  }
13496
13507
 
13497
- function instance$11($$self, $$props, $$invalidate) {
13508
+ function instance$12($$self, $$props, $$invalidate) {
13498
13509
  let { $$slots: slots = {}, $$scope } = $$props;
13499
13510
  let { classes = '' } = $$props;
13500
13511
  let { size = '24px' } = $$props;
@@ -13511,13 +13522,13 @@ function instance$11($$self, $$props, $$invalidate) {
13511
13522
  class Alert_icon extends SvelteComponent {
13512
13523
  constructor(options) {
13513
13524
  super();
13514
- init(this, options, instance$11, create_fragment$$, safe_not_equal, { classes: 0, size: 1 });
13525
+ init(this, options, instance$12, create_fragment$10, safe_not_equal, { classes: 0, size: 1 });
13515
13526
  }
13516
13527
  }
13517
13528
 
13518
13529
  /* src/lib/components/icons/info-icon.svelte generated by Svelte v3.59.2 */
13519
13530
 
13520
- function create_fragment$_(ctx) {
13531
+ function create_fragment$$(ctx) {
13521
13532
  let svg;
13522
13533
  let path;
13523
13534
  let title;
@@ -13593,7 +13604,7 @@ function create_fragment$_(ctx) {
13593
13604
  };
13594
13605
  }
13595
13606
 
13596
- function instance$10($$self, $$props, $$invalidate) {
13607
+ function instance$11($$self, $$props, $$invalidate) {
13597
13608
  let { $$slots: slots = {}, $$scope } = $$props;
13598
13609
  let { classes = '' } = $$props;
13599
13610
  let { size = '24px' } = $$props;
@@ -13610,13 +13621,13 @@ function instance$10($$self, $$props, $$invalidate) {
13610
13621
  class Info_icon extends SvelteComponent {
13611
13622
  constructor(options) {
13612
13623
  super();
13613
- init(this, options, instance$10, create_fragment$_, safe_not_equal, { classes: 0, size: 1 });
13624
+ init(this, options, instance$11, create_fragment$$, safe_not_equal, { classes: 0, size: 1 });
13614
13625
  }
13615
13626
  }
13616
13627
 
13617
13628
  /* src/lib/components/icons/warning-icon.svelte generated by Svelte v3.59.2 */
13618
13629
 
13619
- function create_fragment$Z(ctx) {
13630
+ function create_fragment$_(ctx) {
13620
13631
  let svg;
13621
13632
  let path;
13622
13633
  let title;
@@ -13692,7 +13703,7 @@ function create_fragment$Z(ctx) {
13692
13703
  };
13693
13704
  }
13694
13705
 
13695
- function instance$$($$self, $$props, $$invalidate) {
13706
+ function instance$10($$self, $$props, $$invalidate) {
13696
13707
  let { $$slots: slots = {}, $$scope } = $$props;
13697
13708
  let { classes = '' } = $$props;
13698
13709
  let { size = '24px' } = $$props;
@@ -13709,7 +13720,7 @@ function instance$$($$self, $$props, $$invalidate) {
13709
13720
  class Warning_icon extends SvelteComponent {
13710
13721
  constructor(options) {
13711
13722
  super();
13712
- init(this, options, instance$$, create_fragment$Z, safe_not_equal, { classes: 0, size: 1 });
13723
+ init(this, options, instance$10, create_fragment$_, safe_not_equal, { classes: 0, size: 1 });
13713
13724
  }
13714
13725
  }
13715
13726
 
@@ -13773,7 +13784,7 @@ function create_if_block_1$c(ctx) {
13773
13784
  }
13774
13785
 
13775
13786
  // (41:4) {#if type === 'error'}
13776
- function create_if_block$p(ctx) {
13787
+ function create_if_block$q(ctx) {
13777
13788
  let alerticon;
13778
13789
  let current;
13779
13790
  alerticon = new Alert_icon({});
@@ -13801,7 +13812,7 @@ function create_if_block$p(ctx) {
13801
13812
  };
13802
13813
  }
13803
13814
 
13804
- function create_fragment$Y(ctx) {
13815
+ function create_fragment$Z(ctx) {
13805
13816
  let div;
13806
13817
  let p;
13807
13818
  let current_block_type_index;
@@ -13810,7 +13821,7 @@ function create_fragment$Y(ctx) {
13810
13821
  let span;
13811
13822
  let div_class_value;
13812
13823
  let current;
13813
- const if_block_creators = [create_if_block$p, create_if_block_1$c, create_else_block$a];
13824
+ const if_block_creators = [create_if_block$q, create_if_block_1$c, create_else_block$a];
13814
13825
  const if_blocks = [];
13815
13826
 
13816
13827
  function select_block_type(ctx, dirty) {
@@ -13937,7 +13948,7 @@ function generateClassString$3(...args) {
13937
13948
  );
13938
13949
  }
13939
13950
 
13940
- function instance$_($$self, $$props, $$invalidate) {
13951
+ function instance$$($$self, $$props, $$invalidate) {
13941
13952
  let { $$slots: slots = {}, $$scope } = $$props;
13942
13953
  let { id } = $$props;
13943
13954
  let { needsFocus = false } = $$props;
@@ -13974,13 +13985,13 @@ function instance$_($$self, $$props, $$invalidate) {
13974
13985
  class Alert extends SvelteComponent {
13975
13986
  constructor(options) {
13976
13987
  super();
13977
- init(this, options, instance$_, create_fragment$Y, safe_not_equal, { id: 0, needsFocus: 3, type: 1 });
13988
+ init(this, options, instance$$, create_fragment$Z, safe_not_equal, { id: 0, needsFocus: 3, type: 1 });
13978
13989
  }
13979
13990
  }
13980
13991
 
13981
13992
  /* src/lib/components/primitives/spinner/spinner.svelte generated by Svelte v3.59.2 */
13982
13993
 
13983
- function create_fragment$X(ctx) {
13994
+ function create_fragment$Y(ctx) {
13984
13995
  let div;
13985
13996
  let span;
13986
13997
  let t;
@@ -14024,7 +14035,7 @@ function create_fragment$X(ctx) {
14024
14035
  };
14025
14036
  }
14026
14037
 
14027
- function instance$Z($$self, $$props, $$invalidate) {
14038
+ function instance$_($$self, $$props, $$invalidate) {
14028
14039
  let { colorClass } = $$props;
14029
14040
  let { layoutClasses } = $$props;
14030
14041
 
@@ -14039,13 +14050,13 @@ function instance$Z($$self, $$props, $$invalidate) {
14039
14050
  class Spinner extends SvelteComponent {
14040
14051
  constructor(options) {
14041
14052
  super();
14042
- init(this, options, instance$Z, create_fragment$X, safe_not_equal, { colorClass: 0, layoutClasses: 1 });
14053
+ init(this, options, instance$_, create_fragment$Y, safe_not_equal, { colorClass: 0, layoutClasses: 1 });
14043
14054
  }
14044
14055
  }
14045
14056
 
14046
14057
  /* src/lib/components/primitives/button/button.svelte generated by Svelte v3.59.2 */
14047
14058
 
14048
- function create_if_block$o(ctx) {
14059
+ function create_if_block$p(ctx) {
14049
14060
  let spinner;
14050
14061
  let current;
14051
14062
 
@@ -14096,14 +14107,14 @@ function fallback_block$1(ctx) {
14096
14107
  };
14097
14108
  }
14098
14109
 
14099
- function create_fragment$W(ctx) {
14110
+ function create_fragment$X(ctx) {
14100
14111
  let button;
14101
14112
  let t;
14102
14113
  let button_class_value;
14103
14114
  let current;
14104
14115
  let mounted;
14105
14116
  let dispose;
14106
- let if_block = /*busy*/ ctx[0] && create_if_block$o();
14117
+ let if_block = /*busy*/ ctx[0] && create_if_block$p();
14107
14118
  const default_slot_template = /*#slots*/ ctx[7].default;
14108
14119
  const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[6], null);
14109
14120
  const default_slot_or_fallback = default_slot || fallback_block$1();
@@ -14145,7 +14156,7 @@ function create_fragment$W(ctx) {
14145
14156
  transition_in(if_block, 1);
14146
14157
  }
14147
14158
  } else {
14148
- if_block = create_if_block$o();
14159
+ if_block = create_if_block$p();
14149
14160
  if_block.c();
14150
14161
  transition_in(if_block, 1);
14151
14162
  if_block.m(button, t);
@@ -14226,7 +14237,7 @@ function generateClassString$2(...args) {
14226
14237
  );
14227
14238
  }
14228
14239
 
14229
- function instance$Y($$self, $$props, $$invalidate) {
14240
+ function instance$Z($$self, $$props, $$invalidate) {
14230
14241
  let { $$slots: slots = {}, $$scope } = $$props;
14231
14242
  let { busy = false } = $$props;
14232
14243
  let { classes = '' } = $$props;
@@ -14256,7 +14267,7 @@ class Button extends SvelteComponent {
14256
14267
  constructor(options) {
14257
14268
  super();
14258
14269
 
14259
- init(this, options, instance$Y, create_fragment$W, safe_not_equal, {
14270
+ init(this, options, instance$Z, create_fragment$X, safe_not_equal, {
14260
14271
  busy: 0,
14261
14272
  classes: 1,
14262
14273
  onClick: 2,
@@ -14269,7 +14280,7 @@ class Button extends SvelteComponent {
14269
14280
 
14270
14281
  /* src/lib/components/primitives/form/form.svelte generated by Svelte v3.59.2 */
14271
14282
 
14272
- function create_fragment$V(ctx) {
14283
+ function create_fragment$W(ctx) {
14273
14284
  let form;
14274
14285
  let form_class_value;
14275
14286
  let current;
@@ -14356,7 +14367,7 @@ function create_fragment$V(ctx) {
14356
14367
  };
14357
14368
  }
14358
14369
 
14359
- function instance$X($$self, $$props, $$invalidate) {
14370
+ function instance$Y($$self, $$props, $$invalidate) {
14360
14371
  let { $$slots: slots = {}, $$scope } = $$props;
14361
14372
  let { ariaDescribedBy } = $$props;
14362
14373
  let { formEl = null } = $$props;
@@ -14483,7 +14494,7 @@ class Form extends SvelteComponent {
14483
14494
  constructor(options) {
14484
14495
  super();
14485
14496
 
14486
- init(this, options, instance$X, create_fragment$V, safe_not_equal, {
14497
+ init(this, options, instance$Y, create_fragment$W, safe_not_equal, {
14487
14498
  ariaDescribedBy: 1,
14488
14499
  formEl: 0,
14489
14500
  id: 2,
@@ -14548,7 +14559,7 @@ function create_else_block$9(ctx) {
14548
14559
  }
14549
14560
 
14550
14561
  // (10:0) {#if html}
14551
- function create_if_block$n(ctx) {
14562
+ function create_if_block$o(ctx) {
14552
14563
  let current;
14553
14564
  const default_slot_template = /*#slots*/ ctx[4].default;
14554
14565
  const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[3], null);
@@ -14645,12 +14656,12 @@ function fallback_block(ctx) {
14645
14656
  };
14646
14657
  }
14647
14658
 
14648
- function create_fragment$U(ctx) {
14659
+ function create_fragment$V(ctx) {
14649
14660
  let current_block_type_index;
14650
14661
  let if_block;
14651
14662
  let if_block_anchor;
14652
14663
  let current;
14653
- const if_block_creators = [create_if_block$n, create_else_block$9];
14664
+ const if_block_creators = [create_if_block$o, create_else_block$9];
14654
14665
  const if_blocks = [];
14655
14666
 
14656
14667
  function select_block_type(ctx, dirty) {
@@ -14714,7 +14725,7 @@ function create_fragment$U(ctx) {
14714
14725
  };
14715
14726
  }
14716
14727
 
14717
- function instance$W($$self, $$props, $$invalidate) {
14728
+ function instance$X($$self, $$props, $$invalidate) {
14718
14729
  let { $$slots: slots = {}, $$scope } = $$props;
14719
14730
  let { html = false } = $$props;
14720
14731
  let { string } = $$props;
@@ -14740,13 +14751,13 @@ function instance$W($$self, $$props, $$invalidate) {
14740
14751
  class Server_strings extends SvelteComponent {
14741
14752
  constructor(options) {
14742
14753
  super();
14743
- init(this, options, instance$W, create_fragment$U, safe_not_equal, { html: 0, string: 2 });
14754
+ init(this, options, instance$X, create_fragment$V, safe_not_equal, { html: 0, string: 2 });
14744
14755
  }
14745
14756
  }
14746
14757
 
14747
14758
  /* src/lib/components/icons/shield-icon.svelte generated by Svelte v3.59.2 */
14748
14759
 
14749
- function create_fragment$T(ctx) {
14760
+ function create_fragment$U(ctx) {
14750
14761
  let svg;
14751
14762
  let path;
14752
14763
  let title;
@@ -14822,7 +14833,7 @@ function create_fragment$T(ctx) {
14822
14833
  };
14823
14834
  }
14824
14835
 
14825
- function instance$V($$self, $$props, $$invalidate) {
14836
+ function instance$W($$self, $$props, $$invalidate) {
14826
14837
  let { $$slots: slots = {}, $$scope } = $$props;
14827
14838
  let { classes = '' } = $$props;
14828
14839
  let { size = '24px' } = $$props;
@@ -14839,13 +14850,13 @@ function instance$V($$self, $$props, $$invalidate) {
14839
14850
  class Shield_icon extends SvelteComponent {
14840
14851
  constructor(options) {
14841
14852
  super();
14842
- init(this, options, instance$V, create_fragment$T, safe_not_equal, { classes: 0, size: 1 });
14853
+ init(this, options, instance$W, create_fragment$U, safe_not_equal, { classes: 0, size: 1 });
14843
14854
  }
14844
14855
  }
14845
14856
 
14846
14857
  /* src/lib/journey/stages/_utilities/back-to.svelte generated by Svelte v3.59.2 */
14847
14858
 
14848
- function create_if_block$m(ctx) {
14859
+ function create_if_block$n(ctx) {
14849
14860
  let p;
14850
14861
  let button;
14851
14862
  let t_value = interpolate(/*string*/ ctx[1]) + "";
@@ -14881,9 +14892,9 @@ function create_if_block$m(ctx) {
14881
14892
  };
14882
14893
  }
14883
14894
 
14884
- function create_fragment$S(ctx) {
14895
+ function create_fragment$T(ctx) {
14885
14896
  let if_block_anchor;
14886
- let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$m(ctx);
14897
+ let if_block = /*$stack*/ ctx[2].length > 1 && create_if_block$n(ctx);
14887
14898
 
14888
14899
  return {
14889
14900
  c() {
@@ -14899,7 +14910,7 @@ function create_fragment$S(ctx) {
14899
14910
  if (if_block) {
14900
14911
  if_block.p(ctx, dirty);
14901
14912
  } else {
14902
- if_block = create_if_block$m(ctx);
14913
+ if_block = create_if_block$n(ctx);
14903
14914
  if_block.c();
14904
14915
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
14905
14916
  }
@@ -14917,7 +14928,7 @@ function create_fragment$S(ctx) {
14917
14928
  };
14918
14929
  }
14919
14930
 
14920
- function instance$U($$self, $$props, $$invalidate) {
14931
+ function instance$V($$self, $$props, $$invalidate) {
14921
14932
  let $stack;
14922
14933
  let $configuredJourneysStore;
14923
14934
  component_subscribe($$self, configuredJourneysStore, $$value => $$invalidate(5, $configuredJourneysStore = $$value));
@@ -14958,7 +14969,7 @@ function instance$U($$self, $$props, $$invalidate) {
14958
14969
  class Back_to extends SvelteComponent {
14959
14970
  constructor(options) {
14960
14971
  super();
14961
- init(this, options, instance$U, create_fragment$S, safe_not_equal, { journey: 0 });
14972
+ init(this, options, instance$V, create_fragment$T, safe_not_equal, { journey: 0 });
14962
14973
  }
14963
14974
  }
14964
14975
 
@@ -15422,7 +15433,7 @@ function getAttributeValidationFailureText(callback) {
15422
15433
 
15423
15434
  /* src/lib/components/primitives/message/input-message.svelte generated by Svelte v3.59.2 */
15424
15435
 
15425
- function create_if_block$l(ctx) {
15436
+ function create_if_block$m(ctx) {
15426
15437
  let p;
15427
15438
  let p_class_value;
15428
15439
  let p_id_value;
@@ -15453,9 +15464,9 @@ function create_if_block$l(ctx) {
15453
15464
  };
15454
15465
  }
15455
15466
 
15456
- function create_fragment$R(ctx) {
15467
+ function create_fragment$S(ctx) {
15457
15468
  let if_block_anchor;
15458
- let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$l(ctx);
15469
+ let if_block = /*dirtyMessage*/ ctx[1] && create_if_block$m(ctx);
15459
15470
 
15460
15471
  return {
15461
15472
  c() {
@@ -15471,7 +15482,7 @@ function create_fragment$R(ctx) {
15471
15482
  if (if_block) {
15472
15483
  if_block.p(ctx, dirty);
15473
15484
  } else {
15474
- if_block = create_if_block$l(ctx);
15485
+ if_block = create_if_block$m(ctx);
15475
15486
  if_block.c();
15476
15487
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
15477
15488
  }
@@ -15503,7 +15514,7 @@ function generateClassString$1(...args) {
15503
15514
  );
15504
15515
  }
15505
15516
 
15506
- function instance$T($$self, $$props, $$invalidate) {
15517
+ function instance$U($$self, $$props, $$invalidate) {
15507
15518
  let { classes = '' } = $$props;
15508
15519
  let { dirtyMessage } = $$props;
15509
15520
  let { key = undefined } = $$props;
@@ -15534,7 +15545,7 @@ class Input_message extends SvelteComponent {
15534
15545
  constructor(options) {
15535
15546
  super();
15536
15547
 
15537
- init(this, options, instance$T, create_fragment$R, safe_not_equal, {
15548
+ init(this, options, instance$U, create_fragment$S, safe_not_equal, {
15538
15549
  classes: 0,
15539
15550
  dirtyMessage: 1,
15540
15551
  key: 2,
@@ -15546,7 +15557,7 @@ class Input_message extends SvelteComponent {
15546
15557
 
15547
15558
  /* src/lib/components/primitives/label/label.svelte generated by Svelte v3.59.2 */
15548
15559
 
15549
- function create_fragment$Q(ctx) {
15560
+ function create_fragment$R(ctx) {
15550
15561
  let label;
15551
15562
  let label_class_value;
15552
15563
  let current;
@@ -15609,7 +15620,7 @@ function create_fragment$Q(ctx) {
15609
15620
  };
15610
15621
  }
15611
15622
 
15612
- function instance$S($$self, $$props, $$invalidate) {
15623
+ function instance$T($$self, $$props, $$invalidate) {
15613
15624
  let { $$slots: slots = {}, $$scope } = $$props;
15614
15625
  let { key } = $$props;
15615
15626
  let { classes = '' } = $$props;
@@ -15626,7 +15637,7 @@ function instance$S($$self, $$props, $$invalidate) {
15626
15637
  class Label extends SvelteComponent {
15627
15638
  constructor(options) {
15628
15639
  super();
15629
- init(this, options, instance$S, create_fragment$Q, safe_not_equal, { key: 0, classes: 1 });
15640
+ init(this, options, instance$T, create_fragment$R, safe_not_equal, { key: 0, classes: 1 });
15630
15641
  }
15631
15642
  }
15632
15643
 
@@ -15689,7 +15700,7 @@ function create_default_slot$s(ctx) {
15689
15700
  };
15690
15701
  }
15691
15702
 
15692
- function create_fragment$P(ctx) {
15703
+ function create_fragment$Q(ctx) {
15693
15704
  let div1;
15694
15705
  let input;
15695
15706
  let input_data_message_value;
@@ -15813,7 +15824,7 @@ function create_fragment$P(ctx) {
15813
15824
  };
15814
15825
  }
15815
15826
 
15816
- function instance$R($$self, $$props, $$invalidate) {
15827
+ function instance$S($$self, $$props, $$invalidate) {
15817
15828
  let { $$slots: slots = {}, $$scope } = $$props;
15818
15829
  let { checkValidity = null } = $$props;
15819
15830
  let { message = '' } = $$props;
@@ -15882,7 +15893,7 @@ let Animated$1 = class Animated extends SvelteComponent {
15882
15893
  constructor(options) {
15883
15894
  super();
15884
15895
 
15885
- init(this, options, instance$R, create_fragment$P, safe_not_equal, {
15896
+ init(this, options, instance$S, create_fragment$Q, safe_not_equal, {
15886
15897
  checkValidity: 8,
15887
15898
  message: 1,
15888
15899
  isFirstInvalidInput: 9,
@@ -15945,7 +15956,7 @@ function create_default_slot$r(ctx) {
15945
15956
  };
15946
15957
  }
15947
15958
 
15948
- function create_fragment$O(ctx) {
15959
+ function create_fragment$P(ctx) {
15949
15960
  let input;
15950
15961
  let input_aria_describedby_value;
15951
15962
  let t;
@@ -16042,7 +16053,7 @@ function create_fragment$O(ctx) {
16042
16053
  };
16043
16054
  }
16044
16055
 
16045
- function instance$Q($$self, $$props, $$invalidate) {
16056
+ function instance$R($$self, $$props, $$invalidate) {
16046
16057
  let { $$slots: slots = {}, $$scope } = $$props;
16047
16058
  let { isFirstInvalidInput } = $$props;
16048
16059
  let { isRequired = false } = $$props;
@@ -16093,7 +16104,7 @@ class Checkbox extends SvelteComponent {
16093
16104
  constructor(options) {
16094
16105
  super();
16095
16106
 
16096
- init(this, options, instance$Q, create_fragment$O, safe_not_equal, {
16107
+ init(this, options, instance$R, create_fragment$P, safe_not_equal, {
16097
16108
  isFirstInvalidInput: 6,
16098
16109
  isRequired: 0,
16099
16110
  isInvalid: 1,
@@ -16153,7 +16164,7 @@ function create_default_slot$q(ctx) {
16153
16164
  };
16154
16165
  }
16155
16166
 
16156
- function create_fragment$N(ctx) {
16167
+ function create_fragment$O(ctx) {
16157
16168
  let div;
16158
16169
  let checkbox;
16159
16170
  let t;
@@ -16240,7 +16251,7 @@ function create_fragment$N(ctx) {
16240
16251
  };
16241
16252
  }
16242
16253
 
16243
- function instance$P($$self, $$props, $$invalidate) {
16254
+ function instance$Q($$self, $$props, $$invalidate) {
16244
16255
  let { $$slots: slots = {}, $$scope } = $$props;
16245
16256
  let { checkValidity = null } = $$props;
16246
16257
  let { message = '' } = $$props;
@@ -16293,7 +16304,7 @@ let Standard$1 = class Standard extends SvelteComponent {
16293
16304
  constructor(options) {
16294
16305
  super();
16295
16306
 
16296
- init(this, options, instance$P, create_fragment$N, safe_not_equal, {
16307
+ init(this, options, instance$Q, create_fragment$O, safe_not_equal, {
16297
16308
  checkValidity: 8,
16298
16309
  message: 1,
16299
16310
  isFirstInvalidInput: 2,
@@ -16384,7 +16395,7 @@ function create_key_block$5(ctx) {
16384
16395
  };
16385
16396
  }
16386
16397
 
16387
- function create_fragment$M(ctx) {
16398
+ function create_fragment$N(ctx) {
16388
16399
  let previous_key = /*callback*/ ctx[0];
16389
16400
  let key_block_anchor;
16390
16401
  let current;
@@ -16429,7 +16440,7 @@ function create_fragment$M(ctx) {
16429
16440
  };
16430
16441
  }
16431
16442
 
16432
- function instance$O($$self, $$props, $$invalidate) {
16443
+ function instance$P($$self, $$props, $$invalidate) {
16433
16444
  const stepMetadata = null;
16434
16445
  const selfSubmitFunction = null;
16435
16446
  let { callback } = $$props;
@@ -16496,7 +16507,7 @@ let Boolean$1 = class Boolean extends SvelteComponent {
16496
16507
  constructor(options) {
16497
16508
  super();
16498
16509
 
16499
- init(this, options, instance$O, create_fragment$M, safe_not_equal, {
16510
+ init(this, options, instance$P, create_fragment$N, safe_not_equal, {
16500
16511
  stepMetadata: 9,
16501
16512
  selfSubmitFunction: 10,
16502
16513
  callback: 0,
@@ -16522,7 +16533,7 @@ function get_each_context$a(ctx, list, i) {
16522
16533
  return child_ctx;
16523
16534
  }
16524
16535
 
16525
- // (41:8) <Label key={`${key}-${option.value}`} classes="tw_input-spacing tw_grid tw_grid-cols-[2.5em_1fr] tw_relative" >
16536
+ // (40:8) <Label key={`${key}-${option.value}`} classes="tw_input-spacing tw_grid tw_grid-cols-[2.5em_1fr] tw_relative" >
16526
16537
  function create_default_slot$o(ctx) {
16527
16538
  let span;
16528
16539
  let t0;
@@ -16582,7 +16593,6 @@ function create_each_block$a(ctx) {
16582
16593
  t0 = space();
16583
16594
  create_component(label.$$.fragment);
16584
16595
  t1 = space();
16585
- attr(input, "aria-invalid", /*isInvalid*/ ctx[4]);
16586
16596
  attr(input, "class", "tw_radio-input_animated dark:tw_radio-input_animated_dark tw_sr-only");
16587
16597
  input.checked = input_checked_value = /*defaultOption*/ ctx[0] === /*option*/ ctx[13].value;
16588
16598
  attr(input, "id", input_id_value = `${/*key*/ ctx[5]}-${/*option*/ ctx[13].value}`);
@@ -16612,10 +16622,6 @@ function create_each_block$a(ctx) {
16612
16622
  p(new_ctx, dirty) {
16613
16623
  ctx = new_ctx;
16614
16624
 
16615
- if (!current || dirty & /*isInvalid*/ 16) {
16616
- attr(input, "aria-invalid", /*isInvalid*/ ctx[4]);
16617
- }
16618
-
16619
16625
  if (!current || dirty & /*defaultOption, options*/ 257 && input_checked_value !== (input_checked_value = /*defaultOption*/ ctx[0] === /*option*/ ctx[13].value)) {
16620
16626
  input.checked = input_checked_value;
16621
16627
  }
@@ -16664,7 +16670,7 @@ function create_each_block$a(ctx) {
16664
16670
  };
16665
16671
  }
16666
16672
 
16667
- function create_fragment$L(ctx) {
16673
+ function create_fragment$M(ctx) {
16668
16674
  let fieldset;
16669
16675
  let legend;
16670
16676
  let t0;
@@ -16733,7 +16739,7 @@ function create_fragment$L(ctx) {
16733
16739
  p(ctx, [dirty]) {
16734
16740
  if (!current || dirty & /*groupLabel*/ 4) set_data(t0, /*groupLabel*/ ctx[2]);
16735
16741
 
16736
- if (dirty & /*key, options, isInvalid, defaultOption, name, isRequired, inputEl, onChange*/ 1529) {
16742
+ if (dirty & /*key, options, defaultOption, name, isRequired, inputEl, onChange*/ 1513) {
16737
16743
  each_value = /*options*/ ctx[8];
16738
16744
  let i;
16739
16745
 
@@ -16795,7 +16801,7 @@ function create_fragment$L(ctx) {
16795
16801
  };
16796
16802
  }
16797
16803
 
16798
- function instance$N($$self, $$props, $$invalidate) {
16804
+ function instance$O($$self, $$props, $$invalidate) {
16799
16805
  let { defaultOption = null } = $$props;
16800
16806
  let { message = '' } = $$props;
16801
16807
  let { groupLabel = '' } = $$props;
@@ -16857,7 +16863,7 @@ class Animated extends SvelteComponent {
16857
16863
  constructor(options) {
16858
16864
  super();
16859
16865
 
16860
- init(this, options, instance$N, create_fragment$L, safe_not_equal, {
16866
+ init(this, options, instance$O, create_fragment$M, safe_not_equal, {
16861
16867
  defaultOption: 0,
16862
16868
  message: 1,
16863
16869
  groupLabel: 2,
@@ -16877,8 +16883,8 @@ class Animated extends SvelteComponent {
16877
16883
 
16878
16884
  function create_default_slot$n(ctx) {
16879
16885
  let current;
16880
- const default_slot_template = /*#slots*/ ctx[9].default;
16881
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[11], null);
16886
+ const default_slot_template = /*#slots*/ ctx[8].default;
16887
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[10], null);
16882
16888
 
16883
16889
  return {
16884
16890
  c() {
@@ -16893,15 +16899,15 @@ function create_default_slot$n(ctx) {
16893
16899
  },
16894
16900
  p(ctx, dirty) {
16895
16901
  if (default_slot) {
16896
- if (default_slot.p && (!current || dirty & /*$$scope*/ 2048)) {
16902
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 1024)) {
16897
16903
  update_slot_base(
16898
16904
  default_slot,
16899
16905
  default_slot_template,
16900
16906
  ctx,
16901
- /*$$scope*/ ctx[11],
16907
+ /*$$scope*/ ctx[10],
16902
16908
  !current
16903
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[11])
16904
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[11], dirty, null),
16909
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[10])
16910
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[10], dirty, null),
16905
16911
  null
16906
16912
  );
16907
16913
  }
@@ -16922,7 +16928,7 @@ function create_default_slot$n(ctx) {
16922
16928
  };
16923
16929
  }
16924
16930
 
16925
- function create_fragment$K(ctx) {
16931
+ function create_fragment$L(ctx) {
16926
16932
  let input;
16927
16933
  let input_aria_describedby_value;
16928
16934
  let t;
@@ -16933,7 +16939,7 @@ function create_fragment$K(ctx) {
16933
16939
 
16934
16940
  label = new Label({
16935
16941
  props: {
16936
- key: /*key*/ ctx[3],
16942
+ key: /*key*/ ctx[2],
16937
16943
  $$slots: { default: [create_default_slot$n] },
16938
16944
  $$scope: { ctx }
16939
16945
  }
@@ -16944,26 +16950,25 @@ function create_fragment$K(ctx) {
16944
16950
  input = element("input");
16945
16951
  t = space();
16946
16952
  create_component(label.$$.fragment);
16947
- attr(input, "aria-describedby", input_aria_describedby_value = `${/*key*/ ctx[3]}-message`);
16948
- attr(input, "aria-invalid", /*isInvalid*/ ctx[2]);
16953
+ attr(input, "aria-describedby", input_aria_describedby_value = `${/*key*/ ctx[2]}-message`);
16949
16954
  attr(input, "class", "tw_checkbox-input dark:tw_checkbox-input_dark tw_focusable-element dark:tw_focusable-element_dark");
16950
16955
  input.checked = /*checked*/ ctx[0];
16951
- attr(input, "id", /*key*/ ctx[3]);
16952
- attr(input, "name", /*name*/ ctx[4]);
16956
+ attr(input, "id", /*key*/ ctx[2]);
16957
+ attr(input, "name", /*name*/ ctx[3]);
16953
16958
  input.required = /*isRequired*/ ctx[1];
16954
16959
  attr(input, "type", "radio");
16955
- input.value = /*value*/ ctx[6];
16960
+ input.value = /*value*/ ctx[5];
16956
16961
  },
16957
16962
  m(target, anchor) {
16958
16963
  insert(target, input, anchor);
16959
- /*input_binding*/ ctx[10](input);
16964
+ /*input_binding*/ ctx[9](input);
16960
16965
  insert(target, t, anchor);
16961
16966
  mount_component(label, target, anchor);
16962
16967
  current = true;
16963
16968
 
16964
16969
  if (!mounted) {
16965
16970
  dispose = listen(input, "change", function () {
16966
- if (is_function(/*onChange*/ ctx[5])) /*onChange*/ ctx[5].apply(this, arguments);
16971
+ if (is_function(/*onChange*/ ctx[4])) /*onChange*/ ctx[4].apply(this, arguments);
16967
16972
  });
16968
16973
 
16969
16974
  mounted = true;
@@ -16972,38 +16977,34 @@ function create_fragment$K(ctx) {
16972
16977
  p(new_ctx, [dirty]) {
16973
16978
  ctx = new_ctx;
16974
16979
 
16975
- if (!current || dirty & /*key*/ 8 && input_aria_describedby_value !== (input_aria_describedby_value = `${/*key*/ ctx[3]}-message`)) {
16980
+ if (!current || dirty & /*key*/ 4 && input_aria_describedby_value !== (input_aria_describedby_value = `${/*key*/ ctx[2]}-message`)) {
16976
16981
  attr(input, "aria-describedby", input_aria_describedby_value);
16977
16982
  }
16978
16983
 
16979
- if (!current || dirty & /*isInvalid*/ 4) {
16980
- attr(input, "aria-invalid", /*isInvalid*/ ctx[2]);
16981
- }
16982
-
16983
16984
  if (!current || dirty & /*checked*/ 1) {
16984
16985
  input.checked = /*checked*/ ctx[0];
16985
16986
  }
16986
16987
 
16987
- if (!current || dirty & /*key*/ 8) {
16988
- attr(input, "id", /*key*/ ctx[3]);
16988
+ if (!current || dirty & /*key*/ 4) {
16989
+ attr(input, "id", /*key*/ ctx[2]);
16989
16990
  }
16990
16991
 
16991
- if (!current || dirty & /*name*/ 16) {
16992
- attr(input, "name", /*name*/ ctx[4]);
16992
+ if (!current || dirty & /*name*/ 8) {
16993
+ attr(input, "name", /*name*/ ctx[3]);
16993
16994
  }
16994
16995
 
16995
16996
  if (!current || dirty & /*isRequired*/ 2) {
16996
16997
  input.required = /*isRequired*/ ctx[1];
16997
16998
  }
16998
16999
 
16999
- if (!current || dirty & /*value*/ 64) {
17000
- input.value = /*value*/ ctx[6];
17000
+ if (!current || dirty & /*value*/ 32) {
17001
+ input.value = /*value*/ ctx[5];
17001
17002
  }
17002
17003
 
17003
17004
  const label_changes = {};
17004
- if (dirty & /*key*/ 8) label_changes.key = /*key*/ ctx[3];
17005
+ if (dirty & /*key*/ 4) label_changes.key = /*key*/ ctx[2];
17005
17006
 
17006
- if (dirty & /*$$scope*/ 2048) {
17007
+ if (dirty & /*$$scope*/ 1024) {
17007
17008
  label_changes.$$scope = { dirty, ctx };
17008
17009
  }
17009
17010
 
@@ -17020,7 +17021,7 @@ function create_fragment$K(ctx) {
17020
17021
  },
17021
17022
  d(detaching) {
17022
17023
  if (detaching) detach(input);
17023
- /*input_binding*/ ctx[10](null);
17024
+ /*input_binding*/ ctx[9](null);
17024
17025
  if (detaching) detach(t);
17025
17026
  destroy_component(label, detaching);
17026
17027
  mounted = false;
@@ -17029,12 +17030,11 @@ function create_fragment$K(ctx) {
17029
17030
  };
17030
17031
  }
17031
17032
 
17032
- function instance$M($$self, $$props, $$invalidate) {
17033
+ function instance$N($$self, $$props, $$invalidate) {
17033
17034
  let { $$slots: slots = {}, $$scope } = $$props;
17034
17035
  let { checked = false } = $$props;
17035
17036
  let { isFirstInvalidInput } = $$props;
17036
17037
  let { isRequired = false } = $$props;
17037
- let { isInvalid = false } = $$props;
17038
17038
  let { key } = $$props;
17039
17039
  let { name } = $$props;
17040
17040
  let { onChange } = $$props;
@@ -17050,26 +17050,24 @@ function instance$M($$self, $$props, $$invalidate) {
17050
17050
  function input_binding($$value) {
17051
17051
  binding_callbacks[$$value ? 'unshift' : 'push'](() => {
17052
17052
  inputEl = $$value;
17053
- $$invalidate(7, inputEl);
17053
+ $$invalidate(6, inputEl);
17054
17054
  });
17055
17055
  }
17056
17056
 
17057
17057
  $$self.$$set = $$props => {
17058
17058
  if ('checked' in $$props) $$invalidate(0, checked = $$props.checked);
17059
- if ('isFirstInvalidInput' in $$props) $$invalidate(8, isFirstInvalidInput = $$props.isFirstInvalidInput);
17059
+ if ('isFirstInvalidInput' in $$props) $$invalidate(7, isFirstInvalidInput = $$props.isFirstInvalidInput);
17060
17060
  if ('isRequired' in $$props) $$invalidate(1, isRequired = $$props.isRequired);
17061
- if ('isInvalid' in $$props) $$invalidate(2, isInvalid = $$props.isInvalid);
17062
- if ('key' in $$props) $$invalidate(3, key = $$props.key);
17063
- if ('name' in $$props) $$invalidate(4, name = $$props.name);
17064
- if ('onChange' in $$props) $$invalidate(5, onChange = $$props.onChange);
17065
- if ('value' in $$props) $$invalidate(6, value = $$props.value);
17066
- if ('$$scope' in $$props) $$invalidate(11, $$scope = $$props.$$scope);
17061
+ if ('key' in $$props) $$invalidate(2, key = $$props.key);
17062
+ if ('name' in $$props) $$invalidate(3, name = $$props.name);
17063
+ if ('onChange' in $$props) $$invalidate(4, onChange = $$props.onChange);
17064
+ if ('value' in $$props) $$invalidate(5, value = $$props.value);
17065
+ if ('$$scope' in $$props) $$invalidate(10, $$scope = $$props.$$scope);
17067
17066
  };
17068
17067
 
17069
17068
  return [
17070
17069
  checked,
17071
17070
  isRequired,
17072
- isInvalid,
17073
17071
  key,
17074
17072
  name,
17075
17073
  onChange,
@@ -17086,15 +17084,14 @@ class Radio extends SvelteComponent {
17086
17084
  constructor(options) {
17087
17085
  super();
17088
17086
 
17089
- init(this, options, instance$M, create_fragment$K, safe_not_equal, {
17087
+ init(this, options, instance$N, create_fragment$L, safe_not_equal, {
17090
17088
  checked: 0,
17091
- isFirstInvalidInput: 8,
17089
+ isFirstInvalidInput: 7,
17092
17090
  isRequired: 1,
17093
- isInvalid: 2,
17094
- key: 3,
17095
- name: 4,
17096
- onChange: 5,
17097
- value: 6
17091
+ key: 2,
17092
+ name: 3,
17093
+ onChange: 4,
17094
+ value: 5
17098
17095
  });
17099
17096
  }
17100
17097
  }
@@ -17107,7 +17104,7 @@ function get_each_context$9(ctx, list, i) {
17107
17104
  return child_ctx;
17108
17105
  }
17109
17106
 
17110
- // (21:6) <Radio checked={defaultOption === option.value} {isFirstInvalidInput} {isRequired} {isInvalid} key={`${key}-${option.value}`} {name} {onChange} value={option.value} >
17107
+ // (21:6) <Radio checked={defaultOption === option.value} {isFirstInvalidInput} {isRequired} key={`${key}-${option.value}`} {name} {onChange} value={option.value} >
17111
17108
  function create_default_slot$m(ctx) {
17112
17109
  let t_value = /*option*/ ctx[11].text + "";
17113
17110
  let t;
@@ -17140,7 +17137,6 @@ function create_each_block$9(ctx) {
17140
17137
  checked: /*defaultOption*/ ctx[0] === /*option*/ ctx[11].value,
17141
17138
  isFirstInvalidInput: /*isFirstInvalidInput*/ ctx[3],
17142
17139
  isRequired: /*isRequired*/ ctx[4],
17143
- isInvalid: /*isInvalid*/ ctx[5],
17144
17140
  key: `${/*key*/ ctx[6]}-${/*option*/ ctx[11].value}`,
17145
17141
  name: /*name*/ ctx[7],
17146
17142
  onChange: /*onChange*/ ctx[8],
@@ -17168,7 +17164,6 @@ function create_each_block$9(ctx) {
17168
17164
  if (dirty & /*defaultOption, options*/ 513) radio_changes.checked = /*defaultOption*/ ctx[0] === /*option*/ ctx[11].value;
17169
17165
  if (dirty & /*isFirstInvalidInput*/ 8) radio_changes.isFirstInvalidInput = /*isFirstInvalidInput*/ ctx[3];
17170
17166
  if (dirty & /*isRequired*/ 16) radio_changes.isRequired = /*isRequired*/ ctx[4];
17171
- if (dirty & /*isInvalid*/ 32) radio_changes.isInvalid = /*isInvalid*/ ctx[5];
17172
17167
  if (dirty & /*key, options*/ 576) radio_changes.key = `${/*key*/ ctx[6]}-${/*option*/ ctx[11].value}`;
17173
17168
  if (dirty & /*name*/ 128) radio_changes.name = /*name*/ ctx[7];
17174
17169
  if (dirty & /*onChange*/ 256) radio_changes.onChange = /*onChange*/ ctx[8];
@@ -17196,7 +17191,7 @@ function create_each_block$9(ctx) {
17196
17191
  };
17197
17192
  }
17198
17193
 
17199
- function create_fragment$J(ctx) {
17194
+ function create_fragment$K(ctx) {
17200
17195
  let fieldset;
17201
17196
  let legend;
17202
17197
  let t0;
@@ -17262,7 +17257,7 @@ function create_fragment$J(ctx) {
17262
17257
  p(ctx, [dirty]) {
17263
17258
  if (!current || dirty & /*groupLabel*/ 4) set_data(t0, /*groupLabel*/ ctx[2]);
17264
17259
 
17265
- if (dirty & /*defaultOption, options, isFirstInvalidInput, isRequired, isInvalid, key, name, onChange*/ 1017) {
17260
+ if (dirty & /*defaultOption, options, isFirstInvalidInput, isRequired, key, name, onChange*/ 985) {
17266
17261
  each_value = /*options*/ ctx[9];
17267
17262
  let i;
17268
17263
 
@@ -17324,7 +17319,7 @@ function create_fragment$J(ctx) {
17324
17319
  };
17325
17320
  }
17326
17321
 
17327
- function instance$L($$self, $$props, $$invalidate) {
17322
+ function instance$M($$self, $$props, $$invalidate) {
17328
17323
  let { defaultOption = null } = $$props;
17329
17324
  let { message = '' } = $$props;
17330
17325
  let { groupLabel = '' } = $$props;
@@ -17370,7 +17365,7 @@ class Standard extends SvelteComponent {
17370
17365
  constructor(options) {
17371
17366
  super();
17372
17367
 
17373
- init(this, options, instance$L, create_fragment$J, safe_not_equal, {
17368
+ init(this, options, instance$M, create_fragment$K, safe_not_equal, {
17374
17369
  defaultOption: 0,
17375
17370
  message: 1,
17376
17371
  groupLabel: 2,
@@ -17504,7 +17499,7 @@ function create_each_block$8(ctx) {
17504
17499
  }
17505
17500
 
17506
17501
  // (61:0) {#if labelOrder === 'last'}
17507
- function create_if_block$k(ctx) {
17502
+ function create_if_block$l(ctx) {
17508
17503
  let label_1;
17509
17504
  let current;
17510
17505
 
@@ -17576,7 +17571,7 @@ function create_default_slot$l(ctx) {
17576
17571
  };
17577
17572
  }
17578
17573
 
17579
- function create_fragment$I(ctx) {
17574
+ function create_fragment$J(ctx) {
17580
17575
  let t0;
17581
17576
  let select;
17582
17577
  let select_aria_describedby_value;
@@ -17594,7 +17589,7 @@ function create_fragment$I(ctx) {
17594
17589
  each_blocks[i] = create_each_block$8(get_each_context$8(ctx, each_value, i));
17595
17590
  }
17596
17591
 
17597
- let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$k(ctx);
17592
+ let if_block1 = /*labelOrder*/ ctx[7] === 'last' && create_if_block$l(ctx);
17598
17593
 
17599
17594
  return {
17600
17595
  c() {
@@ -17718,7 +17713,7 @@ function create_fragment$I(ctx) {
17718
17713
  transition_in(if_block1, 1);
17719
17714
  }
17720
17715
  } else {
17721
- if_block1 = create_if_block$k(ctx);
17716
+ if_block1 = create_if_block$l(ctx);
17722
17717
  if_block1.c();
17723
17718
  transition_in(if_block1, 1);
17724
17719
  if_block1.m(if_block1_anchor.parentNode, if_block1_anchor);
@@ -17759,7 +17754,7 @@ function create_fragment$I(ctx) {
17759
17754
  };
17760
17755
  }
17761
17756
 
17762
- function instance$K($$self, $$props, $$invalidate) {
17757
+ function instance$L($$self, $$props, $$invalidate) {
17763
17758
  let { selectClasses = '' } = $$props;
17764
17759
  let { defaultOption = null } = $$props;
17765
17760
  let { isFirstInvalidInput } = $$props;
@@ -17846,7 +17841,7 @@ class Select extends SvelteComponent {
17846
17841
  constructor(options) {
17847
17842
  super();
17848
17843
 
17849
- init(this, options, instance$K, create_fragment$I, safe_not_equal, {
17844
+ init(this, options, instance$L, create_fragment$J, safe_not_equal, {
17850
17845
  selectClasses: 0,
17851
17846
  defaultOption: 1,
17852
17847
  isFirstInvalidInput: 12,
@@ -17864,7 +17859,7 @@ class Select extends SvelteComponent {
17864
17859
 
17865
17860
  /* src/lib/components/compositions/select-floating/floating-label.svelte generated by Svelte v3.59.2 */
17866
17861
 
17867
- function create_fragment$H(ctx) {
17862
+ function create_fragment$I(ctx) {
17868
17863
  let div;
17869
17864
  let select;
17870
17865
  let t;
@@ -17947,7 +17942,7 @@ function create_fragment$H(ctx) {
17947
17942
  };
17948
17943
  }
17949
17944
 
17950
- function instance$J($$self, $$props, $$invalidate) {
17945
+ function instance$K($$self, $$props, $$invalidate) {
17951
17946
  let { checkValidity = null } = $$props;
17952
17947
  let { defaultOption = null } = $$props;
17953
17948
  let { message = '' } = $$props;
@@ -18002,7 +17997,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
18002
17997
  constructor(options) {
18003
17998
  super();
18004
17999
 
18005
- init(this, options, instance$J, create_fragment$H, safe_not_equal, {
18000
+ init(this, options, instance$K, create_fragment$I, safe_not_equal, {
18006
18001
  checkValidity: 10,
18007
18002
  defaultOption: 1,
18008
18003
  message: 2,
@@ -18020,7 +18015,7 @@ let Floating_label$1 = class Floating_label extends SvelteComponent {
18020
18015
 
18021
18016
  /* src/lib/components/compositions/select-stacked/stacked-label.svelte generated by Svelte v3.59.2 */
18022
18017
 
18023
- function create_fragment$G(ctx) {
18018
+ function create_fragment$H(ctx) {
18024
18019
  let div;
18025
18020
  let select;
18026
18021
  let t;
@@ -18102,7 +18097,7 @@ function create_fragment$G(ctx) {
18102
18097
  };
18103
18098
  }
18104
18099
 
18105
- function instance$I($$self, $$props, $$invalidate) {
18100
+ function instance$J($$self, $$props, $$invalidate) {
18106
18101
  let { checkValidity = null } = $$props;
18107
18102
  let { defaultOption = null } = $$props;
18108
18103
  let { message = '' } = $$props;
@@ -18157,7 +18152,7 @@ let Stacked_label$1 = class Stacked_label extends SvelteComponent {
18157
18152
  constructor(options) {
18158
18153
  super();
18159
18154
 
18160
- init(this, options, instance$I, create_fragment$G, safe_not_equal, {
18155
+ init(this, options, instance$J, create_fragment$H, safe_not_equal, {
18161
18156
  checkValidity: 10,
18162
18157
  defaultOption: 1,
18163
18158
  message: 2,
@@ -18224,7 +18219,7 @@ function create_else_block$8(ctx) {
18224
18219
  }
18225
18220
 
18226
18221
  // (52:0) {#if callbackMetadata?.platform?.displayType === 'radio'}
18227
- function create_if_block$j(ctx) {
18222
+ function create_if_block$k(ctx) {
18228
18223
  let radio;
18229
18224
  let current;
18230
18225
 
@@ -18274,12 +18269,12 @@ function create_if_block$j(ctx) {
18274
18269
  };
18275
18270
  }
18276
18271
 
18277
- function create_fragment$F(ctx) {
18272
+ function create_fragment$G(ctx) {
18278
18273
  let current_block_type_index;
18279
18274
  let if_block;
18280
18275
  let if_block_anchor;
18281
18276
  let current;
18282
- const if_block_creators = [create_if_block$j, create_else_block$8];
18277
+ const if_block_creators = [create_if_block$k, create_else_block$8];
18283
18278
  const if_blocks = [];
18284
18279
 
18285
18280
  function select_block_type(ctx, dirty) {
@@ -18343,7 +18338,7 @@ function create_fragment$F(ctx) {
18343
18338
  };
18344
18339
  }
18345
18340
 
18346
- function instance$H($$self, $$props, $$invalidate) {
18341
+ function instance$I($$self, $$props, $$invalidate) {
18347
18342
  const selfSubmitFunction = null;
18348
18343
  const stepMetadata = null;
18349
18344
  let { callback } = $$props;
@@ -18431,7 +18426,7 @@ class Choice extends SvelteComponent {
18431
18426
  constructor(options) {
18432
18427
  super();
18433
18428
 
18434
- init(this, options, instance$H, create_fragment$F, safe_not_equal, {
18429
+ init(this, options, instance$I, create_fragment$G, safe_not_equal, {
18435
18430
  selfSubmitFunction: 9,
18436
18431
  stepMetadata: 10,
18437
18432
  callback: 11,
@@ -18451,7 +18446,7 @@ class Choice extends SvelteComponent {
18451
18446
 
18452
18447
  /* src/lib/components/primitives/grid/grid.svelte generated by Svelte v3.59.2 */
18453
18448
 
18454
- function create_fragment$E(ctx) {
18449
+ function create_fragment$F(ctx) {
18455
18450
  let div;
18456
18451
  let div_class_value;
18457
18452
  let current;
@@ -18527,7 +18522,7 @@ function generateClassString(...args) {
18527
18522
  );
18528
18523
  }
18529
18524
 
18530
- function instance$G($$self, $$props, $$invalidate) {
18525
+ function instance$H($$self, $$props, $$invalidate) {
18531
18526
  let { $$slots: slots = {}, $$scope } = $$props;
18532
18527
  let { num = 2 } = $$props;
18533
18528
 
@@ -18542,7 +18537,7 @@ function instance$G($$self, $$props, $$invalidate) {
18542
18537
  class Grid extends SvelteComponent {
18543
18538
  constructor(options) {
18544
18539
  super();
18545
- init(this, options, instance$G, create_fragment$E, safe_not_equal, { num: 0 });
18540
+ init(this, options, instance$H, create_fragment$F, safe_not_equal, { num: 0 });
18546
18541
  }
18547
18542
  }
18548
18543
 
@@ -18555,7 +18550,7 @@ function get_each_context$7(ctx, list, i) {
18555
18550
  }
18556
18551
 
18557
18552
  // (81:0) {#if stepMetadata?.platform?.stageName !== 'OneTimePassword'}
18558
- function create_if_block$i(ctx) {
18553
+ function create_if_block$j(ctx) {
18559
18554
  let show_if;
18560
18555
  let current_block_type_index;
18561
18556
  let if_block;
@@ -19034,10 +19029,10 @@ function create_default_slot$k(ctx) {
19034
19029
  };
19035
19030
  }
19036
19031
 
19037
- function create_fragment$D(ctx) {
19032
+ function create_fragment$E(ctx) {
19038
19033
  let if_block_anchor;
19039
19034
  let current;
19040
- let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$i(ctx);
19035
+ let if_block = /*stepMetadata*/ ctx[1]?.platform?.stageName !== 'OneTimePassword' && create_if_block$j(ctx);
19041
19036
 
19042
19037
  return {
19043
19038
  c() {
@@ -19058,7 +19053,7 @@ function create_fragment$D(ctx) {
19058
19053
  transition_in(if_block, 1);
19059
19054
  }
19060
19055
  } else {
19061
- if_block = create_if_block$i(ctx);
19056
+ if_block = create_if_block$j(ctx);
19062
19057
  if_block.c();
19063
19058
  transition_in(if_block, 1);
19064
19059
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
@@ -19089,7 +19084,7 @@ function create_fragment$D(ctx) {
19089
19084
  };
19090
19085
  }
19091
19086
 
19092
- function instance$F($$self, $$props, $$invalidate) {
19087
+ function instance$G($$self, $$props, $$invalidate) {
19093
19088
  const style = {};
19094
19089
  let { callback } = $$props;
19095
19090
  let { callbackMetadata } = $$props;
@@ -19208,7 +19203,7 @@ class Confirmation extends SvelteComponent {
19208
19203
  constructor(options) {
19209
19204
  super();
19210
19205
 
19211
- init(this, options, instance$F, create_fragment$D, safe_not_equal, {
19206
+ init(this, options, instance$G, create_fragment$E, safe_not_equal, {
19212
19207
  style: 11,
19213
19208
  callback: 12,
19214
19209
  callbackMetadata: 0,
@@ -19224,7 +19219,7 @@ class Confirmation extends SvelteComponent {
19224
19219
 
19225
19220
  /* src/lib/journey/callbacks/hidden-value/hidden-value.svelte generated by Svelte v3.59.2 */
19226
19221
 
19227
- function instance$E($$self, $$props, $$invalidate) {
19222
+ function instance$F($$self, $$props, $$invalidate) {
19228
19223
  const callback = null;
19229
19224
  const callbackMetadata = null;
19230
19225
  const selfSubmitFunction = null;
@@ -19237,7 +19232,7 @@ class Hidden_value extends SvelteComponent {
19237
19232
  constructor(options) {
19238
19233
  super();
19239
19234
 
19240
- init(this, options, instance$E, null, safe_not_equal, {
19235
+ init(this, options, instance$F, null, safe_not_equal, {
19241
19236
  callback: 0,
19242
19237
  callbackMetadata: 1,
19243
19238
  selfSubmitFunction: 2,
@@ -19817,7 +19812,7 @@ function create_if_block_1$9(ctx) {
19817
19812
  }
19818
19813
 
19819
19814
  // (129:0) {#if labelOrder === 'last'}
19820
- function create_if_block$h(ctx) {
19815
+ function create_if_block$i(ctx) {
19821
19816
  let label_1;
19822
19817
  let current;
19823
19818
 
@@ -19884,7 +19879,7 @@ function create_default_slot$j(ctx) {
19884
19879
  };
19885
19880
  }
19886
19881
 
19887
- function create_fragment$C(ctx) {
19882
+ function create_fragment$D(ctx) {
19888
19883
  let t0;
19889
19884
  let t1;
19890
19885
  let t2;
@@ -19901,7 +19896,7 @@ function create_fragment$C(ctx) {
19901
19896
  let if_block4 = /*type*/ ctx[11] === 'password' && create_if_block_3$6(ctx);
19902
19897
  let if_block5 = /*type*/ ctx[11] === 'phone' && create_if_block_2$8(ctx);
19903
19898
  let if_block6 = /*type*/ ctx[11] === 'text' && create_if_block_1$9(ctx);
19904
- let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$h(ctx);
19899
+ let if_block7 = /*labelOrder*/ ctx[6] === 'last' && create_if_block$i(ctx);
19905
19900
 
19906
19901
  return {
19907
19902
  c() {
@@ -20051,7 +20046,7 @@ function create_fragment$C(ctx) {
20051
20046
  transition_in(if_block7, 1);
20052
20047
  }
20053
20048
  } else {
20054
- if_block7 = create_if_block$h(ctx);
20049
+ if_block7 = create_if_block$i(ctx);
20055
20050
  if_block7.c();
20056
20051
  transition_in(if_block7, 1);
20057
20052
  if_block7.m(if_block7_anchor.parentNode, if_block7_anchor);
@@ -20098,7 +20093,7 @@ function create_fragment$C(ctx) {
20098
20093
  };
20099
20094
  }
20100
20095
 
20101
- function instance$D($$self, $$props, $$invalidate) {
20096
+ function instance$E($$self, $$props, $$invalidate) {
20102
20097
  let { forceValidityFailure = false } = $$props;
20103
20098
  let { isFirstInvalidInput } = $$props;
20104
20099
  let { inputClasses = '' } = $$props;
@@ -20242,7 +20237,7 @@ class Input extends SvelteComponent {
20242
20237
  constructor(options) {
20243
20238
  super();
20244
20239
 
20245
- init(this, options, instance$D, create_fragment$C, safe_not_equal, {
20240
+ init(this, options, instance$E, create_fragment$D, safe_not_equal, {
20246
20241
  forceValidityFailure: 1,
20247
20242
  isFirstInvalidInput: 13,
20248
20243
  inputClasses: 2,
@@ -20264,7 +20259,7 @@ class Input extends SvelteComponent {
20264
20259
  const get_input_button_slot_changes$1 = dirty => ({});
20265
20260
  const get_input_button_slot_context$1 = ctx => ({});
20266
20261
 
20267
- function create_fragment$B(ctx) {
20262
+ function create_fragment$C(ctx) {
20268
20263
  let div1;
20269
20264
  let input;
20270
20265
  let updating_value;
@@ -20439,7 +20434,7 @@ function create_fragment$B(ctx) {
20439
20434
  };
20440
20435
  }
20441
20436
 
20442
- function instance$C($$self, $$props, $$invalidate) {
20437
+ function instance$D($$self, $$props, $$invalidate) {
20443
20438
  let { $$slots: slots = {}, $$scope } = $$props;
20444
20439
  let { checkValidity = null } = $$props;
20445
20440
  let { forceValidityFailure = false } = $$props;
@@ -20510,7 +20505,7 @@ class Floating_label extends SvelteComponent {
20510
20505
  constructor(options) {
20511
20506
  super();
20512
20507
 
20513
- init(this, options, instance$C, create_fragment$B, safe_not_equal, {
20508
+ init(this, options, instance$D, create_fragment$C, safe_not_equal, {
20514
20509
  checkValidity: 12,
20515
20510
  forceValidityFailure: 2,
20516
20511
  message: 3,
@@ -20532,7 +20527,7 @@ class Floating_label extends SvelteComponent {
20532
20527
  const get_input_button_slot_changes = dirty => ({});
20533
20528
  const get_input_button_slot_context = ctx => ({});
20534
20529
 
20535
- function create_fragment$A(ctx) {
20530
+ function create_fragment$B(ctx) {
20536
20531
  let div1;
20537
20532
  let input;
20538
20533
  let updating_value;
@@ -20711,7 +20706,7 @@ function create_fragment$A(ctx) {
20711
20706
  };
20712
20707
  }
20713
20708
 
20714
- function instance$B($$self, $$props, $$invalidate) {
20709
+ function instance$C($$self, $$props, $$invalidate) {
20715
20710
  let { $$slots: slots = {}, $$scope } = $$props;
20716
20711
  let { checkValidity = null } = $$props;
20717
20712
  let { forceValidityFailure = false } = $$props;
@@ -20785,7 +20780,7 @@ class Stacked_label extends SvelteComponent {
20785
20780
  constructor(options) {
20786
20781
  super();
20787
20782
 
20788
- init(this, options, instance$B, create_fragment$A, safe_not_equal, {
20783
+ init(this, options, instance$C, create_fragment$B, safe_not_equal, {
20789
20784
  checkValidity: 13,
20790
20785
  forceValidityFailure: 2,
20791
20786
  isFirstInvalidInput: 3,
@@ -20806,7 +20801,7 @@ class Stacked_label extends SvelteComponent {
20806
20801
 
20807
20802
  /* src/lib/components/icons/lock-icon.svelte generated by Svelte v3.59.2 */
20808
20803
 
20809
- function create_fragment$z(ctx) {
20804
+ function create_fragment$A(ctx) {
20810
20805
  let svg;
20811
20806
  let path0;
20812
20807
  let path1;
@@ -20887,7 +20882,7 @@ function create_fragment$z(ctx) {
20887
20882
  };
20888
20883
  }
20889
20884
 
20890
- function instance$A($$self, $$props, $$invalidate) {
20885
+ function instance$B($$self, $$props, $$invalidate) {
20891
20886
  let { $$slots: slots = {}, $$scope } = $$props;
20892
20887
  let { classes = '' } = $$props;
20893
20888
  let { size = '24px' } = $$props;
@@ -20904,13 +20899,13 @@ function instance$A($$self, $$props, $$invalidate) {
20904
20899
  class Lock_icon extends SvelteComponent {
20905
20900
  constructor(options) {
20906
20901
  super();
20907
- init(this, options, instance$A, create_fragment$z, safe_not_equal, { classes: 0, size: 1 });
20902
+ init(this, options, instance$B, create_fragment$A, safe_not_equal, { classes: 0, size: 1 });
20908
20903
  }
20909
20904
  }
20910
20905
 
20911
20906
  /* src/lib/journey/callbacks/kba/kba-create.svelte generated by Svelte v3.59.2 */
20912
20907
 
20913
- function create_if_block$g(ctx) {
20908
+ function create_if_block$h(ctx) {
20914
20909
  let input;
20915
20910
  let current;
20916
20911
 
@@ -20955,7 +20950,7 @@ function create_if_block$g(ctx) {
20955
20950
  };
20956
20951
  }
20957
20952
 
20958
- function create_fragment$y(ctx) {
20953
+ function create_fragment$z(ctx) {
20959
20954
  let fieldset;
20960
20955
  let legend;
20961
20956
  let t0;
@@ -20991,7 +20986,7 @@ function create_fragment$y(ctx) {
20991
20986
  }
20992
20987
  });
20993
20988
 
20994
- let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$g(ctx);
20989
+ let if_block = /*displayCustomQuestionInput*/ ctx[3] && create_if_block$h(ctx);
20995
20990
 
20996
20991
  function input_value_binding(value) {
20997
20992
  /*input_value_binding*/ ctx[21](value);
@@ -21070,7 +21065,7 @@ function create_fragment$y(ctx) {
21070
21065
  transition_in(if_block, 1);
21071
21066
  }
21072
21067
  } else {
21073
- if_block = create_if_block$g(ctx);
21068
+ if_block = create_if_block$h(ctx);
21074
21069
  if_block.c();
21075
21070
  transition_in(if_block, 1);
21076
21071
  if_block.m(fieldset, t6);
@@ -21128,7 +21123,7 @@ function create_fragment$y(ctx) {
21128
21123
  };
21129
21124
  }
21130
21125
 
21131
- function instance$z($$self, $$props, $$invalidate) {
21126
+ function instance$A($$self, $$props, $$invalidate) {
21132
21127
  let $value;
21133
21128
  const selfSubmitFunction = null;
21134
21129
  const stepMetadata = null;
@@ -21284,7 +21279,7 @@ class Kba_create extends SvelteComponent {
21284
21279
  constructor(options) {
21285
21280
  super();
21286
21281
 
21287
- init(this, options, instance$z, create_fragment$y, safe_not_equal, {
21282
+ init(this, options, instance$A, create_fragment$z, safe_not_equal, {
21288
21283
  selfSubmitFunction: 13,
21289
21284
  stepMetadata: 14,
21290
21285
  callback: 15,
@@ -21357,7 +21352,7 @@ function create_key_block$4(ctx) {
21357
21352
  };
21358
21353
  }
21359
21354
 
21360
- function create_fragment$x(ctx) {
21355
+ function create_fragment$y(ctx) {
21361
21356
  let previous_key = /*callback*/ ctx[0];
21362
21357
  let key_block_anchor;
21363
21358
  let current;
@@ -21402,7 +21397,7 @@ function create_fragment$x(ctx) {
21402
21397
  };
21403
21398
  }
21404
21399
 
21405
- function instance$y($$self, $$props, $$invalidate) {
21400
+ function instance$z($$self, $$props, $$invalidate) {
21406
21401
  const selfSubmitFunction = null;
21407
21402
  const stepMetadata = null;
21408
21403
  let { callback } = $$props;
@@ -21454,7 +21449,7 @@ class Name extends SvelteComponent {
21454
21449
  constructor(options) {
21455
21450
  super();
21456
21451
 
21457
- init(this, options, instance$y, create_fragment$x, safe_not_equal, {
21452
+ init(this, options, instance$z, create_fragment$y, safe_not_equal, {
21458
21453
  selfSubmitFunction: 8,
21459
21454
  stepMetadata: 9,
21460
21455
  callback: 0,
@@ -21556,7 +21551,7 @@ function create_else_block$6(ctx) {
21556
21551
  }
21557
21552
 
21558
21553
  // (6:0) {#if !visible}
21559
- function create_if_block$f(ctx) {
21554
+ function create_if_block$g(ctx) {
21560
21555
  let svg;
21561
21556
  let path0;
21562
21557
  let path1;
@@ -21637,12 +21632,12 @@ function create_if_block$f(ctx) {
21637
21632
  };
21638
21633
  }
21639
21634
 
21640
- function create_fragment$w(ctx) {
21635
+ function create_fragment$x(ctx) {
21641
21636
  let current_block_type_index;
21642
21637
  let if_block;
21643
21638
  let if_block_anchor;
21644
21639
  let current;
21645
- const if_block_creators = [create_if_block$f, create_else_block$6];
21640
+ const if_block_creators = [create_if_block$g, create_else_block$6];
21646
21641
  const if_blocks = [];
21647
21642
 
21648
21643
  function select_block_type(ctx, dirty) {
@@ -21706,7 +21701,7 @@ function create_fragment$w(ctx) {
21706
21701
  };
21707
21702
  }
21708
21703
 
21709
- function instance$x($$self, $$props, $$invalidate) {
21704
+ function instance$y($$self, $$props, $$invalidate) {
21710
21705
  let { $$slots: slots = {}, $$scope } = $$props;
21711
21706
  let { classes = '' } = $$props;
21712
21707
  let { size = '24px' } = $$props;
@@ -21725,7 +21720,7 @@ function instance$x($$self, $$props, $$invalidate) {
21725
21720
  class Eye_icon extends SvelteComponent {
21726
21721
  constructor(options) {
21727
21722
  super();
21728
- init(this, options, instance$x, create_fragment$w, safe_not_equal, { classes: 0, size: 1, visible: 2 });
21723
+ init(this, options, instance$y, create_fragment$x, safe_not_equal, { classes: 0, size: 1, visible: 2 });
21729
21724
  }
21730
21725
  }
21731
21726
 
@@ -21871,7 +21866,7 @@ function create_input_button_slot$1(ctx) {
21871
21866
  };
21872
21867
  }
21873
21868
 
21874
- function create_fragment$v(ctx) {
21869
+ function create_fragment$w(ctx) {
21875
21870
  let input;
21876
21871
  let current;
21877
21872
 
@@ -21942,7 +21937,7 @@ function create_fragment$v(ctx) {
21942
21937
  };
21943
21938
  }
21944
21939
 
21945
- function instance$w($$self, $$props, $$invalidate) {
21940
+ function instance$x($$self, $$props, $$invalidate) {
21946
21941
  let { $$slots: slots = {}, $$scope } = $$props;
21947
21942
  let { forceValidityFailure = false } = $$props;
21948
21943
  let { passwordsDoNotMatch = false } = $$props;
@@ -22029,7 +22024,7 @@ class Confirm_input extends SvelteComponent {
22029
22024
  constructor(options) {
22030
22025
  super();
22031
22026
 
22032
- init(this, options, instance$w, create_fragment$v, safe_not_equal, {
22027
+ init(this, options, instance$x, create_fragment$w, safe_not_equal, {
22033
22028
  forceValidityFailure: 0,
22034
22029
  passwordsDoNotMatch: 1,
22035
22030
  isRequired: 2,
@@ -22185,7 +22180,7 @@ function create_input_button_slot(ctx) {
22185
22180
  }
22186
22181
 
22187
22182
  // (102:2) {#if callbackMetadata?.platform?.confirmPassword}
22188
- function create_if_block$e(ctx) {
22183
+ function create_if_block$f(ctx) {
22189
22184
  let confirminput;
22190
22185
  let current;
22191
22186
 
@@ -22268,7 +22263,7 @@ function create_key_block$3(ctx) {
22268
22263
  }
22269
22264
  });
22270
22265
 
22271
- let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$e(ctx);
22266
+ let if_block = /*callbackMetadata*/ ctx[2]?.platform?.confirmPassword && create_if_block$f(ctx);
22272
22267
 
22273
22268
  return {
22274
22269
  c() {
@@ -22317,7 +22312,7 @@ function create_key_block$3(ctx) {
22317
22312
  transition_in(if_block, 1);
22318
22313
  }
22319
22314
  } else {
22320
- if_block = create_if_block$e(ctx);
22315
+ if_block = create_if_block$f(ctx);
22321
22316
  if_block.c();
22322
22317
  transition_in(if_block, 1);
22323
22318
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
@@ -22352,7 +22347,7 @@ function create_key_block$3(ctx) {
22352
22347
  };
22353
22348
  }
22354
22349
 
22355
- function create_fragment$u(ctx) {
22350
+ function create_fragment$v(ctx) {
22356
22351
  let previous_key = /*callback*/ ctx[1];
22357
22352
  let key_block_anchor;
22358
22353
  let current;
@@ -22397,7 +22392,7 @@ function create_fragment$u(ctx) {
22397
22392
  };
22398
22393
  }
22399
22394
 
22400
- function instance$v($$self, $$props, $$invalidate) {
22395
+ function instance$w($$self, $$props, $$invalidate) {
22401
22396
  let { $$slots: slots = {}, $$scope } = $$props;
22402
22397
  let { callback } = $$props;
22403
22398
  let { callbackMetadata } = $$props;
@@ -22522,7 +22517,7 @@ class Base extends SvelteComponent {
22522
22517
  constructor(options) {
22523
22518
  super();
22524
22519
 
22525
- init(this, options, instance$v, create_fragment$u, safe_not_equal, {
22520
+ init(this, options, instance$w, create_fragment$v, safe_not_equal, {
22526
22521
  callback: 1,
22527
22522
  callbackMetadata: 2,
22528
22523
  key: 0,
@@ -22537,7 +22532,7 @@ class Base extends SvelteComponent {
22537
22532
 
22538
22533
  /* src/lib/journey/callbacks/password/password.svelte generated by Svelte v3.59.2 */
22539
22534
 
22540
- function create_fragment$t(ctx) {
22535
+ function create_fragment$u(ctx) {
22541
22536
  let base;
22542
22537
  let current;
22543
22538
 
@@ -22581,7 +22576,7 @@ function create_fragment$t(ctx) {
22581
22576
  };
22582
22577
  }
22583
22578
 
22584
- function instance$u($$self, $$props, $$invalidate) {
22579
+ function instance$v($$self, $$props, $$invalidate) {
22585
22580
  const selfSubmitFunction = null;
22586
22581
  const stepMetadata = null;
22587
22582
  let { callback } = $$props;
@@ -22611,7 +22606,7 @@ class Password extends SvelteComponent {
22611
22606
  constructor(options) {
22612
22607
  super();
22613
22608
 
22614
- init(this, options, instance$u, create_fragment$t, safe_not_equal, {
22609
+ init(this, options, instance$v, create_fragment$u, safe_not_equal, {
22615
22610
  selfSubmitFunction: 4,
22616
22611
  stepMetadata: 5,
22617
22612
  callback: 0,
@@ -22631,7 +22626,7 @@ class Password extends SvelteComponent {
22631
22626
 
22632
22627
  /* src/lib/components/primitives/text/text.svelte generated by Svelte v3.59.2 */
22633
22628
 
22634
- function create_fragment$s(ctx) {
22629
+ function create_fragment$t(ctx) {
22635
22630
  let p;
22636
22631
  let p_class_value;
22637
22632
  let current;
@@ -22689,7 +22684,7 @@ function create_fragment$s(ctx) {
22689
22684
  };
22690
22685
  }
22691
22686
 
22692
- function instance$t($$self, $$props, $$invalidate) {
22687
+ function instance$u($$self, $$props, $$invalidate) {
22693
22688
  let { $$slots: slots = {}, $$scope } = $$props;
22694
22689
  let { classes = '' } = $$props;
22695
22690
 
@@ -22704,7 +22699,7 @@ function instance$t($$self, $$props, $$invalidate) {
22704
22699
  class Text extends SvelteComponent {
22705
22700
  constructor(options) {
22706
22701
  super();
22707
- init(this, options, instance$t, create_fragment$s, safe_not_equal, { classes: 0 });
22702
+ init(this, options, instance$u, create_fragment$t, safe_not_equal, { classes: 0 });
22708
22703
  }
22709
22704
  }
22710
22705
 
@@ -22729,7 +22724,7 @@ function create_default_slot$g(ctx) {
22729
22724
  };
22730
22725
  }
22731
22726
 
22732
- function create_fragment$r(ctx) {
22727
+ function create_fragment$s(ctx) {
22733
22728
  let div;
22734
22729
  let spinner;
22735
22730
  let t;
@@ -22793,7 +22788,7 @@ function create_fragment$r(ctx) {
22793
22788
  };
22794
22789
  }
22795
22790
 
22796
- function instance$s($$self, $$props, $$invalidate) {
22791
+ function instance$t($$self, $$props, $$invalidate) {
22797
22792
  const stepMetadata = null;
22798
22793
  const style = {};
22799
22794
  let { callback } = $$props;
@@ -22835,7 +22830,7 @@ class Polling_wait extends SvelteComponent {
22835
22830
  constructor(options) {
22836
22831
  super();
22837
22832
 
22838
- init(this, options, instance$s, create_fragment$r, safe_not_equal, {
22833
+ init(this, options, instance$t, create_fragment$s, safe_not_equal, {
22839
22834
  stepMetadata: 3,
22840
22835
  style: 4,
22841
22836
  callback: 1,
@@ -22874,7 +22869,7 @@ function create_default_slot$f(ctx) {
22874
22869
  };
22875
22870
  }
22876
22871
 
22877
- function create_fragment$q(ctx) {
22872
+ function create_fragment$r(ctx) {
22878
22873
  let div;
22879
22874
  let spinner;
22880
22875
  let t;
@@ -22939,7 +22934,7 @@ function create_fragment$q(ctx) {
22939
22934
  };
22940
22935
  }
22941
22936
 
22942
- function instance$r($$self, $$props, $$invalidate) {
22937
+ function instance$s($$self, $$props, $$invalidate) {
22943
22938
  const callbackMetadata = null;
22944
22939
  const selfSubmitFunction = null;
22945
22940
  const stepMetadata = null;
@@ -22966,7 +22961,7 @@ class Redirect extends SvelteComponent {
22966
22961
  constructor(options) {
22967
22962
  super();
22968
22963
 
22969
- init(this, options, instance$r, create_fragment$q, safe_not_equal, {
22964
+ init(this, options, instance$s, create_fragment$r, safe_not_equal, {
22970
22965
  callbackMetadata: 1,
22971
22966
  selfSubmitFunction: 2,
22972
22967
  stepMetadata: 3,
@@ -22994,7 +22989,7 @@ class Redirect extends SvelteComponent {
22994
22989
 
22995
22990
  /* src/lib/components/icons/apple-icon.svelte generated by Svelte v3.59.2 */
22996
22991
 
22997
- function create_fragment$p(ctx) {
22992
+ function create_fragment$q(ctx) {
22998
22993
  let svg;
22999
22994
  let path0;
23000
22995
  let path1;
@@ -23039,7 +23034,7 @@ function create_fragment$p(ctx) {
23039
23034
  };
23040
23035
  }
23041
23036
 
23042
- function instance$q($$self, $$props, $$invalidate) {
23037
+ function instance$r($$self, $$props, $$invalidate) {
23043
23038
  let { classes = '' } = $$props;
23044
23039
  let { size = '24px' } = $$props;
23045
23040
 
@@ -23054,13 +23049,13 @@ function instance$q($$self, $$props, $$invalidate) {
23054
23049
  class Apple_icon extends SvelteComponent {
23055
23050
  constructor(options) {
23056
23051
  super();
23057
- init(this, options, instance$q, create_fragment$p, safe_not_equal, { classes: 0, size: 1 });
23052
+ init(this, options, instance$r, create_fragment$q, safe_not_equal, { classes: 0, size: 1 });
23058
23053
  }
23059
23054
  }
23060
23055
 
23061
23056
  /* src/lib/components/icons/facebook-icon.svelte generated by Svelte v3.59.2 */
23062
23057
 
23063
- function create_fragment$o(ctx) {
23058
+ function create_fragment$p(ctx) {
23064
23059
  let svg;
23065
23060
  let path;
23066
23061
 
@@ -23101,7 +23096,7 @@ function create_fragment$o(ctx) {
23101
23096
  };
23102
23097
  }
23103
23098
 
23104
- function instance$p($$self, $$props, $$invalidate) {
23099
+ function instance$q($$self, $$props, $$invalidate) {
23105
23100
  let { classes = '' } = $$props;
23106
23101
  let { size = '24px' } = $$props;
23107
23102
 
@@ -23116,13 +23111,13 @@ function instance$p($$self, $$props, $$invalidate) {
23116
23111
  class Facebook_icon extends SvelteComponent {
23117
23112
  constructor(options) {
23118
23113
  super();
23119
- init(this, options, instance$p, create_fragment$o, safe_not_equal, { classes: 0, size: 1 });
23114
+ init(this, options, instance$q, create_fragment$p, safe_not_equal, { classes: 0, size: 1 });
23120
23115
  }
23121
23116
  }
23122
23117
 
23123
23118
  /* src/lib/components/icons/google-icon.svelte generated by Svelte v3.59.2 */
23124
23119
 
23125
- function create_fragment$n(ctx) {
23120
+ function create_fragment$o(ctx) {
23126
23121
  let svg;
23127
23122
  let g;
23128
23123
  let path0;
@@ -23187,7 +23182,7 @@ function create_fragment$n(ctx) {
23187
23182
  };
23188
23183
  }
23189
23184
 
23190
- function instance$o($$self, $$props, $$invalidate) {
23185
+ function instance$p($$self, $$props, $$invalidate) {
23191
23186
  let { classes = '' } = $$props;
23192
23187
  let { size = '24px' } = $$props;
23193
23188
 
@@ -23202,7 +23197,7 @@ function instance$o($$self, $$props, $$invalidate) {
23202
23197
  class Google_icon extends SvelteComponent {
23203
23198
  constructor(options) {
23204
23199
  super();
23205
- init(this, options, instance$o, create_fragment$n, safe_not_equal, { classes: 0, size: 1 });
23200
+ init(this, options, instance$p, create_fragment$o, safe_not_equal, { classes: 0, size: 1 });
23206
23201
  }
23207
23202
  }
23208
23203
 
@@ -23693,7 +23688,7 @@ function create_each_block$6(ctx) {
23693
23688
  }
23694
23689
 
23695
23690
  // (81:0) {#if stepMetadata && stepMetadata.derived.numOfCallbacks > 1}
23696
- function create_if_block$d(ctx) {
23691
+ function create_if_block$e(ctx) {
23697
23692
  let grid;
23698
23693
  let current;
23699
23694
 
@@ -23747,7 +23742,7 @@ function create_default_slot$e(ctx) {
23747
23742
  };
23748
23743
  }
23749
23744
 
23750
- function create_fragment$m(ctx) {
23745
+ function create_fragment$n(ctx) {
23751
23746
  let t;
23752
23747
  let if_block_anchor;
23753
23748
  let current;
@@ -23762,7 +23757,7 @@ function create_fragment$m(ctx) {
23762
23757
  each_blocks[i] = null;
23763
23758
  });
23764
23759
 
23765
- let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$d(ctx);
23760
+ let if_block = /*stepMetadata*/ ctx[0] && /*stepMetadata*/ ctx[0].derived.numOfCallbacks > 1 && create_if_block$e(ctx);
23766
23761
 
23767
23762
  return {
23768
23763
  c() {
@@ -23820,7 +23815,7 @@ function create_fragment$m(ctx) {
23820
23815
  transition_in(if_block, 1);
23821
23816
  }
23822
23817
  } else {
23823
- if_block = create_if_block$d(ctx);
23818
+ if_block = create_if_block$e(ctx);
23824
23819
  if_block.c();
23825
23820
  transition_in(if_block, 1);
23826
23821
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
@@ -23864,7 +23859,7 @@ function create_fragment$m(ctx) {
23864
23859
  };
23865
23860
  }
23866
23861
 
23867
- function instance$n($$self, $$props, $$invalidate) {
23862
+ function instance$o($$self, $$props, $$invalidate) {
23868
23863
  const style = {};
23869
23864
  let { callback } = $$props;
23870
23865
  let { callbackMetadata } = $$props;
@@ -23934,7 +23929,7 @@ class Select_idp extends SvelteComponent {
23934
23929
  constructor(options) {
23935
23930
  super();
23936
23931
 
23937
- init(this, options, instance$n, create_fragment$m, safe_not_equal, {
23932
+ init(this, options, instance$o, create_fragment$n, safe_not_equal, {
23938
23933
  style: 4,
23939
23934
  callback: 5,
23940
23935
  callbackMetadata: 3,
@@ -24061,7 +24056,7 @@ function create_if_block_1$7(ctx) {
24061
24056
  }
24062
24057
 
24063
24058
  // (24:0) {#if simplifiedFailures.length}
24064
- function create_if_block$c(ctx) {
24059
+ function create_if_block$d(ctx) {
24065
24060
  let div;
24066
24061
  let p;
24067
24062
  let t0;
@@ -24208,12 +24203,12 @@ function create_each_block$5(ctx) {
24208
24203
  };
24209
24204
  }
24210
24205
 
24211
- function create_fragment$l(ctx) {
24206
+ function create_fragment$m(ctx) {
24212
24207
  let current_block_type_index;
24213
24208
  let if_block;
24214
24209
  let if_block_anchor;
24215
24210
  let current;
24216
- const if_block_creators = [create_if_block$c, create_if_block_1$7];
24211
+ const if_block_creators = [create_if_block$d, create_if_block_1$7];
24217
24212
  const if_blocks = [];
24218
24213
 
24219
24214
  function select_block_type(ctx, dirty) {
@@ -24294,7 +24289,7 @@ function create_fragment$l(ctx) {
24294
24289
  };
24295
24290
  }
24296
24291
 
24297
- function instance$m($$self, $$props, $$invalidate) {
24292
+ function instance$n($$self, $$props, $$invalidate) {
24298
24293
  let { callback } = $$props;
24299
24294
  let { key = undefined } = $$props;
24300
24295
  let { label } = $$props;
@@ -24352,7 +24347,7 @@ class Policies extends SvelteComponent {
24352
24347
  constructor(options) {
24353
24348
  super();
24354
24349
 
24355
- init(this, options, instance$m, create_fragment$l, safe_not_equal, {
24350
+ init(this, options, instance$n, create_fragment$m, safe_not_equal, {
24356
24351
  callback: 5,
24357
24352
  key: 0,
24358
24353
  label: 6,
@@ -24476,7 +24471,7 @@ function create_key_block$2(ctx) {
24476
24471
  };
24477
24472
  }
24478
24473
 
24479
- function create_fragment$k(ctx) {
24474
+ function create_fragment$l(ctx) {
24480
24475
  let previous_key = /*callback*/ ctx[0];
24481
24476
  let key_block_anchor;
24482
24477
  let current;
@@ -24521,7 +24516,7 @@ function create_fragment$k(ctx) {
24521
24516
  };
24522
24517
  }
24523
24518
 
24524
- function instance$l($$self, $$props, $$invalidate) {
24519
+ function instance$m($$self, $$props, $$invalidate) {
24525
24520
  const selfSubmitFunction = null;
24526
24521
  const stepMetadata = null;
24527
24522
  let { callback } = $$props;
@@ -24597,7 +24592,7 @@ class String_attribute_input extends SvelteComponent {
24597
24592
  constructor(options) {
24598
24593
  super();
24599
24594
 
24600
- init(this, options, instance$l, create_fragment$k, safe_not_equal, {
24595
+ init(this, options, instance$m, create_fragment$l, safe_not_equal, {
24601
24596
  selfSubmitFunction: 11,
24602
24597
  stepMetadata: 12,
24603
24598
  callback: 0,
@@ -24617,7 +24612,7 @@ class String_attribute_input extends SvelteComponent {
24617
24612
 
24618
24613
  /* src/lib/components/primitives/link/link.svelte generated by Svelte v3.59.2 */
24619
24614
 
24620
- function create_fragment$j(ctx) {
24615
+ function create_fragment$k(ctx) {
24621
24616
  let a;
24622
24617
  let a_class_value;
24623
24618
  let current;
@@ -24685,7 +24680,7 @@ function create_fragment$j(ctx) {
24685
24680
  };
24686
24681
  }
24687
24682
 
24688
- function instance$k($$self, $$props, $$invalidate) {
24683
+ function instance$l($$self, $$props, $$invalidate) {
24689
24684
  let { $$slots: slots = {}, $$scope } = $$props;
24690
24685
  let { classes = '' } = $$props;
24691
24686
  let { href } = $$props;
@@ -24704,7 +24699,7 @@ function instance$k($$self, $$props, $$invalidate) {
24704
24699
  class Link extends SvelteComponent {
24705
24700
  constructor(options) {
24706
24701
  super();
24707
- init(this, options, instance$k, create_fragment$j, safe_not_equal, { classes: 0, href: 1, target: 2 });
24702
+ init(this, options, instance$l, create_fragment$k, safe_not_equal, { classes: 0, href: 1, target: 2 });
24708
24703
  }
24709
24704
  }
24710
24705
 
@@ -24732,7 +24727,7 @@ function create_else_block$5(ctx) {
24732
24727
  }
24733
24728
 
24734
24729
  // (27:0) {#if $linksStore?.termsAndConditions}
24735
- function create_if_block$b(ctx) {
24730
+ function create_if_block$c(ctx) {
24736
24731
  let link;
24737
24732
  let t;
24738
24733
  let checkbox;
@@ -24858,12 +24853,12 @@ function create_default_slot$c(ctx) {
24858
24853
  };
24859
24854
  }
24860
24855
 
24861
- function create_fragment$i(ctx) {
24856
+ function create_fragment$j(ctx) {
24862
24857
  let current_block_type_index;
24863
24858
  let if_block;
24864
24859
  let if_block_anchor;
24865
24860
  let current;
24866
- const if_block_creators = [create_if_block$b, create_else_block$5];
24861
+ const if_block_creators = [create_if_block$c, create_else_block$5];
24867
24862
  const if_blocks = [];
24868
24863
 
24869
24864
  function select_block_type(ctx, dirty) {
@@ -24927,7 +24922,7 @@ function create_fragment$i(ctx) {
24927
24922
  };
24928
24923
  }
24929
24924
 
24930
- function instance$j($$self, $$props, $$invalidate) {
24925
+ function instance$k($$self, $$props, $$invalidate) {
24931
24926
  let $linksStore;
24932
24927
  component_subscribe($$self, linksStore, $$value => $$invalidate(2, $linksStore = $$value));
24933
24928
  const selfSubmitFunction = null;
@@ -24981,7 +24976,7 @@ class Terms_conditions extends SvelteComponent {
24981
24976
  constructor(options) {
24982
24977
  super();
24983
24978
 
24984
- init(this, options, instance$j, create_fragment$i, safe_not_equal, {
24979
+ init(this, options, instance$k, create_fragment$j, safe_not_equal, {
24985
24980
  selfSubmitFunction: 5,
24986
24981
  stepMetadata: 6,
24987
24982
  style: 7,
@@ -25049,7 +25044,7 @@ function create_else_block$4(ctx) {
25049
25044
  }
25050
25045
 
25051
25046
  // (32:0) {#if callbackMessageType === 'info'}
25052
- function create_if_block$a(ctx) {
25047
+ function create_if_block$b(ctx) {
25053
25048
  let text_1;
25054
25049
  let current;
25055
25050
 
@@ -25138,12 +25133,12 @@ function create_default_slot$b(ctx) {
25138
25133
  };
25139
25134
  }
25140
25135
 
25141
- function create_fragment$h(ctx) {
25136
+ function create_fragment$i(ctx) {
25142
25137
  let current_block_type_index;
25143
25138
  let if_block;
25144
25139
  let if_block_anchor;
25145
25140
  let current;
25146
- const if_block_creators = [create_if_block$a, create_else_block$4];
25141
+ const if_block_creators = [create_if_block$b, create_else_block$4];
25147
25142
  const if_blocks = [];
25148
25143
 
25149
25144
  function select_block_type(ctx, dirty) {
@@ -25220,7 +25215,7 @@ function getCallbackMessage(messageType) {
25220
25215
  }
25221
25216
  }
25222
25217
 
25223
- function instance$i($$self, $$props, $$invalidate) {
25218
+ function instance$j($$self, $$props, $$invalidate) {
25224
25219
  const callbackMetadata = null;
25225
25220
  const selfSubmitFunction = null;
25226
25221
  const stepMetadata = null;
@@ -25260,7 +25255,7 @@ class Text_output extends SvelteComponent {
25260
25255
  constructor(options) {
25261
25256
  super();
25262
25257
 
25263
- init(this, options, instance$i, create_fragment$h, safe_not_equal, {
25258
+ init(this, options, instance$j, create_fragment$i, safe_not_equal, {
25264
25259
  callbackMetadata: 2,
25265
25260
  selfSubmitFunction: 3,
25266
25261
  stepMetadata: 4,
@@ -25288,7 +25283,7 @@ class Text_output extends SvelteComponent {
25288
25283
 
25289
25284
  /* src/lib/journey/callbacks/unknown/unknown.svelte generated by Svelte v3.59.2 */
25290
25285
 
25291
- function create_fragment$g(ctx) {
25286
+ function create_fragment$h(ctx) {
25292
25287
  let p;
25293
25288
 
25294
25289
  return {
@@ -25309,7 +25304,7 @@ function create_fragment$g(ctx) {
25309
25304
  };
25310
25305
  }
25311
25306
 
25312
- function instance$h($$self, $$props, $$invalidate) {
25307
+ function instance$i($$self, $$props, $$invalidate) {
25313
25308
  const callbackMetadata = null;
25314
25309
  const selfSubmitFunction = null;
25315
25310
  const stepMetadata = null;
@@ -25328,7 +25323,7 @@ class Unknown extends SvelteComponent {
25328
25323
  constructor(options) {
25329
25324
  super();
25330
25325
 
25331
- init(this, options, instance$h, create_fragment$g, safe_not_equal, {
25326
+ init(this, options, instance$i, create_fragment$h, safe_not_equal, {
25332
25327
  callbackMetadata: 1,
25333
25328
  selfSubmitFunction: 2,
25334
25329
  stepMetadata: 3,
@@ -25455,7 +25450,7 @@ function create_key_block$1(ctx) {
25455
25450
  };
25456
25451
  }
25457
25452
 
25458
- function create_fragment$f(ctx) {
25453
+ function create_fragment$g(ctx) {
25459
25454
  let previous_key = /*callback*/ ctx[0];
25460
25455
  let key_block_anchor;
25461
25456
  let current;
@@ -25500,7 +25495,7 @@ function create_fragment$f(ctx) {
25500
25495
  };
25501
25496
  }
25502
25497
 
25503
- function instance$g($$self, $$props, $$invalidate) {
25498
+ function instance$h($$self, $$props, $$invalidate) {
25504
25499
  const selfSubmitFunction = null;
25505
25500
  const stepMetadata = null;
25506
25501
  let { callback } = $$props;
@@ -25552,7 +25547,7 @@ class Validated_create_password extends SvelteComponent {
25552
25547
  constructor(options) {
25553
25548
  super();
25554
25549
 
25555
- init(this, options, instance$g, create_fragment$f, safe_not_equal, {
25550
+ init(this, options, instance$h, create_fragment$g, safe_not_equal, {
25556
25551
  selfSubmitFunction: 7,
25557
25552
  stepMetadata: 8,
25558
25553
  callback: 0,
@@ -25686,7 +25681,7 @@ function create_key_block(ctx) {
25686
25681
  };
25687
25682
  }
25688
25683
 
25689
- function create_fragment$e(ctx) {
25684
+ function create_fragment$f(ctx) {
25690
25685
  let previous_key = /*callback*/ ctx[0];
25691
25686
  let key_block_anchor;
25692
25687
  let current;
@@ -25731,7 +25726,7 @@ function create_fragment$e(ctx) {
25731
25726
  };
25732
25727
  }
25733
25728
 
25734
- function instance$f($$self, $$props, $$invalidate) {
25729
+ function instance$g($$self, $$props, $$invalidate) {
25735
25730
  const selfSubmitFunction = null;
25736
25731
  const stepMetadata = null;
25737
25732
  let { callback } = $$props;
@@ -25796,7 +25791,7 @@ class Validated_create_username extends SvelteComponent {
25796
25791
  constructor(options) {
25797
25792
  super();
25798
25793
 
25799
- init(this, options, instance$f, create_fragment$e, safe_not_equal, {
25794
+ init(this, options, instance$g, create_fragment$f, safe_not_equal, {
25800
25795
  selfSubmitFunction: 10,
25801
25796
  stepMetadata: 11,
25802
25797
  callback: 0,
@@ -25816,7 +25811,7 @@ class Validated_create_username extends SvelteComponent {
25816
25811
 
25817
25812
  /* src/lib/journey/callbacks/device-profile/device-profile.svelte generated by Svelte v3.59.2 */
25818
25813
 
25819
- function create_if_block$9(ctx) {
25814
+ function create_if_block$a(ctx) {
25820
25815
  let div;
25821
25816
  let spinner;
25822
25817
  let t;
@@ -25898,10 +25893,10 @@ function create_default_slot$8(ctx) {
25898
25893
  };
25899
25894
  }
25900
25895
 
25901
- function create_fragment$d(ctx) {
25896
+ function create_fragment$e(ctx) {
25902
25897
  let if_block_anchor;
25903
25898
  let current;
25904
- let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$9(ctx);
25899
+ let if_block = /*stepMetadata*/ ctx[0]?.derived.numOfCallbacks === 1 && create_if_block$a(ctx);
25905
25900
 
25906
25901
  return {
25907
25902
  c() {
@@ -25922,7 +25917,7 @@ function create_fragment$d(ctx) {
25922
25917
  transition_in(if_block, 1);
25923
25918
  }
25924
25919
  } else {
25925
- if_block = create_if_block$9(ctx);
25920
+ if_block = create_if_block$a(ctx);
25926
25921
  if_block.c();
25927
25922
  transition_in(if_block, 1);
25928
25923
  if_block.m(if_block_anchor.parentNode, if_block_anchor);
@@ -25953,7 +25948,7 @@ function create_fragment$d(ctx) {
25953
25948
  };
25954
25949
  }
25955
25950
 
25956
- function instance$e($$self, $$props, $$invalidate) {
25951
+ function instance$f($$self, $$props, $$invalidate) {
25957
25952
  let { callback } = $$props;
25958
25953
  let { callbackMetadata = null } = $$props;
25959
25954
  let { stepMetadata = null } = $$props;
@@ -25990,7 +25985,7 @@ class Device_profile extends SvelteComponent {
25990
25985
  constructor(options) {
25991
25986
  super();
25992
25987
 
25993
- init(this, options, instance$e, create_fragment$d, safe_not_equal, {
25988
+ init(this, options, instance$f, create_fragment$e, safe_not_equal, {
25994
25989
  callback: 3,
25995
25990
  callbackMetadata: 2,
25996
25991
  stepMetadata: 0,
@@ -25999,6 +25994,166 @@ class Device_profile extends SvelteComponent {
25999
25994
  }
26000
25995
  }
26001
25996
 
25997
+ /* src/lib/journey/callbacks/recaptcha/recaptcha.svelte generated by Svelte v3.59.2 */
25998
+
25999
+ function create_if_block$9(ctx) {
26000
+ let script;
26001
+ let script_src_value;
26002
+
26003
+ return {
26004
+ c() {
26005
+ script = element("script");
26006
+ if (!src_url_equal(script.src, script_src_value = /*recaptchaApi*/ ctx[1])) attr(script, "src", script_src_value);
26007
+ script.async = true;
26008
+ script.defer = true;
26009
+ },
26010
+ m(target, anchor) {
26011
+ insert(target, script, anchor);
26012
+ },
26013
+ p: noop,
26014
+ d(detaching) {
26015
+ if (detaching) detach(script);
26016
+ }
26017
+ };
26018
+ }
26019
+
26020
+ function create_fragment$d(ctx) {
26021
+ let t;
26022
+ let div;
26023
+ let if_block = /*recaptchaApi*/ ctx[1].length && create_if_block$9(ctx);
26024
+
26025
+ return {
26026
+ c() {
26027
+ if (if_block) if_block.c();
26028
+ t = space();
26029
+ div = element("div");
26030
+ attr(div, "id", "fr-recaptcha");
26031
+ attr(div, "class", `${/*recaptchaClass*/ ctx[2]} tw_flex-1 tw_w-full tw_input-spacing`);
26032
+ attr(div, "data-sitekey", /*siteKey*/ ctx[0]);
26033
+ attr(div, "data-expired-callback", "frHandleExpiredCallback");
26034
+ attr(div, "data-chalexpired-callback", "frHandleExpiredCallback");
26035
+ attr(div, "data-error-callback", "frHandleErrorCallback");
26036
+ attr(div, "data-callback", "frHandleCaptcha");
26037
+ },
26038
+ m(target, anchor) {
26039
+ if (if_block) if_block.m(target, anchor);
26040
+ insert(target, t, anchor);
26041
+ insert(target, div, anchor);
26042
+ },
26043
+ p(ctx, [dirty]) {
26044
+ if (/*recaptchaApi*/ ctx[1].length) if_block.p(ctx, dirty);
26045
+ },
26046
+ i: noop,
26047
+ o: noop,
26048
+ d(detaching) {
26049
+ if (if_block) if_block.d(detaching);
26050
+ if (detaching) detach(t);
26051
+ if (detaching) detach(div);
26052
+ }
26053
+ };
26054
+ }
26055
+
26056
+ function instance$e($$self, $$props, $$invalidate) {
26057
+ let { callback } = $$props;
26058
+ const selfSubmitFunction = null;
26059
+ const stepMetadata = null;
26060
+ const style = {};
26061
+ const siteKey = callback?.getSiteKey() ?? '';
26062
+ let recaptchaApi = `${callback?.getOutputByName('captchaApiUri', '') ?? ''}`;
26063
+
26064
+ /**
26065
+ * AM defaults the class name to g-captcha which is wrong
26066
+ * I dont think we should be manipulating the class here,
26067
+ * but the classname should be g-recaptcha for google
26068
+ */
26069
+ const recaptchaClass = callback?.getOutputByName('captchaDivClass', 'h-captcha') ?? 'h-captcha';
26070
+
26071
+ onMount(() => {
26072
+ window.frHandleCaptchaError = function handleCaptchaError() {
26073
+ callback?.setResult('');
26074
+
26075
+ if (recaptchaClass.startsWith('h')) {
26076
+ window.hcaptcha.render(recaptchaClass, {
26077
+ sitekey: siteKey,
26078
+ callback: 'frHandleCaptcha',
26079
+ 'expired-callback': 'frHandleExpiredCallback',
26080
+ 'chalexpired-callback': 'frHandleExpiredCallback',
26081
+ 'error-callback': 'frHandleErrorCallback'
26082
+ });
26083
+ } else {
26084
+ window.grecaptcha.render(recaptchaClass, {
26085
+ sitekey: siteKey,
26086
+ callback: window.frHandleCaptcha,
26087
+ 'expired-callback': window.frHandleExpiredCallback
26088
+ });
26089
+ }
26090
+ };
26091
+
26092
+ window.frHandleCaptcha = function handleCaptchaToken(token) {
26093
+ callback?.setResult(token);
26094
+ };
26095
+
26096
+ window.frHandleExpiredCallback = function handleExpiredCallback() {
26097
+ callback?.setResult('');
26098
+
26099
+ if (recaptchaClass.startsWith('h')) {
26100
+ window.hcaptcha.render(recaptchaClass, {
26101
+ sitekey: siteKey,
26102
+ callback: 'frHandleCaptcha',
26103
+ 'expired-callback': 'frHandleExpiredCallback',
26104
+ 'chalexpired-callback': 'frHandleExpiredCallback',
26105
+ 'error-callback': 'frHandleErrorCallback'
26106
+ });
26107
+ } else {
26108
+ window.grecaptcha.render(recaptchaClass, {
26109
+ sitekey: siteKey,
26110
+ callback: window.frHandleCaptcha,
26111
+ 'expired-callback': window.frHandleExpiredCallback
26112
+ });
26113
+ }
26114
+ };
26115
+ });
26116
+
26117
+ $$self.$$set = $$props => {
26118
+ if ('callback' in $$props) $$invalidate(3, callback = $$props.callback);
26119
+ };
26120
+
26121
+ return [
26122
+ siteKey,
26123
+ recaptchaApi,
26124
+ recaptchaClass,
26125
+ callback,
26126
+ selfSubmitFunction,
26127
+ stepMetadata,
26128
+ style
26129
+ ];
26130
+ }
26131
+
26132
+ class Recaptcha extends SvelteComponent {
26133
+ constructor(options) {
26134
+ super();
26135
+
26136
+ init(this, options, instance$e, create_fragment$d, safe_not_equal, {
26137
+ callback: 3,
26138
+ selfSubmitFunction: 4,
26139
+ stepMetadata: 5,
26140
+ style: 6
26141
+ });
26142
+ }
26143
+
26144
+ get selfSubmitFunction() {
26145
+ return this.$$.ctx[4];
26146
+ }
26147
+
26148
+ get stepMetadata() {
26149
+ return this.$$.ctx[5];
26150
+ }
26151
+
26152
+ get style() {
26153
+ return this.$$.ctx[6];
26154
+ }
26155
+ }
26156
+
26002
26157
  /* src/lib/journey/callbacks/metadata/metadata.svelte generated by Svelte v3.59.2 */
26003
26158
 
26004
26159
  function instance$d($$self, $$props, $$invalidate) {
@@ -26051,10 +26206,22 @@ function get_else_ctx(ctx) {
26051
26206
 
26052
26207
  const constants_0 = {
26053
26208
  .../*props*/ child_ctx[0],
26054
- callback: /*_FRCallback*/ child_ctx[20]
26209
+ callback: /*_FRCallback*/ child_ctx[21]
26210
+ };
26211
+
26212
+ child_ctx[22] = constants_0;
26213
+ return child_ctx;
26214
+ }
26215
+
26216
+ function get_if_ctx_18(ctx) {
26217
+ const child_ctx = ctx.slice();
26218
+
26219
+ const constants_0 = {
26220
+ .../*props*/ child_ctx[0],
26221
+ callback: /*_RecaptchaCallback*/ child_ctx[20]
26055
26222
  };
26056
26223
 
26057
- child_ctx[21] = constants_0;
26224
+ child_ctx[22] = constants_0;
26058
26225
  return child_ctx;
26059
26226
  }
26060
26227
 
@@ -26066,7 +26233,7 @@ function get_if_ctx_17(ctx) {
26066
26233
  callback: /*_MetadataCallback*/ child_ctx[18]
26067
26234
  };
26068
26235
 
26069
- child_ctx[21] = constants_0;
26236
+ child_ctx[22] = constants_0;
26070
26237
  return child_ctx;
26071
26238
  }
26072
26239
 
@@ -26078,7 +26245,7 @@ function get_if_ctx_16(ctx) {
26078
26245
  callback: /*_DeviceProfileCallback*/ child_ctx[19]
26079
26246
  };
26080
26247
 
26081
- child_ctx[21] = constants_0;
26248
+ child_ctx[22] = constants_0;
26082
26249
  return child_ctx;
26083
26250
  }
26084
26251
 
@@ -26090,7 +26257,7 @@ function get_if_ctx_15(ctx) {
26090
26257
  callback: /*_SuspendedTextOutputCallback*/ child_ctx[17]
26091
26258
  };
26092
26259
 
26093
- child_ctx[21] = constants_0;
26260
+ child_ctx[22] = constants_0;
26094
26261
  return child_ctx;
26095
26262
  }
26096
26263
 
@@ -26102,7 +26269,7 @@ function get_if_ctx_14(ctx) {
26102
26269
  callback: /*_TextOutputCallback*/ child_ctx[16]
26103
26270
  };
26104
26271
 
26105
- child_ctx[21] = constants_0;
26272
+ child_ctx[22] = constants_0;
26106
26273
  return child_ctx;
26107
26274
  }
26108
26275
 
@@ -26114,7 +26281,7 @@ function get_if_ctx_13(ctx) {
26114
26281
  callback: /*_TermsAndConditionsCallback*/ child_ctx[15]
26115
26282
  };
26116
26283
 
26117
- child_ctx[21] = constants_0;
26284
+ child_ctx[22] = constants_0;
26118
26285
  return child_ctx;
26119
26286
  }
26120
26287
 
@@ -26126,7 +26293,7 @@ function get_if_ctx_12(ctx) {
26126
26293
  callback: /*_ValidatedCreateUsernameCallback*/ child_ctx[14]
26127
26294
  };
26128
26295
 
26129
- child_ctx[21] = constants_0;
26296
+ child_ctx[22] = constants_0;
26130
26297
  return child_ctx;
26131
26298
  }
26132
26299
 
@@ -26138,7 +26305,7 @@ function get_if_ctx_11(ctx) {
26138
26305
  callback: /*_ValidatedCreatePasswordCallback*/ child_ctx[13]
26139
26306
  };
26140
26307
 
26141
- child_ctx[21] = constants_0;
26308
+ child_ctx[22] = constants_0;
26142
26309
  return child_ctx;
26143
26310
  }
26144
26311
 
@@ -26150,7 +26317,7 @@ function get_if_ctx_10(ctx) {
26150
26317
  callback: /*_StringAttributeInputCallback*/ child_ctx[12]
26151
26318
  };
26152
26319
 
26153
- child_ctx[21] = constants_0;
26320
+ child_ctx[22] = constants_0;
26154
26321
  return child_ctx;
26155
26322
  }
26156
26323
 
@@ -26162,7 +26329,7 @@ function get_if_ctx_9(ctx) {
26162
26329
  callback: /*_SelectIdPCallback*/ child_ctx[11]
26163
26330
  };
26164
26331
 
26165
- child_ctx[21] = constants_0;
26332
+ child_ctx[22] = constants_0;
26166
26333
  return child_ctx;
26167
26334
  }
26168
26335
 
@@ -26174,7 +26341,7 @@ function get_if_ctx_8(ctx) {
26174
26341
  callback: /*_RedirectCallback*/ child_ctx[10]
26175
26342
  };
26176
26343
 
26177
- child_ctx[21] = constants_0;
26344
+ child_ctx[22] = constants_0;
26178
26345
  return child_ctx;
26179
26346
  }
26180
26347
 
@@ -26186,7 +26353,7 @@ function get_if_ctx_7(ctx) {
26186
26353
  callback: /*_PollingWaitCallback*/ child_ctx[9]
26187
26354
  };
26188
26355
 
26189
- child_ctx[21] = constants_0;
26356
+ child_ctx[22] = constants_0;
26190
26357
  return child_ctx;
26191
26358
  }
26192
26359
 
@@ -26198,7 +26365,7 @@ function get_if_ctx_6(ctx) {
26198
26365
  callback: /*_PasswordCallback*/ child_ctx[8]
26199
26366
  };
26200
26367
 
26201
- child_ctx[21] = constants_0;
26368
+ child_ctx[22] = constants_0;
26202
26369
  return child_ctx;
26203
26370
  }
26204
26371
 
@@ -26210,7 +26377,7 @@ function get_if_ctx_5(ctx) {
26210
26377
  callback: /*_NameCallback*/ child_ctx[7]
26211
26378
  };
26212
26379
 
26213
- child_ctx[21] = constants_0;
26380
+ child_ctx[22] = constants_0;
26214
26381
  return child_ctx;
26215
26382
  }
26216
26383
 
@@ -26222,7 +26389,7 @@ function get_if_ctx_4(ctx) {
26222
26389
  callback: /*_KbaCreateCallback*/ child_ctx[6]
26223
26390
  };
26224
26391
 
26225
- child_ctx[21] = constants_0;
26392
+ child_ctx[22] = constants_0;
26226
26393
  return child_ctx;
26227
26394
  }
26228
26395
 
@@ -26234,7 +26401,7 @@ function get_if_ctx_3(ctx) {
26234
26401
  callback: /*_HiddenValueCallback*/ child_ctx[5]
26235
26402
  };
26236
26403
 
26237
- child_ctx[21] = constants_0;
26404
+ child_ctx[22] = constants_0;
26238
26405
  return child_ctx;
26239
26406
  }
26240
26407
 
@@ -26246,7 +26413,7 @@ function get_if_ctx_2(ctx) {
26246
26413
  callback: /*_ConfirmationCallback*/ child_ctx[4]
26247
26414
  };
26248
26415
 
26249
- child_ctx[21] = constants_0;
26416
+ child_ctx[22] = constants_0;
26250
26417
  return child_ctx;
26251
26418
  }
26252
26419
 
@@ -26258,7 +26425,7 @@ function get_if_ctx_1(ctx) {
26258
26425
  callback: /*_ChoiceCallback*/ child_ctx[3]
26259
26426
  };
26260
26427
 
26261
- child_ctx[21] = constants_0;
26428
+ child_ctx[22] = constants_0;
26262
26429
  return child_ctx;
26263
26430
  }
26264
26431
 
@@ -26270,15 +26437,15 @@ function get_if_ctx(ctx) {
26270
26437
  callback: /*_BooleanAttributeInputCallback*/ child_ctx[2]
26271
26438
  };
26272
26439
 
26273
- child_ctx[21] = constants_0;
26440
+ child_ctx[22] = constants_0;
26274
26441
  return child_ctx;
26275
26442
  }
26276
26443
 
26277
- // (220:0) {:else}
26444
+ // (231:0) {:else}
26278
26445
  function create_else_block$3(ctx) {
26279
26446
  let unknown;
26280
26447
  let current;
26281
- const unknown_spread_levels = [/*newProps*/ ctx[21]];
26448
+ const unknown_spread_levels = [/*newProps*/ ctx[22]];
26282
26449
  let unknown_props = {};
26283
26450
 
26284
26451
  for (let i = 0; i < unknown_spread_levels.length; i += 1) {
@@ -26296,8 +26463,8 @@ function create_else_block$3(ctx) {
26296
26463
  current = true;
26297
26464
  },
26298
26465
  p(ctx, dirty) {
26299
- const unknown_changes = (dirty & /*props, _FRCallback*/ 1048577)
26300
- ? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26466
+ const unknown_changes = (dirty & /*props, _FRCallback*/ 2097153)
26467
+ ? get_spread_update(unknown_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26301
26468
  : {};
26302
26469
 
26303
26470
  unknown.$set(unknown_changes);
@@ -26317,11 +26484,54 @@ function create_else_block$3(ctx) {
26317
26484
  };
26318
26485
  }
26319
26486
 
26320
- // (214:51)
26487
+ // (225:52)
26488
+ function create_if_block_18(ctx) {
26489
+ let recaptcha;
26490
+ let current;
26491
+ const recaptcha_spread_levels = [/*newProps*/ ctx[22]];
26492
+ let recaptcha_props = {};
26493
+
26494
+ for (let i = 0; i < recaptcha_spread_levels.length; i += 1) {
26495
+ recaptcha_props = assign(recaptcha_props, recaptcha_spread_levels[i]);
26496
+ }
26497
+
26498
+ recaptcha = new Recaptcha({ props: recaptcha_props });
26499
+
26500
+ return {
26501
+ c() {
26502
+ create_component(recaptcha.$$.fragment);
26503
+ },
26504
+ m(target, anchor) {
26505
+ mount_component(recaptcha, target, anchor);
26506
+ current = true;
26507
+ },
26508
+ p(ctx, dirty) {
26509
+ const recaptcha_changes = (dirty & /*props, _RecaptchaCallback*/ 1048577)
26510
+ ? get_spread_update(recaptcha_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26511
+ : {};
26512
+
26513
+ recaptcha.$set(recaptcha_changes);
26514
+ },
26515
+ i(local) {
26516
+ if (current) return;
26517
+ transition_in(recaptcha.$$.fragment, local);
26518
+ current = true;
26519
+ },
26520
+ o(local) {
26521
+ transition_out(recaptcha.$$.fragment, local);
26522
+ current = false;
26523
+ },
26524
+ d(detaching) {
26525
+ destroy_component(recaptcha, detaching);
26526
+ }
26527
+ };
26528
+ }
26529
+
26530
+ // (219:51)
26321
26531
  function create_if_block_17(ctx) {
26322
26532
  let metadata;
26323
26533
  let current;
26324
- const metadata_spread_levels = [/*newProps*/ ctx[21]];
26534
+ const metadata_spread_levels = [/*newProps*/ ctx[22]];
26325
26535
  let metadata_props = {};
26326
26536
 
26327
26537
  for (let i = 0; i < metadata_spread_levels.length; i += 1) {
@@ -26340,7 +26550,7 @@ function create_if_block_17(ctx) {
26340
26550
  },
26341
26551
  p(ctx, dirty) {
26342
26552
  const metadata_changes = (dirty & /*props, _MetadataCallback*/ 262145)
26343
- ? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26553
+ ? get_spread_update(metadata_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26344
26554
  : {};
26345
26555
 
26346
26556
  metadata.$set(metadata_changes);
@@ -26360,11 +26570,11 @@ function create_if_block_17(ctx) {
26360
26570
  };
26361
26571
  }
26362
26572
 
26363
- // (208:56)
26573
+ // (213:56)
26364
26574
  function create_if_block_16(ctx) {
26365
26575
  let deviceprofile;
26366
26576
  let current;
26367
- const deviceprofile_spread_levels = [/*newProps*/ ctx[21]];
26577
+ const deviceprofile_spread_levels = [/*newProps*/ ctx[22]];
26368
26578
  let deviceprofile_props = {};
26369
26579
 
26370
26580
  for (let i = 0; i < deviceprofile_spread_levels.length; i += 1) {
@@ -26383,7 +26593,7 @@ function create_if_block_16(ctx) {
26383
26593
  },
26384
26594
  p(ctx, dirty) {
26385
26595
  const deviceprofile_changes = (dirty & /*props, _DeviceProfileCallback*/ 524289)
26386
- ? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26596
+ ? get_spread_update(deviceprofile_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26387
26597
  : {};
26388
26598
 
26389
26599
  deviceprofile.$set(deviceprofile_changes);
@@ -26403,11 +26613,11 @@ function create_if_block_16(ctx) {
26403
26613
  };
26404
26614
  }
26405
26615
 
26406
- // (202:62)
26616
+ // (207:62)
26407
26617
  function create_if_block_15(ctx) {
26408
26618
  let textoutput;
26409
26619
  let current;
26410
- const textoutput_spread_levels = [/*newProps*/ ctx[21]];
26620
+ const textoutput_spread_levels = [/*newProps*/ ctx[22]];
26411
26621
  let textoutput_props = {};
26412
26622
 
26413
26623
  for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
@@ -26426,7 +26636,7 @@ function create_if_block_15(ctx) {
26426
26636
  },
26427
26637
  p(ctx, dirty) {
26428
26638
  const textoutput_changes = (dirty & /*props, _SuspendedTextOutputCallback*/ 131073)
26429
- ? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26639
+ ? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26430
26640
  : {};
26431
26641
 
26432
26642
  textoutput.$set(textoutput_changes);
@@ -26446,11 +26656,11 @@ function create_if_block_15(ctx) {
26446
26656
  };
26447
26657
  }
26448
26658
 
26449
- // (196:53)
26659
+ // (201:53)
26450
26660
  function create_if_block_14(ctx) {
26451
26661
  let textoutput;
26452
26662
  let current;
26453
- const textoutput_spread_levels = [/*newProps*/ ctx[21]];
26663
+ const textoutput_spread_levels = [/*newProps*/ ctx[22]];
26454
26664
  let textoutput_props = {};
26455
26665
 
26456
26666
  for (let i = 0; i < textoutput_spread_levels.length; i += 1) {
@@ -26469,7 +26679,7 @@ function create_if_block_14(ctx) {
26469
26679
  },
26470
26680
  p(ctx, dirty) {
26471
26681
  const textoutput_changes = (dirty & /*props, _TextOutputCallback*/ 65537)
26472
- ? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26682
+ ? get_spread_update(textoutput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26473
26683
  : {};
26474
26684
 
26475
26685
  textoutput.$set(textoutput_changes);
@@ -26489,11 +26699,11 @@ function create_if_block_14(ctx) {
26489
26699
  };
26490
26700
  }
26491
26701
 
26492
- // (190:61)
26702
+ // (195:61)
26493
26703
  function create_if_block_13(ctx) {
26494
26704
  let termsconditions;
26495
26705
  let current;
26496
- const termsconditions_spread_levels = [/*newProps*/ ctx[21]];
26706
+ const termsconditions_spread_levels = [/*newProps*/ ctx[22]];
26497
26707
  let termsconditions_props = {};
26498
26708
 
26499
26709
  for (let i = 0; i < termsconditions_spread_levels.length; i += 1) {
@@ -26512,7 +26722,7 @@ function create_if_block_13(ctx) {
26512
26722
  },
26513
26723
  p(ctx, dirty) {
26514
26724
  const termsconditions_changes = (dirty & /*props, _TermsAndConditionsCallback*/ 32769)
26515
- ? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26725
+ ? get_spread_update(termsconditions_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26516
26726
  : {};
26517
26727
 
26518
26728
  termsconditions.$set(termsconditions_changes);
@@ -26532,11 +26742,11 @@ function create_if_block_13(ctx) {
26532
26742
  };
26533
26743
  }
26534
26744
 
26535
- // (184:66)
26745
+ // (189:66)
26536
26746
  function create_if_block_12(ctx) {
26537
26747
  let validatedcreateusername;
26538
26748
  let current;
26539
- const validatedcreateusername_spread_levels = [/*newProps*/ ctx[21]];
26749
+ const validatedcreateusername_spread_levels = [/*newProps*/ ctx[22]];
26540
26750
  let validatedcreateusername_props = {};
26541
26751
 
26542
26752
  for (let i = 0; i < validatedcreateusername_spread_levels.length; i += 1) {
@@ -26555,7 +26765,7 @@ function create_if_block_12(ctx) {
26555
26765
  },
26556
26766
  p(ctx, dirty) {
26557
26767
  const validatedcreateusername_changes = (dirty & /*props, _ValidatedCreateUsernameCallback*/ 16385)
26558
- ? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26768
+ ? get_spread_update(validatedcreateusername_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26559
26769
  : {};
26560
26770
 
26561
26771
  validatedcreateusername.$set(validatedcreateusername_changes);
@@ -26575,11 +26785,11 @@ function create_if_block_12(ctx) {
26575
26785
  };
26576
26786
  }
26577
26787
 
26578
- // (178:66)
26788
+ // (183:66)
26579
26789
  function create_if_block_11(ctx) {
26580
26790
  let validatedcreatepassword;
26581
26791
  let current;
26582
- const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[21]];
26792
+ const validatedcreatepassword_spread_levels = [/*newProps*/ ctx[22]];
26583
26793
  let validatedcreatepassword_props = {};
26584
26794
 
26585
26795
  for (let i = 0; i < validatedcreatepassword_spread_levels.length; i += 1) {
@@ -26598,7 +26808,7 @@ function create_if_block_11(ctx) {
26598
26808
  },
26599
26809
  p(ctx, dirty) {
26600
26810
  const validatedcreatepassword_changes = (dirty & /*props, _ValidatedCreatePasswordCallback*/ 8193)
26601
- ? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26811
+ ? get_spread_update(validatedcreatepassword_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26602
26812
  : {};
26603
26813
 
26604
26814
  validatedcreatepassword.$set(validatedcreatepassword_changes);
@@ -26618,11 +26828,11 @@ function create_if_block_11(ctx) {
26618
26828
  };
26619
26829
  }
26620
26830
 
26621
- // (172:63)
26831
+ // (177:63)
26622
26832
  function create_if_block_10(ctx) {
26623
26833
  let stringattributeinput;
26624
26834
  let current;
26625
- const stringattributeinput_spread_levels = [/*newProps*/ ctx[21]];
26835
+ const stringattributeinput_spread_levels = [/*newProps*/ ctx[22]];
26626
26836
  let stringattributeinput_props = {};
26627
26837
 
26628
26838
  for (let i = 0; i < stringattributeinput_spread_levels.length; i += 1) {
@@ -26641,7 +26851,7 @@ function create_if_block_10(ctx) {
26641
26851
  },
26642
26852
  p(ctx, dirty) {
26643
26853
  const stringattributeinput_changes = (dirty & /*props, _StringAttributeInputCallback*/ 4097)
26644
- ? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26854
+ ? get_spread_update(stringattributeinput_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26645
26855
  : {};
26646
26856
 
26647
26857
  stringattributeinput.$set(stringattributeinput_changes);
@@ -26661,11 +26871,11 @@ function create_if_block_10(ctx) {
26661
26871
  };
26662
26872
  }
26663
26873
 
26664
- // (166:52)
26874
+ // (171:52)
26665
26875
  function create_if_block_9(ctx) {
26666
26876
  let selectidp;
26667
26877
  let current;
26668
- const selectidp_spread_levels = [/*newProps*/ ctx[21]];
26878
+ const selectidp_spread_levels = [/*newProps*/ ctx[22]];
26669
26879
  let selectidp_props = {};
26670
26880
 
26671
26881
  for (let i = 0; i < selectidp_spread_levels.length; i += 1) {
@@ -26684,7 +26894,7 @@ function create_if_block_9(ctx) {
26684
26894
  },
26685
26895
  p(ctx, dirty) {
26686
26896
  const selectidp_changes = (dirty & /*props, _SelectIdPCallback*/ 2049)
26687
- ? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26897
+ ? get_spread_update(selectidp_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26688
26898
  : {};
26689
26899
 
26690
26900
  selectidp.$set(selectidp_changes);
@@ -26704,11 +26914,11 @@ function create_if_block_9(ctx) {
26704
26914
  };
26705
26915
  }
26706
26916
 
26707
- // (160:51)
26917
+ // (165:51)
26708
26918
  function create_if_block_8(ctx) {
26709
26919
  let redirect;
26710
26920
  let current;
26711
- const redirect_spread_levels = [/*newProps*/ ctx[21]];
26921
+ const redirect_spread_levels = [/*newProps*/ ctx[22]];
26712
26922
  let redirect_props = {};
26713
26923
 
26714
26924
  for (let i = 0; i < redirect_spread_levels.length; i += 1) {
@@ -26727,7 +26937,7 @@ function create_if_block_8(ctx) {
26727
26937
  },
26728
26938
  p(ctx, dirty) {
26729
26939
  const redirect_changes = (dirty & /*props, _RedirectCallback*/ 1025)
26730
- ? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26940
+ ? get_spread_update(redirect_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26731
26941
  : {};
26732
26942
 
26733
26943
  redirect.$set(redirect_changes);
@@ -26747,11 +26957,11 @@ function create_if_block_8(ctx) {
26747
26957
  };
26748
26958
  }
26749
26959
 
26750
- // (154:54)
26960
+ // (159:54)
26751
26961
  function create_if_block_7(ctx) {
26752
26962
  let pollingwait;
26753
26963
  let current;
26754
- const pollingwait_spread_levels = [/*newProps*/ ctx[21]];
26964
+ const pollingwait_spread_levels = [/*newProps*/ ctx[22]];
26755
26965
  let pollingwait_props = {};
26756
26966
 
26757
26967
  for (let i = 0; i < pollingwait_spread_levels.length; i += 1) {
@@ -26770,7 +26980,7 @@ function create_if_block_7(ctx) {
26770
26980
  },
26771
26981
  p(ctx, dirty) {
26772
26982
  const pollingwait_changes = (dirty & /*props, _PollingWaitCallback*/ 513)
26773
- ? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
26983
+ ? get_spread_update(pollingwait_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26774
26984
  : {};
26775
26985
 
26776
26986
  pollingwait.$set(pollingwait_changes);
@@ -26790,11 +27000,11 @@ function create_if_block_7(ctx) {
26790
27000
  };
26791
27001
  }
26792
27002
 
26793
- // (148:51)
27003
+ // (153:51)
26794
27004
  function create_if_block_6(ctx) {
26795
27005
  let password;
26796
27006
  let current;
26797
- const password_spread_levels = [/*newProps*/ ctx[21]];
27007
+ const password_spread_levels = [/*newProps*/ ctx[22]];
26798
27008
  let password_props = {};
26799
27009
 
26800
27010
  for (let i = 0; i < password_spread_levels.length; i += 1) {
@@ -26813,7 +27023,7 @@ function create_if_block_6(ctx) {
26813
27023
  },
26814
27024
  p(ctx, dirty) {
26815
27025
  const password_changes = (dirty & /*props, _PasswordCallback*/ 257)
26816
- ? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27026
+ ? get_spread_update(password_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26817
27027
  : {};
26818
27028
 
26819
27029
  password.$set(password_changes);
@@ -26833,11 +27043,11 @@ function create_if_block_6(ctx) {
26833
27043
  };
26834
27044
  }
26835
27045
 
26836
- // (142:47)
27046
+ // (147:47)
26837
27047
  function create_if_block_5(ctx) {
26838
27048
  let name;
26839
27049
  let current;
26840
- const name_spread_levels = [/*newProps*/ ctx[21]];
27050
+ const name_spread_levels = [/*newProps*/ ctx[22]];
26841
27051
  let name_props = {};
26842
27052
 
26843
27053
  for (let i = 0; i < name_spread_levels.length; i += 1) {
@@ -26856,7 +27066,7 @@ function create_if_block_5(ctx) {
26856
27066
  },
26857
27067
  p(ctx, dirty) {
26858
27068
  const name_changes = (dirty & /*props, _NameCallback*/ 129)
26859
- ? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27069
+ ? get_spread_update(name_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26860
27070
  : {};
26861
27071
 
26862
27072
  name.$set(name_changes);
@@ -26876,11 +27086,11 @@ function create_if_block_5(ctx) {
26876
27086
  };
26877
27087
  }
26878
27088
 
26879
- // (136:52)
27089
+ // (141:52)
26880
27090
  function create_if_block_4$1(ctx) {
26881
27091
  let kbacreate;
26882
27092
  let current;
26883
- const kbacreate_spread_levels = [/*newProps*/ ctx[21]];
27093
+ const kbacreate_spread_levels = [/*newProps*/ ctx[22]];
26884
27094
  let kbacreate_props = {};
26885
27095
 
26886
27096
  for (let i = 0; i < kbacreate_spread_levels.length; i += 1) {
@@ -26899,7 +27109,7 @@ function create_if_block_4$1(ctx) {
26899
27109
  },
26900
27110
  p(ctx, dirty) {
26901
27111
  const kbacreate_changes = (dirty & /*props, _KbaCreateCallback*/ 65)
26902
- ? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27112
+ ? get_spread_update(kbacreate_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26903
27113
  : {};
26904
27114
 
26905
27115
  kbacreate.$set(kbacreate_changes);
@@ -26919,11 +27129,11 @@ function create_if_block_4$1(ctx) {
26919
27129
  };
26920
27130
  }
26921
27131
 
26922
- // (130:54)
27132
+ // (135:54)
26923
27133
  function create_if_block_3$4(ctx) {
26924
27134
  let hiddenvalue;
26925
27135
  let current;
26926
- const hiddenvalue_spread_levels = [/*newProps*/ ctx[21]];
27136
+ const hiddenvalue_spread_levels = [/*newProps*/ ctx[22]];
26927
27137
  let hiddenvalue_props = {};
26928
27138
 
26929
27139
  for (let i = 0; i < hiddenvalue_spread_levels.length; i += 1) {
@@ -26942,7 +27152,7 @@ function create_if_block_3$4(ctx) {
26942
27152
  },
26943
27153
  p(ctx, dirty) {
26944
27154
  const hiddenvalue_changes = (dirty & /*props, _HiddenValueCallback*/ 33)
26945
- ? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27155
+ ? get_spread_update(hiddenvalue_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26946
27156
  : {};
26947
27157
 
26948
27158
  hiddenvalue.$set(hiddenvalue_changes);
@@ -26962,11 +27172,11 @@ function create_if_block_3$4(ctx) {
26962
27172
  };
26963
27173
  }
26964
27174
 
26965
- // (124:55)
27175
+ // (129:55)
26966
27176
  function create_if_block_2$6(ctx) {
26967
27177
  let confirmation;
26968
27178
  let current;
26969
- const confirmation_spread_levels = [/*newProps*/ ctx[21]];
27179
+ const confirmation_spread_levels = [/*newProps*/ ctx[22]];
26970
27180
  let confirmation_props = {};
26971
27181
 
26972
27182
  for (let i = 0; i < confirmation_spread_levels.length; i += 1) {
@@ -26985,7 +27195,7 @@ function create_if_block_2$6(ctx) {
26985
27195
  },
26986
27196
  p(ctx, dirty) {
26987
27197
  const confirmation_changes = (dirty & /*props, _ConfirmationCallback*/ 17)
26988
- ? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27198
+ ? get_spread_update(confirmation_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
26989
27199
  : {};
26990
27200
 
26991
27201
  confirmation.$set(confirmation_changes);
@@ -27005,11 +27215,11 @@ function create_if_block_2$6(ctx) {
27005
27215
  };
27006
27216
  }
27007
27217
 
27008
- // (118:49)
27218
+ // (123:49)
27009
27219
  function create_if_block_1$6(ctx) {
27010
27220
  let choice;
27011
27221
  let current;
27012
- const choice_spread_levels = [/*newProps*/ ctx[21]];
27222
+ const choice_spread_levels = [/*newProps*/ ctx[22]];
27013
27223
  let choice_props = {};
27014
27224
 
27015
27225
  for (let i = 0; i < choice_spread_levels.length; i += 1) {
@@ -27028,7 +27238,7 @@ function create_if_block_1$6(ctx) {
27028
27238
  },
27029
27239
  p(ctx, dirty) {
27030
27240
  const choice_changes = (dirty & /*props, _ChoiceCallback*/ 9)
27031
- ? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27241
+ ? get_spread_update(choice_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
27032
27242
  : {};
27033
27243
 
27034
27244
  choice.$set(choice_changes);
@@ -27048,11 +27258,11 @@ function create_if_block_1$6(ctx) {
27048
27258
  };
27049
27259
  }
27050
27260
 
27051
- // (112:0) {#if cbType === CallbackType.BooleanAttributeInputCallback}
27261
+ // (117:0) {#if cbType === CallbackType.BooleanAttributeInputCallback}
27052
27262
  function create_if_block$8(ctx) {
27053
27263
  let boolean;
27054
27264
  let current;
27055
- const boolean_spread_levels = [/*newProps*/ ctx[21]];
27265
+ const boolean_spread_levels = [/*newProps*/ ctx[22]];
27056
27266
  let boolean_props = {};
27057
27267
 
27058
27268
  for (let i = 0; i < boolean_spread_levels.length; i += 1) {
@@ -27071,7 +27281,7 @@ function create_if_block$8(ctx) {
27071
27281
  },
27072
27282
  p(ctx, dirty) {
27073
27283
  const boolean_changes = (dirty & /*props, _BooleanAttributeInputCallback*/ 5)
27074
- ? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[21])])
27284
+ ? get_spread_update(boolean_spread_levels, [get_spread_object(/*newProps*/ ctx[22])])
27075
27285
  : {};
27076
27286
 
27077
27287
  boolean.$set(boolean_changes);
@@ -27116,6 +27326,7 @@ function create_fragment$c(ctx) {
27116
27326
  create_if_block_15,
27117
27327
  create_if_block_16,
27118
27328
  create_if_block_17,
27329
+ create_if_block_18,
27119
27330
  create_else_block$3
27120
27331
  ];
27121
27332
 
@@ -27140,7 +27351,8 @@ function create_fragment$c(ctx) {
27140
27351
  if (/*cbType*/ ctx[1] === CallbackType.SuspendedTextOutputCallback) return 15;
27141
27352
  if (/*cbType*/ ctx[1] === CallbackType.DeviceProfileCallback) return 16;
27142
27353
  if (/*cbType*/ ctx[1] === CallbackType.MetadataCallback) return 17;
27143
- return 18;
27354
+ if (/*cbType*/ ctx[1] === CallbackType.ReCaptchaCallback) return 18;
27355
+ return 19;
27144
27356
  }
27145
27357
 
27146
27358
  function select_block_ctx(ctx, index) {
@@ -27162,6 +27374,7 @@ function create_fragment$c(ctx) {
27162
27374
  if (index === 15) return get_if_ctx_15(ctx);
27163
27375
  if (index === 16) return get_if_ctx_16(ctx);
27164
27376
  if (index === 17) return get_if_ctx_17(ctx);
27377
+ if (index === 18) return get_if_ctx_18(ctx);
27165
27378
  return get_else_ctx(ctx);
27166
27379
  }
27167
27380
 
@@ -27242,6 +27455,7 @@ function instance$c($$self, $$props, $$invalidate) {
27242
27455
  let _SuspendedTextOutputCallback;
27243
27456
  let _MetadataCallback;
27244
27457
  let _DeviceProfileCallback;
27458
+ let _RecaptchaCallback;
27245
27459
  let _FRCallback;
27246
27460
 
27247
27461
  $$self.$$set = $$props => {
@@ -27272,6 +27486,9 @@ function instance$c($$self, $$props, $$invalidate) {
27272
27486
  case CallbackType.NameCallback:
27273
27487
  $$invalidate(7, _NameCallback = props.callback);
27274
27488
  break;
27489
+ case CallbackType.ReCaptchaCallback:
27490
+ $$invalidate(20, _RecaptchaCallback = props.callback);
27491
+ break;
27275
27492
  case CallbackType.PasswordCallback:
27276
27493
  $$invalidate(8, _PasswordCallback = props.callback);
27277
27494
  break;
@@ -27309,7 +27526,7 @@ function instance$c($$self, $$props, $$invalidate) {
27309
27526
  $$invalidate(18, _MetadataCallback = props.callback);
27310
27527
  break;
27311
27528
  default:
27312
- $$invalidate(20, _FRCallback = props.callback);
27529
+ $$invalidate(21, _FRCallback = props.callback);
27313
27530
  }
27314
27531
  }
27315
27532
  }
@@ -27336,6 +27553,7 @@ function instance$c($$self, $$props, $$invalidate) {
27336
27553
  _SuspendedTextOutputCallback,
27337
27554
  _MetadataCallback,
27338
27555
  _DeviceProfileCallback,
27556
+ _RecaptchaCallback,
27339
27557
  _FRCallback
27340
27558
  ];
27341
27559
  }