@plaidev/karte-action-sdk 1.1.238-28698010.a9ad3193 → 1.1.238-28698230.d57d5808
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 -39
- package/dist/index.es.js +23 -30
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -14192,7 +14192,6 @@ function create_if_block$3(ctx) {
|
|
14192
14192
|
props: {
|
14193
14193
|
props: {
|
14194
14194
|
variant: /*props*/ ctx[0].iconVariant,
|
14195
|
-
size: '1em',
|
14196
14195
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
14197
14196
|
}
|
14198
14197
|
}
|
@@ -14224,7 +14223,6 @@ function create_if_block$3(ctx) {
|
|
14224
14223
|
|
14225
14224
|
if (dirty & /*props*/ 1) icon_changes.props = {
|
14226
14225
|
variant: /*props*/ ctx[0].iconVariant,
|
14227
|
-
size: '1em',
|
14228
14226
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
14229
14227
|
};
|
14230
14228
|
|
@@ -14561,7 +14559,6 @@ function create_if_block$2(ctx) {
|
|
14561
14559
|
props: {
|
14562
14560
|
props: {
|
14563
14561
|
variant: /*props*/ ctx[0].iconVariant,
|
14564
|
-
size: '1em',
|
14565
14562
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
14566
14563
|
}
|
14567
14564
|
}
|
@@ -14593,7 +14590,6 @@ function create_if_block$2(ctx) {
|
|
14593
14590
|
|
14594
14591
|
if (dirty & /*props*/ 1) icon_changes.props = {
|
14595
14592
|
variant: /*props*/ ctx[0].iconVariant,
|
14596
|
-
size: '1em',
|
14597
14593
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
14598
14594
|
};
|
14599
14595
|
|
@@ -15652,11 +15648,10 @@ function create_if_block_2(ctx) {
|
|
15652
15648
|
|
15653
15649
|
// (267:0) {#if visible}
|
15654
15650
|
function create_if_block(ctx) {
|
15655
|
-
let
|
15651
|
+
let div;
|
15656
15652
|
let t;
|
15657
|
-
let
|
15658
|
-
let
|
15659
|
-
let div1_intro;
|
15653
|
+
let div_class_value;
|
15654
|
+
let div_intro;
|
15660
15655
|
let current;
|
15661
15656
|
let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
|
15662
15657
|
const default_slot_template = /*#slots*/ ctx[30].default;
|
@@ -15664,48 +15659,43 @@ function create_if_block(ctx) {
|
|
15664
15659
|
|
15665
15660
|
return {
|
15666
15661
|
c() {
|
15667
|
-
|
15662
|
+
div = element("div");
|
15668
15663
|
if (if_block) if_block.c();
|
15669
15664
|
t = space();
|
15670
|
-
div0 = element("div");
|
15671
15665
|
if (default_slot) default_slot.c();
|
15672
15666
|
this.h();
|
15673
15667
|
},
|
15674
15668
|
l(nodes) {
|
15675
|
-
|
15669
|
+
div = claim_element(nodes, "DIV", {
|
15676
15670
|
class: true,
|
15677
15671
|
role: true,
|
15678
15672
|
"aria-modal": true,
|
15679
15673
|
style: true
|
15680
15674
|
});
|
15681
15675
|
|
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);
|
15676
|
+
var div_nodes = children(div);
|
15677
|
+
if (if_block) if_block.l(div_nodes);
|
15678
|
+
t = claim_space(div_nodes);
|
15679
|
+
if (default_slot) default_slot.l(div_nodes);
|
15680
|
+
div_nodes.forEach(detach);
|
15690
15681
|
this.h();
|
15691
15682
|
},
|
15692
15683
|
h() {
|
15693
|
-
attr(
|
15694
|
-
attr(
|
15695
|
-
attr(
|
15696
|
-
attr(
|
15684
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
|
15685
|
+
attr(div, "role", "dialog");
|
15686
|
+
attr(div, "aria-modal", "true");
|
15687
|
+
attr(div, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
|
15697
15688
|
},
|
15698
15689
|
m(target, anchor) {
|
15699
|
-
insert_hydration(target,
|
15700
|
-
if (if_block) if_block.m(
|
15701
|
-
append_hydration(
|
15702
|
-
append_hydration(div1, div0);
|
15690
|
+
insert_hydration(target, div, anchor);
|
15691
|
+
if (if_block) if_block.m(div, null);
|
15692
|
+
append_hydration(div, t);
|
15703
15693
|
|
15704
15694
|
if (default_slot) {
|
15705
|
-
default_slot.m(
|
15695
|
+
default_slot.m(div, null);
|
15706
15696
|
}
|
15707
15697
|
|
15708
|
-
/*
|
15698
|
+
/*div_binding*/ ctx[31](div);
|
15709
15699
|
current = true;
|
15710
15700
|
},
|
15711
15701
|
p(new_ctx, dirty) {
|
@@ -15722,7 +15712,7 @@ function create_if_block(ctx) {
|
|
15722
15712
|
if_block = create_if_block_1(ctx);
|
15723
15713
|
if_block.c();
|
15724
15714
|
transition_in(if_block, 1);
|
15725
|
-
if_block.m(
|
15715
|
+
if_block.m(div, t);
|
15726
15716
|
}
|
15727
15717
|
} else if (if_block) {
|
15728
15718
|
group_outros();
|
@@ -15749,8 +15739,8 @@ function create_if_block(ctx) {
|
|
15749
15739
|
}
|
15750
15740
|
}
|
15751
15741
|
|
15752
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 1 &&
|
15753
|
-
attr(
|
15742
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
|
15743
|
+
attr(div, "class", div_class_value);
|
15754
15744
|
}
|
15755
15745
|
},
|
15756
15746
|
i(local) {
|
@@ -15758,14 +15748,14 @@ function create_if_block(ctx) {
|
|
15758
15748
|
transition_in(if_block);
|
15759
15749
|
transition_in(default_slot, local);
|
15760
15750
|
|
15761
|
-
if (!
|
15751
|
+
if (!div_intro) {
|
15762
15752
|
add_render_callback(() => {
|
15763
|
-
|
15753
|
+
div_intro = create_in_transition(div, customAnimation, {
|
15764
15754
|
transforms: /*transforms*/ ctx[6],
|
15765
15755
|
animationStyle: /*animation*/ ctx[1]
|
15766
15756
|
});
|
15767
15757
|
|
15768
|
-
|
15758
|
+
div_intro.start();
|
15769
15759
|
});
|
15770
15760
|
}
|
15771
15761
|
|
@@ -15777,10 +15767,10 @@ function create_if_block(ctx) {
|
|
15777
15767
|
current = false;
|
15778
15768
|
},
|
15779
15769
|
d(detaching) {
|
15780
|
-
if (detaching) detach(
|
15770
|
+
if (detaching) detach(div);
|
15781
15771
|
if (if_block) if_block.d();
|
15782
15772
|
if (default_slot) default_slot.d(detaching);
|
15783
|
-
/*
|
15773
|
+
/*div_binding*/ ctx[31](null);
|
15784
15774
|
}
|
15785
15775
|
};
|
15786
15776
|
}
|
@@ -16019,7 +16009,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
16019
16009
|
|
16020
16010
|
onDestroy$1(() => setPreviousFocus());
|
16021
16011
|
|
16022
|
-
function
|
16012
|
+
function div_binding($$value) {
|
16023
16013
|
binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
16024
16014
|
modal = $$value;
|
16025
16015
|
$$invalidate(10, modal);
|
@@ -16239,7 +16229,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
16239
16229
|
close,
|
16240
16230
|
$$scope,
|
16241
16231
|
slots,
|
16242
|
-
|
16232
|
+
div_binding
|
16243
16233
|
];
|
16244
16234
|
}
|
16245
16235
|
|
package/dist/index.es.js
CHANGED
@@ -13178,7 +13178,6 @@ function create_if_block$3(ctx) {
|
|
13178
13178
|
props: {
|
13179
13179
|
props: {
|
13180
13180
|
variant: /*props*/ ctx[0].iconVariant,
|
13181
|
-
size: '1em',
|
13182
13181
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
13183
13182
|
}
|
13184
13183
|
}
|
@@ -13200,7 +13199,6 @@ function create_if_block$3(ctx) {
|
|
13200
13199
|
|
13201
13200
|
if (dirty & /*props*/ 1) icon_changes.props = {
|
13202
13201
|
variant: /*props*/ ctx[0].iconVariant,
|
13203
|
-
size: '1em',
|
13204
13202
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
13205
13203
|
};
|
13206
13204
|
|
@@ -13517,7 +13515,6 @@ function create_if_block$2(ctx) {
|
|
13517
13515
|
props: {
|
13518
13516
|
props: {
|
13519
13517
|
variant: /*props*/ ctx[0].iconVariant,
|
13520
|
-
size: '1em',
|
13521
13518
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
13522
13519
|
}
|
13523
13520
|
}
|
@@ -13539,7 +13536,6 @@ function create_if_block$2(ctx) {
|
|
13539
13536
|
|
13540
13537
|
if (dirty & /*props*/ 1) icon_changes.props = {
|
13541
13538
|
variant: /*props*/ ctx[0].iconVariant,
|
13542
|
-
size: '1em',
|
13543
13539
|
color: /*VARIANTS*/ ctx[3].color[/*props*/ ctx[0].color ?? 'default'].color
|
13544
13540
|
};
|
13545
13541
|
|
@@ -14484,11 +14480,10 @@ function create_if_block_2(ctx) {
|
|
14484
14480
|
|
14485
14481
|
// (267:0) {#if visible}
|
14486
14482
|
function create_if_block(ctx) {
|
14487
|
-
let
|
14483
|
+
let div;
|
14488
14484
|
let t;
|
14489
|
-
let
|
14490
|
-
let
|
14491
|
-
let div1_intro;
|
14485
|
+
let div_class_value;
|
14486
|
+
let div_intro;
|
14492
14487
|
let current;
|
14493
14488
|
let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
|
14494
14489
|
const default_slot_template = /*#slots*/ ctx[30].default;
|
@@ -14496,27 +14491,25 @@ function create_if_block(ctx) {
|
|
14496
14491
|
|
14497
14492
|
return {
|
14498
14493
|
c() {
|
14499
|
-
|
14494
|
+
div = element("div");
|
14500
14495
|
if (if_block) if_block.c();
|
14501
14496
|
t = space();
|
14502
|
-
div0 = element("div");
|
14503
14497
|
if (default_slot) default_slot.c();
|
14504
|
-
attr(
|
14505
|
-
attr(
|
14506
|
-
attr(
|
14507
|
-
attr(
|
14498
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
|
14499
|
+
attr(div, "role", "dialog");
|
14500
|
+
attr(div, "aria-modal", "true");
|
14501
|
+
attr(div, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
|
14508
14502
|
},
|
14509
14503
|
m(target, anchor) {
|
14510
|
-
insert(target,
|
14511
|
-
if (if_block) if_block.m(
|
14512
|
-
append(
|
14513
|
-
append(div1, div0);
|
14504
|
+
insert(target, div, anchor);
|
14505
|
+
if (if_block) if_block.m(div, null);
|
14506
|
+
append(div, t);
|
14514
14507
|
|
14515
14508
|
if (default_slot) {
|
14516
|
-
default_slot.m(
|
14509
|
+
default_slot.m(div, null);
|
14517
14510
|
}
|
14518
14511
|
|
14519
|
-
/*
|
14512
|
+
/*div_binding*/ ctx[31](div);
|
14520
14513
|
current = true;
|
14521
14514
|
},
|
14522
14515
|
p(new_ctx, dirty) {
|
@@ -14533,7 +14526,7 @@ function create_if_block(ctx) {
|
|
14533
14526
|
if_block = create_if_block_1(ctx);
|
14534
14527
|
if_block.c();
|
14535
14528
|
transition_in(if_block, 1);
|
14536
|
-
if_block.m(
|
14529
|
+
if_block.m(div, t);
|
14537
14530
|
}
|
14538
14531
|
} else if (if_block) {
|
14539
14532
|
group_outros();
|
@@ -14560,8 +14553,8 @@ function create_if_block(ctx) {
|
|
14560
14553
|
}
|
14561
14554
|
}
|
14562
14555
|
|
14563
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 1 &&
|
14564
|
-
attr(
|
14556
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
|
14557
|
+
attr(div, "class", div_class_value);
|
14565
14558
|
}
|
14566
14559
|
},
|
14567
14560
|
i(local) {
|
@@ -14569,14 +14562,14 @@ function create_if_block(ctx) {
|
|
14569
14562
|
transition_in(if_block);
|
14570
14563
|
transition_in(default_slot, local);
|
14571
14564
|
|
14572
|
-
if (!
|
14565
|
+
if (!div_intro) {
|
14573
14566
|
add_render_callback(() => {
|
14574
|
-
|
14567
|
+
div_intro = create_in_transition(div, customAnimation, {
|
14575
14568
|
transforms: /*transforms*/ ctx[6],
|
14576
14569
|
animationStyle: /*animation*/ ctx[1]
|
14577
14570
|
});
|
14578
14571
|
|
14579
|
-
|
14572
|
+
div_intro.start();
|
14580
14573
|
});
|
14581
14574
|
}
|
14582
14575
|
|
@@ -14588,10 +14581,10 @@ function create_if_block(ctx) {
|
|
14588
14581
|
current = false;
|
14589
14582
|
},
|
14590
14583
|
d(detaching) {
|
14591
|
-
if (detaching) detach(
|
14584
|
+
if (detaching) detach(div);
|
14592
14585
|
if (if_block) if_block.d();
|
14593
14586
|
if (default_slot) default_slot.d(detaching);
|
14594
|
-
/*
|
14587
|
+
/*div_binding*/ ctx[31](null);
|
14595
14588
|
}
|
14596
14589
|
};
|
14597
14590
|
}
|
@@ -14814,7 +14807,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
14814
14807
|
|
14815
14808
|
onDestroy$1(() => setPreviousFocus());
|
14816
14809
|
|
14817
|
-
function
|
14810
|
+
function div_binding($$value) {
|
14818
14811
|
binding_callbacks[$$value ? 'unshift' : 'push'](() => {
|
14819
14812
|
modal = $$value;
|
14820
14813
|
$$invalidate(10, modal);
|
@@ -15063,7 +15056,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
15063
15056
|
close,
|
15064
15057
|
$$scope,
|
15065
15058
|
slots,
|
15066
|
-
|
15059
|
+
div_binding
|
15067
15060
|
];
|
15068
15061
|
}
|
15069
15062
|
|