@plaidev/karte-action-sdk 1.1.235-28695221.a9f041a7 → 1.1.235-28695399.37fa4bea

Sign up to get free protection for your applications and to get access to all the features.
@@ -14044,7 +14044,7 @@ class Icon extends SvelteComponent {
14044
14044
  /* src/components-flex/button/Button.svelte generated by Svelte v3.53.1 */
14045
14045
 
14046
14046
  function add_css$6(target) {
14047
- append_styles(target, "svelte-kz1c6t", ".v2-button.svelte-kz1c6t{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-kz1c6t{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
14047
+ append_styles(target, "svelte-bo01kn", ".button.svelte-bo01kn{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.button-icon.svelte-bo01kn{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
14048
14048
  }
14049
14049
 
14050
14050
  // (127:2) {#if (props.isIcon && props.iconVariant)}
@@ -14077,7 +14077,7 @@ function create_if_block$2(ctx) {
14077
14077
  this.h();
14078
14078
  },
14079
14079
  h() {
14080
- attr(div, "class", "v2-button-icon svelte-kz1c6t");
14080
+ attr(div, "class", "button-icon svelte-bo01kn");
14081
14081
  },
14082
14082
  m(target, anchor) {
14083
14083
  insert_hydration(target, div, anchor);
@@ -14151,7 +14151,7 @@ function create_fragment$6(ctx) {
14151
14151
  h() {
14152
14152
  attr(button, "data-layer-id", /*layerId*/ ctx[1]);
14153
14153
  attr(button, "style", /*style*/ ctx[2]);
14154
- attr(button, "class", "v2-button svelte-kz1c6t");
14154
+ attr(button, "class", "button svelte-bo01kn");
14155
14155
  },
14156
14156
  m(target, anchor) {
14157
14157
  insert_hydration(target, button, anchor);
@@ -14399,13 +14399,28 @@ const BUTTON_ICON_ANGLE = {
14399
14399
  /* src/components-flex/close-button/CloseButton.svelte generated by Svelte v3.53.1 */
14400
14400
 
14401
14401
  function add_css$5(target) {
14402
- append_styles(target, "svelte-1dgpo5m", ".close-button.svelte-1dgpo5m{display:inline-flex;align-items:center;justify-content:center;border-radius:100%;background:none;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}");
14402
+ append_styles(target, "svelte-13071ty", ".close-button.svelte-13071ty{display:inline-flex;align-items:center;justify-content:center;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s}");
14403
14403
  }
14404
14404
 
14405
14405
  function create_fragment$5(ctx) {
14406
14406
  let button;
14407
14407
  let svg;
14408
14408
  let path;
14409
+ let mounted;
14410
+ let dispose;
14411
+
14412
+ let button_levels = [
14413
+ { "data-layer-id": /*layerId*/ ctx[0] },
14414
+ { class: "close-button" },
14415
+ { style: /*style*/ ctx[1] },
14416
+ dataAttrStopPropagation('click')
14417
+ ];
14418
+
14419
+ let button_data = {};
14420
+
14421
+ for (let i = 0; i < button_levels.length; i += 1) {
14422
+ button_data = assign(button_data, button_levels[i]);
14423
+ }
14409
14424
 
14410
14425
  return {
14411
14426
  c() {
@@ -14444,45 +14459,68 @@ function create_fragment$5(ctx) {
14444
14459
  set_style(svg, "height", "75%");
14445
14460
  attr(svg, "viewBox", "0 0 50 50");
14446
14461
  attr(svg, "fill", "#666666");
14447
- attr(button, "data-layer-id", /*layerId*/ ctx[0]);
14448
- attr(button, "class", "close-button svelte-1dgpo5m");
14449
- attr(button, "style", /*style*/ ctx[1]);
14462
+ set_attributes(button, button_data);
14463
+ toggle_class(button, "svelte-13071ty", true);
14450
14464
  },
14451
14465
  m(target, anchor) {
14452
14466
  insert_hydration(target, button, anchor);
14453
14467
  append_hydration(button, svg);
14454
14468
  append_hydration(svg, path);
14469
+ if (button.autofocus) button.focus();
14470
+
14471
+ if (!mounted) {
14472
+ dispose = listen(button, "click", prevent_default(checkStopPropagation('click', /*handleClick*/ ctx[2])));
14473
+ mounted = true;
14474
+ }
14455
14475
  },
14456
14476
  p(ctx, [dirty]) {
14457
- if (dirty & /*layerId*/ 1) {
14458
- attr(button, "data-layer-id", /*layerId*/ ctx[0]);
14459
- }
14477
+ set_attributes(button, button_data = get_spread_update(button_levels, [
14478
+ dirty & /*layerId*/ 1 && { "data-layer-id": /*layerId*/ ctx[0] },
14479
+ { class: "close-button" },
14480
+ dirty & /*style*/ 2 && { style: /*style*/ ctx[1] },
14481
+ dataAttrStopPropagation('click')
14482
+ ]));
14460
14483
 
14461
- if (dirty & /*style*/ 2) {
14462
- attr(button, "style", /*style*/ ctx[1]);
14463
- }
14484
+ toggle_class(button, "svelte-13071ty", true);
14464
14485
  },
14465
14486
  i: noop,
14466
14487
  o: noop,
14467
14488
  d(detaching) {
14468
14489
  if (detaching) detach(button);
14490
+ mounted = false;
14491
+ dispose();
14469
14492
  }
14470
14493
  };
14471
14494
  }
14472
14495
 
14473
14496
  function instance$5($$self, $$props, $$invalidate) {
14474
14497
  let style;
14498
+ let { onClick = { operation: 'closeApp', args: ['button'] } } = $$props;
14475
14499
  let { props = {} } = $$props;
14476
14500
  let { layerId = '' } = $$props;
14501
+ let { eventName = '' } = $$props;
14502
+ let { eventValue = undefined } = $$props;
14503
+
14504
+ function handleClick() {
14505
+ if (eventName) {
14506
+ send_event(eventName, eventValue);
14507
+ }
14508
+
14509
+ execOnClickOperation(onClick);
14510
+ }
14511
+
14477
14512
  const size = props.size ?? 24;
14478
14513
 
14479
14514
  $$self.$$set = $$props => {
14480
- if ('props' in $$props) $$invalidate(2, props = $$props.props);
14515
+ if ('onClick' in $$props) $$invalidate(3, onClick = $$props.onClick);
14516
+ if ('props' in $$props) $$invalidate(4, props = $$props.props);
14481
14517
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
14518
+ if ('eventName' in $$props) $$invalidate(5, eventName = $$props.eventName);
14519
+ if ('eventValue' in $$props) $$invalidate(6, eventValue = $$props.eventValue);
14482
14520
  };
14483
14521
 
14484
14522
  $$self.$$.update = () => {
14485
- if ($$self.$$.dirty & /*props*/ 4) {
14523
+ if ($$self.$$.dirty & /*props*/ 16) {
14486
14524
  $$invalidate(1, style = objToStyle({
14487
14525
  width: `${size}px`,
14488
14526
  height: `${size}px`,
@@ -14492,13 +14530,28 @@ function instance$5($$self, $$props, $$invalidate) {
14492
14530
  }
14493
14531
  };
14494
14532
 
14495
- return [layerId, style, props];
14533
+ return [layerId, style, handleClick, onClick, props, eventName, eventValue];
14496
14534
  }
14497
14535
 
14498
14536
  class CloseButton extends SvelteComponent {
14499
14537
  constructor(options) {
14500
14538
  super();
14501
- init(this, options, instance$5, create_fragment$5, safe_not_equal, { props: 2, layerId: 0 }, add_css$5);
14539
+
14540
+ init(
14541
+ this,
14542
+ options,
14543
+ instance$5,
14544
+ create_fragment$5,
14545
+ safe_not_equal,
14546
+ {
14547
+ onClick: 3,
14548
+ props: 4,
14549
+ layerId: 0,
14550
+ eventName: 5,
14551
+ eventValue: 6
14552
+ },
14553
+ add_css$5
14554
+ );
14502
14555
  }
14503
14556
  }
14504
14557
 
@@ -14983,7 +15036,7 @@ class BackgroundOverlay extends SvelteComponent {
14983
15036
  /* src/components-flex/modal/Modal.svelte generated by Svelte v3.53.1 */
14984
15037
 
14985
15038
  function add_css(target) {
14986
- append_styles(target, "svelte-1fow8xp", ".v2-modal.svelte-1fow8xp{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.v2-modal.svelte-1fow8xp > .button{flex:auto;display:flex}.v2-close.svelte-1fow8xp{position:absolute;top:8px;right:8px}.v2-close.svelte-1fow8xp > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.v2-close.svelte-1fow8xp > .button:hover{transform:rotate(90deg)}@media screen and (min-width: 641px){.v2-modal-bp.svelte-1fow8xp{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.v2-background-bp-pc{display:block}.v2-background-bp-sp{display:none}}@media screen and (max-width: 640px){.v2-modal-bp.svelte-1fow8xp{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.v2-background-bp-pc{display:none}.v2-background-bp-sp{display:block}}");
15039
+ append_styles(target, "svelte-1ks2ecq", ".modal.svelte-1ks2ecq{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1ks2ecq > .button{flex:auto;display:flex}.close.svelte-1ks2ecq{position:absolute;top:8px;right:8px}.close.svelte-1ks2ecq > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1ks2ecq > .button:hover{transform:rotate(90deg)}@media screen and (min-width: 641px){.modal-bp.svelte-1ks2ecq{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1ks2ecq{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
14987
15040
  }
14988
15041
 
14989
15042
  // (264:0) {:else}
@@ -14993,12 +15046,12 @@ function create_else_block(ctx) {
14993
15046
 
14994
15047
  backgroundoverlay = new BackgroundOverlay({
14995
15048
  props: {
14996
- backgroundOverlay: /*backgroundOverlay*/ ctx[4]
15049
+ backgroundOverlay: /*backgroundOverlay*/ ctx[7]
14997
15050
  }
14998
15051
  });
14999
15052
 
15000
15053
  backgroundoverlay.$on("click", function () {
15001
- if (is_function(/*backgroundClick*/ ctx[12])) /*backgroundClick*/ ctx[12].apply(this, arguments);
15054
+ if (is_function(/*backgroundClick*/ ctx[15])) /*backgroundClick*/ ctx[15].apply(this, arguments);
15002
15055
  });
15003
15056
 
15004
15057
  return {
@@ -15015,7 +15068,7 @@ function create_else_block(ctx) {
15015
15068
  p(new_ctx, dirty) {
15016
15069
  ctx = new_ctx;
15017
15070
  const backgroundoverlay_changes = {};
15018
- if (dirty[0] & /*backgroundOverlay*/ 16) backgroundoverlay_changes.backgroundOverlay = /*backgroundOverlay*/ ctx[4];
15071
+ if (dirty[0] & /*backgroundOverlay*/ 128) backgroundoverlay_changes.backgroundOverlay = /*backgroundOverlay*/ ctx[7];
15019
15072
  backgroundoverlay.$set(backgroundoverlay_changes);
15020
15073
  },
15021
15074
  i(local) {
@@ -15042,24 +15095,24 @@ function create_if_block_3(ctx) {
15042
15095
 
15043
15096
  backgroundoverlay0 = new BackgroundOverlay({
15044
15097
  props: {
15045
- class: "v2-background-bp-pc",
15046
- backgroundOverlay: /*backgroundOverlayPC*/ ctx[5]
15098
+ class: "background-bp-pc",
15099
+ backgroundOverlay: /*backgroundOverlayPC*/ ctx[8]
15047
15100
  }
15048
15101
  });
15049
15102
 
15050
15103
  backgroundoverlay0.$on("click", function () {
15051
- if (is_function(/*backgroundClickPC*/ ctx[11])) /*backgroundClickPC*/ ctx[11].apply(this, arguments);
15104
+ if (is_function(/*backgroundClickPC*/ ctx[14])) /*backgroundClickPC*/ ctx[14].apply(this, arguments);
15052
15105
  });
15053
15106
 
15054
15107
  backgroundoverlay1 = new BackgroundOverlay({
15055
15108
  props: {
15056
- class: "v2-background-bp-sp ",
15057
- backgroundOverlay: /*backgroundOverlaySP*/ ctx[6]
15109
+ class: "background-bp-sp ",
15110
+ backgroundOverlay: /*backgroundOverlaySP*/ ctx[9]
15058
15111
  }
15059
15112
  });
15060
15113
 
15061
15114
  backgroundoverlay1.$on("click", function () {
15062
- if (is_function(/*backgroundClickSP*/ ctx[10])) /*backgroundClickSP*/ ctx[10].apply(this, arguments);
15115
+ if (is_function(/*backgroundClickSP*/ ctx[13])) /*backgroundClickSP*/ ctx[13].apply(this, arguments);
15063
15116
  });
15064
15117
 
15065
15118
  return {
@@ -15082,10 +15135,10 @@ function create_if_block_3(ctx) {
15082
15135
  p(new_ctx, dirty) {
15083
15136
  ctx = new_ctx;
15084
15137
  const backgroundoverlay0_changes = {};
15085
- if (dirty[0] & /*backgroundOverlayPC*/ 32) backgroundoverlay0_changes.backgroundOverlay = /*backgroundOverlayPC*/ ctx[5];
15138
+ if (dirty[0] & /*backgroundOverlayPC*/ 256) backgroundoverlay0_changes.backgroundOverlay = /*backgroundOverlayPC*/ ctx[8];
15086
15139
  backgroundoverlay0.$set(backgroundoverlay0_changes);
15087
15140
  const backgroundoverlay1_changes = {};
15088
- if (dirty[0] & /*backgroundOverlaySP*/ 64) backgroundoverlay1_changes.backgroundOverlay = /*backgroundOverlaySP*/ ctx[6];
15141
+ if (dirty[0] & /*backgroundOverlaySP*/ 512) backgroundoverlay1_changes.backgroundOverlay = /*backgroundOverlaySP*/ ctx[9];
15089
15142
  backgroundoverlay1.$set(backgroundoverlay1_changes);
15090
15143
  },
15091
15144
  i(local) {
@@ -15128,7 +15181,7 @@ function create_if_block(ctx) {
15128
15181
  let div1_class_value;
15129
15182
  let div1_intro;
15130
15183
  let current;
15131
- let if_block = /*closable*/ ctx[13] && create_if_block_1(ctx);
15184
+ let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
15132
15185
  const default_slot_template = /*#slots*/ ctx[30].default;
15133
15186
  const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[29], null);
15134
15187
 
@@ -15160,10 +15213,10 @@ function create_if_block(ctx) {
15160
15213
  this.h();
15161
15214
  },
15162
15215
  h() {
15163
- attr(div1, "class", div1_class_value = "" + (null_to_empty(['v2-modal', /*useBreakPoint*/ ctx[0] ? 'v2-modal-bp' : ''].join(' ')) + " svelte-1fow8xp"));
15216
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
15164
15217
  attr(div1, "role", "dialog");
15165
15218
  attr(div1, "aria-modal", "true");
15166
- attr(div1, "style", Array.from(/*modalStyles*/ ctx[15]).join(';'));
15219
+ attr(div1, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
15167
15220
  },
15168
15221
  m(target, anchor) {
15169
15222
  insert_hydration(target, div1, anchor);
@@ -15181,11 +15234,11 @@ function create_if_block(ctx) {
15181
15234
  p(new_ctx, dirty) {
15182
15235
  ctx = new_ctx;
15183
15236
 
15184
- if (/*closable*/ ctx[13]) {
15237
+ if (/*closable*/ ctx[16]) {
15185
15238
  if (if_block) {
15186
15239
  if_block.p(ctx, dirty);
15187
15240
 
15188
- if (dirty[0] & /*closable*/ 8192) {
15241
+ if (dirty[0] & /*closable*/ 65536) {
15189
15242
  transition_in(if_block, 1);
15190
15243
  }
15191
15244
  } else {
@@ -15219,7 +15272,7 @@ function create_if_block(ctx) {
15219
15272
  }
15220
15273
  }
15221
15274
 
15222
- if (!current || dirty[0] & /*useBreakPoint*/ 1 && div1_class_value !== (div1_class_value = "" + (null_to_empty(['v2-modal', /*useBreakPoint*/ ctx[0] ? 'v2-modal-bp' : ''].join(' ')) + " svelte-1fow8xp"))) {
15275
+ if (!current || dirty[0] & /*useBreakPoint*/ 1 && div1_class_value !== (div1_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
15223
15276
  attr(div1, "class", div1_class_value);
15224
15277
  }
15225
15278
  },
@@ -15231,7 +15284,7 @@ function create_if_block(ctx) {
15231
15284
  if (!div1_intro) {
15232
15285
  add_render_callback(() => {
15233
15286
  div1_intro = create_in_transition(div1, customAnimation, {
15234
- transforms: /*transforms*/ ctx[3],
15287
+ transforms: /*transforms*/ ctx[6],
15235
15288
  animationStyle: /*animation*/ ctx[1]
15236
15289
  });
15237
15290
 
@@ -15262,7 +15315,12 @@ function create_if_block_1(ctx) {
15262
15315
  let current;
15263
15316
 
15264
15317
  closebutton = new CloseButton({
15265
- props: { props: /*closeButtonProps*/ ctx[2] }
15318
+ props: {
15319
+ onClick: /*onClose*/ ctx[2],
15320
+ eventName: /*closeEventName*/ ctx[3],
15321
+ eventValue: /*closeEventValue*/ ctx[4],
15322
+ props: /*closeButtonProps*/ ctx[5]
15323
+ }
15266
15324
  });
15267
15325
 
15268
15326
  return {
@@ -15279,8 +15337,8 @@ function create_if_block_1(ctx) {
15279
15337
  this.h();
15280
15338
  },
15281
15339
  h() {
15282
- attr(div, "class", "v2-close svelte-1fow8xp");
15283
- set_style(div, "z-index", /*$maximumZindex*/ ctx[14] + 1);
15340
+ attr(div, "class", "close svelte-1ks2ecq");
15341
+ set_style(div, "z-index", /*$maximumZindex*/ ctx[17] + 1);
15284
15342
  },
15285
15343
  m(target, anchor) {
15286
15344
  insert_hydration(target, div, anchor);
@@ -15289,11 +15347,14 @@ function create_if_block_1(ctx) {
15289
15347
  },
15290
15348
  p(ctx, dirty) {
15291
15349
  const closebutton_changes = {};
15292
- if (dirty[0] & /*closeButtonProps*/ 4) closebutton_changes.props = /*closeButtonProps*/ ctx[2];
15350
+ if (dirty[0] & /*onClose*/ 4) closebutton_changes.onClick = /*onClose*/ ctx[2];
15351
+ if (dirty[0] & /*closeEventName*/ 8) closebutton_changes.eventName = /*closeEventName*/ ctx[3];
15352
+ if (dirty[0] & /*closeEventValue*/ 16) closebutton_changes.eventValue = /*closeEventValue*/ ctx[4];
15353
+ if (dirty[0] & /*closeButtonProps*/ 32) closebutton_changes.props = /*closeButtonProps*/ ctx[5];
15293
15354
  closebutton.$set(closebutton_changes);
15294
15355
 
15295
- if (!current || dirty[0] & /*$maximumZindex*/ 16384) {
15296
- set_style(div, "z-index", /*$maximumZindex*/ ctx[14] + 1);
15356
+ if (!current || dirty[0] & /*$maximumZindex*/ 131072) {
15357
+ set_style(div, "z-index", /*$maximumZindex*/ ctx[17] + 1);
15297
15358
  }
15298
15359
  },
15299
15360
  i(local) {
@@ -15333,7 +15394,7 @@ function create_fragment(ctx) {
15333
15394
 
15334
15395
  current_block_type_index = select_block_type(ctx);
15335
15396
  if_block0 = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx);
15336
- let if_block1 = /*visible*/ ctx[8] && create_if_block(ctx);
15397
+ let if_block1 = /*visible*/ ctx[11] && create_if_block(ctx);
15337
15398
 
15338
15399
  return {
15339
15400
  c() {
@@ -15357,7 +15418,7 @@ function create_fragment(ctx) {
15357
15418
 
15358
15419
  if (!mounted) {
15359
15420
  dispose = listen(window, "keydown", function () {
15360
- if (is_function(/*handle_keydown*/ ctx[9])) /*handle_keydown*/ ctx[9].apply(this, arguments);
15421
+ if (is_function(/*handle_keydown*/ ctx[12])) /*handle_keydown*/ ctx[12].apply(this, arguments);
15361
15422
  });
15362
15423
 
15363
15424
  mounted = true;
@@ -15391,11 +15452,11 @@ function create_fragment(ctx) {
15391
15452
  if_block0.m(t.parentNode, t);
15392
15453
  }
15393
15454
 
15394
- if (/*visible*/ ctx[8]) {
15455
+ if (/*visible*/ ctx[11]) {
15395
15456
  if (if_block1) {
15396
15457
  if_block1.p(ctx, dirty);
15397
15458
 
15398
- if (dirty[0] & /*visible*/ 256) {
15459
+ if (dirty[0] & /*visible*/ 2048) {
15399
15460
  transition_in(if_block1, 1);
15400
15461
  }
15401
15462
  } else {
@@ -15445,7 +15506,7 @@ function instance($$self, $$props, $$invalidate) {
15445
15506
  let handle_keydown;
15446
15507
  let visible;
15447
15508
  let $maximumZindex;
15448
- component_subscribe($$self, maximumZindex, $$value => $$invalidate(14, $maximumZindex = $$value));
15509
+ component_subscribe($$self, maximumZindex, $$value => $$invalidate(17, $maximumZindex = $$value));
15449
15510
  let { $$slots: slots = {}, $$scope } = $$props;
15450
15511
  let { onClick = { operation: 'none', args: [] } } = $$props;
15451
15512
  let { clickEventName = '' } = $$props;
@@ -15476,7 +15537,7 @@ function instance($$self, $$props, $$invalidate) {
15476
15537
  let modal;
15477
15538
 
15478
15539
  onMount$1(() => {
15479
- $$invalidate(8, visible = true);
15540
+ $$invalidate(11, visible = true);
15480
15541
  });
15481
15542
 
15482
15543
  onDestroy$1(() => setPreviousFocus());
@@ -15484,28 +15545,28 @@ function instance($$self, $$props, $$invalidate) {
15484
15545
  function div1_binding($$value) {
15485
15546
  binding_callbacks[$$value ? 'unshift' : 'push'](() => {
15486
15547
  modal = $$value;
15487
- $$invalidate(7, modal);
15548
+ $$invalidate(10, modal);
15488
15549
  });
15489
15550
  }
15490
15551
 
15491
15552
  $$self.$$set = $$props => {
15492
- if ('onClick' in $$props) $$invalidate(16, onClick = $$props.onClick);
15493
- if ('clickEventName' in $$props) $$invalidate(17, clickEventName = $$props.clickEventName);
15494
- if ('clickEventValue' in $$props) $$invalidate(18, clickEventValue = $$props.clickEventValue);
15553
+ if ('onClick' in $$props) $$invalidate(19, onClick = $$props.onClick);
15554
+ if ('clickEventName' in $$props) $$invalidate(20, clickEventName = $$props.clickEventName);
15555
+ if ('clickEventValue' in $$props) $$invalidate(21, clickEventValue = $$props.clickEventValue);
15495
15556
  if ('useBreakPoint' in $$props) $$invalidate(0, useBreakPoint = $$props.useBreakPoint);
15496
- if ('placement' in $$props) $$invalidate(19, placement = $$props.placement);
15497
- if ('breakPoint' in $$props) $$invalidate(20, breakPoint = $$props.breakPoint);
15498
- if ('elasticity' in $$props) $$invalidate(21, elasticity = $$props.elasticity);
15557
+ if ('placement' in $$props) $$invalidate(22, placement = $$props.placement);
15558
+ if ('breakPoint' in $$props) $$invalidate(23, breakPoint = $$props.breakPoint);
15559
+ if ('elasticity' in $$props) $$invalidate(24, elasticity = $$props.elasticity);
15499
15560
  if ('animation' in $$props) $$invalidate(1, animation = $$props.animation);
15500
- if ('onClose' in $$props) $$invalidate(22, onClose = $$props.onClose);
15501
- if ('closeEventName' in $$props) $$invalidate(23, closeEventName = $$props.closeEventName);
15502
- if ('closeEventValue' in $$props) $$invalidate(24, closeEventValue = $$props.closeEventValue);
15503
- if ('closeButtonProps' in $$props) $$invalidate(2, closeButtonProps = $$props.closeButtonProps);
15561
+ if ('onClose' in $$props) $$invalidate(2, onClose = $$props.onClose);
15562
+ if ('closeEventName' in $$props) $$invalidate(3, closeEventName = $$props.closeEventName);
15563
+ if ('closeEventValue' in $$props) $$invalidate(4, closeEventValue = $$props.closeEventValue);
15564
+ if ('closeButtonProps' in $$props) $$invalidate(5, closeButtonProps = $$props.closeButtonProps);
15504
15565
  if ('$$scope' in $$props) $$invalidate(29, $$scope = $$props.$$scope);
15505
15566
  };
15506
15567
 
15507
15568
  $$self.$$.update = () => {
15508
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, onClose*/ 29360128) {
15569
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, onClose*/ 28) {
15509
15570
  $$invalidate(28, close = () => {
15510
15571
  if (closeEventName) {
15511
15572
  send_event(closeEventName, closeEventValue);
@@ -15515,23 +15576,23 @@ function instance($$self, $$props, $$invalidate) {
15515
15576
  });
15516
15577
  }
15517
15578
 
15518
- if ($$self.$$.dirty[0] & /*onClose*/ 4194304) {
15519
- $$invalidate(13, closable = haveFunction(onClose));
15579
+ if ($$self.$$.dirty[0] & /*onClose*/ 4) {
15580
+ $$invalidate(16, closable = haveFunction(onClose));
15520
15581
  }
15521
15582
 
15522
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
15583
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
15523
15584
  {
15524
15585
 
15525
15586
  if (useBreakPoint) {
15526
15587
  const pc = breakPoint?.PC?.placement?.backgroundOverlay;
15527
- $$invalidate(5, backgroundOverlayPC = pc ?? false);
15588
+ $$invalidate(8, backgroundOverlayPC = pc ?? false);
15528
15589
  const sp = breakPoint?.SP?.placement?.backgroundOverlay;
15529
- $$invalidate(6, backgroundOverlaySP = sp ?? false);
15590
+ $$invalidate(9, backgroundOverlaySP = sp ?? false);
15530
15591
  }
15531
15592
  }
15532
15593
  }
15533
15594
 
15534
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
15595
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
15535
15596
  {
15536
15597
  if (placement && placement.backgroundClick) {
15537
15598
  $$invalidate(25, backgroundClickFunction = placement.backgroundClick);
@@ -15553,8 +15614,8 @@ function instance($$self, $$props, $$invalidate) {
15553
15614
  }
15554
15615
  }
15555
15616
 
15556
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunction*/ 58720256) {
15557
- $$invalidate(12, backgroundClick = () => {
15617
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunction*/ 33554456) {
15618
+ $$invalidate(15, backgroundClick = () => {
15558
15619
  if (closeEventName) {
15559
15620
  send_event(closeEventName, closeEventValue);
15560
15621
  }
@@ -15563,8 +15624,8 @@ function instance($$self, $$props, $$invalidate) {
15563
15624
  });
15564
15625
  }
15565
15626
 
15566
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 92274688) {
15567
- $$invalidate(11, backgroundClickPC = () => {
15627
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 67108888) {
15628
+ $$invalidate(14, backgroundClickPC = () => {
15568
15629
  if (closeEventName) {
15569
15630
  send_event(closeEventName, closeEventValue);
15570
15631
  }
@@ -15573,8 +15634,8 @@ function instance($$self, $$props, $$invalidate) {
15573
15634
  });
15574
15635
  }
15575
15636
 
15576
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 159383552) {
15577
- $$invalidate(10, backgroundClickSP = () => {
15637
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 134217752) {
15638
+ $$invalidate(13, backgroundClickSP = () => {
15578
15639
  if (closeEventName) {
15579
15640
  send_event(closeEventName, closeEventValue);
15580
15641
  }
@@ -15583,7 +15644,7 @@ function instance($$self, $$props, $$invalidate) {
15583
15644
  });
15584
15645
  }
15585
15646
 
15586
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint, transforms*/ 1572873) {
15647
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint, transforms*/ 12582977) {
15587
15648
  // 表示位置のスタイルとアニメーションの動きを設定
15588
15649
  {
15589
15650
  // 表示位置のスタイルの設定
@@ -15595,7 +15656,7 @@ function instance($$self, $$props, $$invalidate) {
15595
15656
  modalStyles.add(positionStyle);
15596
15657
  }
15597
15658
 
15598
- $$invalidate(3, transforms = []);
15659
+ $$invalidate(6, transforms = []);
15599
15660
 
15600
15661
  DEVICE_IDS.forEach(deviceId => {
15601
15662
 
@@ -15613,7 +15674,7 @@ function instance($$self, $$props, $$invalidate) {
15613
15674
  }
15614
15675
  }
15615
15676
 
15616
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
15677
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
15617
15678
  // 表示位置の調整のスタイルを設定
15618
15679
  {
15619
15680
  let margin = DefaultModalPlacement.margin;
@@ -15637,7 +15698,7 @@ function instance($$self, $$props, $$invalidate) {
15637
15698
  }
15638
15699
  }
15639
15700
 
15640
- if ($$self.$$.dirty[0] & /*elasticity, useBreakPoint, breakPoint*/ 3145729) {
15701
+ if ($$self.$$.dirty[0] & /*elasticity, useBreakPoint, breakPoint*/ 25165825) {
15641
15702
  // 拡大方法のスタイルを設定
15642
15703
  {
15643
15704
  let elasticStyle = ElasticityStyle['none' ];
@@ -15660,18 +15721,21 @@ function instance($$self, $$props, $$invalidate) {
15660
15721
  }
15661
15722
 
15662
15723
  if ($$self.$$.dirty[0] & /*close*/ 268435456) {
15663
- $$invalidate(9, handle_keydown = handleKeydown({ Escape: close }));
15724
+ $$invalidate(12, handle_keydown = handleKeydown({ Escape: close }));
15664
15725
  }
15665
15726
  };
15666
15727
 
15667
- $$invalidate(7, modal = null);
15728
+ $$invalidate(10, modal = null);
15668
15729
 
15669
15730
  // svelteコンポーネントのアニメーションを発火させるためにマウント時にvisibleをtrueにする。
15670
- $$invalidate(8, visible = false);
15731
+ $$invalidate(11, visible = false);
15671
15732
 
15672
15733
  return [
15673
15734
  useBreakPoint,
15674
15735
  animation,
15736
+ onClose,
15737
+ closeEventName,
15738
+ closeEventValue,
15675
15739
  closeButtonProps,
15676
15740
  transforms,
15677
15741
  backgroundOverlay,
@@ -15692,9 +15756,6 @@ function instance($$self, $$props, $$invalidate) {
15692
15756
  placement,
15693
15757
  breakPoint,
15694
15758
  elasticity,
15695
- onClose,
15696
- closeEventName,
15697
- closeEventValue,
15698
15759
  backgroundClickFunction,
15699
15760
  backgroundClickFunctionPC,
15700
15761
  backgroundClickFunctionSP,
@@ -15716,18 +15777,18 @@ class Modal extends SvelteComponent {
15716
15777
  create_fragment,
15717
15778
  safe_not_equal,
15718
15779
  {
15719
- onClick: 16,
15720
- clickEventName: 17,
15721
- clickEventValue: 18,
15780
+ onClick: 19,
15781
+ clickEventName: 20,
15782
+ clickEventValue: 21,
15722
15783
  useBreakPoint: 0,
15723
- placement: 19,
15724
- breakPoint: 20,
15725
- elasticity: 21,
15784
+ placement: 22,
15785
+ breakPoint: 23,
15786
+ elasticity: 24,
15726
15787
  animation: 1,
15727
- onClose: 22,
15728
- closeEventName: 23,
15729
- closeEventValue: 24,
15730
- closeButtonProps: 2
15788
+ onClose: 2,
15789
+ closeEventName: 3,
15790
+ closeEventValue: 4,
15791
+ closeButtonProps: 5
15731
15792
  },
15732
15793
  add_css,
15733
15794
  [-1, -1]
package/dist/index.es.js CHANGED
@@ -13052,7 +13052,7 @@ class Icon extends SvelteComponent {
13052
13052
  /* src/components-flex/button/Button.svelte generated by Svelte v3.53.1 */
13053
13053
 
13054
13054
  function add_css$6(target) {
13055
- append_styles(target, "svelte-kz1c6t", ".v2-button.svelte-kz1c6t{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-kz1c6t{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
13055
+ append_styles(target, "svelte-bo01kn", ".button.svelte-bo01kn{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.button-icon.svelte-bo01kn{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
13056
13056
  }
13057
13057
 
13058
13058
  // (127:2) {#if (props.isIcon && props.iconVariant)}
@@ -13075,7 +13075,7 @@ function create_if_block$2(ctx) {
13075
13075
  c() {
13076
13076
  div = element("div");
13077
13077
  create_component(icon.$$.fragment);
13078
- attr(div, "class", "v2-button-icon svelte-kz1c6t");
13078
+ attr(div, "class", "button-icon svelte-bo01kn");
13079
13079
  },
13080
13080
  m(target, anchor) {
13081
13081
  insert(target, div, anchor);
@@ -13129,7 +13129,7 @@ function create_fragment$6(ctx) {
13129
13129
  t1 = text(t1_value);
13130
13130
  attr(button, "data-layer-id", /*layerId*/ ctx[1]);
13131
13131
  attr(button, "style", /*style*/ ctx[2]);
13132
- attr(button, "class", "v2-button svelte-kz1c6t");
13132
+ attr(button, "class", "button svelte-bo01kn");
13133
13133
  },
13134
13134
  m(target, anchor) {
13135
13135
  insert(target, button, anchor);
@@ -13377,13 +13377,28 @@ const BUTTON_ICON_ANGLE = {
13377
13377
  /* src/components-flex/close-button/CloseButton.svelte generated by Svelte v3.53.1 */
13378
13378
 
13379
13379
  function add_css$5(target) {
13380
- append_styles(target, "svelte-1dgpo5m", ".close-button.svelte-1dgpo5m{display:inline-flex;align-items:center;justify-content:center;border-radius:100%;background:none;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}");
13380
+ append_styles(target, "svelte-13071ty", ".close-button.svelte-13071ty{display:inline-flex;align-items:center;justify-content:center;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s}");
13381
13381
  }
13382
13382
 
13383
13383
  function create_fragment$5(ctx) {
13384
13384
  let button;
13385
13385
  let svg;
13386
13386
  let path;
13387
+ let mounted;
13388
+ let dispose;
13389
+
13390
+ let button_levels = [
13391
+ { "data-layer-id": /*layerId*/ ctx[0] },
13392
+ { class: "close-button" },
13393
+ { style: /*style*/ ctx[1] },
13394
+ dataAttrStopPropagation('click')
13395
+ ];
13396
+
13397
+ let button_data = {};
13398
+
13399
+ for (let i = 0; i < button_levels.length; i += 1) {
13400
+ button_data = assign(button_data, button_levels[i]);
13401
+ }
13387
13402
 
13388
13403
  return {
13389
13404
  c() {
@@ -13396,45 +13411,68 @@ function create_fragment$5(ctx) {
13396
13411
  set_style(svg, "height", "75%");
13397
13412
  attr(svg, "viewBox", "0 0 50 50");
13398
13413
  attr(svg, "fill", "#666666");
13399
- attr(button, "data-layer-id", /*layerId*/ ctx[0]);
13400
- attr(button, "class", "close-button svelte-1dgpo5m");
13401
- attr(button, "style", /*style*/ ctx[1]);
13414
+ set_attributes(button, button_data);
13415
+ toggle_class(button, "svelte-13071ty", true);
13402
13416
  },
13403
13417
  m(target, anchor) {
13404
13418
  insert(target, button, anchor);
13405
13419
  append(button, svg);
13406
13420
  append(svg, path);
13421
+ if (button.autofocus) button.focus();
13422
+
13423
+ if (!mounted) {
13424
+ dispose = listen(button, "click", prevent_default(checkStopPropagation('click', /*handleClick*/ ctx[2])));
13425
+ mounted = true;
13426
+ }
13407
13427
  },
13408
13428
  p(ctx, [dirty]) {
13409
- if (dirty & /*layerId*/ 1) {
13410
- attr(button, "data-layer-id", /*layerId*/ ctx[0]);
13411
- }
13429
+ set_attributes(button, button_data = get_spread_update(button_levels, [
13430
+ dirty & /*layerId*/ 1 && { "data-layer-id": /*layerId*/ ctx[0] },
13431
+ { class: "close-button" },
13432
+ dirty & /*style*/ 2 && { style: /*style*/ ctx[1] },
13433
+ dataAttrStopPropagation('click')
13434
+ ]));
13412
13435
 
13413
- if (dirty & /*style*/ 2) {
13414
- attr(button, "style", /*style*/ ctx[1]);
13415
- }
13436
+ toggle_class(button, "svelte-13071ty", true);
13416
13437
  },
13417
13438
  i: noop,
13418
13439
  o: noop,
13419
13440
  d(detaching) {
13420
13441
  if (detaching) detach(button);
13442
+ mounted = false;
13443
+ dispose();
13421
13444
  }
13422
13445
  };
13423
13446
  }
13424
13447
 
13425
13448
  function instance$5($$self, $$props, $$invalidate) {
13426
13449
  let style;
13450
+ let { onClick = { operation: 'closeApp', args: ['button'] } } = $$props;
13427
13451
  let { props = {} } = $$props;
13428
13452
  let { layerId = '' } = $$props;
13453
+ let { eventName = '' } = $$props;
13454
+ let { eventValue = undefined } = $$props;
13455
+
13456
+ function handleClick() {
13457
+ if (eventName) {
13458
+ send_event(eventName, eventValue);
13459
+ }
13460
+
13461
+ execOnClickOperation(onClick);
13462
+ }
13463
+
13429
13464
  const size = props.size ?? 24;
13430
13465
 
13431
13466
  $$self.$$set = $$props => {
13432
- if ('props' in $$props) $$invalidate(2, props = $$props.props);
13467
+ if ('onClick' in $$props) $$invalidate(3, onClick = $$props.onClick);
13468
+ if ('props' in $$props) $$invalidate(4, props = $$props.props);
13433
13469
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
13470
+ if ('eventName' in $$props) $$invalidate(5, eventName = $$props.eventName);
13471
+ if ('eventValue' in $$props) $$invalidate(6, eventValue = $$props.eventValue);
13434
13472
  };
13435
13473
 
13436
13474
  $$self.$$.update = () => {
13437
- if ($$self.$$.dirty & /*props*/ 4) {
13475
+ if ($$self.$$.dirty & /*props*/ 16) {
13438
13476
  $$invalidate(1, style = objToStyle({
13439
13477
  width: `${size}px`,
13440
13478
  height: `${size}px`,
@@ -13444,13 +13482,28 @@ function instance$5($$self, $$props, $$invalidate) {
13444
13482
  }
13445
13483
  };
13446
13484
 
13447
- return [layerId, style, props];
13485
+ return [layerId, style, handleClick, onClick, props, eventName, eventValue];
13448
13486
  }
13449
13487
 
13450
13488
  class CloseButton extends SvelteComponent {
13451
13489
  constructor(options) {
13452
13490
  super();
13453
- init(this, options, instance$5, create_fragment$5, safe_not_equal, { props: 2, layerId: 0 }, add_css$5);
13491
+
13492
+ init(
13493
+ this,
13494
+ options,
13495
+ instance$5,
13496
+ create_fragment$5,
13497
+ safe_not_equal,
13498
+ {
13499
+ onClick: 3,
13500
+ props: 4,
13501
+ layerId: 0,
13502
+ eventName: 5,
13503
+ eventValue: 6
13504
+ },
13505
+ add_css$5
13506
+ );
13454
13507
  }
13455
13508
  }
13456
13509
 
@@ -13876,7 +13929,7 @@ class BackgroundOverlay extends SvelteComponent {
13876
13929
  /* src/components-flex/modal/Modal.svelte generated by Svelte v3.53.1 */
13877
13930
 
13878
13931
  function add_css(target) {
13879
- append_styles(target, "svelte-1fow8xp", ".v2-modal.svelte-1fow8xp{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.v2-modal.svelte-1fow8xp > .button{flex:auto;display:flex}.v2-close.svelte-1fow8xp{position:absolute;top:8px;right:8px}.v2-close.svelte-1fow8xp > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.v2-close.svelte-1fow8xp > .button:hover{transform:rotate(90deg)}@media screen and (min-width: 641px){.v2-modal-bp.svelte-1fow8xp{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.v2-background-bp-pc{display:block}.v2-background-bp-sp{display:none}}@media screen and (max-width: 640px){.v2-modal-bp.svelte-1fow8xp{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.v2-background-bp-pc{display:none}.v2-background-bp-sp{display:block}}");
13932
+ append_styles(target, "svelte-1ks2ecq", ".modal.svelte-1ks2ecq{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1ks2ecq > .button{flex:auto;display:flex}.close.svelte-1ks2ecq{position:absolute;top:8px;right:8px}.close.svelte-1ks2ecq > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1ks2ecq > .button:hover{transform:rotate(90deg)}@media screen and (min-width: 641px){.modal-bp.svelte-1ks2ecq{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1ks2ecq{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
13880
13933
  }
13881
13934
 
13882
13935
  // (264:0) {:else}
@@ -13886,12 +13939,12 @@ function create_else_block(ctx) {
13886
13939
 
13887
13940
  backgroundoverlay = new BackgroundOverlay({
13888
13941
  props: {
13889
- backgroundOverlay: /*backgroundOverlay*/ ctx[4]
13942
+ backgroundOverlay: /*backgroundOverlay*/ ctx[7]
13890
13943
  }
13891
13944
  });
13892
13945
 
13893
13946
  backgroundoverlay.$on("click", function () {
13894
- if (is_function(/*backgroundClick*/ ctx[12])) /*backgroundClick*/ ctx[12].apply(this, arguments);
13947
+ if (is_function(/*backgroundClick*/ ctx[15])) /*backgroundClick*/ ctx[15].apply(this, arguments);
13895
13948
  });
13896
13949
 
13897
13950
  return {
@@ -13905,7 +13958,7 @@ function create_else_block(ctx) {
13905
13958
  p(new_ctx, dirty) {
13906
13959
  ctx = new_ctx;
13907
13960
  const backgroundoverlay_changes = {};
13908
- if (dirty[0] & /*backgroundOverlay*/ 16) backgroundoverlay_changes.backgroundOverlay = /*backgroundOverlay*/ ctx[4];
13961
+ if (dirty[0] & /*backgroundOverlay*/ 128) backgroundoverlay_changes.backgroundOverlay = /*backgroundOverlay*/ ctx[7];
13909
13962
  backgroundoverlay.$set(backgroundoverlay_changes);
13910
13963
  },
13911
13964
  i(local) {
@@ -13932,24 +13985,24 @@ function create_if_block_3(ctx) {
13932
13985
 
13933
13986
  backgroundoverlay0 = new BackgroundOverlay({
13934
13987
  props: {
13935
- class: "v2-background-bp-pc",
13936
- backgroundOverlay: /*backgroundOverlayPC*/ ctx[5]
13988
+ class: "background-bp-pc",
13989
+ backgroundOverlay: /*backgroundOverlayPC*/ ctx[8]
13937
13990
  }
13938
13991
  });
13939
13992
 
13940
13993
  backgroundoverlay0.$on("click", function () {
13941
- if (is_function(/*backgroundClickPC*/ ctx[11])) /*backgroundClickPC*/ ctx[11].apply(this, arguments);
13994
+ if (is_function(/*backgroundClickPC*/ ctx[14])) /*backgroundClickPC*/ ctx[14].apply(this, arguments);
13942
13995
  });
13943
13996
 
13944
13997
  backgroundoverlay1 = new BackgroundOverlay({
13945
13998
  props: {
13946
- class: "v2-background-bp-sp ",
13947
- backgroundOverlay: /*backgroundOverlaySP*/ ctx[6]
13999
+ class: "background-bp-sp ",
14000
+ backgroundOverlay: /*backgroundOverlaySP*/ ctx[9]
13948
14001
  }
13949
14002
  });
13950
14003
 
13951
14004
  backgroundoverlay1.$on("click", function () {
13952
- if (is_function(/*backgroundClickSP*/ ctx[10])) /*backgroundClickSP*/ ctx[10].apply(this, arguments);
14005
+ if (is_function(/*backgroundClickSP*/ ctx[13])) /*backgroundClickSP*/ ctx[13].apply(this, arguments);
13953
14006
  });
13954
14007
 
13955
14008
  return {
@@ -13967,10 +14020,10 @@ function create_if_block_3(ctx) {
13967
14020
  p(new_ctx, dirty) {
13968
14021
  ctx = new_ctx;
13969
14022
  const backgroundoverlay0_changes = {};
13970
- if (dirty[0] & /*backgroundOverlayPC*/ 32) backgroundoverlay0_changes.backgroundOverlay = /*backgroundOverlayPC*/ ctx[5];
14023
+ if (dirty[0] & /*backgroundOverlayPC*/ 256) backgroundoverlay0_changes.backgroundOverlay = /*backgroundOverlayPC*/ ctx[8];
13971
14024
  backgroundoverlay0.$set(backgroundoverlay0_changes);
13972
14025
  const backgroundoverlay1_changes = {};
13973
- if (dirty[0] & /*backgroundOverlaySP*/ 64) backgroundoverlay1_changes.backgroundOverlay = /*backgroundOverlaySP*/ ctx[6];
14026
+ if (dirty[0] & /*backgroundOverlaySP*/ 512) backgroundoverlay1_changes.backgroundOverlay = /*backgroundOverlaySP*/ ctx[9];
13974
14027
  backgroundoverlay1.$set(backgroundoverlay1_changes);
13975
14028
  },
13976
14029
  i(local) {
@@ -14012,7 +14065,7 @@ function create_if_block(ctx) {
14012
14065
  let div1_class_value;
14013
14066
  let div1_intro;
14014
14067
  let current;
14015
- let if_block = /*closable*/ ctx[13] && create_if_block_1(ctx);
14068
+ let if_block = /*closable*/ ctx[16] && create_if_block_1(ctx);
14016
14069
  const default_slot_template = /*#slots*/ ctx[30].default;
14017
14070
  const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[29], null);
14018
14071
 
@@ -14023,10 +14076,10 @@ function create_if_block(ctx) {
14023
14076
  t = space();
14024
14077
  div0 = element("div");
14025
14078
  if (default_slot) default_slot.c();
14026
- attr(div1, "class", div1_class_value = "" + (null_to_empty(['v2-modal', /*useBreakPoint*/ ctx[0] ? 'v2-modal-bp' : ''].join(' ')) + " svelte-1fow8xp"));
14079
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"));
14027
14080
  attr(div1, "role", "dialog");
14028
14081
  attr(div1, "aria-modal", "true");
14029
- attr(div1, "style", Array.from(/*modalStyles*/ ctx[15]).join(';'));
14082
+ attr(div1, "style", Array.from(/*modalStyles*/ ctx[18]).join(';'));
14030
14083
  },
14031
14084
  m(target, anchor) {
14032
14085
  insert(target, div1, anchor);
@@ -14044,11 +14097,11 @@ function create_if_block(ctx) {
14044
14097
  p(new_ctx, dirty) {
14045
14098
  ctx = new_ctx;
14046
14099
 
14047
- if (/*closable*/ ctx[13]) {
14100
+ if (/*closable*/ ctx[16]) {
14048
14101
  if (if_block) {
14049
14102
  if_block.p(ctx, dirty);
14050
14103
 
14051
- if (dirty[0] & /*closable*/ 8192) {
14104
+ if (dirty[0] & /*closable*/ 65536) {
14052
14105
  transition_in(if_block, 1);
14053
14106
  }
14054
14107
  } else {
@@ -14082,7 +14135,7 @@ function create_if_block(ctx) {
14082
14135
  }
14083
14136
  }
14084
14137
 
14085
- if (!current || dirty[0] & /*useBreakPoint*/ 1 && div1_class_value !== (div1_class_value = "" + (null_to_empty(['v2-modal', /*useBreakPoint*/ ctx[0] ? 'v2-modal-bp' : ''].join(' ')) + " svelte-1fow8xp"))) {
14138
+ if (!current || dirty[0] & /*useBreakPoint*/ 1 && div1_class_value !== (div1_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-1ks2ecq"))) {
14086
14139
  attr(div1, "class", div1_class_value);
14087
14140
  }
14088
14141
  },
@@ -14094,7 +14147,7 @@ function create_if_block(ctx) {
14094
14147
  if (!div1_intro) {
14095
14148
  add_render_callback(() => {
14096
14149
  div1_intro = create_in_transition(div1, customAnimation, {
14097
- transforms: /*transforms*/ ctx[3],
14150
+ transforms: /*transforms*/ ctx[6],
14098
14151
  animationStyle: /*animation*/ ctx[1]
14099
14152
  });
14100
14153
 
@@ -14125,15 +14178,20 @@ function create_if_block_1(ctx) {
14125
14178
  let current;
14126
14179
 
14127
14180
  closebutton = new CloseButton({
14128
- props: { props: /*closeButtonProps*/ ctx[2] }
14181
+ props: {
14182
+ onClick: /*onClose*/ ctx[2],
14183
+ eventName: /*closeEventName*/ ctx[3],
14184
+ eventValue: /*closeEventValue*/ ctx[4],
14185
+ props: /*closeButtonProps*/ ctx[5]
14186
+ }
14129
14187
  });
14130
14188
 
14131
14189
  return {
14132
14190
  c() {
14133
14191
  div = element("div");
14134
14192
  create_component(closebutton.$$.fragment);
14135
- attr(div, "class", "v2-close svelte-1fow8xp");
14136
- set_style(div, "z-index", /*$maximumZindex*/ ctx[14] + 1);
14193
+ attr(div, "class", "close svelte-1ks2ecq");
14194
+ set_style(div, "z-index", /*$maximumZindex*/ ctx[17] + 1);
14137
14195
  },
14138
14196
  m(target, anchor) {
14139
14197
  insert(target, div, anchor);
@@ -14142,11 +14200,14 @@ function create_if_block_1(ctx) {
14142
14200
  },
14143
14201
  p(ctx, dirty) {
14144
14202
  const closebutton_changes = {};
14145
- if (dirty[0] & /*closeButtonProps*/ 4) closebutton_changes.props = /*closeButtonProps*/ ctx[2];
14203
+ if (dirty[0] & /*onClose*/ 4) closebutton_changes.onClick = /*onClose*/ ctx[2];
14204
+ if (dirty[0] & /*closeEventName*/ 8) closebutton_changes.eventName = /*closeEventName*/ ctx[3];
14205
+ if (dirty[0] & /*closeEventValue*/ 16) closebutton_changes.eventValue = /*closeEventValue*/ ctx[4];
14206
+ if (dirty[0] & /*closeButtonProps*/ 32) closebutton_changes.props = /*closeButtonProps*/ ctx[5];
14146
14207
  closebutton.$set(closebutton_changes);
14147
14208
 
14148
- if (!current || dirty[0] & /*$maximumZindex*/ 16384) {
14149
- set_style(div, "z-index", /*$maximumZindex*/ ctx[14] + 1);
14209
+ if (!current || dirty[0] & /*$maximumZindex*/ 131072) {
14210
+ set_style(div, "z-index", /*$maximumZindex*/ ctx[17] + 1);
14150
14211
  }
14151
14212
  },
14152
14213
  i(local) {
@@ -14186,7 +14247,7 @@ function create_fragment(ctx) {
14186
14247
 
14187
14248
  current_block_type_index = select_block_type(ctx);
14188
14249
  if_block0 = if_blocks[current_block_type_index] = if_block_creators[current_block_type_index](ctx);
14189
- let if_block1 = /*visible*/ ctx[8] && create_if_block(ctx);
14250
+ let if_block1 = /*visible*/ ctx[11] && create_if_block(ctx);
14190
14251
 
14191
14252
  return {
14192
14253
  c() {
@@ -14204,7 +14265,7 @@ function create_fragment(ctx) {
14204
14265
 
14205
14266
  if (!mounted) {
14206
14267
  dispose = listen(window, "keydown", function () {
14207
- if (is_function(/*handle_keydown*/ ctx[9])) /*handle_keydown*/ ctx[9].apply(this, arguments);
14268
+ if (is_function(/*handle_keydown*/ ctx[12])) /*handle_keydown*/ ctx[12].apply(this, arguments);
14208
14269
  });
14209
14270
 
14210
14271
  mounted = true;
@@ -14238,11 +14299,11 @@ function create_fragment(ctx) {
14238
14299
  if_block0.m(t.parentNode, t);
14239
14300
  }
14240
14301
 
14241
- if (/*visible*/ ctx[8]) {
14302
+ if (/*visible*/ ctx[11]) {
14242
14303
  if (if_block1) {
14243
14304
  if_block1.p(ctx, dirty);
14244
14305
 
14245
- if (dirty[0] & /*visible*/ 256) {
14306
+ if (dirty[0] & /*visible*/ 2048) {
14246
14307
  transition_in(if_block1, 1);
14247
14308
  }
14248
14309
  } else {
@@ -14292,7 +14353,7 @@ function instance($$self, $$props, $$invalidate) {
14292
14353
  let handle_keydown;
14293
14354
  let visible;
14294
14355
  let $maximumZindex;
14295
- component_subscribe($$self, maximumZindex, $$value => $$invalidate(14, $maximumZindex = $$value));
14356
+ component_subscribe($$self, maximumZindex, $$value => $$invalidate(17, $maximumZindex = $$value));
14296
14357
  let { $$slots: slots = {}, $$scope } = $$props;
14297
14358
  let { onClick = { operation: 'none', args: [] } } = $$props;
14298
14359
  let { clickEventName = '' } = $$props;
@@ -14323,7 +14384,7 @@ function instance($$self, $$props, $$invalidate) {
14323
14384
  let modal;
14324
14385
 
14325
14386
  onMount$1(() => {
14326
- $$invalidate(8, visible = true);
14387
+ $$invalidate(11, visible = true);
14327
14388
  });
14328
14389
 
14329
14390
  onDestroy$1(() => setPreviousFocus());
@@ -14331,28 +14392,28 @@ function instance($$self, $$props, $$invalidate) {
14331
14392
  function div1_binding($$value) {
14332
14393
  binding_callbacks[$$value ? 'unshift' : 'push'](() => {
14333
14394
  modal = $$value;
14334
- $$invalidate(7, modal);
14395
+ $$invalidate(10, modal);
14335
14396
  });
14336
14397
  }
14337
14398
 
14338
14399
  $$self.$$set = $$props => {
14339
- if ('onClick' in $$props) $$invalidate(16, onClick = $$props.onClick);
14340
- if ('clickEventName' in $$props) $$invalidate(17, clickEventName = $$props.clickEventName);
14341
- if ('clickEventValue' in $$props) $$invalidate(18, clickEventValue = $$props.clickEventValue);
14400
+ if ('onClick' in $$props) $$invalidate(19, onClick = $$props.onClick);
14401
+ if ('clickEventName' in $$props) $$invalidate(20, clickEventName = $$props.clickEventName);
14402
+ if ('clickEventValue' in $$props) $$invalidate(21, clickEventValue = $$props.clickEventValue);
14342
14403
  if ('useBreakPoint' in $$props) $$invalidate(0, useBreakPoint = $$props.useBreakPoint);
14343
- if ('placement' in $$props) $$invalidate(19, placement = $$props.placement);
14344
- if ('breakPoint' in $$props) $$invalidate(20, breakPoint = $$props.breakPoint);
14345
- if ('elasticity' in $$props) $$invalidate(21, elasticity = $$props.elasticity);
14404
+ if ('placement' in $$props) $$invalidate(22, placement = $$props.placement);
14405
+ if ('breakPoint' in $$props) $$invalidate(23, breakPoint = $$props.breakPoint);
14406
+ if ('elasticity' in $$props) $$invalidate(24, elasticity = $$props.elasticity);
14346
14407
  if ('animation' in $$props) $$invalidate(1, animation = $$props.animation);
14347
- if ('onClose' in $$props) $$invalidate(22, onClose = $$props.onClose);
14348
- if ('closeEventName' in $$props) $$invalidate(23, closeEventName = $$props.closeEventName);
14349
- if ('closeEventValue' in $$props) $$invalidate(24, closeEventValue = $$props.closeEventValue);
14350
- if ('closeButtonProps' in $$props) $$invalidate(2, closeButtonProps = $$props.closeButtonProps);
14408
+ if ('onClose' in $$props) $$invalidate(2, onClose = $$props.onClose);
14409
+ if ('closeEventName' in $$props) $$invalidate(3, closeEventName = $$props.closeEventName);
14410
+ if ('closeEventValue' in $$props) $$invalidate(4, closeEventValue = $$props.closeEventValue);
14411
+ if ('closeButtonProps' in $$props) $$invalidate(5, closeButtonProps = $$props.closeButtonProps);
14351
14412
  if ('$$scope' in $$props) $$invalidate(29, $$scope = $$props.$$scope);
14352
14413
  };
14353
14414
 
14354
14415
  $$self.$$.update = () => {
14355
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, onClose*/ 29360128) {
14416
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, onClose*/ 28) {
14356
14417
  $$invalidate(28, close = () => {
14357
14418
  if (closeEventName) {
14358
14419
  send_event(closeEventName, closeEventValue);
@@ -14362,26 +14423,26 @@ function instance($$self, $$props, $$invalidate) {
14362
14423
  });
14363
14424
  }
14364
14425
 
14365
- if ($$self.$$.dirty[0] & /*onClose*/ 4194304) {
14366
- $$invalidate(13, closable = haveFunction(onClose));
14426
+ if ($$self.$$.dirty[0] & /*onClose*/ 4) {
14427
+ $$invalidate(16, closable = haveFunction(onClose));
14367
14428
  }
14368
14429
 
14369
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
14430
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
14370
14431
  {
14371
14432
  if (placement && placement.backgroundOverlay) {
14372
- $$invalidate(4, backgroundOverlay = placement.backgroundOverlay);
14433
+ $$invalidate(7, backgroundOverlay = placement.backgroundOverlay);
14373
14434
  }
14374
14435
 
14375
14436
  if (useBreakPoint) {
14376
14437
  const pc = breakPoint?.PC?.placement?.backgroundOverlay;
14377
- $$invalidate(5, backgroundOverlayPC = pc ?? false);
14438
+ $$invalidate(8, backgroundOverlayPC = pc ?? false);
14378
14439
  const sp = breakPoint?.SP?.placement?.backgroundOverlay;
14379
- $$invalidate(6, backgroundOverlaySP = sp ?? false);
14440
+ $$invalidate(9, backgroundOverlaySP = sp ?? false);
14380
14441
  }
14381
14442
  }
14382
14443
  }
14383
14444
 
14384
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
14445
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
14385
14446
  {
14386
14447
  if (placement && placement.backgroundClick) {
14387
14448
  $$invalidate(25, backgroundClickFunction = placement.backgroundClick);
@@ -14403,8 +14464,8 @@ function instance($$self, $$props, $$invalidate) {
14403
14464
  }
14404
14465
  }
14405
14466
 
14406
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunction*/ 58720256) {
14407
- $$invalidate(12, backgroundClick = () => {
14467
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunction*/ 33554456) {
14468
+ $$invalidate(15, backgroundClick = () => {
14408
14469
  if (closeEventName) {
14409
14470
  send_event(closeEventName, closeEventValue);
14410
14471
  }
@@ -14413,8 +14474,8 @@ function instance($$self, $$props, $$invalidate) {
14413
14474
  });
14414
14475
  }
14415
14476
 
14416
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 92274688) {
14417
- $$invalidate(11, backgroundClickPC = () => {
14477
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 67108888) {
14478
+ $$invalidate(14, backgroundClickPC = () => {
14418
14479
  if (closeEventName) {
14419
14480
  send_event(closeEventName, closeEventValue);
14420
14481
  }
@@ -14423,8 +14484,8 @@ function instance($$self, $$props, $$invalidate) {
14423
14484
  });
14424
14485
  }
14425
14486
 
14426
- if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 159383552) {
14427
- $$invalidate(10, backgroundClickSP = () => {
14487
+ if ($$self.$$.dirty[0] & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 134217752) {
14488
+ $$invalidate(13, backgroundClickSP = () => {
14428
14489
  if (closeEventName) {
14429
14490
  send_event(closeEventName, closeEventValue);
14430
14491
  }
@@ -14433,7 +14494,7 @@ function instance($$self, $$props, $$invalidate) {
14433
14494
  });
14434
14495
  }
14435
14496
 
14436
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint, transforms*/ 1572873) {
14497
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint, transforms*/ 12582977) {
14437
14498
  // 表示位置のスタイルとアニメーションの動きを設定
14438
14499
  {
14439
14500
  // 表示位置のスタイルの設定
@@ -14449,7 +14510,7 @@ function instance($$self, $$props, $$invalidate) {
14449
14510
  modalStyles.add(positionStyle);
14450
14511
  }
14451
14512
 
14452
- $$invalidate(3, transforms = []);
14513
+ $$invalidate(6, transforms = []);
14453
14514
 
14454
14515
  DEVICE_IDS.forEach(deviceId => {
14455
14516
  if (useBreakPoint) {
@@ -14477,7 +14538,7 @@ function instance($$self, $$props, $$invalidate) {
14477
14538
  }
14478
14539
  }
14479
14540
 
14480
- if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 1572865) {
14541
+ if ($$self.$$.dirty[0] & /*placement, useBreakPoint, breakPoint*/ 12582913) {
14481
14542
  // 表示位置の調整のスタイルを設定
14482
14543
  {
14483
14544
  let margin = DefaultModalPlacement.margin;
@@ -14509,7 +14570,7 @@ function instance($$self, $$props, $$invalidate) {
14509
14570
  }
14510
14571
  }
14511
14572
 
14512
- if ($$self.$$.dirty[0] & /*elasticity, useBreakPoint, breakPoint*/ 3145729) {
14573
+ if ($$self.$$.dirty[0] & /*elasticity, useBreakPoint, breakPoint*/ 25165825) {
14513
14574
  // 拡大方法のスタイルを設定
14514
14575
  {
14515
14576
  let elasticStyle = ElasticityStyle[elasticity];
@@ -14536,18 +14597,21 @@ function instance($$self, $$props, $$invalidate) {
14536
14597
  }
14537
14598
 
14538
14599
  if ($$self.$$.dirty[0] & /*close*/ 268435456) {
14539
- $$invalidate(9, handle_keydown = handleKeydown({ Escape: close }));
14600
+ $$invalidate(12, handle_keydown = handleKeydown({ Escape: close }));
14540
14601
  }
14541
14602
  };
14542
14603
 
14543
- $$invalidate(7, modal = null);
14604
+ $$invalidate(10, modal = null);
14544
14605
 
14545
14606
  // svelteコンポーネントのアニメーションを発火させるためにマウント時にvisibleをtrueにする。
14546
- $$invalidate(8, visible = false);
14607
+ $$invalidate(11, visible = false);
14547
14608
 
14548
14609
  return [
14549
14610
  useBreakPoint,
14550
14611
  animation,
14612
+ onClose,
14613
+ closeEventName,
14614
+ closeEventValue,
14551
14615
  closeButtonProps,
14552
14616
  transforms,
14553
14617
  backgroundOverlay,
@@ -14568,9 +14632,6 @@ function instance($$self, $$props, $$invalidate) {
14568
14632
  placement,
14569
14633
  breakPoint,
14570
14634
  elasticity,
14571
- onClose,
14572
- closeEventName,
14573
- closeEventValue,
14574
14635
  backgroundClickFunction,
14575
14636
  backgroundClickFunctionPC,
14576
14637
  backgroundClickFunctionSP,
@@ -14592,18 +14653,18 @@ class Modal extends SvelteComponent {
14592
14653
  create_fragment,
14593
14654
  safe_not_equal,
14594
14655
  {
14595
- onClick: 16,
14596
- clickEventName: 17,
14597
- clickEventValue: 18,
14656
+ onClick: 19,
14657
+ clickEventName: 20,
14658
+ clickEventValue: 21,
14598
14659
  useBreakPoint: 0,
14599
- placement: 19,
14600
- breakPoint: 20,
14601
- elasticity: 21,
14660
+ placement: 22,
14661
+ breakPoint: 23,
14662
+ elasticity: 24,
14602
14663
  animation: 1,
14603
- onClose: 22,
14604
- closeEventName: 23,
14605
- closeEventValue: 24,
14606
- closeButtonProps: 2
14664
+ onClose: 2,
14665
+ closeEventName: 3,
14666
+ closeEventValue: 4,
14667
+ closeButtonProps: 5
14607
14668
  },
14608
14669
  add_css,
14609
14670
  [-1, -1]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.235-28695221.a9f041a7",
3
+ "version": "1.1.235-28695399.37fa4bea",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",