@plaidev/karte-action-sdk 1.1.203 → 1.1.204-28199907.4843b7f4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.es.js CHANGED
@@ -1355,40 +1355,57 @@ function request(url, data, cb) {
1355
1355
  });
1356
1356
  }
1357
1357
  /** @internal */
1358
- const loadActionTableRow = async (config, data, api_key, endpoint) => {
1359
- return new Promise((resolve, reject) => {
1360
- const key = data[config.query.key] ?? null;
1361
- if (key == null) {
1362
- console.warn('key is not found. key: ', config.query.key);
1363
- return reject('key is not found.');
1364
- }
1365
- return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
1366
- });
1367
- };
1358
+ const loadActionTableRow = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1359
+ const key = data[config.query.key] ?? null;
1360
+ if (key == null) {
1361
+ console.warn('key is not found. key: ', config.query.key);
1362
+ return reject('key is not found.');
1363
+ }
1364
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
1365
+ });
1368
1366
  /** @internal */
1369
- const loadActionTableRows = async (config, data, api_key, endpoint) => {
1370
- return new Promise((resolve, reject) => {
1371
- const keys = config.query.key.map(key => data[key] ?? null);
1372
- if (keys.some(key => key == null)) {
1373
- keys.filter(key => key == null).forEach(key => console.warn('key is not found. key: ', key));
1374
- return reject('key is not found.');
1367
+ const loadActionTableRows = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1368
+ if (config.query.key == null) {
1369
+ console.warn('key is not defined.');
1370
+ return reject('key is not defined.');
1371
+ }
1372
+ const keys = [];
1373
+ let hasError = false;
1374
+ const originalKeys = Array.isArray(config.query.key) ? config.query.key : [config.query.key];
1375
+ originalKeys.forEach(key => {
1376
+ const d = data[key];
1377
+ if (d == null) {
1378
+ console.warn('key is not found. key: ', key);
1379
+ hasError = true;
1375
1380
  }
1376
- return collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data)));
1381
+ keys.push(d);
1377
1382
  });
1378
- };
1383
+ if (hasError) {
1384
+ return reject('key is not found.');
1385
+ }
1386
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => (err ? reject(err) : resolve(data)));
1387
+ });
1379
1388
  /** @internal */
1380
- const loadActionTableQuery = async (config, data, api_key, endpoint) => {
1381
- return new Promise((resolve, reject) => {
1382
- const params = config.query.params.map(param => data[param] ?? null);
1383
- if (params.some(param => param == null)) {
1384
- params
1385
- .filter(param => param == null)
1386
- .forEach(param => console.warn('key is not found. param: ', param));
1387
- return reject('key is not found.');
1389
+ const loadActionTableQuery = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1390
+ if (config.query.params == null) {
1391
+ console.warn('key is not defined.');
1392
+ return reject('key is not defined.');
1393
+ }
1394
+ const params = {};
1395
+ let hasError = false;
1396
+ Object.entries(config.query.params).forEach(([key, param]) => {
1397
+ const d = data[param];
1398
+ if (d == null) {
1399
+ console.warn('key is not found. param: ', param);
1400
+ hasError = true;
1388
1401
  }
1389
- return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, config.query.params, null, (err, data) => (err ? reject(err) : resolve(data)));
1402
+ params[key] = d;
1390
1403
  });
1391
- };
1404
+ if (hasError) {
1405
+ return reject('key is not found.');
1406
+ }
1407
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, params, null, (err, data) => (err ? reject(err) : resolve(data)));
1408
+ });
1392
1409
  /** @internal */
1393
1410
  const loadActionTable = async (config, data, api_key, endpoint) => {
1394
1411
  console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
@@ -1447,8 +1464,13 @@ function initActionTable(localVariablesQuery) {
1447
1464
  /** @internal */
1448
1465
  const handleState = (event) => {
1449
1466
  if (event.detail.actionId === actionId || event.detail.actionId === ALL_ACTION_ID) {
1450
- send_event('_message_state_changed', { state: event.detail.to });
1451
- setState$1(event.detail.to, { disableInPreview: event.detail.disableInPreview });
1467
+ send_event('_message_state_changed', {
1468
+ oldState: event.detail.from ?? '',
1469
+ newState: event.detail.to ?? '',
1470
+ });
1471
+ setState$1(event.detail.to, {
1472
+ disableInPreview: event.detail.disableInPreview,
1473
+ });
1452
1474
  }
1453
1475
  };
1454
1476
  /**
@@ -2624,7 +2646,7 @@ class State extends SvelteComponent {
2624
2646
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
2625
2647
 
2626
2648
  function add_css$t(target) {
2627
- append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
2649
+ append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
2628
2650
  }
2629
2651
 
2630
2652
  // (23:0) {#if $state === path}
@@ -2641,7 +2663,7 @@ function create_if_block$8(ctx) {
2641
2663
  t = space();
2642
2664
  if (default_slot) default_slot.c();
2643
2665
  attr(div, "data-state-path", /*path*/ ctx[0]);
2644
- attr(div, "class", "state-item svelte-1amihue");
2666
+ attr(div, "class", "state-item svelte-2qb6dm");
2645
2667
  },
2646
2668
  m(target, anchor) {
2647
2669
  insert(target, div, anchor);
@@ -2878,7 +2900,10 @@ function submit() {
2878
2900
  * モーダル(ポップアップ)のコンポーネントが利用するコードの管理
2879
2901
  */
2880
2902
  function _moveTo(to) {
2881
- window.dispatchEvent(new CustomEvent(ACTION_CHANGE_STATE_EVENT, { detail: { to, actionId } }));
2903
+ const currentState = getState$1();
2904
+ window.dispatchEvent(new CustomEvent(ACTION_CHANGE_STATE_EVENT, {
2905
+ detail: { from: currentState, to, actionId },
2906
+ }));
2882
2907
  }
2883
2908
  /** @internal */
2884
2909
  const moveTo = (to) => () => {
@@ -3043,7 +3068,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
3043
3068
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
3044
3069
 
3045
3070
  function add_css$s(target) {
3046
- 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}");
3071
+ 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}");
3047
3072
  }
3048
3073
 
3049
3074
  // (9:0) {#if backgroundOverlay}
@@ -3055,7 +3080,7 @@ function create_if_block$7(ctx) {
3055
3080
  return {
3056
3081
  c() {
3057
3082
  div = element("div");
3058
- attr(div, "class", "background svelte-g6ucc2");
3083
+ attr(div, "class", "background svelte-1d4fta");
3059
3084
  },
3060
3085
  m(target, anchor) {
3061
3086
  insert(target, div, anchor);
@@ -3166,7 +3191,7 @@ function checkStopPropagation(eventName, handler) {
3166
3191
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3167
3192
 
3168
3193
  function add_css$r(target) {
3169
- append_styles(target, "svelte-1dtbrzj", ".button.svelte-1dtbrzj{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1dtbrzj:link,.button.svelte-1dtbrzj:visited,.button.svelte-1dtbrzj:active,.button.svelte-1dtbrzj:hover{color:inherit}");
3194
+ append_styles(target, "svelte-1tg0tf", ".button.svelte-1tg0tf{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1tg0tf:link,.button.svelte-1tg0tf:visited,.button.svelte-1tg0tf:active,.button.svelte-1tg0tf:hover{color:inherit}");
3170
3195
  }
3171
3196
 
3172
3197
  // (50:0) {:else}
@@ -3195,7 +3220,7 @@ function create_else_block$3(ctx) {
3195
3220
  button = element("button");
3196
3221
  if (default_slot) default_slot.c();
3197
3222
  set_attributes(button, button_data);
3198
- toggle_class(button, "svelte-1dtbrzj", true);
3223
+ toggle_class(button, "svelte-1tg0tf", true);
3199
3224
  },
3200
3225
  m(target, anchor) {
3201
3226
  insert(target, button, anchor);
@@ -3234,7 +3259,7 @@ function create_else_block$3(ctx) {
3234
3259
  dataAttrStopPropagation('click')
3235
3260
  ]));
3236
3261
 
3237
- toggle_class(button, "svelte-1dtbrzj", true);
3262
+ toggle_class(button, "svelte-1tg0tf", true);
3238
3263
  },
3239
3264
  i(local) {
3240
3265
  if (current) return;
@@ -3265,7 +3290,7 @@ function create_if_block_2(ctx) {
3265
3290
  c() {
3266
3291
  div = element("div");
3267
3292
  if (default_slot) default_slot.c();
3268
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1dtbrzj"));
3293
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
3269
3294
  attr(div, "style", /*style*/ ctx[1]);
3270
3295
  },
3271
3296
  m(target, anchor) {
@@ -3349,7 +3374,7 @@ function create_if_block_1$2(ctx) {
3349
3374
  a = element("a");
3350
3375
  if (default_slot) default_slot.c();
3351
3376
  set_attributes(a, a_data);
3352
- toggle_class(a, "svelte-1dtbrzj", true);
3377
+ toggle_class(a, "svelte-1tg0tf", true);
3353
3378
  },
3354
3379
  m(target, anchor) {
3355
3380
  insert(target, a, anchor);
@@ -3391,7 +3416,7 @@ function create_if_block_1$2(ctx) {
3391
3416
  dataAttrStopPropagation('click')
3392
3417
  ]));
3393
3418
 
3394
- toggle_class(a, "svelte-1dtbrzj", true);
3419
+ toggle_class(a, "svelte-1tg0tf", true);
3395
3420
  },
3396
3421
  i(local) {
3397
3422
  if (current) return;
@@ -3422,7 +3447,7 @@ function create_if_block$6(ctx) {
3422
3447
  c() {
3423
3448
  div = element("div");
3424
3449
  if (default_slot) default_slot.c();
3425
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1dtbrzj"));
3450
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
3426
3451
  attr(div, "style", /*style*/ ctx[1]);
3427
3452
  },
3428
3453
  m(target, anchor) {
@@ -3626,7 +3651,7 @@ class Button extends SvelteComponent {
3626
3651
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3627
3652
 
3628
3653
  function add_css$q(target) {
3629
- append_styles(target, "svelte-1m1do8u", ".modal.svelte-1m1do8u{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1m1do8u > .button{flex:auto;display:flex}.close.svelte-1m1do8u{position:absolute;top:0;right:0}.close.svelte-1m1do8u > .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-1m1do8u > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1m1do8u{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
3654
+ append_styles(target, "svelte-yvwr7u", ".modal.svelte-yvwr7u{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-yvwr7u > .button{flex:auto;display:flex}.close.svelte-yvwr7u{position:absolute;top:0;right:0}.close.svelte-yvwr7u > .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-yvwr7u > .button:hover{transform:rotate(90deg)}.modal-content.svelte-yvwr7u{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
3630
3655
  }
3631
3656
 
3632
3657
  // (145:0) {#if visible}
@@ -3651,7 +3676,7 @@ function create_if_block$5(ctx) {
3651
3676
  c() {
3652
3677
  div = element("div");
3653
3678
  create_component(button.$$.fragment);
3654
- attr(div, "class", "modal svelte-1m1do8u");
3679
+ attr(div, "class", "modal svelte-yvwr7u");
3655
3680
  attr(div, "role", "dialog");
3656
3681
  attr(div, "aria-modal", "true");
3657
3682
  attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
@@ -3729,7 +3754,7 @@ function create_if_block_1$1(ctx) {
3729
3754
  c() {
3730
3755
  div = element("div");
3731
3756
  create_component(button.$$.fragment);
3732
- attr(div, "class", "close svelte-1m1do8u");
3757
+ attr(div, "class", "close svelte-yvwr7u");
3733
3758
  set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
3734
3759
  },
3735
3760
  m(target, anchor) {
@@ -3818,7 +3843,7 @@ function create_default_slot$6(ctx) {
3818
3843
  t = space();
3819
3844
  div = element("div");
3820
3845
  if (default_slot) default_slot.c();
3821
- attr(div, "class", "modal-content svelte-1m1do8u");
3846
+ attr(div, "class", "modal-content svelte-yvwr7u");
3822
3847
  attr(div, "style", /*_style*/ ctx[4]);
3823
3848
  },
3824
3849
  m(target, anchor) {
@@ -4309,7 +4334,7 @@ class Grid extends SvelteComponent {
4309
4334
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
4310
4335
 
4311
4336
  function add_css$p(target) {
4312
- append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
4337
+ append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
4313
4338
  }
4314
4339
 
4315
4340
  function create_fragment$r(ctx) {
@@ -4324,8 +4349,8 @@ function create_fragment$r(ctx) {
4324
4349
  div1 = element("div");
4325
4350
  div0 = element("div");
4326
4351
  if (default_slot) default_slot.c();
4327
- attr(div0, "class", "grid-item-inner svelte-1cryhmb");
4328
- attr(div1, "class", "grid-item svelte-1cryhmb");
4352
+ attr(div0, "class", "grid-item-inner svelte-n7kdl3");
4353
+ attr(div1, "class", "grid-item svelte-n7kdl3");
4329
4354
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
4330
4355
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
4331
4356
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -4630,10 +4655,10 @@ class RenderText extends SvelteComponent {
4630
4655
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
4631
4656
 
4632
4657
  function add_css$o(target) {
4633
- 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}");
4658
+ 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}");
4634
4659
  }
4635
4660
 
4636
- // (93:2) {:else}
4661
+ // (94:2) {:else}
4637
4662
  function create_else_block$1(ctx) {
4638
4663
  let div1;
4639
4664
  let div0;
@@ -4647,8 +4672,8 @@ function create_else_block$1(ctx) {
4647
4672
  div1 = element("div");
4648
4673
  div0 = element("div");
4649
4674
  create_component(rendertext.$$.fragment);
4650
- attr(div0, "class", "text-element-inner svelte-vz6867");
4651
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4675
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4676
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4652
4677
  attr(div1, "style", /*style*/ ctx[5]);
4653
4678
  },
4654
4679
  m(target, anchor) {
@@ -4662,7 +4687,7 @@ function create_else_block$1(ctx) {
4662
4687
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4663
4688
  rendertext.$set(rendertext_changes);
4664
4689
 
4665
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
4690
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
4666
4691
  attr(div1, "class", div1_class_value);
4667
4692
  }
4668
4693
 
@@ -4686,7 +4711,7 @@ function create_else_block$1(ctx) {
4686
4711
  };
4687
4712
  }
4688
4713
 
4689
- // (79:2) {#if enableCopy}
4714
+ // (80:2) {#if enableCopy}
4690
4715
  function create_if_block$3(ctx) {
4691
4716
  let a;
4692
4717
  let div0;
@@ -4712,12 +4737,12 @@ function create_if_block$3(ctx) {
4712
4737
  t2 = space();
4713
4738
  div2 = element("div");
4714
4739
  div2.textContent = "コピーできませんでした";
4715
- attr(div0, "class", "text-element-inner svelte-vz6867");
4740
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4716
4741
  attr(a, "href", '');
4717
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4742
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4718
4743
  attr(a, "style", /*style*/ ctx[5]);
4719
- attr(div1, "class", "tooltip svelte-vz6867");
4720
- attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
4744
+ attr(div1, "class", "tooltip svelte-9ixs0b");
4745
+ attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
4721
4746
  },
4722
4747
  m(target, anchor) {
4723
4748
  insert(target, a, anchor);
@@ -4741,7 +4766,7 @@ function create_if_block$3(ctx) {
4741
4766
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4742
4767
  rendertext.$set(rendertext_changes);
4743
4768
 
4744
- 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"))) {
4769
+ 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"))) {
4745
4770
  attr(a, "class", a_class_value);
4746
4771
  }
4747
4772
 
@@ -4793,7 +4818,7 @@ function create_fragment$p(ctx) {
4793
4818
  c() {
4794
4819
  div = element("div");
4795
4820
  if_block.c();
4796
- attr(div, "class", "text-element-wrapper svelte-vz6867");
4821
+ attr(div, "class", "text-element-wrapper svelte-9ixs0b");
4797
4822
  },
4798
4823
  m(target, anchor) {
4799
4824
  insert(target, div, anchor);
@@ -4861,6 +4886,7 @@ function instance$p($$self, $$props, $$invalidate) {
4861
4886
 
4862
4887
  try {
4863
4888
  await navigator.clipboard.writeText(text);
4889
+ send_event('_click_copy', { text });
4864
4890
 
4865
4891
  if (eventName) {
4866
4892
  send_event(eventName, eventValue);
@@ -4958,7 +4984,7 @@ class TextElement extends SvelteComponent {
4958
4984
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
4959
4985
 
4960
4986
  function add_css$n(target) {
4961
- 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)}");
4987
+ 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)}");
4962
4988
  }
4963
4989
 
4964
4990
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5014,7 +5040,7 @@ function create_fragment$o(ctx) {
5014
5040
  c() {
5015
5041
  div = element("div");
5016
5042
  create_component(button.$$.fragment);
5017
- attr(div, "class", "text-button-element svelte-ujdxfc");
5043
+ attr(div, "class", "text-button-element svelte-1vg84sc");
5018
5044
  },
5019
5045
  m(target, anchor) {
5020
5046
  insert(target, div, anchor);
@@ -5106,7 +5132,7 @@ class TextButtonElement extends SvelteComponent {
5106
5132
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5107
5133
 
5108
5134
  function add_css$m(target) {
5109
- 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%}");
5135
+ 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%}");
5110
5136
  }
5111
5137
 
5112
5138
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -5118,7 +5144,7 @@ function create_default_slot$4(ctx) {
5118
5144
  return {
5119
5145
  c() {
5120
5146
  img = element("img");
5121
- attr(img, "class", "image svelte-1alkh1m");
5147
+ attr(img, "class", "image svelte-t6tu0e");
5122
5148
  attr(img, "loading", "lazy");
5123
5149
  attr(img, "width", "auto");
5124
5150
  attr(img, "height", "auto");
@@ -5180,7 +5206,7 @@ function create_fragment$n(ctx) {
5180
5206
  c() {
5181
5207
  div = element("div");
5182
5208
  create_component(button.$$.fragment);
5183
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
5209
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
5184
5210
  },
5185
5211
  m(target, anchor) {
5186
5212
  insert(target, div, anchor);
@@ -5199,7 +5225,7 @@ function create_fragment$n(ctx) {
5199
5225
 
5200
5226
  button.$set(button_changes);
5201
5227
 
5202
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
5228
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
5203
5229
  attr(div, "class", div_class_value);
5204
5230
  }
5205
5231
  },
@@ -5271,7 +5297,7 @@ class ImageElement extends SvelteComponent {
5271
5297
  /* src/components/List.svelte generated by Svelte v3.53.1 */
5272
5298
 
5273
5299
  function add_css$l(target) {
5274
- 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}");
5300
+ 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}");
5275
5301
  }
5276
5302
 
5277
5303
  function create_fragment$m(ctx) {
@@ -5284,7 +5310,7 @@ function create_fragment$m(ctx) {
5284
5310
  c() {
5285
5311
  div = element("div");
5286
5312
  if (default_slot) default_slot.c();
5287
- attr(div, "class", "list svelte-1t8r9z");
5313
+ attr(div, "class", "list svelte-aquv6z");
5288
5314
  attr(div, "style", /*style*/ ctx[0]);
5289
5315
  },
5290
5316
  m(target, anchor) {
@@ -5418,7 +5444,7 @@ class List extends SvelteComponent {
5418
5444
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
5419
5445
 
5420
5446
  function add_css$k(target) {
5421
- 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}");
5447
+ 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}");
5422
5448
  }
5423
5449
 
5424
5450
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -5488,7 +5514,7 @@ function create_fragment$l(ctx) {
5488
5514
  c() {
5489
5515
  div = element("div");
5490
5516
  create_component(button.$$.fragment);
5491
- attr(div, "class", "list-item svelte-1lbw8v2");
5517
+ attr(div, "class", "list-item svelte-9n97pe");
5492
5518
  attr(div, "style", /*listItemStyle*/ ctx[3]);
5493
5519
  },
5494
5520
  m(target, anchor) {
@@ -5614,7 +5640,7 @@ class ListItem extends SvelteComponent {
5614
5640
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
5615
5641
 
5616
5642
  function add_css$j(target) {
5617
- 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}");
5643
+ 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}");
5618
5644
  }
5619
5645
 
5620
5646
  function create_fragment$k(ctx) {
@@ -5623,7 +5649,7 @@ function create_fragment$k(ctx) {
5623
5649
  return {
5624
5650
  c() {
5625
5651
  div = element("div");
5626
- attr(div, "class", "embed svelte-w6jkzh");
5652
+ attr(div, "class", "embed svelte-wocq4p");
5627
5653
  attr(div, "style", /*_style*/ ctx[1]);
5628
5654
  },
5629
5655
  m(target, anchor) {
@@ -5666,7 +5692,7 @@ class EmbedElement extends SvelteComponent {
5666
5692
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
5667
5693
 
5668
5694
  function add_css$i(target) {
5669
- 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%}");
5695
+ 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%}");
5670
5696
  }
5671
5697
 
5672
5698
  function create_fragment$j(ctx) {
@@ -5678,7 +5704,7 @@ function create_fragment$j(ctx) {
5678
5704
  div1 = element("div");
5679
5705
  div0 = element("div");
5680
5706
  attr(div0, "class", "karte-player");
5681
- attr(div1, "class", "embed svelte-ljxq7x");
5707
+ attr(div1, "class", "embed svelte-vikz49");
5682
5708
  attr(div1, "style", /*_style*/ ctx[0]);
5683
5709
  },
5684
5710
  m(target, anchor) {
@@ -6020,7 +6046,7 @@ class MovieYouTubeElement extends SvelteComponent {
6020
6046
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6021
6047
 
6022
6048
  function add_css$h(target) {
6023
- 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%}");
6049
+ 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%}");
6024
6050
  }
6025
6051
 
6026
6052
  function create_fragment$i(ctx) {
@@ -6032,7 +6058,7 @@ function create_fragment$i(ctx) {
6032
6058
  div1 = element("div");
6033
6059
  div0 = element("div");
6034
6060
  attr(div0, "class", "karte-player");
6035
- attr(div1, "class", "embed svelte-ljxq7x");
6061
+ attr(div1, "class", "embed svelte-vikz49");
6036
6062
  attr(div1, "style", /*_style*/ ctx[0]);
6037
6063
  },
6038
6064
  m(target, anchor) {
@@ -6216,7 +6242,7 @@ class MovieVimeoElement extends SvelteComponent {
6216
6242
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
6217
6243
 
6218
6244
  function add_css$g(target) {
6219
- append_styles(target, "svelte-13z4kn0", ".textarea-wrapper.svelte-13z4kn0{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-13z4kn0{width:100%;resize:none}");
6245
+ append_styles(target, "svelte-kyay3k", ".textarea-wrapper.svelte-kyay3k{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-kyay3k{width:100%;resize:none}");
6220
6246
  }
6221
6247
 
6222
6248
  function create_fragment$h(ctx) {
@@ -6229,12 +6255,12 @@ function create_fragment$h(ctx) {
6229
6255
  c() {
6230
6256
  div = element("div");
6231
6257
  textarea = element("textarea");
6232
- attr(textarea, "class", "textarea svelte-13z4kn0");
6258
+ attr(textarea, "class", "textarea svelte-kyay3k");
6233
6259
  textarea.value = /*$value*/ ctx[3];
6234
6260
  textarea.required = /*required*/ ctx[0];
6235
6261
  attr(textarea, "rows", /*rows*/ ctx[1]);
6236
6262
  attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
6237
- attr(div, "class", "textarea-wrapper svelte-13z4kn0");
6263
+ attr(div, "class", "textarea-wrapper svelte-kyay3k");
6238
6264
  },
6239
6265
  m(target, anchor) {
6240
6266
  insert(target, div, anchor);
@@ -6330,7 +6356,7 @@ class FormTextarea extends SvelteComponent {
6330
6356
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
6331
6357
 
6332
6358
  function add_css$f(target) {
6333
- 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}");
6359
+ 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}");
6334
6360
  }
6335
6361
 
6336
6362
  function get_each_context$5(ctx, list, i) {
@@ -6363,14 +6389,14 @@ function create_each_block$5(ctx) {
6363
6389
  t1 = text(t1_value);
6364
6390
  t2 = space();
6365
6391
  attr(input, "type", "radio");
6366
- attr(input, "class", "radio-button-input svelte-1ntb6j8");
6392
+ attr(input, "class", "radio-button-input svelte-17s08g");
6367
6393
  attr(input, "style", /*buttonStyle*/ ctx[5]);
6368
6394
  attr(input, "name", /*name*/ ctx[0]);
6369
6395
  input.value = input_value_value = /*option*/ ctx[16];
6370
6396
  input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
6371
- attr(span, "class", "radio-button-text svelte-1ntb6j8");
6397
+ attr(span, "class", "radio-button-text svelte-17s08g");
6372
6398
  attr(span, "style", /*_textStyle*/ ctx[2]);
6373
- attr(label, "class", "radio-button svelte-1ntb6j8");
6399
+ attr(label, "class", "radio-button svelte-17s08g");
6374
6400
  },
6375
6401
  m(target, anchor) {
6376
6402
  insert(target, label, anchor);
@@ -6435,7 +6461,7 @@ function create_fragment$g(ctx) {
6435
6461
  each_blocks[i].c();
6436
6462
  }
6437
6463
 
6438
- attr(div, "class", "radio-buttons svelte-1ntb6j8");
6464
+ attr(div, "class", "radio-buttons svelte-17s08g");
6439
6465
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
6440
6466
  },
6441
6467
  m(target, anchor) {
@@ -6602,7 +6628,7 @@ class FormRadioButtons extends SvelteComponent {
6602
6628
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
6603
6629
 
6604
6630
  function add_css$e(target) {
6605
- 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}");
6631
+ 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}");
6606
6632
  }
6607
6633
 
6608
6634
  function get_each_context$4(ctx, list, i) {
@@ -6736,10 +6762,10 @@ function create_fragment$f(ctx) {
6736
6762
 
6737
6763
  t = space();
6738
6764
  div0 = element("div");
6739
- attr(select, "class", "select-select svelte-iejizj");
6765
+ attr(select, "class", "select-select svelte-t9ynyj");
6740
6766
  attr(select, "style", /*style*/ ctx[3]);
6741
- attr(div0, "class", "select-icon svelte-iejizj");
6742
- attr(div1, "class", "select svelte-iejizj");
6767
+ attr(div0, "class", "select-icon svelte-t9ynyj");
6768
+ attr(div1, "class", "select svelte-t9ynyj");
6743
6769
  attr(div1, "style", /*styleVariables*/ ctx[2]);
6744
6770
  },
6745
6771
  m(target, anchor) {
@@ -6941,7 +6967,7 @@ class FormSelect extends SvelteComponent {
6941
6967
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
6942
6968
 
6943
6969
  function add_css$d(target) {
6944
- 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}");
6970
+ 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}");
6945
6971
  }
6946
6972
 
6947
6973
  function get_each_context$3(ctx, list, i) {
@@ -6980,19 +7006,19 @@ function create_each_block$3(ctx) {
6980
7006
  span2 = element("span");
6981
7007
  t2 = text(t2_value);
6982
7008
  t3 = space();
6983
- attr(input, "class", "check-box-input svelte-2pz1us");
7009
+ attr(input, "class", "check-box-input svelte-1p65cg8");
6984
7010
  attr(input, "type", "checkbox");
6985
7011
  attr(input, "name", /*name*/ ctx[0]);
6986
7012
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
6987
- attr(span0, "class", "check-box-icon svelte-2pz1us");
7013
+ attr(span0, "class", "check-box-icon svelte-1p65cg8");
6988
7014
 
6989
7015
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
6990
7016
  ? ' _checked'
6991
- : ''}`) + " svelte-2pz1us"));
7017
+ : ''}`) + " svelte-1p65cg8"));
6992
7018
 
6993
- attr(span2, "class", "check-box-text svelte-2pz1us");
7019
+ attr(span2, "class", "check-box-text svelte-1p65cg8");
6994
7020
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
6995
- attr(label, "class", "check-box svelte-2pz1us");
7021
+ attr(label, "class", "check-box svelte-1p65cg8");
6996
7022
  attr(label, "style", /*styleVariables*/ ctx[5]);
6997
7023
  },
6998
7024
  m(target, anchor) {
@@ -7024,7 +7050,7 @@ function create_each_block$3(ctx) {
7024
7050
 
7025
7051
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7026
7052
  ? ' _checked'
7027
- : ''}`) + " svelte-2pz1us"))) {
7053
+ : ''}`) + " svelte-1p65cg8"))) {
7028
7054
  attr(span1, "class", span1_class_value);
7029
7055
  }
7030
7056
 
@@ -7063,7 +7089,7 @@ function create_fragment$e(ctx) {
7063
7089
  each_blocks[i].c();
7064
7090
  }
7065
7091
 
7066
- attr(div, "class", "check-boxes svelte-2pz1us");
7092
+ attr(div, "class", "check-boxes svelte-1p65cg8");
7067
7093
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7068
7094
  },
7069
7095
  m(target, anchor) {
@@ -7238,7 +7264,7 @@ class FormCheckBoxes extends SvelteComponent {
7238
7264
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
7239
7265
 
7240
7266
  function add_css$c(target) {
7241
- append_styles(target, "svelte-18pfy31", ".rating-buttons.svelte-18pfy31{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-18pfy31{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}");
7267
+ append_styles(target, "svelte-zy2va9", ".rating-buttons.svelte-zy2va9{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-zy2va9{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}");
7242
7268
  }
7243
7269
 
7244
7270
  function get_each_context$2(ctx, list, i) {
@@ -7262,7 +7288,7 @@ function create_each_block$2(ctx) {
7262
7288
  button = element("button");
7263
7289
  t0 = text(t0_value);
7264
7290
  t1 = space();
7265
- attr(button, "class", "rating-button svelte-18pfy31");
7291
+ attr(button, "class", "rating-button svelte-zy2va9");
7266
7292
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
7267
7293
  },
7268
7294
  m(target, anchor) {
@@ -7311,7 +7337,7 @@ function create_fragment$d(ctx) {
7311
7337
  each_blocks[i].c();
7312
7338
  }
7313
7339
 
7314
- attr(div, "class", "rating-buttons svelte-18pfy31");
7340
+ attr(div, "class", "rating-buttons svelte-zy2va9");
7315
7341
  },
7316
7342
  m(target, anchor) {
7317
7343
  insert(target, div, anchor);
@@ -7448,7 +7474,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
7448
7474
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
7449
7475
 
7450
7476
  function add_css$b(target) {
7451
- 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%)}");
7477
+ 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%)}");
7452
7478
  }
7453
7479
 
7454
7480
  function get_each_context$1(ctx, list, i) {
@@ -7473,9 +7499,9 @@ function create_each_block$1(ctx) {
7473
7499
  img = element("img");
7474
7500
  t = space();
7475
7501
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
7476
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
7502
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
7477
7503
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
7478
- attr(button, "class", "rating-button svelte-1b5dvzw");
7504
+ attr(button, "class", "rating-button svelte-tbunko");
7479
7505
  attr(button, "style", /*buttonStyle*/ ctx[0]);
7480
7506
  },
7481
7507
  m(target, anchor) {
@@ -7491,7 +7517,7 @@ function create_each_block$1(ctx) {
7491
7517
  p(new_ctx, dirty) {
7492
7518
  ctx = new_ctx;
7493
7519
 
7494
- 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"))) {
7520
+ 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"))) {
7495
7521
  attr(img, "class", img_class_value);
7496
7522
  }
7497
7523
 
@@ -7524,7 +7550,7 @@ function create_fragment$c(ctx) {
7524
7550
  each_blocks[i].c();
7525
7551
  }
7526
7552
 
7527
- attr(div, "class", "rating-buttons svelte-1b5dvzw");
7553
+ attr(div, "class", "rating-buttons svelte-tbunko");
7528
7554
  },
7529
7555
  m(target, anchor) {
7530
7556
  insert(target, div, anchor);
@@ -7632,7 +7658,7 @@ class FormRatingButtonsFace extends SvelteComponent {
7632
7658
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
7633
7659
 
7634
7660
  function add_css$a(target) {
7635
- 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%}");
7661
+ 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%}");
7636
7662
  }
7637
7663
 
7638
7664
  function get_each_context(ctx, list, i) {
@@ -7661,9 +7687,9 @@ function create_if_block_1(ctx) {
7661
7687
  attr(svg, "viewBox", "0 0 10 16");
7662
7688
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
7663
7689
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
7664
- attr(button, "class", "move-button svelte-1qfq79t");
7690
+ attr(button, "class", "move-button svelte-ji1fh");
7665
7691
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
7666
- attr(div, "class", "prev-button-container svelte-1qfq79t");
7692
+ attr(div, "class", "prev-button-container svelte-ji1fh");
7667
7693
  },
7668
7694
  m(target, anchor) {
7669
7695
  insert(target, div, anchor);
@@ -7712,9 +7738,9 @@ function create_if_block$1(ctx) {
7712
7738
  attr(svg, "viewBox", "0 0 10 16");
7713
7739
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
7714
7740
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
7715
- attr(button, "class", "move-button svelte-1qfq79t");
7741
+ attr(button, "class", "move-button svelte-ji1fh");
7716
7742
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
7717
- attr(div, "class", "next-button-container svelte-1qfq79t");
7743
+ attr(div, "class", "next-button-container svelte-ji1fh");
7718
7744
  },
7719
7745
  m(target, anchor) {
7720
7746
  insert(target, div, anchor);
@@ -7762,9 +7788,9 @@ function create_each_block(ctx) {
7762
7788
  button = element("button");
7763
7789
  div = element("div");
7764
7790
  t = space();
7765
- attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
7791
+ attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
7766
7792
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
7767
- attr(button, "class", "navigation-item svelte-1qfq79t");
7793
+ attr(button, "class", "navigation-item svelte-ji1fh");
7768
7794
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
7769
7795
  },
7770
7796
  m(target, anchor) {
@@ -7841,14 +7867,14 @@ function create_fragment$b(ctx) {
7841
7867
  each_blocks[i].c();
7842
7868
  }
7843
7869
 
7844
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
7870
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
7845
7871
  attr(div0, "style", /*slideStyle*/ ctx[14]);
7846
- attr(div1, "class", "container svelte-1qfq79t");
7872
+ attr(div1, "class", "container svelte-ji1fh");
7847
7873
  attr(div1, "style", /*_style*/ ctx[0]);
7848
- attr(div2, "class", "navigation svelte-1qfq79t");
7874
+ attr(div2, "class", "navigation svelte-ji1fh");
7849
7875
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
7850
7876
  set_attributes(div3, div3_data);
7851
- toggle_class(div3, "svelte-1qfq79t", true);
7877
+ toggle_class(div3, "svelte-ji1fh", true);
7852
7878
  },
7853
7879
  m(target, anchor) {
7854
7880
  insert(target, div3, anchor);
@@ -7890,7 +7916,7 @@ function create_fragment$b(ctx) {
7890
7916
  }
7891
7917
  }
7892
7918
 
7893
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
7919
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
7894
7920
  attr(div0, "class", div0_class_value);
7895
7921
  }
7896
7922
 
@@ -7956,7 +7982,7 @@ function create_fragment$b(ctx) {
7956
7982
  }
7957
7983
 
7958
7984
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
7959
- toggle_class(div3, "svelte-1qfq79t", true);
7985
+ toggle_class(div3, "svelte-ji1fh", true);
7960
7986
  },
7961
7987
  i(local) {
7962
7988
  if (current) return;
@@ -8468,7 +8494,7 @@ class Slide extends SvelteComponent {
8468
8494
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
8469
8495
 
8470
8496
  function add_css$9(target) {
8471
- 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}");
8497
+ 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}");
8472
8498
  }
8473
8499
 
8474
8500
  function create_fragment$a(ctx) {
@@ -8483,9 +8509,9 @@ function create_fragment$a(ctx) {
8483
8509
  div1 = element("div");
8484
8510
  div0 = element("div");
8485
8511
  if (default_slot) default_slot.c();
8486
- attr(div0, "class", "item-inner svelte-1rv0qgo");
8512
+ attr(div0, "class", "item-inner svelte-9ygf1w");
8487
8513
  attr(div0, "style", /*_style*/ ctx[0]);
8488
- attr(div1, "class", "item svelte-1rv0qgo");
8514
+ attr(div1, "class", "item svelte-9ygf1w");
8489
8515
  attr(div1, "style", /*itemStyle*/ ctx[1]);
8490
8516
  },
8491
8517
  m(target, anchor) {
@@ -8611,7 +8637,7 @@ class SlideItem extends SvelteComponent {
8611
8637
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
8612
8638
 
8613
8639
  function add_css$8(target) {
8614
- 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}");
8640
+ 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}");
8615
8641
  }
8616
8642
 
8617
8643
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -8629,9 +8655,9 @@ function create_fragment$9(ctx) {
8629
8655
  div1 = element("div");
8630
8656
  div0 = element("div");
8631
8657
  if (default_slot) default_slot.c();
8632
- attr(div0, "class", "countdown-inner svelte-t87l6f");
8658
+ attr(div0, "class", "countdown-inner svelte-rroxiz");
8633
8659
  attr(div0, "style", /*_style*/ ctx[0]);
8634
- attr(div1, "class", "countdown svelte-t87l6f");
8660
+ attr(div1, "class", "countdown svelte-rroxiz");
8635
8661
  },
8636
8662
  m(target, anchor) {
8637
8663
  insert(target, div1, anchor);
@@ -8765,7 +8791,7 @@ class Countdown extends SvelteComponent {
8765
8791
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
8766
8792
 
8767
8793
  function add_css$7(target) {
8768
- 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}");
8794
+ 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}");
8769
8795
  }
8770
8796
 
8771
8797
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -8835,7 +8861,7 @@ function create_fragment$8(ctx) {
8835
8861
  c() {
8836
8862
  div = element("div");
8837
8863
  create_component(button.$$.fragment);
8838
- attr(div, "class", "box svelte-1c91vpe");
8864
+ attr(div, "class", "box svelte-1ccydfy");
8839
8865
  },
8840
8866
  m(target, anchor) {
8841
8867
  insert(target, div, anchor);
@@ -8896,7 +8922,7 @@ class Box extends SvelteComponent {
8896
8922
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
8897
8923
 
8898
8924
  function add_css$6(target) {
8899
- 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)}");
8925
+ 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)}");
8900
8926
  }
8901
8927
 
8902
8928
  // (56:4) {#if svg}
@@ -8978,7 +9004,7 @@ function create_fragment$7(ctx) {
8978
9004
  c() {
8979
9005
  div = element("div");
8980
9006
  create_component(button.$$.fragment);
8981
- attr(div, "class", "icon svelte-1mk6wi4");
9007
+ attr(div, "class", "icon svelte-1mkvcuo");
8982
9008
  },
8983
9009
  m(target, anchor) {
8984
9010
  insert(target, div, anchor);
@@ -9087,7 +9113,7 @@ class IconElement extends SvelteComponent {
9087
9113
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
9088
9114
 
9089
9115
  function add_css$5(target) {
9090
- append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9116
+ append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9091
9117
  }
9092
9118
 
9093
9119
  function create_fragment$6(ctx) {
@@ -9113,7 +9139,7 @@ function create_fragment$6(ctx) {
9113
9139
  c() {
9114
9140
  div = element("div");
9115
9141
  if (switch_instance) create_component(switch_instance.$$.fragment);
9116
- attr(div, "class", "codeElement svelte-1ng2n51");
9142
+ attr(div, "class", "codeElement svelte-ymsb9l");
9117
9143
  attr(div, "style", /*style*/ ctx[3]);
9118
9144
  },
9119
9145
  m(target, anchor) {
@@ -9202,7 +9228,7 @@ class CodeElement extends SvelteComponent {
9202
9228
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
9203
9229
 
9204
9230
  function add_css$4(target) {
9205
- append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
9231
+ append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
9206
9232
  }
9207
9233
 
9208
9234
  function create_fragment$5(ctx) {
@@ -9216,7 +9242,7 @@ function create_fragment$5(ctx) {
9216
9242
  c() {
9217
9243
  div = element("div");
9218
9244
  if (default_slot) default_slot.c();
9219
- attr(div, "class", "flex svelte-9v2qdg");
9245
+ attr(div, "class", "flex svelte-1e71ejc");
9220
9246
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
9221
9247
  },
9222
9248
  m(target, anchor) {
@@ -9313,7 +9339,7 @@ class Flex extends SvelteComponent {
9313
9339
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
9314
9340
 
9315
9341
  function add_css$3(target) {
9316
- append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9342
+ append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9317
9343
  }
9318
9344
 
9319
9345
  function create_fragment$4(ctx) {
@@ -9326,7 +9352,7 @@ function create_fragment$4(ctx) {
9326
9352
  c() {
9327
9353
  div = element("div");
9328
9354
  if (default_slot) default_slot.c();
9329
- attr(div, "class", "flex-item svelte-164ah5d");
9355
+ attr(div, "class", "flex-item svelte-1p0bk1x");
9330
9356
  attr(div, "style", /*style*/ ctx[0]);
9331
9357
  },
9332
9358
  m(target, anchor) {
@@ -9734,7 +9760,7 @@ class GridModalState extends SvelteComponent {
9734
9760
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
9735
9761
 
9736
9762
  function add_css$2(target) {
9737
- 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%}");
9763
+ 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%}");
9738
9764
  }
9739
9765
 
9740
9766
  function create_fragment$2(ctx) {
@@ -9750,8 +9776,8 @@ function create_fragment$2(ctx) {
9750
9776
  div1 = element("div");
9751
9777
  div0 = element("div");
9752
9778
  create_component(rendertext.$$.fragment);
9753
- attr(div0, "class", "text-block-inner svelte-akic2e");
9754
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
9779
+ attr(div0, "class", "text-block-inner svelte-15pej1m");
9780
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
9755
9781
  attr(div1, "style", /*style*/ ctx[2]);
9756
9782
  },
9757
9783
  m(target, anchor) {
@@ -9765,7 +9791,7 @@ function create_fragment$2(ctx) {
9765
9791
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
9766
9792
  rendertext.$set(rendertext_changes);
9767
9793
 
9768
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
9794
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
9769
9795
  attr(div1, "class", div1_class_value);
9770
9796
  }
9771
9797
 
@@ -9843,7 +9869,7 @@ class TextBlock extends SvelteComponent {
9843
9869
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
9844
9870
 
9845
9871
  function add_css$1(target) {
9846
- 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)}");
9872
+ 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)}");
9847
9873
  }
9848
9874
 
9849
9875
  function create_fragment$1(ctx) {
@@ -9860,9 +9886,9 @@ function create_fragment$1(ctx) {
9860
9886
  div = element("div");
9861
9887
  button = element("button");
9862
9888
  create_component(rendertext.$$.fragment);
9863
- attr(button, "class", "text-button svelte-1c34p4n");
9889
+ attr(button, "class", "text-button svelte-ff0k6r");
9864
9890
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
9865
- attr(div, "class", "text-button-block svelte-1c34p4n");
9891
+ attr(div, "class", "text-button-block svelte-ff0k6r");
9866
9892
  attr(div, "style", /*_style*/ ctx[2]);
9867
9893
  },
9868
9894
  m(target, anchor) {
@@ -9968,7 +9994,7 @@ class TextButtonBlock extends SvelteComponent {
9968
9994
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
9969
9995
 
9970
9996
  function add_css(target) {
9971
- 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)}");
9997
+ 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)}");
9972
9998
  }
9973
9999
 
9974
10000
  function create_fragment(ctx) {
@@ -9984,14 +10010,14 @@ function create_fragment(ctx) {
9984
10010
  c() {
9985
10011
  div = element("div");
9986
10012
  img = element("img");
9987
- attr(img, "class", "image svelte-1jus6sx");
10013
+ attr(img, "class", "image svelte-1pdw891");
9988
10014
  attr(img, "loading", "lazy");
9989
10015
  attr(img, "width", "auto");
9990
10016
  attr(img, "height", "auto");
9991
10017
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
9992
10018
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
9993
10019
  attr(img, "alt", /*alt*/ ctx[1]);
9994
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
10020
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
9995
10021
  attr(div, "style", /*_style*/ ctx[5]);
9996
10022
  },
9997
10023
  m(target, anchor) {
@@ -10016,7 +10042,7 @@ function create_fragment(ctx) {
10016
10042
  attr(img, "alt", /*alt*/ ctx[1]);
10017
10043
  }
10018
10044
 
10019
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
10045
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
10020
10046
  attr(div, "class", div_class_value);
10021
10047
  }
10022
10048