@plaidev/karte-action-sdk 1.1.266 → 1.1.267-29071733.fabf64a6

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.
@@ -1,7 +1,7 @@
1
1
  import { writable, get } from 'svelte/store';
2
2
  import { onMount as onMount$1, onDestroy as onDestroy$1, beforeUpdate as beforeUpdate$1, afterUpdate as afterUpdate$1, tick as tick$1, getContext, setContext, createEventDispatcher } from 'svelte';
3
3
  import { SvelteComponent, init, safe_not_equal, empty, head_selector, detach, append_hydration, noop, component_subscribe, element, claim_element, attr, insert_hydration, create_slot, create_component, space, claim_component, claim_space, mount_component, update_slot_base, get_all_dirty_from_scope, get_slot_changes, transition_in, transition_out, destroy_component, append_styles, group_outros, check_outros, children, null_to_empty, listen, assign, set_attributes, toggle_class, get_spread_update, prevent_default, is_function, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, claim_svg_element, destroy_each, text, claim_text, set_data, src_url_equal, set_store_value, run_all, HtmlTagHydration, claim_html_tag, construct_svelte_component, subscribe, set_custom_element_data_map } from 'svelte/internal';
4
- import 'svelte/easing';
4
+ import { linear, elasticOut, cubicOut } from 'svelte/easing';
5
5
 
6
6
  /** @internal */
7
7
  const ACTION_HOOK_LABEL = '__ACTION_HOOK__';
@@ -3106,7 +3106,7 @@ let State$1 = class State extends SvelteComponent {
3106
3106
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
3107
3107
 
3108
3108
  function add_css$T(target) {
3109
- append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
3109
+ append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
3110
3110
  }
3111
3111
 
3112
3112
  // (22:0) {#if $state === path}
@@ -3133,7 +3133,7 @@ function create_if_block$i(ctx) {
3133
3133
  },
3134
3134
  h() {
3135
3135
  attr(div, "data-state-path", /*path*/ ctx[0]);
3136
- attr(div, "class", "state-item svelte-1amihue");
3136
+ attr(div, "class", "state-item svelte-2qb6dm");
3137
3137
  },
3138
3138
  m(target, anchor) {
3139
3139
  insert_hydration(target, div, anchor);
@@ -3381,6 +3381,54 @@ const execOnClickOperation = (onClickOperation) => {
3381
3381
  const haveFunction = (onClickOperation) => {
3382
3382
  return onClickOperation.operation !== 'none';
3383
3383
  };
3384
+ function getAnimation(animation) {
3385
+ switch (animation.type) {
3386
+ case 'fade':
3387
+ return `opacity: ${animation.progress}`;
3388
+ case 'bounce': {
3389
+ const translateX = animation.x;
3390
+ const translateY = animation.y;
3391
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0) scale(${animation.progress});`;
3392
+ }
3393
+ case 'slide-down': {
3394
+ const translateX = animation.x;
3395
+ const translateY = animation.y - 100 * (1 - animation.progress);
3396
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0);`;
3397
+ }
3398
+ case 'slide-up': {
3399
+ const translateX = animation.x;
3400
+ const translateY = animation.y + 100 * (1 - animation.progress);
3401
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0);`;
3402
+ }
3403
+ case 'slide-left': {
3404
+ const translateX = animation.x + 100 * (1 - animation.progress);
3405
+ const translateY = animation.y;
3406
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0);`;
3407
+ }
3408
+ case 'slide-right': {
3409
+ const translateX = animation.x - 100 * (1 - animation.progress);
3410
+ const translateY = animation.y;
3411
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0);`;
3412
+ }
3413
+ case 'none': {
3414
+ const translateX = animation.x;
3415
+ const translateY = animation.y;
3416
+ return `transform: translate3d(${translateX}%, ${translateY}%, 0);`;
3417
+ }
3418
+ default:
3419
+ console.warn(`[action-sdk] invalid '${animation}', so we use 'transform: none' instead`);
3420
+ return 'transform: none';
3421
+ }
3422
+ }
3423
+ const EASING = {
3424
+ fade: linear,
3425
+ bounce: elasticOut,
3426
+ 'slide-down': cubicOut,
3427
+ 'slide-up': cubicOut,
3428
+ 'slide-left': cubicOut,
3429
+ 'slide-right': cubicOut,
3430
+ none: linear,
3431
+ };
3384
3432
  /**
3385
3433
  * The function to activate svelte animation.
3386
3434
  *
@@ -3396,11 +3444,40 @@ function customAnimation(node, { transforms, animationStyle, delay = 0, duration
3396
3444
  return {};
3397
3445
  }
3398
3446
  }
3447
+ /**
3448
+ * The function to activate svelte animation v2.
3449
+ *
3450
+ * @param node - A target node of animation. This argument is passed by svelte, by default.
3451
+ * @param customAnimationOptions - A custom animation option object
3452
+ *
3453
+ * @see {@link https://svelte.dev/docs#template-syntax-element-directives-transition-fn-custom-transition-functions| Custom transition functions} for detail documentation
3454
+ *
3455
+ * @internal
3456
+ */
3457
+ function customAnimationV2(node, { transforms, animationStyle, delay = 0, duration = 1000, disabled, }) {
3458
+ if (disabled) {
3459
+ return {};
3460
+ }
3461
+ let [x, y] = [0, 0];
3462
+ for (const { query, x: tx, y: ty } of transforms) {
3463
+ if (query == null || window.matchMedia(query).matches) {
3464
+ x = tx;
3465
+ y = ty;
3466
+ break;
3467
+ }
3468
+ }
3469
+ return {
3470
+ delay,
3471
+ duration,
3472
+ easing: EASING[animationStyle],
3473
+ css: (progress) => getAnimation({ type: animationStyle, x, y, progress }),
3474
+ };
3475
+ }
3399
3476
 
3400
3477
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
3401
3478
 
3402
3479
  function add_css$S(target) {
3403
- append_styles(target, "svelte-g6ucc2", ".background.svelte-g6ucc2{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
3480
+ append_styles(target, "svelte-1d4fta", ".background.svelte-1d4fta{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
3404
3481
  }
3405
3482
 
3406
3483
  // (14:0) {#if backgroundOverlay}
@@ -3421,7 +3498,7 @@ function create_if_block$h(ctx) {
3421
3498
  this.h();
3422
3499
  },
3423
3500
  h() {
3424
- attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"));
3501
+ attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
3425
3502
  },
3426
3503
  m(target, anchor) {
3427
3504
  insert_hydration(target, div, anchor);
@@ -3432,7 +3509,7 @@ function create_if_block$h(ctx) {
3432
3509
  }
3433
3510
  },
3434
3511
  p(ctx, dirty) {
3435
- if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"))) {
3512
+ if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
3436
3513
  attr(div, "class", div_class_value);
3437
3514
  }
3438
3515
  },
@@ -3542,7 +3619,7 @@ function checkStopPropagation(eventName, handler) {
3542
3619
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3543
3620
 
3544
3621
  function add_css$R(target) {
3545
- append_styles(target, "svelte-1kmu8zp", ".button.svelte-1kmu8zp{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1kmu8zp:link,.button.svelte-1kmu8zp:visited,.button.svelte-1kmu8zp:active,.button.svelte-1kmu8zp:hover{color:inherit}");
3622
+ append_styles(target, "svelte-15k4deh", ".button.svelte-15k4deh{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-15k4deh:link,.button.svelte-15k4deh:visited,.button.svelte-15k4deh:active,.button.svelte-15k4deh:hover{color:inherit}");
3546
3623
  }
3547
3624
 
3548
3625
  // (53:0) {:else}
@@ -3581,7 +3658,7 @@ function create_else_block$5(ctx) {
3581
3658
  },
3582
3659
  h() {
3583
3660
  set_attributes(button, button_data);
3584
- toggle_class(button, "svelte-1kmu8zp", true);
3661
+ toggle_class(button, "svelte-15k4deh", true);
3585
3662
  },
3586
3663
  m(target, anchor) {
3587
3664
  insert_hydration(target, button, anchor);
@@ -3620,7 +3697,7 @@ function create_else_block$5(ctx) {
3620
3697
  dataAttrStopPropagation('click')
3621
3698
  ]));
3622
3699
 
3623
- toggle_class(button, "svelte-1kmu8zp", true);
3700
+ toggle_class(button, "svelte-15k4deh", true);
3624
3701
  },
3625
3702
  i(local) {
3626
3703
  if (current) return;
@@ -3661,7 +3738,7 @@ function create_if_block_2$2(ctx) {
3661
3738
  this.h();
3662
3739
  },
3663
3740
  h() {
3664
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1kmu8zp"));
3741
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
3665
3742
  attr(div, "style", /*style*/ ctx[1]);
3666
3743
  },
3667
3744
  m(target, anchor) {
@@ -3761,7 +3838,7 @@ function create_if_block_1$4(ctx) {
3761
3838
  },
3762
3839
  h() {
3763
3840
  set_attributes(a, a_data);
3764
- toggle_class(a, "svelte-1kmu8zp", true);
3841
+ toggle_class(a, "svelte-15k4deh", true);
3765
3842
  },
3766
3843
  m(target, anchor) {
3767
3844
  insert_hydration(target, a, anchor);
@@ -3803,7 +3880,7 @@ function create_if_block_1$4(ctx) {
3803
3880
  dataAttrStopPropagation('click')
3804
3881
  ]));
3805
3882
 
3806
- toggle_class(a, "svelte-1kmu8zp", true);
3883
+ toggle_class(a, "svelte-15k4deh", true);
3807
3884
  },
3808
3885
  i(local) {
3809
3886
  if (current) return;
@@ -3844,7 +3921,7 @@ function create_if_block$g(ctx) {
3844
3921
  this.h();
3845
3922
  },
3846
3923
  h() {
3847
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1kmu8zp"));
3924
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
3848
3925
  attr(div, "style", /*style*/ ctx[1]);
3849
3926
  },
3850
3927
  m(target, anchor) {
@@ -4057,7 +4134,7 @@ let Button$1 = class Button extends SvelteComponent {
4057
4134
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
4058
4135
 
4059
4136
  function add_css$Q(target) {
4060
- append_styles(target, "svelte-1i2vo31", ".modal.svelte-1i2vo31{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1i2vo31 > .button{flex:auto;display:flex}.close.svelte-1i2vo31{position:absolute;top:0;right:0}.close.svelte-1i2vo31 > .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-1i2vo31 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1i2vo31{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1i2vo31{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-1i2vo31{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}}");
4137
+ append_styles(target, "svelte-1ijkyzl", ".modal.svelte-1ijkyzl{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1ijkyzl > .button{flex:auto;display:flex}.close.svelte-1ijkyzl{position:absolute;top:0;right:0}.close.svelte-1ijkyzl > .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-1ijkyzl > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1ijkyzl{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1ijkyzl{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-1ijkyzl{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}}");
4061
4138
  }
4062
4139
 
4063
4140
  // (278:0) {:else}
@@ -4232,7 +4309,7 @@ function create_if_block$f(ctx) {
4232
4309
  this.h();
4233
4310
  },
4234
4311
  h() {
4235
- attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"));
4312
+ attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"));
4236
4313
  attr(div, "role", "dialog");
4237
4314
  attr(div, "aria-modal", "true");
4238
4315
  attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
@@ -4256,7 +4333,7 @@ function create_if_block$f(ctx) {
4256
4333
 
4257
4334
  button.$set(button_changes);
4258
4335
 
4259
- if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"))) {
4336
+ if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"))) {
4260
4337
  attr(div, "class", div_class_value);
4261
4338
  }
4262
4339
  },
@@ -4321,7 +4398,7 @@ function create_if_block_1$3(ctx) {
4321
4398
  this.h();
4322
4399
  },
4323
4400
  h() {
4324
- attr(div, "class", "close svelte-1i2vo31");
4401
+ attr(div, "class", "close svelte-1ijkyzl");
4325
4402
  set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
4326
4403
  },
4327
4404
  m(target, anchor) {
@@ -4446,7 +4523,7 @@ function create_default_slot$7(ctx) {
4446
4523
  this.h();
4447
4524
  },
4448
4525
  h() {
4449
- attr(div, "class", "modal-content svelte-1i2vo31");
4526
+ attr(div, "class", "modal-content svelte-1ijkyzl");
4450
4527
  attr(div, "style", /*_style*/ ctx[5]);
4451
4528
  },
4452
4529
  m(target, anchor) {
@@ -5084,7 +5161,7 @@ class Grid extends SvelteComponent {
5084
5161
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
5085
5162
 
5086
5163
  function add_css$P(target) {
5087
- append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
5164
+ append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
5088
5165
  }
5089
5166
 
5090
5167
  function create_fragment$1o(ctx) {
@@ -5118,8 +5195,8 @@ function create_fragment$1o(ctx) {
5118
5195
  this.h();
5119
5196
  },
5120
5197
  h() {
5121
- attr(div0, "class", "grid-item-inner svelte-1cryhmb");
5122
- attr(div1, "class", "grid-item svelte-1cryhmb");
5198
+ attr(div0, "class", "grid-item-inner svelte-n7kdl3");
5199
+ attr(div1, "class", "grid-item svelte-n7kdl3");
5123
5200
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
5124
5201
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
5125
5202
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -5441,7 +5518,7 @@ class RenderText extends SvelteComponent {
5441
5518
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
5442
5519
 
5443
5520
  function add_css$O(target) {
5444
- append_styles(target, "svelte-vz6867", ".text-element-wrapper.svelte-vz6867.svelte-vz6867{position:relative;height:100%}.text-element.svelte-vz6867.svelte-vz6867{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden;font-size:12px;line-height:1.5}.text-link-element.svelte-vz6867.svelte-vz6867{text-decoration:none;color:inherit}.text-element-inner.svelte-vz6867.svelte-vz6867{width:100%;height:auto}.text-direction-vertical.svelte-vz6867.svelte-vz6867{writing-mode:vertical-rl}.text-direction-vertical.svelte-vz6867 .text-element-inner.svelte-vz6867{width:auto;height:100%}.tooltip.svelte-vz6867.svelte-vz6867{display:none;position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);color:#fff;background-color:#3d4948;white-space:nowrap;padding:4px 8px 4px 8px;border-radius:4px;font-size:12px;z-index:2147483647}.tooltip.svelte-vz6867.svelte-vz6867:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-vz6867.svelte-vz6867{display:block}.tooltip-error.svelte-vz6867.svelte-vz6867{background-color:#c00}.tooltip-error.svelte-vz6867.svelte-vz6867:before{border-bottom:7px solid #c00}");
5521
+ append_styles(target, "svelte-9ixs0b", ".text-element-wrapper.svelte-9ixs0b.svelte-9ixs0b{position:relative;height:100%}.text-element.svelte-9ixs0b.svelte-9ixs0b{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden;font-size:12px;line-height:1.5}.text-link-element.svelte-9ixs0b.svelte-9ixs0b{text-decoration:none;color:inherit}.text-element-inner.svelte-9ixs0b.svelte-9ixs0b{width:100%;height:auto}.text-direction-vertical.svelte-9ixs0b.svelte-9ixs0b{writing-mode:vertical-rl}.text-direction-vertical.svelte-9ixs0b .text-element-inner.svelte-9ixs0b{width:auto;height:100%}.tooltip.svelte-9ixs0b.svelte-9ixs0b{display:none;position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);color:#fff;background-color:#3d4948;white-space:nowrap;padding:4px 8px 4px 8px;border-radius:4px;font-size:12px;z-index:2147483647}.tooltip.svelte-9ixs0b.svelte-9ixs0b:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-9ixs0b.svelte-9ixs0b{display:block}.tooltip-error.svelte-9ixs0b.svelte-9ixs0b{background-color:#c00}.tooltip-error.svelte-9ixs0b.svelte-9ixs0b:before{border-bottom:7px solid #c00}");
5445
5522
  }
5446
5523
 
5447
5524
  // (92:2) {:else}
@@ -5471,8 +5548,8 @@ function create_else_block$2(ctx) {
5471
5548
  this.h();
5472
5549
  },
5473
5550
  h() {
5474
- attr(div0, "class", "text-element-inner svelte-vz6867");
5475
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
5551
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
5552
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
5476
5553
  attr(div1, "style", /*style*/ ctx[5]);
5477
5554
  },
5478
5555
  m(target, anchor) {
@@ -5486,7 +5563,7 @@ function create_else_block$2(ctx) {
5486
5563
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
5487
5564
  rendertext.$set(rendertext_changes);
5488
5565
 
5489
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
5566
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
5490
5567
  attr(div1, "class", div1_class_value);
5491
5568
  }
5492
5569
 
@@ -5561,12 +5638,12 @@ function create_if_block$d(ctx) {
5561
5638
  this.h();
5562
5639
  },
5563
5640
  h() {
5564
- attr(div0, "class", "text-element-inner svelte-vz6867");
5641
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
5565
5642
  attr(a, "href", '');
5566
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
5643
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
5567
5644
  attr(a, "style", /*style*/ ctx[5]);
5568
- attr(div1, "class", "tooltip svelte-vz6867");
5569
- attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
5645
+ attr(div1, "class", "tooltip svelte-9ixs0b");
5646
+ attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
5570
5647
  },
5571
5648
  m(target, anchor) {
5572
5649
  insert_hydration(target, a, anchor);
@@ -5592,7 +5669,7 @@ function create_if_block$d(ctx) {
5592
5669
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
5593
5670
  rendertext.$set(rendertext_changes);
5594
5671
 
5595
- if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
5672
+ if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
5596
5673
  attr(a, "class", a_class_value);
5597
5674
  }
5598
5675
 
@@ -5654,7 +5731,7 @@ function create_fragment$1m(ctx) {
5654
5731
  this.h();
5655
5732
  },
5656
5733
  h() {
5657
- attr(div, "class", "text-element-wrapper svelte-vz6867");
5734
+ attr(div, "class", "text-element-wrapper svelte-9ixs0b");
5658
5735
  },
5659
5736
  m(target, anchor) {
5660
5737
  insert_hydration(target, div, anchor);
@@ -5820,7 +5897,7 @@ class TextElement extends SvelteComponent {
5820
5897
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
5821
5898
 
5822
5899
  function add_css$N(target) {
5823
- append_styles(target, "svelte-ujdxfc", ".text-button-element.svelte-ujdxfc{width:100%;height:100%}.text-button-element.svelte-ujdxfc > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#33403e;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-ujdxfc > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-ujdxfc > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-ujdxfc > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5900
+ append_styles(target, "svelte-1vg84sc", ".text-button-element.svelte-1vg84sc{width:100%;height:100%}.text-button-element.svelte-1vg84sc > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#33403e;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-1vg84sc > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-1vg84sc > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-1vg84sc > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5824
5901
  }
5825
5902
 
5826
5903
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5889,7 +5966,7 @@ function create_fragment$1l(ctx) {
5889
5966
  this.h();
5890
5967
  },
5891
5968
  h() {
5892
- attr(div, "class", "text-button-element svelte-ujdxfc");
5969
+ attr(div, "class", "text-button-element svelte-1vg84sc");
5893
5970
  },
5894
5971
  m(target, anchor) {
5895
5972
  insert_hydration(target, div, anchor);
@@ -5981,7 +6058,7 @@ class TextButtonElement extends SvelteComponent {
5981
6058
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5982
6059
 
5983
6060
  function add_css$M(target) {
5984
- append_styles(target, "svelte-1alkh1m", ".image-element.svelte-1alkh1m{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1alkh1m > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image-element.svelte-1alkh1m > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1alkh1m > .button:not(._disabled):hover,.image-element.transport.svelte-1alkh1m > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-1alkh1m{width:100%;height:100%}");
6061
+ append_styles(target, "svelte-t6tu0e", ".image-element.svelte-t6tu0e{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-t6tu0e > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image-element.svelte-t6tu0e > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-t6tu0e > .button:not(._disabled):hover,.image-element.transport.svelte-t6tu0e > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-t6tu0e{width:100%;height:100%}");
5985
6062
  }
5986
6063
 
5987
6064
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -6009,7 +6086,7 @@ function create_default_slot$5(ctx) {
6009
6086
  this.h();
6010
6087
  },
6011
6088
  h() {
6012
- attr(img, "class", "image svelte-1alkh1m");
6089
+ attr(img, "class", "image svelte-t6tu0e");
6013
6090
  attr(img, "loading", "lazy");
6014
6091
  attr(img, "width", "auto");
6015
6092
  attr(img, "height", "auto");
@@ -6081,7 +6158,7 @@ function create_fragment$1k(ctx) {
6081
6158
  this.h();
6082
6159
  },
6083
6160
  h() {
6084
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
6161
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
6085
6162
  },
6086
6163
  m(target, anchor) {
6087
6164
  insert_hydration(target, div, anchor);
@@ -6100,7 +6177,7 @@ function create_fragment$1k(ctx) {
6100
6177
 
6101
6178
  button.$set(button_changes);
6102
6179
 
6103
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
6180
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
6104
6181
  attr(div, "class", div_class_value);
6105
6182
  }
6106
6183
  },
@@ -6172,7 +6249,7 @@ class ImageElement extends SvelteComponent {
6172
6249
  /* src/components/List.svelte generated by Svelte v3.53.1 */
6173
6250
 
6174
6251
  function add_css$L(target) {
6175
- append_styles(target, "svelte-1t8r9z", ".list.svelte-1t8r9z{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
6252
+ append_styles(target, "svelte-aquv6z", ".list.svelte-aquv6z{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
6176
6253
  }
6177
6254
 
6178
6255
  function create_fragment$1j(ctx) {
@@ -6195,7 +6272,7 @@ function create_fragment$1j(ctx) {
6195
6272
  this.h();
6196
6273
  },
6197
6274
  h() {
6198
- attr(div, "class", "list svelte-1t8r9z");
6275
+ attr(div, "class", "list svelte-aquv6z");
6199
6276
  attr(div, "style", /*style*/ ctx[0]);
6200
6277
  },
6201
6278
  m(target, anchor) {
@@ -6329,7 +6406,7 @@ let List$1 = class List extends SvelteComponent {
6329
6406
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
6330
6407
 
6331
6408
  function add_css$K(target) {
6332
- append_styles(target, "svelte-1lbw8v2", ".list-item.svelte-1lbw8v2{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-1lbw8v2 > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6409
+ append_styles(target, "svelte-9n97pe", ".list-item.svelte-9n97pe{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-9n97pe > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6333
6410
  }
6334
6411
 
6335
6412
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -6412,7 +6489,7 @@ function create_fragment$1i(ctx) {
6412
6489
  this.h();
6413
6490
  },
6414
6491
  h() {
6415
- attr(div, "class", "list-item svelte-1lbw8v2");
6492
+ attr(div, "class", "list-item svelte-9n97pe");
6416
6493
  attr(div, "style", /*listItemStyle*/ ctx[3]);
6417
6494
  },
6418
6495
  m(target, anchor) {
@@ -6538,7 +6615,7 @@ let ListItem$1 = class ListItem extends SvelteComponent {
6538
6615
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
6539
6616
 
6540
6617
  function add_css$J(target) {
6541
- append_styles(target, "svelte-w6jkzh", ".embed.svelte-w6jkzh{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-w6jkzh iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6618
+ append_styles(target, "svelte-wocq4p", ".embed.svelte-wocq4p{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-wocq4p iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
6542
6619
  }
6543
6620
 
6544
6621
  function create_fragment$1h(ctx) {
@@ -6556,7 +6633,7 @@ function create_fragment$1h(ctx) {
6556
6633
  this.h();
6557
6634
  },
6558
6635
  h() {
6559
- attr(div, "class", "embed svelte-w6jkzh");
6636
+ attr(div, "class", "embed svelte-wocq4p");
6560
6637
  attr(div, "style", /*_style*/ ctx[1]);
6561
6638
  },
6562
6639
  m(target, anchor) {
@@ -6599,7 +6676,7 @@ class EmbedElement extends SvelteComponent {
6599
6676
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
6600
6677
 
6601
6678
  function add_css$I(target) {
6602
- append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6679
+ append_styles(target, "svelte-vikz49", ".embed.svelte-vikz49{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-vikz49 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6603
6680
  }
6604
6681
 
6605
6682
  function create_fragment$1g(ctx) {
@@ -6622,7 +6699,7 @@ function create_fragment$1g(ctx) {
6622
6699
  },
6623
6700
  h() {
6624
6701
  attr(div0, "class", "karte-player");
6625
- attr(div1, "class", "embed svelte-ljxq7x");
6702
+ attr(div1, "class", "embed svelte-vikz49");
6626
6703
  attr(div1, "style", /*_style*/ ctx[0]);
6627
6704
  },
6628
6705
  m(target, anchor) {
@@ -6964,7 +7041,7 @@ class MovieYouTubeElement extends SvelteComponent {
6964
7041
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6965
7042
 
6966
7043
  function add_css$H(target) {
6967
- append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
7044
+ append_styles(target, "svelte-vikz49", ".embed.svelte-vikz49{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-vikz49 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
6968
7045
  }
6969
7046
 
6970
7047
  function create_fragment$1f(ctx) {
@@ -6987,7 +7064,7 @@ function create_fragment$1f(ctx) {
6987
7064
  },
6988
7065
  h() {
6989
7066
  attr(div0, "class", "karte-player");
6990
- attr(div1, "class", "embed svelte-ljxq7x");
7067
+ attr(div1, "class", "embed svelte-vikz49");
6991
7068
  attr(div1, "style", /*_style*/ ctx[0]);
6992
7069
  },
6993
7070
  m(target, anchor) {
@@ -7171,7 +7248,7 @@ class MovieVimeoElement extends SvelteComponent {
7171
7248
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
7172
7249
 
7173
7250
  function add_css$G(target) {
7174
- append_styles(target, "svelte-1fjy5oo", ".textarea-wrapper.svelte-1fjy5oo{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-1fjy5oo{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-1fjy5oo::placeholder{color:var(--placeholder-color)}.textarea.svelte-1fjy5oo:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
7251
+ append_styles(target, "svelte-zxvkkc", ".textarea-wrapper.svelte-zxvkkc{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-zxvkkc{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-zxvkkc::placeholder{color:var(--placeholder-color)}.textarea.svelte-zxvkkc:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
7175
7252
  }
7176
7253
 
7177
7254
  function create_fragment$1e(ctx) {
@@ -7201,12 +7278,12 @@ function create_fragment$1e(ctx) {
7201
7278
  this.h();
7202
7279
  },
7203
7280
  h() {
7204
- attr(textarea, "class", "textarea svelte-1fjy5oo");
7281
+ attr(textarea, "class", "textarea svelte-zxvkkc");
7205
7282
  textarea.value = /*$value*/ ctx[4];
7206
7283
  textarea.required = /*required*/ ctx[1];
7207
7284
  attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
7208
7285
  attr(textarea, "style", /*style*/ ctx[3]);
7209
- attr(div, "class", "textarea-wrapper svelte-1fjy5oo");
7286
+ attr(div, "class", "textarea-wrapper svelte-zxvkkc");
7210
7287
  attr(div, "style", /*styleVariables*/ ctx[2]);
7211
7288
  },
7212
7289
  m(target, anchor) {
@@ -7358,7 +7435,7 @@ class FormTextarea extends SvelteComponent {
7358
7435
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
7359
7436
 
7360
7437
  function add_css$F(target) {
7361
- append_styles(target, "svelte-1ntb6j8", ".radio-buttons.svelte-1ntb6j8{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-1ntb6j8{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-1ntb6j8{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-1ntb6j8:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18,160,160,.08),0px 1px 4px -1px rgba(18,160,160,.24)}.radio-button-text.svelte-1ntb6j8{margin-left:0.5em}");
7438
+ append_styles(target, "svelte-17s08g", ".radio-buttons.svelte-17s08g{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-17s08g{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-17s08g{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-17s08g:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18,160,160,.08),0px 1px 4px -1px rgba(18,160,160,.24)}.radio-button-text.svelte-17s08g{margin-left:0.5em}");
7362
7439
  }
7363
7440
 
7364
7441
  function get_each_context$7(ctx, list, i) {
@@ -7415,14 +7492,14 @@ function create_each_block$7(ctx) {
7415
7492
  },
7416
7493
  h() {
7417
7494
  attr(input, "type", "radio");
7418
- attr(input, "class", "radio-button-input svelte-1ntb6j8");
7495
+ attr(input, "class", "radio-button-input svelte-17s08g");
7419
7496
  attr(input, "style", /*buttonStyle*/ ctx[5]);
7420
7497
  attr(input, "name", /*name*/ ctx[0]);
7421
7498
  input.value = input_value_value = /*option*/ ctx[17];
7422
7499
  input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
7423
- attr(span, "class", "radio-button-text svelte-1ntb6j8");
7500
+ attr(span, "class", "radio-button-text svelte-17s08g");
7424
7501
  attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
7425
- attr(label, "class", "radio-button svelte-1ntb6j8");
7502
+ attr(label, "class", "radio-button svelte-17s08g");
7426
7503
  },
7427
7504
  m(target, anchor) {
7428
7505
  insert_hydration(target, label, anchor);
@@ -7501,7 +7578,7 @@ function create_fragment$1d(ctx) {
7501
7578
  this.h();
7502
7579
  },
7503
7580
  h() {
7504
- attr(div, "class", "radio-buttons svelte-1ntb6j8");
7581
+ attr(div, "class", "radio-buttons svelte-17s08g");
7505
7582
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7506
7583
  },
7507
7584
  m(target, anchor) {
@@ -7670,7 +7747,7 @@ class FormRadioButtons extends SvelteComponent {
7670
7747
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
7671
7748
 
7672
7749
  function add_css$E(target) {
7673
- append_styles(target, "svelte-iejizj", ".select.svelte-iejizj{width:100%;height:100%}.select-select.svelte-iejizj{position:relative;appearance:none;width:100%;height:100%;cursor:pointer;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:0 0 0 10px;font-size:12px;line-height:1.5}.select-select.svelte-iejizj:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-iejizj{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
7750
+ append_styles(target, "svelte-t9ynyj", ".select.svelte-t9ynyj{width:100%;height:100%}.select-select.svelte-t9ynyj{position:relative;appearance:none;width:100%;height:100%;cursor:pointer;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:0 0 0 10px;font-size:12px;line-height:1.5}.select-select.svelte-t9ynyj:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-t9ynyj{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
7674
7751
  }
7675
7752
 
7676
7753
  function get_each_context$6(ctx, list, i) {
@@ -7841,10 +7918,10 @@ function create_fragment$1c(ctx) {
7841
7918
  this.h();
7842
7919
  },
7843
7920
  h() {
7844
- attr(select, "class", "select-select svelte-iejizj");
7921
+ attr(select, "class", "select-select svelte-t9ynyj");
7845
7922
  attr(select, "style", /*style*/ ctx[3]);
7846
- attr(div0, "class", "select-icon svelte-iejizj");
7847
- attr(div1, "class", "select svelte-iejizj");
7923
+ attr(div0, "class", "select-icon svelte-t9ynyj");
7924
+ attr(div1, "class", "select svelte-t9ynyj");
7848
7925
  attr(div1, "style", /*styleVariables*/ ctx[2]);
7849
7926
  },
7850
7927
  m(target, anchor) {
@@ -8046,7 +8123,7 @@ class FormSelect extends SvelteComponent {
8046
8123
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
8047
8124
 
8048
8125
  function add_css$D(target) {
8049
- append_styles(target, "svelte-2pz1us", ".check-boxes.svelte-2pz1us.svelte-2pz1us{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-2pz1us.svelte-2pz1us{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-2pz1us.svelte-2pz1us{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-2pz1us.svelte-2pz1us{display:inline-flex;background-color:var(--color-main);width:var(--size);height:var(--size);border-radius:calc(var(--size) / 4);justify-content:center;align-items:center;flex:none}.check-box-icon.svelte-2pz1us.svelte-2pz1us{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-2pz1us.svelte-2pz1us:after{content:'';display:block;box-sizing:border-box;width:45%;height:91%;transform:translate(60%, -8%) rotate(45deg);border-style:none solid solid none;border-width:2px;border-color:var(--color-sub)}.check-box-check._checked.svelte-2pz1us.svelte-2pz1us{background-color:var(--color-main-active)}.check-box-check._checked.svelte-2pz1us .check-box-icon.svelte-2pz1us:after{border-color:var(--color-sub-active)}.check-box-text.svelte-2pz1us.svelte-2pz1us{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
8126
+ append_styles(target, "svelte-1p65cg8", ".check-boxes.svelte-1p65cg8.svelte-1p65cg8{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-1p65cg8.svelte-1p65cg8{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-1p65cg8.svelte-1p65cg8{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-1p65cg8.svelte-1p65cg8{display:inline-flex;background-color:var(--color-main);width:var(--size);height:var(--size);border-radius:calc(var(--size) / 4);justify-content:center;align-items:center;flex:none}.check-box-icon.svelte-1p65cg8.svelte-1p65cg8{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-1p65cg8.svelte-1p65cg8:after{content:'';display:block;box-sizing:border-box;width:45%;height:91%;transform:translate(60%, -8%) rotate(45deg);border-style:none solid solid none;border-width:2px;border-color:var(--color-sub)}.check-box-check._checked.svelte-1p65cg8.svelte-1p65cg8{background-color:var(--color-main-active)}.check-box-check._checked.svelte-1p65cg8 .check-box-icon.svelte-1p65cg8:after{border-color:var(--color-sub-active)}.check-box-text.svelte-1p65cg8.svelte-1p65cg8{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
8050
8127
  }
8051
8128
 
8052
8129
  function get_each_context$5(ctx, list, i) {
@@ -8108,19 +8185,19 @@ function create_each_block$5(ctx) {
8108
8185
  this.h();
8109
8186
  },
8110
8187
  h() {
8111
- attr(input, "class", "check-box-input svelte-2pz1us");
8188
+ attr(input, "class", "check-box-input svelte-1p65cg8");
8112
8189
  attr(input, "type", "checkbox");
8113
8190
  attr(input, "name", /*name*/ ctx[0]);
8114
8191
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
8115
- attr(span0, "class", "check-box-icon svelte-2pz1us");
8192
+ attr(span0, "class", "check-box-icon svelte-1p65cg8");
8116
8193
 
8117
8194
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
8118
8195
  ? ' _checked'
8119
- : ''}`) + " svelte-2pz1us"));
8196
+ : ''}`) + " svelte-1p65cg8"));
8120
8197
 
8121
- attr(span2, "class", "check-box-text svelte-2pz1us");
8198
+ attr(span2, "class", "check-box-text svelte-1p65cg8");
8122
8199
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
8123
- attr(label, "class", "check-box svelte-2pz1us");
8200
+ attr(label, "class", "check-box svelte-1p65cg8");
8124
8201
  attr(label, "style", /*styleVariables*/ ctx[5]);
8125
8202
  },
8126
8203
  m(target, anchor) {
@@ -8152,7 +8229,7 @@ function create_each_block$5(ctx) {
8152
8229
 
8153
8230
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
8154
8231
  ? ' _checked'
8155
- : ''}`) + " svelte-2pz1us"))) {
8232
+ : ''}`) + " svelte-1p65cg8"))) {
8156
8233
  attr(span1, "class", span1_class_value);
8157
8234
  }
8158
8235
 
@@ -8205,7 +8282,7 @@ function create_fragment$1b(ctx) {
8205
8282
  this.h();
8206
8283
  },
8207
8284
  h() {
8208
- attr(div, "class", "check-boxes svelte-2pz1us");
8285
+ attr(div, "class", "check-boxes svelte-1p65cg8");
8209
8286
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
8210
8287
  },
8211
8288
  m(target, anchor) {
@@ -8380,7 +8457,7 @@ class FormCheckBoxes extends SvelteComponent {
8380
8457
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
8381
8458
 
8382
8459
  function add_css$C(target) {
8383
- append_styles(target, "svelte-9idbf1", ".rating-buttons.svelte-9idbf1{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-9idbf1{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
8460
+ append_styles(target, "svelte-1iqf36p", ".rating-buttons.svelte-1iqf36p{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1iqf36p{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
8384
8461
  }
8385
8462
 
8386
8463
  function get_each_context$4(ctx, list, i) {
@@ -8415,7 +8492,7 @@ function create_each_block$4(ctx) {
8415
8492
  this.h();
8416
8493
  },
8417
8494
  h() {
8418
- attr(button, "class", "rating-button svelte-9idbf1");
8495
+ attr(button, "class", "rating-button svelte-1iqf36p");
8419
8496
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
8420
8497
  },
8421
8498
  m(target, anchor) {
@@ -8478,7 +8555,7 @@ function create_fragment$1a(ctx) {
8478
8555
  this.h();
8479
8556
  },
8480
8557
  h() {
8481
- attr(div, "class", "rating-buttons svelte-9idbf1");
8558
+ attr(div, "class", "rating-buttons svelte-1iqf36p");
8482
8559
  },
8483
8560
  m(target, anchor) {
8484
8561
  insert_hydration(target, div, anchor);
@@ -8622,7 +8699,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
8622
8699
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
8623
8700
 
8624
8701
  function add_css$B(target) {
8625
- append_styles(target, "svelte-1b5dvzw", ".rating-buttons.svelte-1b5dvzw{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1b5dvzw{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-1b5dvzw{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-1b5dvzw:not(._active){filter:grayscale(100%)}");
8702
+ append_styles(target, "svelte-tbunko", ".rating-buttons.svelte-tbunko{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-tbunko{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-tbunko{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-tbunko:not(._active){filter:grayscale(100%)}");
8626
8703
  }
8627
8704
 
8628
8705
  function get_each_context$3(ctx, list, i) {
@@ -8658,9 +8735,9 @@ function create_each_block$3(ctx) {
8658
8735
  },
8659
8736
  h() {
8660
8737
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
8661
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
8738
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
8662
8739
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
8663
- attr(button, "class", "rating-button svelte-1b5dvzw");
8740
+ attr(button, "class", "rating-button svelte-tbunko");
8664
8741
  attr(button, "style", /*buttonStyle*/ ctx[0]);
8665
8742
  },
8666
8743
  m(target, anchor) {
@@ -8676,7 +8753,7 @@ function create_each_block$3(ctx) {
8676
8753
  p(new_ctx, dirty) {
8677
8754
  ctx = new_ctx;
8678
8755
 
8679
- if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"))) {
8756
+ if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"))) {
8680
8757
  attr(img, "class", img_class_value);
8681
8758
  }
8682
8759
 
@@ -8723,7 +8800,7 @@ function create_fragment$19(ctx) {
8723
8800
  this.h();
8724
8801
  },
8725
8802
  h() {
8726
- attr(div, "class", "rating-buttons svelte-1b5dvzw");
8803
+ attr(div, "class", "rating-buttons svelte-tbunko");
8727
8804
  },
8728
8805
  m(target, anchor) {
8729
8806
  insert_hydration(target, div, anchor);
@@ -8831,7 +8908,7 @@ class FormRatingButtonsFace extends SvelteComponent {
8831
8908
  /* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
8832
8909
 
8833
8910
  function add_css$A(target) {
8834
- append_styles(target, "svelte-f14zo5", ".input-wrapper.svelte-f14zo5{display:flex;align-items:center;width:100%;height:100%}.input.svelte-f14zo5{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-f14zo5::placeholder{color:var(--placeholder-color)}.input.svelte-f14zo5:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-f14zo5{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
8911
+ append_styles(target, "svelte-h8fqwx", ".input-wrapper.svelte-h8fqwx{display:flex;align-items:center;width:100%;height:100%}.input.svelte-h8fqwx{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-h8fqwx::placeholder{color:var(--placeholder-color)}.input.svelte-h8fqwx:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-h8fqwx{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
8835
8912
  }
8836
8913
 
8837
8914
  function create_fragment$18(ctx) {
@@ -8862,13 +8939,13 @@ function create_fragment$18(ctx) {
8862
8939
  this.h();
8863
8940
  },
8864
8941
  h() {
8865
- attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"));
8942
+ attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
8866
8943
  attr(input, "type", "text");
8867
8944
  input.value = /*$value*/ ctx[2];
8868
8945
  input.required = /*required*/ ctx[0];
8869
8946
  attr(input, "placeholder", /*placeholder*/ ctx[1]);
8870
8947
  attr(input, "style", /*style*/ ctx[5]);
8871
- attr(div, "class", "input-wrapper svelte-f14zo5");
8948
+ attr(div, "class", "input-wrapper svelte-h8fqwx");
8872
8949
  attr(div, "style", /*styleVariables*/ ctx[4]);
8873
8950
  },
8874
8951
  m(target, anchor) {
@@ -8881,7 +8958,7 @@ function create_fragment$18(ctx) {
8881
8958
  }
8882
8959
  },
8883
8960
  p(ctx, [dirty]) {
8884
- if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"))) {
8961
+ if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
8885
8962
  attr(input, "class", input_class_value);
8886
8963
  }
8887
8964
 
@@ -9069,7 +9146,7 @@ class FormIdentifyInput extends SvelteComponent {
9069
9146
  /* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
9070
9147
 
9071
9148
  function add_css$z(target) {
9072
- append_styles(target, "svelte-pzrwlo", ".radio-buttons.svelte-pzrwlo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-pzrwlo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-pzrwlo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-pzrwlo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-pzrwlo{margin-left:0.5em}");
9149
+ append_styles(target, "svelte-8zbmyo", ".radio-buttons.svelte-8zbmyo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-8zbmyo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-8zbmyo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-8zbmyo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-8zbmyo{margin-left:0.5em}");
9073
9150
  }
9074
9151
 
9075
9152
  function create_fragment$17(ctx) {
@@ -9135,20 +9212,20 @@ function create_fragment$17(ctx) {
9135
9212
  },
9136
9213
  h() {
9137
9214
  attr(input0, "type", "radio");
9138
- attr(input0, "class", "radio-button-input svelte-pzrwlo");
9215
+ attr(input0, "class", "radio-button-input svelte-8zbmyo");
9139
9216
  attr(input0, "style", /*buttonStyle*/ ctx[2]);
9140
9217
  input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
9141
- attr(span0, "class", "radio-button-text svelte-pzrwlo");
9218
+ attr(span0, "class", "radio-button-text svelte-8zbmyo");
9142
9219
  attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
9143
- attr(label0, "class", "radio-button svelte-pzrwlo");
9220
+ attr(label0, "class", "radio-button svelte-8zbmyo");
9144
9221
  attr(input1, "type", "radio");
9145
- attr(input1, "class", "radio-button-input svelte-pzrwlo");
9222
+ attr(input1, "class", "radio-button-input svelte-8zbmyo");
9146
9223
  attr(input1, "style", /*buttonStyle*/ ctx[2]);
9147
9224
  input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
9148
- attr(span1, "class", "radio-button-text svelte-pzrwlo");
9225
+ attr(span1, "class", "radio-button-text svelte-8zbmyo");
9149
9226
  attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
9150
- attr(label1, "class", "radio-button svelte-pzrwlo");
9151
- attr(div, "class", "radio-buttons svelte-pzrwlo");
9227
+ attr(label1, "class", "radio-button svelte-8zbmyo");
9228
+ attr(div, "class", "radio-buttons svelte-8zbmyo");
9152
9229
  attr(div, "style", /*_layoutStyle*/ ctx[0]);
9153
9230
  },
9154
9231
  m(target, anchor) {
@@ -9316,7 +9393,7 @@ class FormIdentifyChoices extends SvelteComponent {
9316
9393
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
9317
9394
 
9318
9395
  function add_css$y(target) {
9319
- append_styles(target, "svelte-1qfq79t", ".root.svelte-1qfq79t{width:100%;height:100%;position:relative}.container.svelte-1qfq79t{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-1qfq79t{height:100%;position:absolute;display:flex}.transition.svelte-1qfq79t{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-1qfq79t{height:100%;flex:none}.prev-button-container.svelte-1qfq79t,.next-button-container.svelte-1qfq79t{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-1qfq79t{left:0}.next-button-container.svelte-1qfq79t{right:0}.move-button.svelte-1qfq79t{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-1qfq79t{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-1qfq79t{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-1qfq79t{border-radius:51%}");
9396
+ append_styles(target, "svelte-ji1fh", ".root.svelte-ji1fh{width:100%;height:100%;position:relative}.container.svelte-ji1fh{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-ji1fh{height:100%;position:absolute;display:flex}.transition.svelte-ji1fh{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-ji1fh{height:100%;flex:none}.prev-button-container.svelte-ji1fh,.next-button-container.svelte-ji1fh{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-ji1fh{left:0}.next-button-container.svelte-ji1fh{right:0}.move-button.svelte-ji1fh{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-ji1fh{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-ji1fh{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-ji1fh{border-radius:51%}");
9320
9397
  }
9321
9398
 
9322
9399
  function get_each_context$2(ctx, list, i) {
@@ -9362,9 +9439,9 @@ function create_if_block_1$2(ctx) {
9362
9439
  attr(svg, "viewBox", "0 0 10 16");
9363
9440
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
9364
9441
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
9365
- attr(button, "class", "move-button svelte-1qfq79t");
9442
+ attr(button, "class", "move-button svelte-ji1fh");
9366
9443
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
9367
- attr(div, "class", "prev-button-container svelte-1qfq79t");
9444
+ attr(div, "class", "prev-button-container svelte-ji1fh");
9368
9445
  },
9369
9446
  m(target, anchor) {
9370
9447
  insert_hydration(target, div, anchor);
@@ -9430,9 +9507,9 @@ function create_if_block$b(ctx) {
9430
9507
  attr(svg, "viewBox", "0 0 10 16");
9431
9508
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
9432
9509
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
9433
- attr(button, "class", "move-button svelte-1qfq79t");
9510
+ attr(button, "class", "move-button svelte-ji1fh");
9434
9511
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
9435
- attr(div, "class", "next-button-container svelte-1qfq79t");
9512
+ attr(div, "class", "next-button-container svelte-ji1fh");
9436
9513
  },
9437
9514
  m(target, anchor) {
9438
9515
  insert_hydration(target, div, anchor);
@@ -9492,9 +9569,9 @@ function create_each_block$2(ctx) {
9492
9569
  this.h();
9493
9570
  },
9494
9571
  h() {
9495
- attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
9572
+ attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
9496
9573
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
9497
- attr(button, "class", "navigation-item svelte-1qfq79t");
9574
+ attr(button, "class", "navigation-item svelte-ji1fh");
9498
9575
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
9499
9576
  },
9500
9577
  m(target, anchor) {
@@ -9600,14 +9677,14 @@ function create_fragment$16(ctx) {
9600
9677
  this.h();
9601
9678
  },
9602
9679
  h() {
9603
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
9680
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
9604
9681
  attr(div0, "style", /*slideStyle*/ ctx[14]);
9605
- attr(div1, "class", "container svelte-1qfq79t");
9682
+ attr(div1, "class", "container svelte-ji1fh");
9606
9683
  attr(div1, "style", /*_style*/ ctx[0]);
9607
- attr(div2, "class", "navigation svelte-1qfq79t");
9684
+ attr(div2, "class", "navigation svelte-ji1fh");
9608
9685
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
9609
9686
  set_attributes(div3, div3_data);
9610
- toggle_class(div3, "svelte-1qfq79t", true);
9687
+ toggle_class(div3, "svelte-ji1fh", true);
9611
9688
  },
9612
9689
  m(target, anchor) {
9613
9690
  insert_hydration(target, div3, anchor);
@@ -9649,7 +9726,7 @@ function create_fragment$16(ctx) {
9649
9726
  }
9650
9727
  }
9651
9728
 
9652
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
9729
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
9653
9730
  attr(div0, "class", div0_class_value);
9654
9731
  }
9655
9732
 
@@ -9715,7 +9792,7 @@ function create_fragment$16(ctx) {
9715
9792
  }
9716
9793
 
9717
9794
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
9718
- toggle_class(div3, "svelte-1qfq79t", true);
9795
+ toggle_class(div3, "svelte-ji1fh", true);
9719
9796
  },
9720
9797
  i(local) {
9721
9798
  if (current) return;
@@ -10227,7 +10304,7 @@ class Slide extends SvelteComponent {
10227
10304
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
10228
10305
 
10229
10306
  function add_css$x(target) {
10230
- append_styles(target, "svelte-1rv0qgo", ".item.svelte-1rv0qgo{height:100%;flex:none;position:relative}.item.svelte-1rv0qgo img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-1rv0qgo{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
10307
+ append_styles(target, "svelte-9ygf1w", ".item.svelte-9ygf1w{height:100%;flex:none;position:relative}.item.svelte-9ygf1w img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-9ygf1w{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
10231
10308
  }
10232
10309
 
10233
10310
  function create_fragment$15(ctx) {
@@ -10255,9 +10332,9 @@ function create_fragment$15(ctx) {
10255
10332
  this.h();
10256
10333
  },
10257
10334
  h() {
10258
- attr(div0, "class", "item-inner svelte-1rv0qgo");
10335
+ attr(div0, "class", "item-inner svelte-9ygf1w");
10259
10336
  attr(div0, "style", /*_style*/ ctx[0]);
10260
- attr(div1, "class", "item svelte-1rv0qgo");
10337
+ attr(div1, "class", "item svelte-9ygf1w");
10261
10338
  attr(div1, "style", /*itemStyle*/ ctx[1]);
10262
10339
  },
10263
10340
  m(target, anchor) {
@@ -10383,7 +10460,7 @@ class SlideItem extends SvelteComponent {
10383
10460
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
10384
10461
 
10385
10462
  function add_css$w(target) {
10386
- append_styles(target, "svelte-t87l6f", ".countdown.svelte-t87l6f{position:relative;width:100%;height:100%}.countdown-inner.svelte-t87l6f{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10463
+ append_styles(target, "svelte-rroxiz", ".countdown.svelte-rroxiz{position:relative;width:100%;height:100%}.countdown-inner.svelte-rroxiz{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10387
10464
  }
10388
10465
 
10389
10466
  const get_default_slot_changes$1 = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -10414,9 +10491,9 @@ function create_fragment$14(ctx) {
10414
10491
  this.h();
10415
10492
  },
10416
10493
  h() {
10417
- attr(div0, "class", "countdown-inner svelte-t87l6f");
10494
+ attr(div0, "class", "countdown-inner svelte-rroxiz");
10418
10495
  attr(div0, "style", /*_style*/ ctx[0]);
10419
- attr(div1, "class", "countdown svelte-t87l6f");
10496
+ attr(div1, "class", "countdown svelte-rroxiz");
10420
10497
  },
10421
10498
  m(target, anchor) {
10422
10499
  insert_hydration(target, div1, anchor);
@@ -10546,7 +10623,7 @@ class Countdown extends SvelteComponent {
10546
10623
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
10547
10624
 
10548
10625
  function add_css$v(target) {
10549
- append_styles(target, "svelte-1c91vpe", ".box.svelte-1c91vpe{position:relative;width:100%;height:100%}.box.svelte-1c91vpe > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10626
+ append_styles(target, "svelte-1ccydfy", ".box.svelte-1ccydfy{position:relative;width:100%;height:100%}.box.svelte-1ccydfy > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
10550
10627
  }
10551
10628
 
10552
10629
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -10629,7 +10706,7 @@ function create_fragment$13(ctx) {
10629
10706
  this.h();
10630
10707
  },
10631
10708
  h() {
10632
- attr(div, "class", "box svelte-1c91vpe");
10709
+ attr(div, "class", "box svelte-1ccydfy");
10633
10710
  },
10634
10711
  m(target, anchor) {
10635
10712
  insert_hydration(target, div, anchor);
@@ -10690,7 +10767,7 @@ class Box extends SvelteComponent {
10690
10767
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
10691
10768
 
10692
10769
  function add_css$u(target) {
10693
- append_styles(target, "svelte-1mk6wi4", ".icon.svelte-1mk6wi4{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1mk6wi4 > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.icon.svelte-1mk6wi4 > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1mk6wi4 svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
10770
+ append_styles(target, "svelte-1mkvcuo", ".icon.svelte-1mkvcuo{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1mkvcuo > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.icon.svelte-1mkvcuo > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1mkvcuo svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
10694
10771
  }
10695
10772
 
10696
10773
  // (56:4) {#if svg}
@@ -10794,7 +10871,7 @@ function create_fragment$12(ctx) {
10794
10871
  this.h();
10795
10872
  },
10796
10873
  h() {
10797
- attr(div, "class", "icon svelte-1mk6wi4");
10874
+ attr(div, "class", "icon svelte-1mkvcuo");
10798
10875
  },
10799
10876
  m(target, anchor) {
10800
10877
  insert_hydration(target, div, anchor);
@@ -10903,7 +10980,7 @@ class IconElement extends SvelteComponent {
10903
10980
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
10904
10981
 
10905
10982
  function add_css$t(target) {
10906
- append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
10983
+ append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
10907
10984
  }
10908
10985
 
10909
10986
  function create_fragment$11(ctx) {
@@ -10939,7 +11016,7 @@ function create_fragment$11(ctx) {
10939
11016
  this.h();
10940
11017
  },
10941
11018
  h() {
10942
- attr(div, "class", "codeElement svelte-1ng2n51");
11019
+ attr(div, "class", "codeElement svelte-ymsb9l");
10943
11020
  attr(div, "style", /*style*/ ctx[3]);
10944
11021
  },
10945
11022
  m(target, anchor) {
@@ -11028,7 +11105,7 @@ class CodeElement extends SvelteComponent {
11028
11105
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
11029
11106
 
11030
11107
  function add_css$s(target) {
11031
- append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
11108
+ append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
11032
11109
  }
11033
11110
 
11034
11111
  function create_fragment$10(ctx) {
@@ -11052,7 +11129,7 @@ function create_fragment$10(ctx) {
11052
11129
  this.h();
11053
11130
  },
11054
11131
  h() {
11055
- attr(div, "class", "flex svelte-9v2qdg");
11132
+ attr(div, "class", "flex svelte-1e71ejc");
11056
11133
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
11057
11134
  },
11058
11135
  m(target, anchor) {
@@ -11149,7 +11226,7 @@ class Flex extends SvelteComponent {
11149
11226
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
11150
11227
 
11151
11228
  function add_css$r(target) {
11152
- append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
11229
+ append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
11153
11230
  }
11154
11231
 
11155
11232
  function create_fragment$$(ctx) {
@@ -11172,7 +11249,7 @@ function create_fragment$$(ctx) {
11172
11249
  this.h();
11173
11250
  },
11174
11251
  h() {
11175
- attr(div, "class", "flex-item svelte-164ah5d");
11252
+ attr(div, "class", "flex-item svelte-1p0bk1x");
11176
11253
  attr(div, "style", /*style*/ ctx[0]);
11177
11254
  },
11178
11255
  m(target, anchor) {
@@ -11592,7 +11669,7 @@ class GridModalState extends SvelteComponent {
11592
11669
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
11593
11670
 
11594
11671
  function add_css$q(target) {
11595
- append_styles(target, "svelte-akic2e", ".text-block.svelte-akic2e.svelte-akic2e{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:hidden}.text-block-inner.svelte-akic2e.svelte-akic2e{width:100%;height:auto}.text-direction-vertical.svelte-akic2e.svelte-akic2e{writing-mode:vertical-rl}.text-direction-vertical.svelte-akic2e .text-block-inner.svelte-akic2e{width:auto;height:100%}");
11672
+ append_styles(target, "svelte-15pej1m", ".text-block.svelte-15pej1m.svelte-15pej1m{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:hidden}.text-block-inner.svelte-15pej1m.svelte-15pej1m{width:100%;height:auto}.text-direction-vertical.svelte-15pej1m.svelte-15pej1m{writing-mode:vertical-rl}.text-direction-vertical.svelte-15pej1m .text-block-inner.svelte-15pej1m{width:auto;height:100%}");
11596
11673
  }
11597
11674
 
11598
11675
  function create_fragment$Z(ctx) {
@@ -11621,8 +11698,8 @@ function create_fragment$Z(ctx) {
11621
11698
  this.h();
11622
11699
  },
11623
11700
  h() {
11624
- attr(div0, "class", "text-block-inner svelte-akic2e");
11625
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
11701
+ attr(div0, "class", "text-block-inner svelte-15pej1m");
11702
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
11626
11703
  attr(div1, "style", /*style*/ ctx[2]);
11627
11704
  },
11628
11705
  m(target, anchor) {
@@ -11636,7 +11713,7 @@ function create_fragment$Z(ctx) {
11636
11713
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
11637
11714
  rendertext.$set(rendertext_changes);
11638
11715
 
11639
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
11716
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
11640
11717
  attr(div1, "class", div1_class_value);
11641
11718
  }
11642
11719
 
@@ -11714,7 +11791,7 @@ class TextBlock extends SvelteComponent {
11714
11791
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
11715
11792
 
11716
11793
  function add_css$p(target) {
11717
- append_styles(target, "svelte-1c34p4n", ".text-button-block.svelte-1c34p4n{width:100%;height:100%;background-color:#000000;border-radius:4px}.text-button.svelte-1c34p4n{display:flex;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5}.text-button.svelte-1c34p4n:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-1c34p4n:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
11794
+ append_styles(target, "svelte-ff0k6r", ".text-button-block.svelte-ff0k6r{width:100%;height:100%;background-color:#000000;border-radius:4px}.text-button.svelte-ff0k6r{display:flex;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5}.text-button.svelte-ff0k6r:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-ff0k6r:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
11718
11795
  }
11719
11796
 
11720
11797
  function create_fragment$Y(ctx) {
@@ -11744,9 +11821,9 @@ function create_fragment$Y(ctx) {
11744
11821
  this.h();
11745
11822
  },
11746
11823
  h() {
11747
- attr(button, "class", "text-button svelte-1c34p4n");
11824
+ attr(button, "class", "text-button svelte-ff0k6r");
11748
11825
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
11749
- attr(div, "class", "text-button-block svelte-1c34p4n");
11826
+ attr(div, "class", "text-button-block svelte-ff0k6r");
11750
11827
  attr(div, "style", /*_style*/ ctx[2]);
11751
11828
  },
11752
11829
  m(target, anchor) {
@@ -11852,7 +11929,7 @@ class TextButtonBlock extends SvelteComponent {
11852
11929
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
11853
11930
 
11854
11931
  function add_css$o(target) {
11855
- append_styles(target, "svelte-1jus6sx", ".image-block.svelte-1jus6sx{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image.svelte-1jus6sx{width:100%;height:100%}.transport.svelte-1jus6sx:hover,.transport.svelte-1jus6sx:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
11932
+ append_styles(target, "svelte-1pdw891", ".image-block.svelte-1pdw891{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image.svelte-1pdw891{width:100%;height:100%}.transport.svelte-1pdw891:hover,.transport.svelte-1pdw891:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
11856
11933
  }
11857
11934
 
11858
11935
  function create_fragment$X(ctx) {
@@ -11888,14 +11965,14 @@ function create_fragment$X(ctx) {
11888
11965
  this.h();
11889
11966
  },
11890
11967
  h() {
11891
- attr(img, "class", "image svelte-1jus6sx");
11968
+ attr(img, "class", "image svelte-1pdw891");
11892
11969
  attr(img, "loading", "lazy");
11893
11970
  attr(img, "width", "auto");
11894
11971
  attr(img, "height", "auto");
11895
11972
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
11896
11973
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
11897
11974
  attr(img, "alt", /*alt*/ ctx[1]);
11898
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
11975
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
11899
11976
  attr(div, "style", /*_style*/ ctx[5]);
11900
11977
  },
11901
11978
  m(target, anchor) {
@@ -11920,7 +11997,7 @@ function create_fragment$X(ctx) {
11920
11997
  attr(img, "alt", /*alt*/ ctx[1]);
11921
11998
  }
11922
11999
 
11923
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
12000
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
11924
12001
  attr(div, "class", div_class_value);
11925
12002
  }
11926
12003
 
@@ -12372,7 +12449,7 @@ const AVATAR_SIZE_STYLES = {
12372
12449
  /* src/components-flex/avatar/Avatar.svelte generated by Svelte v3.53.1 */
12373
12450
 
12374
12451
  function add_css$n(target) {
12375
- append_styles(target, "svelte-apww0t", ".avatar.svelte-apww0t{display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;border:0}");
12452
+ append_styles(target, "svelte-1krsdyx", ".avatar.svelte-1krsdyx{display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;border:0}");
12376
12453
  }
12377
12454
 
12378
12455
  // (42:0) <svelte:element {...attributes} this={element} class="avatar" style={style} data-layer-id={layerId} on:click={handleClick} >
@@ -12424,7 +12501,7 @@ function create_dynamic_element$b(ctx) {
12424
12501
  },
12425
12502
  h() {
12426
12503
  if (!src_url_equal(img.src, img_src_value = /*props*/ ctx[0].image)) attr(img, "src", img_src_value);
12427
- attr(img, "class", "avatar-image svelte-apww0t");
12504
+ attr(img, "class", "avatar-image svelte-1krsdyx");
12428
12505
  attr(img, "alt", img_alt_value = /*props*/ ctx[0].alt);
12429
12506
  attr(img, "style", /*imgStyle*/ ctx[2]);
12430
12507
 
@@ -12434,7 +12511,7 @@ function create_dynamic_element$b(ctx) {
12434
12511
  set_attributes(svelte_element, svelte_element_data);
12435
12512
  }
12436
12513
 
12437
- toggle_class(svelte_element, "svelte-apww0t", true);
12514
+ toggle_class(svelte_element, "svelte-1krsdyx", true);
12438
12515
  },
12439
12516
  m(target, anchor) {
12440
12517
  insert_hydration(target, svelte_element, anchor);
@@ -12471,7 +12548,7 @@ function create_dynamic_element$b(ctx) {
12471
12548
  set_attributes(svelte_element, svelte_element_data);
12472
12549
  }
12473
12550
 
12474
- toggle_class(svelte_element, "svelte-apww0t", true);
12551
+ toggle_class(svelte_element, "svelte-1krsdyx", true);
12475
12552
  },
12476
12553
  d(detaching) {
12477
12554
  if (detaching) detach(svelte_element);
@@ -14639,7 +14716,7 @@ const ICON_VARIANTS = {
14639
14716
  /* src/components-flex/icon/Icon.svelte generated by Svelte v3.53.1 */
14640
14717
 
14641
14718
  function add_css$m(target) {
14642
- append_styles(target, "svelte-mut6o2", ".icon.svelte-mut6o2{display:flex;align-items:center;overflow:hidden;width:auto;cursor:pointer;text-decoration:none}");
14719
+ append_styles(target, "svelte-19rssou", ".icon.svelte-19rssou{display:flex;align-items:center;overflow:hidden;width:auto;cursor:pointer;text-decoration:none}");
14643
14720
  }
14644
14721
 
14645
14722
  // (24:0) <svelte:element {...attributes} this={element} class="icon" style={style} data-layer-id={layerId} on:click={handleClick} >
@@ -14701,7 +14778,7 @@ function create_dynamic_element$a(ctx) {
14701
14778
  set_attributes(svelte_element, svelte_element_data);
14702
14779
  }
14703
14780
 
14704
- toggle_class(svelte_element, "svelte-mut6o2", true);
14781
+ toggle_class(svelte_element, "svelte-19rssou", true);
14705
14782
  },
14706
14783
  m(target, anchor) {
14707
14784
  insert_hydration(target, svelte_element, anchor);
@@ -14754,7 +14831,7 @@ function create_dynamic_element$a(ctx) {
14754
14831
  set_attributes(svelte_element, svelte_element_data);
14755
14832
  }
14756
14833
 
14757
- toggle_class(svelte_element, "svelte-mut6o2", true);
14834
+ toggle_class(svelte_element, "svelte-19rssou", true);
14758
14835
  },
14759
14836
  i(local) {
14760
14837
  if (current) return;
@@ -15056,7 +15133,7 @@ function darkenColor(color, percent) {
15056
15133
  /* src/components-flex/button/Button.svelte generated by Svelte v3.53.1 */
15057
15134
 
15058
15135
  function add_css$l(target) {
15059
- append_styles(target, "svelte-brd6e9", ".button.svelte-brd6e9{display:inline-flex;gap:0.8em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;color:var(--color);border-color:var(--border-color);background-color:var(--bg-color)}.button.svelte-brd6e9:hover{background-color:var(--hover-bg-color);border-color:var(--hover-border-color)}.button-icon.svelte-brd6e9{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
15136
+ append_styles(target, "svelte-o2gomt", ".button.svelte-o2gomt{display:inline-flex;gap:0.8em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;color:var(--color);border-color:var(--border-color);background-color:var(--bg-color)}.button.svelte-o2gomt:hover{background-color:var(--hover-bg-color);border-color:var(--hover-border-color)}.button-icon.svelte-o2gomt{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
15060
15137
  }
15061
15138
 
15062
15139
  // (91:2) {#if props.isIcon && props.iconVariant}
@@ -15090,7 +15167,7 @@ function create_if_block$9(ctx) {
15090
15167
  this.h();
15091
15168
  },
15092
15169
  h() {
15093
- attr(div, "class", "button-icon svelte-brd6e9");
15170
+ attr(div, "class", "button-icon svelte-o2gomt");
15094
15171
  },
15095
15172
  m(target, anchor) {
15096
15173
  insert_hydration(target, div, anchor);
@@ -15187,7 +15264,7 @@ function create_dynamic_element$9(ctx) {
15187
15264
  set_attributes(svelte_element, svelte_element_data);
15188
15265
  }
15189
15266
 
15190
- toggle_class(svelte_element, "svelte-brd6e9", true);
15267
+ toggle_class(svelte_element, "svelte-o2gomt", true);
15191
15268
  },
15192
15269
  m(target, anchor) {
15193
15270
  insert_hydration(target, svelte_element, anchor);
@@ -15242,7 +15319,7 @@ function create_dynamic_element$9(ctx) {
15242
15319
  set_attributes(svelte_element, svelte_element_data);
15243
15320
  }
15244
15321
 
15245
- toggle_class(svelte_element, "svelte-brd6e9", true);
15322
+ toggle_class(svelte_element, "svelte-o2gomt", true);
15246
15323
  },
15247
15324
  i(local) {
15248
15325
  if (current) return;
@@ -15521,7 +15598,7 @@ const BUTTON_OUTLINED_WRAP_STYLES = {
15521
15598
  /* src/components-flex/button-outlined/ButtonOutlined.svelte generated by Svelte v3.53.1 */
15522
15599
 
15523
15600
  function add_css$k(target) {
15524
- append_styles(target, "svelte-ypshn1", ".button-outlined.svelte-ypshn1{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:var(--bg-color)}.button-outlined.svelte-ypshn1:hover{background-color:var(--hover-bg-color)}.button-outlined-icon.svelte-ypshn1{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;margin-bottom:0.1em}");
15601
+ append_styles(target, "svelte-38fju1", ".button-outlined.svelte-38fju1{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:var(--bg-color)}.button-outlined.svelte-38fju1:hover{background-color:var(--hover-bg-color)}.button-outlined-icon.svelte-38fju1{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;margin-bottom:0.1em}");
15525
15602
  }
15526
15603
 
15527
15604
  // (53:2) {#if props.isIcon && props.iconVariant}
@@ -15555,7 +15632,7 @@ function create_if_block$8(ctx) {
15555
15632
  this.h();
15556
15633
  },
15557
15634
  h() {
15558
- attr(div, "class", "button-outlined-icon svelte-ypshn1");
15635
+ attr(div, "class", "button-outlined-icon svelte-38fju1");
15559
15636
  },
15560
15637
  m(target, anchor) {
15561
15638
  insert_hydration(target, div, anchor);
@@ -15642,7 +15719,7 @@ function create_dynamic_element$8(ctx) {
15642
15719
  this.h();
15643
15720
  },
15644
15721
  h() {
15645
- attr(span, "class", "button-outlined-label svelte-ypshn1");
15722
+ attr(span, "class", "button-outlined-label svelte-38fju1");
15646
15723
 
15647
15724
  if ((/-/).test(/*element*/ ctx[4])) {
15648
15725
  set_custom_element_data_map(svelte_element, svelte_element_data);
@@ -15650,7 +15727,7 @@ function create_dynamic_element$8(ctx) {
15650
15727
  set_attributes(svelte_element, svelte_element_data);
15651
15728
  }
15652
15729
 
15653
- toggle_class(svelte_element, "svelte-ypshn1", true);
15730
+ toggle_class(svelte_element, "svelte-38fju1", true);
15654
15731
  },
15655
15732
  m(target, anchor) {
15656
15733
  insert_hydration(target, svelte_element, anchor);
@@ -15704,7 +15781,7 @@ function create_dynamic_element$8(ctx) {
15704
15781
  set_attributes(svelte_element, svelte_element_data);
15705
15782
  }
15706
15783
 
15707
- toggle_class(svelte_element, "svelte-ypshn1", true);
15784
+ toggle_class(svelte_element, "svelte-38fju1", true);
15708
15785
  },
15709
15786
  i(local) {
15710
15787
  if (current) return;
@@ -15900,7 +15977,7 @@ const getButtonTextThemeStyles = getPropStyles(callback$2);
15900
15977
  /* src/components-flex/button-text/ButtonText.svelte generated by Svelte v3.53.1 */
15901
15978
 
15902
15979
  function add_css$j(target) {
15903
- append_styles(target, "svelte-lted9r", ".button-text.svelte-lted9r{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border:0;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:rgba(255, 255, 255, 0)}.button-text.svelte-lted9r:hover{background-color:var(--hover-bg-color)}.button-text-icon.svelte-lted9r{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
15980
+ append_styles(target, "svelte-1xgvp8r", ".button-text.svelte-1xgvp8r{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border:0;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:rgba(255, 255, 255, 0)}.button-text.svelte-1xgvp8r:hover{background-color:var(--hover-bg-color)}.button-text-icon.svelte-1xgvp8r{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
15904
15981
  }
15905
15982
 
15906
15983
  // (49:2) {#if props.isIcon && props.iconVariant}
@@ -15934,7 +16011,7 @@ function create_if_block$7(ctx) {
15934
16011
  this.h();
15935
16012
  },
15936
16013
  h() {
15937
- attr(div, "class", "button-text-icon svelte-lted9r");
16014
+ attr(div, "class", "button-text-icon svelte-1xgvp8r");
15938
16015
  },
15939
16016
  m(target, anchor) {
15940
16017
  insert_hydration(target, div, anchor);
@@ -16021,7 +16098,7 @@ function create_dynamic_element$7(ctx) {
16021
16098
  this.h();
16022
16099
  },
16023
16100
  h() {
16024
- attr(span, "class", "button-text-label svelte-lted9r");
16101
+ attr(span, "class", "button-text-label svelte-1xgvp8r");
16025
16102
 
16026
16103
  if ((/-/).test(/*element*/ ctx[4])) {
16027
16104
  set_custom_element_data_map(svelte_element, svelte_element_data);
@@ -16029,7 +16106,7 @@ function create_dynamic_element$7(ctx) {
16029
16106
  set_attributes(svelte_element, svelte_element_data);
16030
16107
  }
16031
16108
 
16032
- toggle_class(svelte_element, "svelte-lted9r", true);
16109
+ toggle_class(svelte_element, "svelte-1xgvp8r", true);
16033
16110
  },
16034
16111
  m(target, anchor) {
16035
16112
  insert_hydration(target, svelte_element, anchor);
@@ -16083,7 +16160,7 @@ function create_dynamic_element$7(ctx) {
16083
16160
  set_attributes(svelte_element, svelte_element_data);
16084
16161
  }
16085
16162
 
16086
- toggle_class(svelte_element, "svelte-lted9r", true);
16163
+ toggle_class(svelte_element, "svelte-1xgvp8r", true);
16087
16164
  },
16088
16165
  i(local) {
16089
16166
  if (current) return;
@@ -16235,7 +16312,7 @@ const BUTTON_TEXT_THEME = {
16235
16312
  /* src/components-flex/close-button/CloseButton.svelte generated by Svelte v3.53.1 */
16236
16313
 
16237
16314
  function add_css$i(target) {
16238
- append_styles(target, "svelte-3133h2", ".close-button.svelte-3133h2.svelte-3133h2{display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.close-button.svelte-3133h2 svg.svelte-3133h2{transition:transform 0.12s}.close-button.svelte-3133h2:hover svg.svelte-3133h2{transform:rotate(90deg)}.close-button-order-one.svelte-3133h2.svelte-3133h2{order:1}.close-button-order-two.svelte-3133h2.svelte-3133h2{order:2}");
16315
+ append_styles(target, "svelte-3mvsv6", ".close-button.svelte-3mvsv6.svelte-3mvsv6{display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.close-button.svelte-3mvsv6 svg.svelte-3mvsv6{transition:transform 0.12s}.close-button.svelte-3mvsv6:hover svg.svelte-3mvsv6{transform:rotate(90deg)}.close-button-order-one.svelte-3mvsv6.svelte-3mvsv6{order:1}.close-button-order-two.svelte-3mvsv6.svelte-3mvsv6{order:2}");
16239
16316
  }
16240
16317
 
16241
16318
  // (90:2) {#if hasLabel}
@@ -16261,7 +16338,7 @@ function create_if_block$6(ctx) {
16261
16338
 
16262
16339
  attr(span, "class", "close-button-label " + (/*isLeftLabelPlacement*/ ctx[10]
16263
16340
  ? 'close-button-order-one'
16264
- : '') + " svelte-3133h2");
16341
+ : '') + " svelte-3mvsv6");
16265
16342
  },
16266
16343
  m(target, anchor) {
16267
16344
  insert_hydration(target, span, anchor);
@@ -16353,7 +16430,7 @@ function create_dynamic_element$6(ctx) {
16353
16430
  set_style(svg, "width", "100%");
16354
16431
  set_style(svg, "height", "100%");
16355
16432
  attr(svg, "fill", /*color*/ ctx[8]);
16356
- attr(svg, "class", "svelte-3133h2");
16433
+ attr(svg, "class", "svelte-3mvsv6");
16357
16434
  attr(span, "style", /*iconStyle*/ ctx[1]);
16358
16435
 
16359
16436
  if ((/-/).test(/*element*/ ctx[6])) {
@@ -16362,7 +16439,7 @@ function create_dynamic_element$6(ctx) {
16362
16439
  set_attributes(svelte_element, svelte_element_data);
16363
16440
  }
16364
16441
 
16365
- toggle_class(svelte_element, "svelte-3133h2", true);
16442
+ toggle_class(svelte_element, "svelte-3mvsv6", true);
16366
16443
  },
16367
16444
  m(target, anchor) {
16368
16445
  insert_hydration(target, svelte_element, anchor);
@@ -16408,7 +16485,7 @@ function create_dynamic_element$6(ctx) {
16408
16485
  set_attributes(svelte_element, svelte_element_data);
16409
16486
  }
16410
16487
 
16411
- toggle_class(svelte_element, "svelte-3133h2", true);
16488
+ toggle_class(svelte_element, "svelte-3mvsv6", true);
16412
16489
  },
16413
16490
  d(detaching) {
16414
16491
  if (detaching) detach(svelte_element);
@@ -16649,10 +16726,10 @@ const IMAGE_ROUND_STYLES = {
16649
16726
  /* src/components-flex/image/Image.svelte generated by Svelte v3.53.1 */
16650
16727
 
16651
16728
  function add_css$h(target) {
16652
- append_styles(target, "svelte-1y7kpsc", ".image.svelte-1y7kpsc{max-width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;flex-shrink:0}.image-img.svelte-1y7kpsc{vertical-align:top;width:100%;height:100%;object-fit:cover;user-select:none;-webkit-user-drag:none}");
16729
+ append_styles(target, "svelte-rewdem", ".image.svelte-rewdem{max-width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center}.image-img.svelte-rewdem{vertical-align:top;width:100%;height:100%;object-fit:cover;user-select:none;-webkit-user-drag:none}");
16653
16730
  }
16654
16731
 
16655
- // (24:0) <svelte:element this={element} {...attributes} class="image" {style} data-layer-id={layerId} on:click={handleClick} >
16732
+ // (26:0) <svelte:element this={element} {...attributes} class="image" {style} data-layer-id={layerId} on:click={handleClick} >
16656
16733
  function create_dynamic_element$5(ctx) {
16657
16734
  let svelte_element;
16658
16735
  let img;
@@ -16695,7 +16772,7 @@ function create_dynamic_element$5(ctx) {
16695
16772
  h() {
16696
16773
  if (!src_url_equal(img.src, img_src_value = /*props*/ ctx[0].image)) attr(img, "src", img_src_value);
16697
16774
  attr(img, "alt", img_alt_value = /*props*/ ctx[0].alt);
16698
- attr(img, "class", "image-img svelte-1y7kpsc");
16775
+ attr(img, "class", "image-img svelte-rewdem");
16699
16776
 
16700
16777
  if ((/-/).test(/*element*/ ctx[4])) {
16701
16778
  set_custom_element_data_map(svelte_element, svelte_element_data);
@@ -16703,7 +16780,7 @@ function create_dynamic_element$5(ctx) {
16703
16780
  set_attributes(svelte_element, svelte_element_data);
16704
16781
  }
16705
16782
 
16706
- toggle_class(svelte_element, "svelte-1y7kpsc", true);
16783
+ toggle_class(svelte_element, "svelte-rewdem", true);
16707
16784
  },
16708
16785
  m(target, anchor) {
16709
16786
  insert_hydration(target, svelte_element, anchor);
@@ -16736,7 +16813,7 @@ function create_dynamic_element$5(ctx) {
16736
16813
  set_attributes(svelte_element, svelte_element_data);
16737
16814
  }
16738
16815
 
16739
- toggle_class(svelte_element, "svelte-1y7kpsc", true);
16816
+ toggle_class(svelte_element, "svelte-rewdem", true);
16740
16817
  },
16741
16818
  d(detaching) {
16742
16819
  if (detaching) detach(svelte_element);
@@ -16801,6 +16878,7 @@ function instance$l($$self, $$props, $$invalidate) {
16801
16878
  useInjectCustomizeCss(props);
16802
16879
  const { attributes, element, handleClick } = useClickable(props);
16803
16880
  const aspectVariantStyles = ASPECT_VARIANT[props.aspectVariant]?.getProps();
16881
+ const width = props.width ?? '100%';
16804
16882
 
16805
16883
  $$self.$$set = $$props => {
16806
16884
  if ('props' in $$props) $$invalidate(0, props = $$props.props);
@@ -16813,7 +16891,8 @@ function instance$l($$self, $$props, $$invalidate) {
16813
16891
  ...props.borderTopLeftRadius
16814
16892
  ? toCssRadius(props)
16815
16893
  : IMAGE_ROUND_STYLES[props.shape ?? 'square'],
16816
- width: props.width ?? '100%',
16894
+ width,
16895
+ flexShrink: String(width).indexOf('px') !== -1 ? 0 : 1,
16817
16896
  height: props.height ?? 'auto',
16818
16897
  aspectRatio: props.aspect ?? aspectVariantStyles?.aspect,
16819
16898
  ...toCssCommon(props),
@@ -16853,7 +16932,7 @@ const IMAGE_ASPECT_VARIANTS = {
16853
16932
  /* src/components-flex/layout/Layout.svelte generated by Svelte v3.53.1 */
16854
16933
 
16855
16934
  function add_css$g(target) {
16856
- append_styles(target, "svelte-1tjo4al", ".layout.svelte-1tjo4al{text-decoration:none;color:inherit}.layout[data-clickable=true].svelte-1tjo4al{cursor:pointer}.layout[data-clickable=true].svelte-1tjo4al:hover{opacity:0.8}");
16935
+ append_styles(target, "svelte-139vx15", ".layout.svelte-139vx15{text-decoration:none;color:inherit}.layout[data-clickable=true].svelte-139vx15{cursor:pointer}.layout[data-clickable=true].svelte-139vx15:hover{opacity:0.8}");
16857
16936
  }
16858
16937
 
16859
16938
  // (28:0) <svelte:element {...attributes} this="div" class="layout" style={style} data-layer-id={layerId} on:click={handleClick} >
@@ -16903,7 +16982,7 @@ function create_dynamic_element$4(ctx) {
16903
16982
  set_attributes(svelte_element, svelte_element_data);
16904
16983
  }
16905
16984
 
16906
- toggle_class(svelte_element, "svelte-1tjo4al", true);
16985
+ toggle_class(svelte_element, "svelte-139vx15", true);
16907
16986
  },
16908
16987
  m(target, anchor) {
16909
16988
  insert_hydration(target, svelte_element, anchor);
@@ -16948,7 +17027,7 @@ function create_dynamic_element$4(ctx) {
16948
17027
  set_attributes(svelte_element, svelte_element_data);
16949
17028
  }
16950
17029
 
16951
- toggle_class(svelte_element, "svelte-1tjo4al", true);
17030
+ toggle_class(svelte_element, "svelte-139vx15", true);
16952
17031
  },
16953
17032
  i(local) {
16954
17033
  if (current) return;
@@ -17076,7 +17155,7 @@ const LAYOUT_JUSTIFY = ['flex-start', 'center', 'flex-end', 'space-between'];
17076
17155
  /* src/components-flex/slider/Slider.svelte generated by Svelte v3.53.1 */
17077
17156
 
17078
17157
  function add_css$f(target) {
17079
- append_styles(target, "svelte-1k4xkut", ".slider-list.svelte-1k4xkut{-webkit-user-drag:none;margin:0;padding:0;list-style:none}");
17158
+ append_styles(target, "svelte-1slel1d", ".slider-list.svelte-1slel1d{-webkit-user-drag:none;margin:0;padding:0;list-style:none}");
17080
17159
  }
17081
17160
 
17082
17161
  function get_each_context$1(ctx, list, i) {
@@ -17216,12 +17295,12 @@ function create_fragment$j(ctx) {
17216
17295
  this.h();
17217
17296
  },
17218
17297
  h() {
17219
- attr(ul, "class", "slider-list svelte-1k4xkut");
17298
+ attr(ul, "class", "slider-list svelte-1slel1d");
17220
17299
  attr(ul, "style", ul_style_value = [/*containerStyle*/ ctx[5], /*overrideStyle*/ ctx[1]].join(' '));
17221
17300
  attr(div0, "style", /*indicatorListStyle*/ ctx[4]);
17222
17301
  attr(div1, "data-layer-id", /*layerId*/ ctx[0]);
17223
17302
  attr(div1, "style", /*style*/ ctx[6]);
17224
- attr(div1, "class", "slider svelte-1k4xkut");
17303
+ attr(div1, "class", "slider svelte-1slel1d");
17225
17304
  },
17226
17305
  m(target, anchor) {
17227
17306
  insert_hydration(target, div1, anchor);
@@ -17570,7 +17649,7 @@ class Slider extends SvelteComponent {
17570
17649
  /* src/components-flex/slider/SliderItem.svelte generated by Svelte v3.53.1 */
17571
17650
 
17572
17651
  function add_css$e(target) {
17573
- append_styles(target, "svelte-j5pon4", ".slider-item.svelte-j5pon4{overflow:hidden}.slider-item-inner.svelte-j5pon4{text-decoration:none;background:none;border:0;margin:0;padding:0;color:inherit;-webkit-user-drag:none;user-select:none}");
17652
+ append_styles(target, "svelte-1amglxo", ".slider-item.svelte-1amglxo{overflow:hidden}.slider-item-inner.svelte-1amglxo{text-decoration:none;background:none;border:0;margin:0;padding:0;color:inherit;-webkit-user-drag:none;user-select:none}");
17574
17653
  }
17575
17654
 
17576
17655
  // (10:2) <svelte:element {...attributes} this={element} class="slider-item-inner" on:click={handleClick} >
@@ -17608,7 +17687,7 @@ function create_dynamic_element$3(ctx) {
17608
17687
  set_attributes(svelte_element, svelte_element_data);
17609
17688
  }
17610
17689
 
17611
- toggle_class(svelte_element, "svelte-j5pon4", true);
17690
+ toggle_class(svelte_element, "svelte-1amglxo", true);
17612
17691
  },
17613
17692
  m(target, anchor) {
17614
17693
  insert_hydration(target, svelte_element, anchor);
@@ -17648,7 +17727,7 @@ function create_dynamic_element$3(ctx) {
17648
17727
  set_attributes(svelte_element, svelte_element_data);
17649
17728
  }
17650
17729
 
17651
- toggle_class(svelte_element, "svelte-j5pon4", true);
17730
+ toggle_class(svelte_element, "svelte-1amglxo", true);
17652
17731
  },
17653
17732
  i(local) {
17654
17733
  if (current) return;
@@ -17689,7 +17768,7 @@ function create_fragment$i(ctx) {
17689
17768
  },
17690
17769
  h() {
17691
17770
  attr(li, "data-layer-id", /*layerId*/ ctx[0]);
17692
- attr(li, "class", "slider-item svelte-j5pon4");
17771
+ attr(li, "class", "slider-item svelte-1amglxo");
17693
17772
  },
17694
17773
  m(target, anchor) {
17695
17774
  insert_hydration(target, li, anchor);
@@ -17846,7 +17925,7 @@ const TEXT_VARIANTS = {
17846
17925
  /* src/components-flex/text/Text.svelte generated by Svelte v3.53.1 */
17847
17926
 
17848
17927
  function add_css$d(target) {
17849
- append_styles(target, "svelte-14kt34i", ".text.svelte-14kt34i{margin:0;word-break:break-all;text-decoration:none}");
17928
+ append_styles(target, "svelte-vifn7y", ".text.svelte-vifn7y{margin:0;word-break:break-all;text-decoration:none}");
17850
17929
  }
17851
17930
 
17852
17931
  function create_fragment$h(ctx) {
@@ -17869,7 +17948,7 @@ function create_fragment$h(ctx) {
17869
17948
  this.h();
17870
17949
  },
17871
17950
  h() {
17872
- attr(p, "class", "text svelte-14kt34i");
17951
+ attr(p, "class", "text svelte-vifn7y");
17873
17952
  attr(p, "data-layer-id", /*layerId*/ ctx[0]);
17874
17953
  attr(p, "style", /*style*/ ctx[1]);
17875
17954
  },
@@ -17987,7 +18066,7 @@ class Text extends SvelteComponent {
17987
18066
  /* src/components-flex/rich-text/RichText.svelte generated by Svelte v3.53.1 */
17988
18067
 
17989
18068
  function add_css$c(target) {
17990
- append_styles(target, "svelte-mq7h73", ".rich-text.svelte-mq7h73 p{margin:0;word-break:break-all;text-decoration:none}.rich-text.svelte-mq7h73 p + p{margin-top:0.75em}");
18069
+ append_styles(target, "svelte-dxr423", ".rich-text.svelte-dxr423 p{margin:0;word-break:break-all;text-decoration:none}.rich-text.svelte-dxr423 p + p{margin-top:0.75em}");
17991
18070
  }
17992
18071
 
17993
18072
  function create_fragment$g(ctx) {
@@ -18011,7 +18090,7 @@ function create_fragment$g(ctx) {
18011
18090
  this.h();
18012
18091
  },
18013
18092
  h() {
18014
- attr(div, "class", "rich-text svelte-mq7h73");
18093
+ attr(div, "class", "rich-text svelte-dxr423");
18015
18094
  attr(div, "style", /*style*/ ctx[2]);
18016
18095
  attr(div, "data-layer-id", /*layerId*/ ctx[1]);
18017
18096
  },
@@ -18184,7 +18263,7 @@ const getTextLinkThemeStyles = getPropStyles(callback);
18184
18263
  /* src/components-flex/text-link/TextLink.svelte generated by Svelte v3.53.1 */
18185
18264
 
18186
18265
  function add_css$b(target) {
18187
- append_styles(target, "svelte-1qyhpm7", ".link.svelte-1qyhpm7{-webkit-appearance:none;border:0;background:none;padding:0;display:inline-flex}.link.svelte-1qyhpm7,.link.svelte-1qyhpm7:visited,.link.svelte-1qyhpm7:link{color:var(--color)}.link.svelte-1qyhpm7:hover{color:var(--hover-color)}.link.svelte-1qyhpm7:active{color:var(--active-color)}.link.underline-hover-on.svelte-1qyhpm7{text-decoration:none}.link.underline-hover-on.svelte-1qyhpm7:hover{text-decoration:underline}.link.underline-hover-off.svelte-1qyhpm7{text-decoration:underline}.link.underline-hover-off.svelte-1qyhpm7:hover{text-decoration:none}.link.underline-on.svelte-1qyhpm7{text-decoration:underline}.link.underline-off.svelte-1qyhpm7{text-decoration:none}");
18266
+ append_styles(target, "svelte-dc9m5n", ".link.svelte-dc9m5n{-webkit-appearance:none;border:0;background:none;padding:0;display:inline-flex}.link.svelte-dc9m5n,.link.svelte-dc9m5n:visited,.link.svelte-dc9m5n:link{color:var(--color)}.link.svelte-dc9m5n:hover{color:var(--hover-color)}.link.svelte-dc9m5n:active{color:var(--active-color)}.link.underline-hover-on.svelte-dc9m5n{text-decoration:none}.link.underline-hover-on.svelte-dc9m5n:hover{text-decoration:underline}.link.underline-hover-off.svelte-dc9m5n{text-decoration:underline}.link.underline-hover-off.svelte-dc9m5n:hover{text-decoration:none}.link.underline-on.svelte-dc9m5n{text-decoration:underline}.link.underline-off.svelte-dc9m5n{text-decoration:none}");
18188
18267
  }
18189
18268
 
18190
18269
  // (81:2) {#if props.isIcon && props.iconVariant}
@@ -18298,7 +18377,7 @@ function create_dynamic_element$2(ctx) {
18298
18377
  set_attributes(svelte_element, svelte_element_data);
18299
18378
  }
18300
18379
 
18301
- toggle_class(svelte_element, "svelte-1qyhpm7", true);
18380
+ toggle_class(svelte_element, "svelte-dc9m5n", true);
18302
18381
  },
18303
18382
  m(target, anchor) {
18304
18383
  insert_hydration(target, svelte_element, anchor);
@@ -18351,7 +18430,7 @@ function create_dynamic_element$2(ctx) {
18351
18430
  set_attributes(svelte_element, svelte_element_data);
18352
18431
  }
18353
18432
 
18354
- toggle_class(svelte_element, "svelte-1qyhpm7", true);
18433
+ toggle_class(svelte_element, "svelte-dc9m5n", true);
18355
18434
  },
18356
18435
  i(local) {
18357
18436
  if (current) return;
@@ -18538,7 +18617,7 @@ const TEXT_LINK_UNDERLINE = {
18538
18617
  /* src/components-flex/background-overlay/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
18539
18618
 
18540
18619
  function add_css$a(target) {
18541
- append_styles(target, "svelte-ed4ktn", ".v2-background.svelte-ed4ktn{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
18620
+ append_styles(target, "svelte-18nkdjz", ".v2-background.svelte-18nkdjz{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
18542
18621
  }
18543
18622
 
18544
18623
  // (14:0) {#if backgroundOverlay}
@@ -18559,7 +18638,7 @@ function create_if_block$4(ctx) {
18559
18638
  this.h();
18560
18639
  },
18561
18640
  h() {
18562
- attr(div, "class", div_class_value = "" + (null_to_empty(['v2-background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-ed4ktn"));
18641
+ attr(div, "class", div_class_value = "" + (null_to_empty(['v2-background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-18nkdjz"));
18563
18642
  },
18564
18643
  m(target, anchor) {
18565
18644
  insert_hydration(target, div, anchor);
@@ -18570,7 +18649,7 @@ function create_if_block$4(ctx) {
18570
18649
  }
18571
18650
  },
18572
18651
  p(ctx, dirty) {
18573
- if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['v2-background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-ed4ktn"))) {
18652
+ if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['v2-background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-18nkdjz"))) {
18574
18653
  attr(div, "class", div_class_value);
18575
18654
  }
18576
18655
  },
@@ -18646,10 +18725,10 @@ class BackgroundOverlay extends SvelteComponent {
18646
18725
  /* src/components-flex/modal/Modal.svelte generated by Svelte v3.53.1 */
18647
18726
 
18648
18727
  function add_css$9(target) {
18649
- append_styles(target, "svelte-15b58xm", "*{box-sizing:border-box}.modal.svelte-15b58xm{position:fixed;z-index:2147483647;display:flex}.modal.svelte-15b58xm > .button{flex:auto;display:flex}@media screen and (min-width: 641px){.modal-bp.svelte-15b58xm{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-15b58xm{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}}");
18728
+ append_styles(target, "svelte-45ue06", "*{box-sizing:border-box}.modal.svelte-45ue06{position:fixed;z-index:2147483647;display:flex}.modal.svelte-45ue06 > .button{flex:auto;display:flex}@media screen and (min-width: 641px){.modal-bp.svelte-45ue06{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-45ue06{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}}");
18650
18729
  }
18651
18730
 
18652
- // (220:0) {:else}
18731
+ // (222:0) {:else}
18653
18732
  function create_else_block(ctx) {
18654
18733
  let backgroundoverlay;
18655
18734
  let current;
@@ -18661,7 +18740,7 @@ function create_else_block(ctx) {
18661
18740
  });
18662
18741
 
18663
18742
  backgroundoverlay.$on("click", function () {
18664
- if (is_function(/*backgroundClick*/ ctx[13])) /*backgroundClick*/ ctx[13].apply(this, arguments);
18743
+ if (is_function(/*backgroundClick*/ ctx[12])) /*backgroundClick*/ ctx[12].apply(this, arguments);
18665
18744
  });
18666
18745
 
18667
18746
  return {
@@ -18696,7 +18775,7 @@ function create_else_block(ctx) {
18696
18775
  };
18697
18776
  }
18698
18777
 
18699
- // (209:24)
18778
+ // (211:24)
18700
18779
  function create_if_block_2(ctx) {
18701
18780
  let backgroundoverlay0;
18702
18781
  let t;
@@ -18711,7 +18790,7 @@ function create_if_block_2(ctx) {
18711
18790
  });
18712
18791
 
18713
18792
  backgroundoverlay0.$on("click", function () {
18714
- if (is_function(/*backgroundClickPC*/ ctx[12])) /*backgroundClickPC*/ ctx[12].apply(this, arguments);
18793
+ if (is_function(/*backgroundClickPC*/ ctx[11])) /*backgroundClickPC*/ ctx[11].apply(this, arguments);
18715
18794
  });
18716
18795
 
18717
18796
  backgroundoverlay1 = new BackgroundOverlay({
@@ -18722,7 +18801,7 @@ function create_if_block_2(ctx) {
18722
18801
  });
18723
18802
 
18724
18803
  backgroundoverlay1.$on("click", function () {
18725
- if (is_function(/*backgroundClickSP*/ ctx[11])) /*backgroundClickSP*/ ctx[11].apply(this, arguments);
18804
+ if (is_function(/*backgroundClickSP*/ ctx[10])) /*backgroundClickSP*/ ctx[10].apply(this, arguments);
18726
18805
  });
18727
18806
 
18728
18807
  return {
@@ -18770,7 +18849,7 @@ function create_if_block_2(ctx) {
18770
18849
  };
18771
18850
  }
18772
18851
 
18773
- // (207:0) {#if !isOnSite}
18852
+ // (209:0) {#if isCanvasPreview}
18774
18853
  function create_if_block_1$1(ctx) {
18775
18854
  return {
18776
18855
  c: noop,
@@ -18783,11 +18862,10 @@ function create_if_block_1$1(ctx) {
18783
18862
  };
18784
18863
  }
18785
18864
 
18786
- // (223:0) {#if visible}
18865
+ // (225:0) {#if visible}
18787
18866
  function create_if_block$3(ctx) {
18788
18867
  let div;
18789
18868
  let div_class_value;
18790
- let div_style_value;
18791
18869
  let div_intro;
18792
18870
  let current;
18793
18871
  const default_slot_template = /*#slots*/ ctx[27].default;
@@ -18814,11 +18892,11 @@ function create_if_block$3(ctx) {
18814
18892
  this.h();
18815
18893
  },
18816
18894
  h() {
18817
- attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-15b58xm"));
18895
+ attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-45ue06"));
18818
18896
  attr(div, "role", "dialog");
18819
18897
  attr(div, "aria-modal", "true");
18820
18898
  attr(div, "data-layer-id", /*layerId*/ ctx[2]);
18821
- attr(div, "style", div_style_value = [Array.from(/*modalStyles*/ ctx[15]).join(';'), /*style*/ ctx[9]].join(' '));
18899
+ attr(div, "style", Array.from(/*modalStyles*/ ctx[15]).join(';'));
18822
18900
  },
18823
18901
  m(target, anchor) {
18824
18902
  insert_hydration(target, div, anchor);
@@ -18848,17 +18926,13 @@ function create_if_block$3(ctx) {
18848
18926
  }
18849
18927
  }
18850
18928
 
18851
- if (!current || dirty & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-15b58xm"))) {
18929
+ if (!current || dirty & /*useBreakPoint*/ 1 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[0] ? 'modal-bp' : ''].join(' ')) + " svelte-45ue06"))) {
18852
18930
  attr(div, "class", div_class_value);
18853
18931
  }
18854
18932
 
18855
18933
  if (!current || dirty & /*layerId*/ 4) {
18856
18934
  attr(div, "data-layer-id", /*layerId*/ ctx[2]);
18857
18935
  }
18858
-
18859
- if (!current || dirty & /*style*/ 512 && div_style_value !== (div_style_value = [Array.from(/*modalStyles*/ ctx[15]).join(';'), /*style*/ ctx[9]].join(' '))) {
18860
- attr(div, "style", div_style_value);
18861
- }
18862
18936
  },
18863
18937
  i(local) {
18864
18938
  if (current) return;
@@ -18866,9 +18940,10 @@ function create_if_block$3(ctx) {
18866
18940
 
18867
18941
  if (!div_intro) {
18868
18942
  add_render_callback(() => {
18869
- div_intro = create_in_transition(div, customAnimation, {
18943
+ div_intro = create_in_transition(div, customAnimationV2, {
18870
18944
  transforms: /*transforms*/ ctx[3],
18871
- animationStyle: /*animation*/ ctx[1]
18945
+ animationStyle: /*animation*/ ctx[1],
18946
+ disabled: !/*isOnSite*/ ctx[14]
18872
18947
  });
18873
18948
 
18874
18949
  div_intro.start();
@@ -18901,7 +18976,7 @@ function create_fragment$d(ctx) {
18901
18976
  const if_blocks = [];
18902
18977
 
18903
18978
  function select_block_type(ctx, dirty) {
18904
- if (!/*isOnSite*/ ctx[14]) return 0;
18979
+ if (/*isCanvasPreview*/ ctx[13]) return 0;
18905
18980
  if (/*useBreakPoint*/ ctx[0]) return 1;
18906
18981
  return 2;
18907
18982
  }
@@ -18932,7 +19007,7 @@ function create_fragment$d(ctx) {
18932
19007
 
18933
19008
  if (!mounted) {
18934
19009
  dispose = listen(window, "keydown", function () {
18935
- if (is_function(/*handle_keydown*/ ctx[10])) /*handle_keydown*/ ctx[10].apply(this, arguments);
19010
+ if (is_function(/*handle_keydown*/ ctx[9])) /*handle_keydown*/ ctx[9].apply(this, arguments);
18936
19011
  });
18937
19012
 
18938
19013
  mounted = true;
@@ -19018,7 +19093,6 @@ function instance$d($$self, $$props, $$invalidate) {
19018
19093
  let backgroundClickSP;
19019
19094
  let handle_keydown;
19020
19095
  let visible;
19021
- let style;
19022
19096
  let { $$slots: slots = {}, $$scope } = $$props;
19023
19097
  let { useBreakPoint = false } = $$props;
19024
19098
  let { placement } = $$props;
@@ -19030,9 +19104,9 @@ function instance$d($$self, $$props, $$invalidate) {
19030
19104
  let { closeEventValue = null } = $$props;
19031
19105
  let { layerId = '' } = $$props;
19032
19106
  const { brandKit } = useBrandKit();
19033
-
19034
- // falseが明示的に指定されている場合以外はtrueにする
19035
- const isOnSite = (document.querySelector('#preview')?.getAttribute('data-on-site') ?? 'true') !== 'false';
19107
+ const isCanvasPreview = (document.querySelector('#preview')?.getAttribute('data-canvas-preview') ?? 'false') === 'true';
19108
+ const isOnSite = (document.querySelector('#preview')?.getAttribute('data-on-site') ?? 'true') === 'true';
19109
+ console.log('isOnSite', isOnSite);
19036
19110
 
19037
19111
  // モーダル背景の設定
19038
19112
  const isExistBackgroundOverlayValue = placement && placement.backgroundOverlay !== undefined;
@@ -19091,7 +19165,7 @@ function instance$d($$self, $$props, $$invalidate) {
19091
19165
 
19092
19166
  if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 196609) {
19093
19167
  {
19094
- if (isOnSite && isExistBackgroundOverlayValue) {
19168
+ if (!isCanvasPreview && isExistBackgroundOverlayValue) {
19095
19169
  $$invalidate(4, backgroundOverlay = placement.backgroundOverlay);
19096
19170
  }
19097
19171
 
@@ -19127,7 +19201,7 @@ function instance$d($$self, $$props, $$invalidate) {
19127
19201
  }
19128
19202
 
19129
19203
  if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunction*/ 7340032) {
19130
- $$invalidate(13, backgroundClick = () => {
19204
+ $$invalidate(12, backgroundClick = () => {
19131
19205
  if (closeEventName) {
19132
19206
  send_event(closeEventName, closeEventValue);
19133
19207
  }
@@ -19137,7 +19211,7 @@ function instance$d($$self, $$props, $$invalidate) {
19137
19211
  }
19138
19212
 
19139
19213
  if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 11534336) {
19140
- $$invalidate(12, backgroundClickPC = () => {
19214
+ $$invalidate(11, backgroundClickPC = () => {
19141
19215
  if (closeEventName) {
19142
19216
  send_event(closeEventName, closeEventValue);
19143
19217
  }
@@ -19147,7 +19221,7 @@ function instance$d($$self, $$props, $$invalidate) {
19147
19221
  }
19148
19222
 
19149
19223
  if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 19922944) {
19150
- $$invalidate(11, backgroundClickSP = () => {
19224
+ $$invalidate(10, backgroundClickSP = () => {
19151
19225
  if (closeEventName) {
19152
19226
  send_event(closeEventName, closeEventValue);
19153
19227
  }
@@ -19162,7 +19236,7 @@ function instance$d($$self, $$props, $$invalidate) {
19162
19236
  // 表示位置のスタイルの設定
19163
19237
  let position = DefaultModalPlacement.position;
19164
19238
 
19165
- if (isOnSite && placement && placement.position !== null) {
19239
+ if (!isCanvasPreview && placement && placement.position !== null) {
19166
19240
  position = placement.position;
19167
19241
  }
19168
19242
 
@@ -19179,7 +19253,7 @@ function instance$d($$self, $$props, $$invalidate) {
19179
19253
  $$invalidate(3, transforms = []);
19180
19254
 
19181
19255
  DEVICE_IDS.forEach(deviceId => {
19182
- if (isOnSite && useBreakPoint) {
19256
+ if (!isCanvasPreview && useBreakPoint) {
19183
19257
  const positionWithBp = breakPoint[deviceId]?.placement?.position;
19184
19258
 
19185
19259
  transforms.push({
@@ -19204,12 +19278,12 @@ function instance$d($$self, $$props, $$invalidate) {
19204
19278
  }
19205
19279
  }
19206
19280
 
19207
- if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 196609) {
19281
+ if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint, props*/ 720897) {
19208
19282
  // 表示位置の調整のスタイルを設定
19209
19283
  {
19210
19284
  let margin = DefaultModalPlacement.margin;
19211
19285
 
19212
- if (isOnSite && placement && placement.margin !== null) {
19286
+ if (!isCanvasPreview && placement && placement.margin !== null) {
19213
19287
  margin = placement.margin;
19214
19288
  }
19215
19289
 
@@ -19220,7 +19294,7 @@ function instance$d($$self, $$props, $$invalidate) {
19220
19294
  }
19221
19295
 
19222
19296
  DEVICE_IDS.forEach(deviceId => {
19223
- if (isOnSite && useBreakPoint) {
19297
+ if (!isCanvasPreview && useBreakPoint) {
19224
19298
  const marginWithBp = breakPoint[deviceId]?.placement?.margin;
19225
19299
  marginStyle = getMarginStyle(marginWithBp);
19226
19300
  }
@@ -19233,23 +19307,23 @@ function instance$d($$self, $$props, $$invalidate) {
19233
19307
 
19234
19308
  modalStyles.add(marginVariables);
19235
19309
  });
19310
+
19311
+ const propsStyle = objToStyle({
19312
+ width: props.width,
19313
+ ...toCssOverflow(props),
19314
+ ...toCssShadow(props),
19315
+ ...toCssRadius(props),
19316
+ ...toCssBackgroundImage(props),
19317
+ ...toCssBackgroundColor(props),
19318
+ ...toCssBorder(props)
19319
+ });
19320
+
19321
+ modalStyles.add(propsStyle);
19236
19322
  }
19237
19323
  }
19238
19324
 
19239
19325
  if ($$self.$$.dirty & /*close*/ 33554432) {
19240
- $$invalidate(10, handle_keydown = handleKeydown({ Escape: close }));
19241
- }
19242
-
19243
- if ($$self.$$.dirty & /*props*/ 524288) {
19244
- $$invalidate(9, style = objToStyle({
19245
- width: props.width,
19246
- ...toCssOverflow(props),
19247
- ...toCssShadow(props),
19248
- ...toCssRadius(props),
19249
- ...toCssBackgroundImage(props),
19250
- ...toCssBackgroundColor(props),
19251
- ...toCssBorder(props)
19252
- }));
19326
+ $$invalidate(9, handle_keydown = handleKeydown({ Escape: close }));
19253
19327
  }
19254
19328
  };
19255
19329
 
@@ -19268,11 +19342,11 @@ function instance$d($$self, $$props, $$invalidate) {
19268
19342
  backgroundOverlaySP,
19269
19343
  modal,
19270
19344
  visible,
19271
- style,
19272
19345
  handle_keydown,
19273
19346
  backgroundClickSP,
19274
19347
  backgroundClickPC,
19275
19348
  backgroundClick,
19349
+ isCanvasPreview,
19276
19350
  isOnSite,
19277
19351
  modalStyles,
19278
19352
  placement,
@@ -19320,7 +19394,7 @@ class Modal extends SvelteComponent {
19320
19394
  /* src/components-flex/code/Code.svelte generated by Svelte v3.53.1 */
19321
19395
 
19322
19396
  function add_css$8(target) {
19323
- append_styles(target, "svelte-jviwnb", ".code.svelte-jviwnb{flex-grow:1;flex-shrink:0;align-self:stretch}");
19397
+ append_styles(target, "svelte-igivoz", ".code.svelte-igivoz{flex-grow:1;flex-shrink:0;align-self:stretch}");
19324
19398
  }
19325
19399
 
19326
19400
  function create_fragment$c(ctx) {
@@ -19339,7 +19413,7 @@ function create_fragment$c(ctx) {
19339
19413
  this.h();
19340
19414
  },
19341
19415
  h() {
19342
- attr(div, "class", "code svelte-jviwnb");
19416
+ attr(div, "class", "code svelte-igivoz");
19343
19417
  attr(div, "data-layer-id", /*layerId*/ ctx[1]);
19344
19418
  },
19345
19419
  m(target, anchor) {
@@ -19421,7 +19495,7 @@ const LIST_ITEM_CONTEXT_KEY = 'ListItemContext';
19421
19495
  /* src/components-flex/list/List.svelte generated by Svelte v3.53.1 */
19422
19496
 
19423
19497
  function add_css$7(target) {
19424
- append_styles(target, "svelte-5g0mcl", ".list.svelte-5g0mcl{padding:0;margin:0;list-style:none;display:flex;flex-direction:column;--border-width:0;--border-style:solit;--border-color:rgba(255, 255, 255, 0);border-top-width:var(--border-width);border-top-style:var(--border-style);border-top-color:var(--border-color);border-bottom-width:var(--border-width);border-bottom-style:var(--border-style);border-bottom-color:var(--border-color)}");
19498
+ append_styles(target, "svelte-v2vy6p", ".list.svelte-v2vy6p{padding:0;margin:0;list-style:none;display:flex;flex-direction:column;--border-width:0;--border-style:solit;--border-color:rgba(255, 255, 255, 0);border-top-width:var(--border-width);border-top-style:var(--border-style);border-top-color:var(--border-color);border-bottom-width:var(--border-width);border-bottom-style:var(--border-style);border-bottom-color:var(--border-color)}");
19425
19499
  }
19426
19500
 
19427
19501
  function create_fragment$b(ctx) {
@@ -19450,7 +19524,7 @@ function create_fragment$b(ctx) {
19450
19524
  },
19451
19525
  h() {
19452
19526
  attr(ul, "data-layer-id", /*layerId*/ ctx[0]);
19453
- attr(ul, "class", "list svelte-5g0mcl");
19527
+ attr(ul, "class", "list svelte-v2vy6p");
19454
19528
  attr(ul, "style", /*style*/ ctx[1]);
19455
19529
  },
19456
19530
  m(target, anchor) {
@@ -19573,7 +19647,7 @@ class List extends SvelteComponent {
19573
19647
  /* src/components-flex/list/ListItem.svelte generated by Svelte v3.53.1 */
19574
19648
 
19575
19649
  function add_css$6(target) {
19576
- append_styles(target, "svelte-1e6dn58", ".list-item.svelte-1e6dn58{margin:0;padding:0}.list-item-inner.svelte-1e6dn58{display:flex;align-items:center;width:100%;text-decoration:none;color:inherit}.list-item-inner.svelte-1e6dn58:hover{opacity:0.8}.list-item.svelte-1e6dn58:not(:first-child){border-top-width:var(--list-item-border-width);border-top-style:var(--list-item-border-style);border-top-color:var(--list-item-border-color)}");
19650
+ append_styles(target, "svelte-1223veg", ".list-item.svelte-1223veg{margin:0;padding:0}.list-item-inner.svelte-1223veg{display:flex;align-items:center;width:100%;text-decoration:none;color:inherit}.list-item-inner.svelte-1223veg:hover{opacity:0.8}.list-item.svelte-1223veg:not(:first-child){border-top-width:var(--list-item-border-width);border-top-style:var(--list-item-border-style);border-top-color:var(--list-item-border-color)}");
19577
19651
  }
19578
19652
 
19579
19653
  // (30:2) <svelte:element {...attributes} this={element} class="list-item-inner" style={innerStyle} on:click={handleClick} >
@@ -19617,7 +19691,7 @@ function create_dynamic_element$1(ctx) {
19617
19691
  set_attributes(svelte_element, svelte_element_data);
19618
19692
  }
19619
19693
 
19620
- toggle_class(svelte_element, "svelte-1e6dn58", true);
19694
+ toggle_class(svelte_element, "svelte-1223veg", true);
19621
19695
  },
19622
19696
  m(target, anchor) {
19623
19697
  insert_hydration(target, svelte_element, anchor);
@@ -19661,7 +19735,7 @@ function create_dynamic_element$1(ctx) {
19661
19735
  set_attributes(svelte_element, svelte_element_data);
19662
19736
  }
19663
19737
 
19664
- toggle_class(svelte_element, "svelte-1e6dn58", true);
19738
+ toggle_class(svelte_element, "svelte-1223veg", true);
19665
19739
  },
19666
19740
  i(local) {
19667
19741
  if (current) return;
@@ -19706,7 +19780,7 @@ function create_fragment$a(ctx) {
19706
19780
  this.h();
19707
19781
  },
19708
19782
  h() {
19709
- attr(li, "class", "list-item svelte-1e6dn58");
19783
+ attr(li, "class", "list-item svelte-1223veg");
19710
19784
  attr(li, "data-layer-id", /*layerId*/ ctx[0]);
19711
19785
  attr(li, "style", /*style*/ ctx[2]);
19712
19786
  },
@@ -19852,7 +19926,7 @@ function splitNumberAndUnit(value) {
19852
19926
  /* src/components-flex/multi-column/MultiColumn.svelte generated by Svelte v3.53.1 */
19853
19927
 
19854
19928
  function add_css$5(target) {
19855
- append_styles(target, "svelte-1csavnh", ".list.svelte-1csavnh{padding:0;margin:0;list-style:none;display:flex;flex-direction:row}");
19929
+ append_styles(target, "svelte-aoppwp", ".list.svelte-aoppwp{padding:0;margin:0;list-style:none;display:flex;flex-direction:row}");
19856
19930
  }
19857
19931
 
19858
19932
  function create_fragment$9(ctx) {
@@ -19881,7 +19955,7 @@ function create_fragment$9(ctx) {
19881
19955
  },
19882
19956
  h() {
19883
19957
  attr(ul, "data-layer-id", /*layerId*/ ctx[0]);
19884
- attr(ul, "class", "list svelte-1csavnh");
19958
+ attr(ul, "class", "list svelte-aoppwp");
19885
19959
  attr(ul, "style", /*style*/ ctx[1]);
19886
19960
  },
19887
19961
  m(target, anchor) {
@@ -19993,7 +20067,7 @@ class MultiColumn extends SvelteComponent {
19993
20067
  /* src/components-flex/multi-column/MultiColumnItem.svelte generated by Svelte v3.53.1 */
19994
20068
 
19995
20069
  function add_css$4(target) {
19996
- append_styles(target, "svelte-1mk0qj6", ".multi-column-item.svelte-1mk0qj6{margin:0;width:100%;padding-top:0;padding-bottom:0;padding-left:var(--multi-column-item-padding);padding-right:var(--multi-column-item-padding)}.multi-column-item-inner.svelte-1mk0qj6{display:flex;flex-direction:column;align-items:center;gap:var(--multi-column-item-gap);width:100%;text-decoration:none;color:inherit;padding-top:var(--multi-column-item-padding-top);padding-left:var(--multi-column-item-padding-left);padding-right:var(--multi-column-item-padding-right);padding-bottom:var(--multi-column-item-padding-bottom)}.multi-column-item-inner.svelte-1mk0qj6:hover{opacity:0.8}.multi-column-item.svelte-1mk0qj6:not(:first-child){border-left-width:var(--multi-column-item-border-width);border-left-style:var(--multi-column-item-border-style);border-left-color:var(--multi-column-item-border-color)}");
20070
+ append_styles(target, "svelte-1blzs1a", ".multi-column-item.svelte-1blzs1a{margin:0;width:100%;padding-top:0;padding-bottom:0;padding-left:var(--multi-column-item-padding);padding-right:var(--multi-column-item-padding)}.multi-column-item-inner.svelte-1blzs1a{display:flex;flex-direction:column;align-items:center;gap:var(--multi-column-item-gap);width:100%;text-decoration:none;color:inherit;padding-top:var(--multi-column-item-padding-top);padding-left:var(--multi-column-item-padding-left);padding-right:var(--multi-column-item-padding-right);padding-bottom:var(--multi-column-item-padding-bottom)}.multi-column-item-inner.svelte-1blzs1a:hover{opacity:0.8}.multi-column-item.svelte-1blzs1a:not(:first-child){border-left-width:var(--multi-column-item-border-width);border-left-style:var(--multi-column-item-border-style);border-left-color:var(--multi-column-item-border-color)}");
19997
20071
  }
19998
20072
 
19999
20073
  // (28:2) <svelte:element {...attributes} this={element} class="multi-column-item-inner" on:click={handleClick} >
@@ -20031,7 +20105,7 @@ function create_dynamic_element(ctx) {
20031
20105
  set_attributes(svelte_element, svelte_element_data);
20032
20106
  }
20033
20107
 
20034
- toggle_class(svelte_element, "svelte-1mk0qj6", true);
20108
+ toggle_class(svelte_element, "svelte-1blzs1a", true);
20035
20109
  },
20036
20110
  m(target, anchor) {
20037
20111
  insert_hydration(target, svelte_element, anchor);
@@ -20071,7 +20145,7 @@ function create_dynamic_element(ctx) {
20071
20145
  set_attributes(svelte_element, svelte_element_data);
20072
20146
  }
20073
20147
 
20074
- toggle_class(svelte_element, "svelte-1mk0qj6", true);
20148
+ toggle_class(svelte_element, "svelte-1blzs1a", true);
20075
20149
  },
20076
20150
  i(local) {
20077
20151
  if (current) return;
@@ -20116,7 +20190,7 @@ function create_fragment$8(ctx) {
20116
20190
  this.h();
20117
20191
  },
20118
20192
  h() {
20119
- attr(li, "class", "multi-column-item svelte-1mk0qj6");
20193
+ attr(li, "class", "multi-column-item svelte-1blzs1a");
20120
20194
  attr(li, "data-layer-id", /*layerId*/ ctx[0]);
20121
20195
  attr(li, "style", /*style*/ ctx[1]);
20122
20196
  },
@@ -20231,7 +20305,7 @@ class MultiColumnItem extends SvelteComponent {
20231
20305
  /* src/components-flex/youtube/Youtube.svelte generated by Svelte v3.53.1 */
20232
20306
 
20233
20307
  function add_css$3(target) {
20234
- append_styles(target, "svelte-1bgnrue", ".youtube.svelte-1bgnrue{position:relative;aspect-ratio:16 / 9;width:100%;border-radius:3px}.youtube.svelte-1bgnrue iframe{position:absolute;width:100%;height:100%;object-fit:cover}");
20308
+ append_styles(target, "svelte-odfkc2", ".youtube.svelte-odfkc2{position:relative;aspect-ratio:16 / 9;width:100%;border-radius:3px}.youtube.svelte-odfkc2 iframe{position:absolute;width:100%;height:100%;object-fit:cover}");
20235
20309
  }
20236
20310
 
20237
20311
  function create_fragment$7(ctx) {
@@ -20259,7 +20333,7 @@ function create_fragment$7(ctx) {
20259
20333
  },
20260
20334
  h() {
20261
20335
  attr(div0, "class", "youtube-player");
20262
- attr(div1, "class", "youtube svelte-1bgnrue");
20336
+ attr(div1, "class", "youtube svelte-odfkc2");
20263
20337
  attr(div1, "style", /*style*/ ctx[2]);
20264
20338
  attr(div1, "data-layer-id", /*layerId*/ ctx[0]);
20265
20339
  },
@@ -20406,7 +20480,7 @@ class Youtube extends SvelteComponent {
20406
20480
  /* src/components-flex/count-down/CountDown.svelte generated by Svelte v3.53.1 */
20407
20481
 
20408
20482
  function add_css$2(target) {
20409
- append_styles(target, "svelte-1eft5i1", ".countdown.svelte-1eft5i1{display:flex;align-items:center;gap:4px}");
20483
+ append_styles(target, "svelte-1n395il", ".countdown.svelte-1n395il{display:flex;align-items:center;gap:4px}");
20410
20484
  }
20411
20485
 
20412
20486
  const get_default_slot_changes = dirty => ({
@@ -20443,7 +20517,7 @@ function create_fragment$6(ctx) {
20443
20517
  this.h();
20444
20518
  },
20445
20519
  h() {
20446
- attr(div, "class", "countdown svelte-1eft5i1");
20520
+ attr(div, "class", "countdown svelte-1n395il");
20447
20521
  attr(div, "data-layer-id", /*layerId*/ ctx[0]);
20448
20522
  },
20449
20523
  m(target, anchor) {
@@ -20753,7 +20827,7 @@ class CountDownValue extends SvelteComponent {
20753
20827
  /* src/components-flex/clip-copy/ClipCopy.svelte generated by Svelte v3.53.1 */
20754
20828
 
20755
20829
  function add_css$1(target) {
20756
- append_styles(target, "svelte-1z01gne", ".clipboard.svelte-1z01gne{position:relative;display:inline-flex}.clipboard-button.svelte-1z01gne{position:relative;display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:none;border:0;transition:0.12s;cursor:pointer}.clipboard-button.svelte-1z01gne:hover{opacity:0.8}.clipboard-button.svelte-1z01gne:active{opacity:0.6}.clipboard-tooltip.svelte-1z01gne{position:absolute;top:-8px;left:50%;display:block;transform:translate(-50%, -100%);padding:4px 10px;background-color:#333333;color:#ffffff;font-size:11px;font-weight:bold;border-radius:4px;transition:transform 0.2s ease-out;white-space:nowrap;pointer-events:none}.clipboard-tooltip.svelte-1z01gne:after{content:'';display:block;position:absolute;bottom:0;left:50%;width:8px;height:8px;background-color:#333333;border-radius:1px;transform:translate(-50%, 40%) rotate(45deg)}.clipboard-tooltip[aria-hidden=\"true\"].svelte-1z01gne{opacity:0;transform:translate(-50%, -80%)}");
20830
+ append_styles(target, "svelte-30zd8m", ".clipboard.svelte-30zd8m{position:relative;display:inline-flex}.clipboard-button.svelte-30zd8m{position:relative;display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:none;border:0;transition:0.12s;cursor:pointer}.clipboard-button.svelte-30zd8m:hover{opacity:0.8}.clipboard-button.svelte-30zd8m:active{opacity:0.6}.clipboard-tooltip.svelte-30zd8m{position:absolute;top:-8px;left:50%;display:block;transform:translate(-50%, -100%);padding:4px 10px;background-color:#333333;color:#ffffff;font-size:11px;font-weight:bold;border-radius:4px;transition:transform 0.2s ease-out;white-space:nowrap;pointer-events:none}.clipboard-tooltip.svelte-30zd8m:after{content:'';display:block;position:absolute;bottom:0;left:50%;width:8px;height:8px;background-color:#333333;border-radius:1px;transform:translate(-50%, 40%) rotate(45deg)}.clipboard-tooltip[aria-hidden=\"true\"].svelte-30zd8m{opacity:0;transform:translate(-50%, -80%)}");
20757
20831
  }
20758
20832
 
20759
20833
  function create_fragment$4(ctx) {
@@ -20795,10 +20869,10 @@ function create_fragment$4(ctx) {
20795
20869
  this.h();
20796
20870
  },
20797
20871
  h() {
20798
- attr(button, "class", "clipboard-button svelte-1z01gne");
20872
+ attr(button, "class", "clipboard-button svelte-30zd8m");
20799
20873
  attr(span, "aria-hidden", span_aria_hidden_value = !/*showTooltip*/ ctx[2]);
20800
- attr(span, "class", "clipboard-tooltip svelte-1z01gne");
20801
- attr(div, "class", "clipboard svelte-1z01gne");
20874
+ attr(span, "class", "clipboard-tooltip svelte-30zd8m");
20875
+ attr(div, "class", "clipboard svelte-30zd8m");
20802
20876
  attr(div, "data-layer-id", /*layerId*/ ctx[0]);
20803
20877
  },
20804
20878
  m(target, anchor) {
@@ -21427,7 +21501,7 @@ class State extends SvelteComponent {
21427
21501
  /* src/components-flex/state/StateItem.svelte generated by Svelte v3.53.1 */
21428
21502
 
21429
21503
  function add_css(target) {
21430
- append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
21504
+ append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
21431
21505
  }
21432
21506
 
21433
21507
  // (22:0) {#if $state === path}
@@ -21454,7 +21528,7 @@ function create_if_block$1(ctx) {
21454
21528
  },
21455
21529
  h() {
21456
21530
  attr(div, "data-state-path", /*path*/ ctx[0]);
21457
- attr(div, "class", "state-item svelte-1amihue");
21531
+ attr(div, "class", "state-item svelte-2qb6dm");
21458
21532
  },
21459
21533
  m(target, anchor) {
21460
21534
  insert_hydration(target, div, anchor);
@@ -22027,7 +22101,7 @@ function get_each_context(ctx, list, i) {
22027
22101
  return child_ctx;
22028
22102
  }
22029
22103
 
22030
- // (13:0) {#if component}
22104
+ // (12:0) {#if component}
22031
22105
  function create_if_block(ctx) {
22032
22106
  let switch_instance;
22033
22107
  let switch_instance_anchor;
@@ -22115,7 +22189,7 @@ function create_if_block(ctx) {
22115
22189
  };
22116
22190
  }
22117
22191
 
22118
- // (20:4) {#if option.children}
22192
+ // (19:4) {#if option.children}
22119
22193
  function create_if_block_1(ctx) {
22120
22194
  let each_1_anchor;
22121
22195
  let current;
@@ -22206,7 +22280,7 @@ function create_if_block_1(ctx) {
22206
22280
  };
22207
22281
  }
22208
22282
 
22209
- // (21:6) {#each option.children as child}
22283
+ // (20:6) {#each option.children as child}
22210
22284
  function create_each_block(ctx) {
22211
22285
  let thumbnailpreview;
22212
22286
  let current;
@@ -22243,7 +22317,7 @@ function create_each_block(ctx) {
22243
22317
  };
22244
22318
  }
22245
22319
 
22246
- // (14:2) <svelte:component this={component} props={'previewProps' in option && typeof option.previewProps !== 'undefined' ? option.previewProps : option.props} >
22320
+ // (13:2) <svelte:component this={component} props={'previewProps' in option && typeof option.previewProps !== 'undefined' ? option.previewProps : option.props} >
22247
22321
  function create_default_slot(ctx) {
22248
22322
  let if_block_anchor;
22249
22323
  let current;
@@ -22366,7 +22440,6 @@ function instance($$self, $$props, $$invalidate) {
22366
22440
  let component;
22367
22441
  let { option = {} } = $$props;
22368
22442
  let { customBrandKit = undefined } = $$props;
22369
- console.log('option', option);
22370
22443
 
22371
22444
  const getComponent = key => {
22372
22445
  return key in sdk ? sdk[key] : null;