@plaidev/karte-action-sdk 1.1.238-28698010.a9ad3193 → 1.1.238-28698168.190b390b
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/dist/hydrate/index.es.js +29 -35
- package/dist/index.es.js +23 -26
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -15652,11 +15652,10 @@ function create_if_block_2(ctx) {
|
|
15652
15652
|
|
15653
15653
|
// (267:0) {#if visible}
|
15654
15654
|
function create_if_block(ctx) {
|
15655
|
-
let
|
15655
|
+
let div;
|
15656
15656
|
let t;
|
15657
|
-
let
|
15658
|
-
let
|
15659
|
-
let div1_intro;
|
15657
|
+
let div_class_value;
|
15658
|
+
let div_intro;
|
15660
15659
|
let current;
|
15661
15660
|
let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
|
15662
15661
|
const default_slot_template = /*#slots*/ ctx[30].default;
|
@@ -15664,48 +15663,43 @@ function create_if_block(ctx) {
|
|
15664
15663
|
|
15665
15664
|
return {
|
15666
15665
|
c() {
|
15667
|
-
|
15666
|
+
div = element("div");
|
15668
15667
|
if (if_block) if_block.c();
|
15669
15668
|
t = space();
|
15670
|
-
div0 = element("div");
|
15671
15669
|
if (default_slot) default_slot.c();
|
15672
15670
|
this.h();
|
15673
15671
|
},
|
15674
15672
|
l(nodes) {
|
15675
|
-
|
15673
|
+
div = claim_element(nodes, "DIV", {
|
15676
15674
|
class: true,
|
15677
15675
|
role: true,
|
15678
15676
|
"aria-modal": true,
|
15679
15677
|
style: true
|
15680
15678
|
});
|
15681
15679
|
|
15682
|
-
var
|
15683
|
-
if (if_block) if_block.l(
|
15684
|
-
t = claim_space(
|
15685
|
-
|
15686
|
-
|
15687
|
-
if (default_slot) default_slot.l(div0_nodes);
|
15688
|
-
div0_nodes.forEach(detach);
|
15689
|
-
div1_nodes.forEach(detach);
|
15680
|
+
var div_nodes = children(div);
|
15681
|
+
if (if_block) if_block.l(div_nodes);
|
15682
|
+
t = claim_space(div_nodes);
|
15683
|
+
if (default_slot) default_slot.l(div_nodes);
|
15684
|
+
div_nodes.forEach(detach);
|
15690
15685
|
this.h();
|
15691
15686
|
},
|
15692
15687
|
h() {
|
15693
|
-
attr(
|
15694
|
-
attr(
|
15695
|
-
attr(
|
15696
|
-
attr(
|
15688
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
|
15689
|
+
attr(div, "role", "dialog");
|
15690
|
+
attr(div, "aria-modal", "true");
|
15691
|
+
attr(div, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
|
15697
15692
|
},
|
15698
15693
|
m(target, anchor) {
|
15699
|
-
insert_hydration(target,
|
15700
|
-
if (if_block) if_block.m(
|
15701
|
-
append_hydration(
|
15702
|
-
append_hydration(div1, div0);
|
15694
|
+
insert_hydration(target, div, anchor);
|
15695
|
+
if (if_block) if_block.m(div, null);
|
15696
|
+
append_hydration(div, t);
|
15703
15697
|
|
15704
15698
|
if (default_slot) {
|
15705
|
-
default_slot.m(
|
15699
|
+
default_slot.m(div, null);
|
15706
15700
|
}
|
15707
15701
|
|
15708
|
-
/*
|
15702
|
+
/*div_binding*/ ctx[31](div);
|
15709
15703
|
current = true;
|
15710
15704
|
},
|
15711
15705
|
p(new_ctx, dirty) {
|
@@ -15722,7 +15716,7 @@ function create_if_block(ctx) {
|
|
15722
15716
|
if_block = create_if_block_1(ctx);
|
15723
15717
|
if_block.c();
|
15724
15718
|
transition_in(if_block, 1);
|
15725
|
-
if_block.m(
|
15719
|
+
if_block.m(div, t);
|
15726
15720
|
}
|
15727
15721
|
} else if (if_block) {
|
15728
15722
|
group_outros();
|
@@ -15749,8 +15743,8 @@ function create_if_block(ctx) {
|
|
15749
15743
|
}
|
15750
15744
|
}
|
15751
15745
|
|
15752
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 1 &&
|
15753
|
-
attr(
|
15746
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
|
15747
|
+
attr(div, "class", div_class_value);
|
15754
15748
|
}
|
15755
15749
|
},
|
15756
15750
|
i(local) {
|
@@ -15758,14 +15752,14 @@ function create_if_block(ctx) {
|
|
15758
15752
|
transition_in(if_block);
|
15759
15753
|
transition_in(default_slot, local);
|
15760
15754
|
|
15761
|
-
if (!
|
15755
|
+
if (!div_intro) {
|
15762
15756
|
add_render_callback(() => {
|
15763
|
-
|
15757
|
+
div_intro = create_in_transition(div, customAnimation, {
|
15764
15758
|
transforms: /*transforms*/ ctx[6],
|
15765
15759
|
animationStyle: /*animation*/ ctx[1]
|
15766
15760
|
});
|
15767
15761
|
|
15768
|
-
|
15762
|
+
div_intro.start();
|
15769
15763
|
});
|
15770
15764
|
}
|
15771
15765
|
|
@@ -15777,10 +15771,10 @@ function create_if_block(ctx) {
|
|
15777
15771
|
current = false;
|
15778
15772
|
},
|
15779
15773
|
d(detaching) {
|
15780
|
-
if (detaching) detach(
|
15774
|
+
if (detaching) detach(div);
|
15781
15775
|
if (if_block) if_block.d();
|
15782
15776
|
if (default_slot) default_slot.d(detaching);
|
15783
|
-
/*
|
15777
|
+
/*div_binding*/ ctx[31](null);
|
15784
15778
|
}
|
15785
15779
|
};
|
15786
15780
|
}
|
@@ -16019,7 +16013,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
16019
16013
|
|
16020
16014
|
onDestroy$1(() => setPreviousFocus());
|
16021
16015
|
|
16022
|
-
function
|
16016
|
+
function div_binding($$value) {
|
16023
16017
|
binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
16024
16018
|
modal = $$value;
|
16025
16019
|
$$invalidate(10, modal);
|
@@ -16239,7 +16233,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
16239
16233
|
close,
|
16240
16234
|
$$scope,
|
16241
16235
|
slots,
|
16242
|
-
|
16236
|
+
div_binding
|
16243
16237
|
];
|
16244
16238
|
}
|
16245
16239
|
|
package/dist/index.es.js
CHANGED
@@ -14484,11 +14484,10 @@ function create_if_block_2(ctx) {
|
|
14484
14484
|
|
14485
14485
|
// (267:0) {#if visible}
|
14486
14486
|
function create_if_block(ctx) {
|
14487
|
-
let
|
14487
|
+
let div;
|
14488
14488
|
let t;
|
14489
|
-
let
|
14490
|
-
let
|
14491
|
-
let div1_intro;
|
14489
|
+
let div_class_value;
|
14490
|
+
let div_intro;
|
14492
14491
|
let current;
|
14493
14492
|
let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
|
14494
14493
|
const default_slot_template = /*#slots*/ ctx[30].default;
|
@@ -14496,27 +14495,25 @@ function create_if_block(ctx) {
|
|
14496
14495
|
|
14497
14496
|
return {
|
14498
14497
|
c() {
|
14499
|
-
|
14498
|
+
div = element("div");
|
14500
14499
|
if (if_block) if_block.c();
|
14501
14500
|
t = space();
|
14502
|
-
div0 = element("div");
|
14503
14501
|
if (default_slot) default_slot.c();
|
14504
|
-
attr(
|
14505
|
-
attr(
|
14506
|
-
attr(
|
14507
|
-
attr(
|
14502
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
|
14503
|
+
attr(div, "role", "dialog");
|
14504
|
+
attr(div, "aria-modal", "true");
|
14505
|
+
attr(div, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
|
14508
14506
|
},
|
14509
14507
|
m(target, anchor) {
|
14510
|
-
insert(target,
|
14511
|
-
if (if_block) if_block.m(
|
14512
|
-
append(
|
14513
|
-
append(div1, div0);
|
14508
|
+
insert(target, div, anchor);
|
14509
|
+
if (if_block) if_block.m(div, null);
|
14510
|
+
append(div, t);
|
14514
14511
|
|
14515
14512
|
if (default_slot) {
|
14516
|
-
default_slot.m(
|
14513
|
+
default_slot.m(div, null);
|
14517
14514
|
}
|
14518
14515
|
|
14519
|
-
/*
|
14516
|
+
/*div_binding*/ ctx[31](div);
|
14520
14517
|
current = true;
|
14521
14518
|
},
|
14522
14519
|
p(new_ctx, dirty) {
|
@@ -14533,7 +14530,7 @@ function create_if_block(ctx) {
|
|
14533
14530
|
if_block = create_if_block_1(ctx);
|
14534
14531
|
if_block.c();
|
14535
14532
|
transition_in(if_block, 1);
|
14536
|
-
if_block.m(
|
14533
|
+
if_block.m(div, t);
|
14537
14534
|
}
|
14538
14535
|
} else if (if_block) {
|
14539
14536
|
group_outros();
|
@@ -14560,8 +14557,8 @@ function create_if_block(ctx) {
|
|
14560
14557
|
}
|
14561
14558
|
}
|
14562
14559
|
|
14563
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 1 &&
|
14564
|
-
attr(
|
14560
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
|
14561
|
+
attr(div, "class", div_class_value);
|
14565
14562
|
}
|
14566
14563
|
},
|
14567
14564
|
i(local) {
|
@@ -14569,14 +14566,14 @@ function create_if_block(ctx) {
|
|
14569
14566
|
transition_in(if_block);
|
14570
14567
|
transition_in(default_slot, local);
|
14571
14568
|
|
14572
|
-
if (!
|
14569
|
+
if (!div_intro) {
|
14573
14570
|
add_render_callback(() => {
|
14574
|
-
|
14571
|
+
div_intro = create_in_transition(div, customAnimation, {
|
14575
14572
|
transforms: /*transforms*/ ctx[6],
|
14576
14573
|
animationStyle: /*animation*/ ctx[1]
|
14577
14574
|
});
|
14578
14575
|
|
14579
|
-
|
14576
|
+
div_intro.start();
|
14580
14577
|
});
|
14581
14578
|
}
|
14582
14579
|
|
@@ -14588,10 +14585,10 @@ function create_if_block(ctx) {
|
|
14588
14585
|
current = false;
|
14589
14586
|
},
|
14590
14587
|
d(detaching) {
|
14591
|
-
if (detaching) detach(
|
14588
|
+
if (detaching) detach(div);
|
14592
14589
|
if (if_block) if_block.d();
|
14593
14590
|
if (default_slot) default_slot.d(detaching);
|
14594
|
-
/*
|
14591
|
+
/*div_binding*/ ctx[31](null);
|
14595
14592
|
}
|
14596
14593
|
};
|
14597
14594
|
}
|
@@ -14814,7 +14811,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
14814
14811
|
|
14815
14812
|
onDestroy$1(() => setPreviousFocus());
|
14816
14813
|
|
14817
|
-
function
|
14814
|
+
function div_binding($$value) {
|
14818
14815
|
binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
14819
14816
|
modal = $$value;
|
14820
14817
|
$$invalidate(10, modal);
|
@@ -15063,7 +15060,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
15063
15060
|
close,
|
15064
15061
|
$$scope,
|
15065
15062
|
slots,
|
15066
|
-
|
15063
|
+
div_binding
|
15067
15064
|
];
|
15068
15065
|
}
|
15069
15066
|
|