@plaidev/karte-action-sdk 1.1.198 → 1.1.199-28181334.2aca4feb

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.
@@ -1332,19 +1332,42 @@ function request(url, data, cb) {
1332
1332
  });
1333
1333
  }
1334
1334
  /** @internal */
1335
- const loadActionTableRow = async (config, api_key, endpoint) => {
1336
- return new Promise((resolve, reject) => collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data))));
1335
+ const loadActionTableRow = async (config, data, api_key, endpoint) => {
1336
+ return new Promise((resolve, reject) => {
1337
+ const key = data[config.query.key] ?? null;
1338
+ if (key == null) {
1339
+ console.warn('key is not found. key: ', config.query.key);
1340
+ return reject('key is not found.');
1341
+ }
1342
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
1343
+ });
1337
1344
  };
1338
1345
  /** @internal */
1339
- const loadActionTableRows = async (config, api_key, endpoint) => {
1340
- return new Promise((resolve, reject) => collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data))));
1346
+ const loadActionTableRows = async (config, data, api_key, endpoint) => {
1347
+ return new Promise((resolve, reject) => {
1348
+ const keys = config.query.key.map(key => data[key] ?? null);
1349
+ if (keys.some(key => key == null)) {
1350
+ keys.filter(key => key == null).forEach(key => console.warn('key is not found. key: ', key));
1351
+ return reject('key is not found.');
1352
+ }
1353
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data)));
1354
+ });
1341
1355
  };
1342
1356
  /** @internal */
1343
- const loadActionTableQuery = async (config, api_key, endpoint) => {
1344
- return new Promise((resolve, reject) => 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))));
1357
+ const loadActionTableQuery = async (config, data, api_key, endpoint) => {
1358
+ return new Promise((resolve, reject) => {
1359
+ const params = config.query.params.map(param => data[param] ?? null);
1360
+ if (params.some(param => param == null)) {
1361
+ params
1362
+ .filter(param => param == null)
1363
+ .forEach(param => console.warn('key is not found. param: ', param));
1364
+ return reject('key is not found.');
1365
+ }
1366
+ 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)));
1367
+ });
1345
1368
  };
1346
1369
  /** @internal */
1347
- const loadActionTable = async (config, api_key, endpoint) => {
1370
+ const loadActionTable = async (config, data, api_key, endpoint) => {
1348
1371
  console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
1349
1372
  const results = config.map(c => c.preview_value)
1350
1373
  ;
@@ -1357,8 +1380,8 @@ const loadActionTable = async (config, api_key, endpoint) => {
1357
1380
  }, {});
1358
1381
  };
1359
1382
  /** @internal */
1360
- async function setupActionTable(localVariablesQuery, apiKey) {
1361
- const result = await loadActionTable(localVariablesQuery, apiKey);
1383
+ async function setupActionTable(localVariablesQuery, data, apiKey) {
1384
+ const result = await loadActionTable(localVariablesQuery, data, apiKey);
1362
1385
  let success = false;
1363
1386
  if (Object.keys(result).length === localVariablesQuery.length) {
1364
1387
  setVariables(result);
@@ -1370,7 +1393,7 @@ async function setupActionTable(localVariablesQuery, apiKey) {
1370
1393
  }
1371
1394
  /** @internal */
1372
1395
  function initActionTable(localVariablesQuery) {
1373
- let initValues = {
1396
+ const initValues = {
1374
1397
  // default values
1375
1398
  action_table: [],
1376
1399
  };
@@ -1677,11 +1700,10 @@ function createModal(App, options = {
1677
1700
  // ここからメインの処理
1678
1701
  initialize({ send: options.send, initialState: data.initial_state });
1679
1702
  // ActionTable APIへの非同期リクエスト
1680
- console.log("initialize action table");
1681
1703
  initActionTable(options.localVariablesQuery);
1682
1704
  let actionTablePromise = null;
1683
1705
  if (options.localVariablesQuery && data.api_key) {
1684
- actionTablePromise = setupActionTable(options.localVariablesQuery, data.api_key);
1706
+ actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key);
1685
1707
  }
1686
1708
  // NOTE: onCreateより前にListenする必要がある
1687
1709
  window.addEventListener(ACTION_SHOW_EVENT, handleShow);
@@ -1871,7 +1893,8 @@ async function runScript$1(options = {
1871
1893
  data,
1872
1894
  };
1873
1895
  initialize({ send: options.send, initialState: data.initial_state });
1874
- const { success } = await setupActionTable(options.localVariablesQuery, data.api_key);
1896
+ initActionTable(options.localVariablesQuery);
1897
+ const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
1875
1898
  if (!success)
1876
1899
  return;
1877
1900
  options.send('script_fired');
@@ -2563,7 +2586,7 @@ class State extends SvelteComponent {
2563
2586
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
2564
2587
 
2565
2588
  function add_css$t(target) {
2566
- append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
2589
+ append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
2567
2590
  }
2568
2591
 
2569
2592
  // (23:0) {#if $state === path}
@@ -2590,7 +2613,7 @@ function create_if_block$8(ctx) {
2590
2613
  },
2591
2614
  h() {
2592
2615
  attr(div, "data-state-path", /*path*/ ctx[0]);
2593
- attr(div, "class", "state-item svelte-1amihue");
2616
+ attr(div, "class", "state-item svelte-2qb6dm");
2594
2617
  },
2595
2618
  m(target, anchor) {
2596
2619
  insert_hydration(target, div, anchor);
@@ -2949,7 +2972,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
2949
2972
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
2950
2973
 
2951
2974
  function add_css$s(target) {
2952
- 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}");
2975
+ 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}");
2953
2976
  }
2954
2977
 
2955
2978
  // (9:0) {#if backgroundOverlay}
@@ -2969,7 +2992,7 @@ function create_if_block$7(ctx) {
2969
2992
  this.h();
2970
2993
  },
2971
2994
  h() {
2972
- attr(div, "class", "background svelte-g6ucc2");
2995
+ attr(div, "class", "background svelte-1d4fta");
2973
2996
  },
2974
2997
  m(target, anchor) {
2975
2998
  insert_hydration(target, div, anchor);
@@ -3084,7 +3107,7 @@ function checkStopPropagation(eventName, handler) {
3084
3107
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3085
3108
 
3086
3109
  function add_css$r(target) {
3087
- 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}");
3110
+ 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}");
3088
3111
  }
3089
3112
 
3090
3113
  // (50:0) {:else}
@@ -3123,7 +3146,7 @@ function create_else_block$3(ctx) {
3123
3146
  },
3124
3147
  h() {
3125
3148
  set_attributes(button, button_data);
3126
- toggle_class(button, "svelte-1dtbrzj", true);
3149
+ toggle_class(button, "svelte-1tg0tf", true);
3127
3150
  },
3128
3151
  m(target, anchor) {
3129
3152
  insert_hydration(target, button, anchor);
@@ -3162,7 +3185,7 @@ function create_else_block$3(ctx) {
3162
3185
  dataAttrStopPropagation('click')
3163
3186
  ]));
3164
3187
 
3165
- toggle_class(button, "svelte-1dtbrzj", true);
3188
+ toggle_class(button, "svelte-1tg0tf", true);
3166
3189
  },
3167
3190
  i(local) {
3168
3191
  if (current) return;
@@ -3203,7 +3226,7 @@ function create_if_block_2(ctx) {
3203
3226
  this.h();
3204
3227
  },
3205
3228
  h() {
3206
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1dtbrzj"));
3229
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
3207
3230
  attr(div, "style", /*style*/ ctx[1]);
3208
3231
  },
3209
3232
  m(target, anchor) {
@@ -3303,7 +3326,7 @@ function create_if_block_1$2(ctx) {
3303
3326
  },
3304
3327
  h() {
3305
3328
  set_attributes(a, a_data);
3306
- toggle_class(a, "svelte-1dtbrzj", true);
3329
+ toggle_class(a, "svelte-1tg0tf", true);
3307
3330
  },
3308
3331
  m(target, anchor) {
3309
3332
  insert_hydration(target, a, anchor);
@@ -3345,7 +3368,7 @@ function create_if_block_1$2(ctx) {
3345
3368
  dataAttrStopPropagation('click')
3346
3369
  ]));
3347
3370
 
3348
- toggle_class(a, "svelte-1dtbrzj", true);
3371
+ toggle_class(a, "svelte-1tg0tf", true);
3349
3372
  },
3350
3373
  i(local) {
3351
3374
  if (current) return;
@@ -3386,7 +3409,7 @@ function create_if_block$6(ctx) {
3386
3409
  this.h();
3387
3410
  },
3388
3411
  h() {
3389
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1dtbrzj"));
3412
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
3390
3413
  attr(div, "style", /*style*/ ctx[1]);
3391
3414
  },
3392
3415
  m(target, anchor) {
@@ -3594,7 +3617,7 @@ class Button extends SvelteComponent {
3594
3617
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3595
3618
 
3596
3619
  function add_css$q(target) {
3597
- 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}");
3620
+ 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}");
3598
3621
  }
3599
3622
 
3600
3623
  // (145:0) {#if visible}
@@ -3635,7 +3658,7 @@ function create_if_block$5(ctx) {
3635
3658
  this.h();
3636
3659
  },
3637
3660
  h() {
3638
- attr(div, "class", "modal svelte-1m1do8u");
3661
+ attr(div, "class", "modal svelte-yvwr7u");
3639
3662
  attr(div, "role", "dialog");
3640
3663
  attr(div, "aria-modal", "true");
3641
3664
  attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
@@ -3723,7 +3746,7 @@ function create_if_block_1$1(ctx) {
3723
3746
  this.h();
3724
3747
  },
3725
3748
  h() {
3726
- attr(div, "class", "close svelte-1m1do8u");
3749
+ attr(div, "class", "close svelte-yvwr7u");
3727
3750
  set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
3728
3751
  },
3729
3752
  m(target, anchor) {
@@ -3848,7 +3871,7 @@ function create_default_slot$6(ctx) {
3848
3871
  this.h();
3849
3872
  },
3850
3873
  h() {
3851
- attr(div, "class", "modal-content svelte-1m1do8u");
3874
+ attr(div, "class", "modal-content svelte-yvwr7u");
3852
3875
  attr(div, "style", /*_style*/ ctx[4]);
3853
3876
  },
3854
3877
  m(target, anchor) {
@@ -4358,7 +4381,7 @@ class Grid extends SvelteComponent {
4358
4381
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
4359
4382
 
4360
4383
  function add_css$p(target) {
4361
- append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
4384
+ append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
4362
4385
  }
4363
4386
 
4364
4387
  function create_fragment$r(ctx) {
@@ -4392,8 +4415,8 @@ function create_fragment$r(ctx) {
4392
4415
  this.h();
4393
4416
  },
4394
4417
  h() {
4395
- attr(div0, "class", "grid-item-inner svelte-1cryhmb");
4396
- attr(div1, "class", "grid-item svelte-1cryhmb");
4418
+ attr(div0, "class", "grid-item-inner svelte-n7kdl3");
4419
+ attr(div1, "class", "grid-item svelte-n7kdl3");
4397
4420
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
4398
4421
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
4399
4422
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -4715,7 +4738,7 @@ class RenderText extends SvelteComponent {
4715
4738
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
4716
4739
 
4717
4740
  function add_css$o(target) {
4718
- 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}");
4741
+ 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}");
4719
4742
  }
4720
4743
 
4721
4744
  // (93:2) {:else}
@@ -4745,8 +4768,8 @@ function create_else_block$1(ctx) {
4745
4768
  this.h();
4746
4769
  },
4747
4770
  h() {
4748
- attr(div0, "class", "text-element-inner svelte-vz6867");
4749
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4771
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4772
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4750
4773
  attr(div1, "style", /*style*/ ctx[5]);
4751
4774
  },
4752
4775
  m(target, anchor) {
@@ -4760,7 +4783,7 @@ function create_else_block$1(ctx) {
4760
4783
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4761
4784
  rendertext.$set(rendertext_changes);
4762
4785
 
4763
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
4786
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
4764
4787
  attr(div1, "class", div1_class_value);
4765
4788
  }
4766
4789
 
@@ -4835,12 +4858,12 @@ function create_if_block$3(ctx) {
4835
4858
  this.h();
4836
4859
  },
4837
4860
  h() {
4838
- attr(div0, "class", "text-element-inner svelte-vz6867");
4861
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4839
4862
  attr(a, "href", '');
4840
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4863
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4841
4864
  attr(a, "style", /*style*/ ctx[5]);
4842
- attr(div1, "class", "tooltip svelte-vz6867");
4843
- attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
4865
+ attr(div1, "class", "tooltip svelte-9ixs0b");
4866
+ attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
4844
4867
  },
4845
4868
  m(target, anchor) {
4846
4869
  insert_hydration(target, a, anchor);
@@ -4866,7 +4889,7 @@ function create_if_block$3(ctx) {
4866
4889
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4867
4890
  rendertext.$set(rendertext_changes);
4868
4891
 
4869
- 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"))) {
4892
+ 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"))) {
4870
4893
  attr(a, "class", a_class_value);
4871
4894
  }
4872
4895
 
@@ -4928,7 +4951,7 @@ function create_fragment$p(ctx) {
4928
4951
  this.h();
4929
4952
  },
4930
4953
  h() {
4931
- attr(div, "class", "text-element-wrapper svelte-vz6867");
4954
+ attr(div, "class", "text-element-wrapper svelte-9ixs0b");
4932
4955
  },
4933
4956
  m(target, anchor) {
4934
4957
  insert_hydration(target, div, anchor);
@@ -5093,7 +5116,7 @@ class TextElement extends SvelteComponent {
5093
5116
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
5094
5117
 
5095
5118
  function add_css$n(target) {
5096
- append_styles(target, "svelte-ejepf6", ".text-button-element.svelte-ejepf6{width:100%;height:100%}.text-button-element.svelte-ejepf6 > .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:#000000;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-ejepf6 > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-ejepf6 > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-ejepf6 > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5119
+ append_styles(target, "svelte-3hgcnq", ".text-button-element.svelte-3hgcnq{width:100%;height:100%}.text-button-element.svelte-3hgcnq > .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:#000000;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-3hgcnq > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-3hgcnq > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-3hgcnq > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
5097
5120
  }
5098
5121
 
5099
5122
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5162,7 +5185,7 @@ function create_fragment$o(ctx) {
5162
5185
  this.h();
5163
5186
  },
5164
5187
  h() {
5165
- attr(div, "class", "text-button-element svelte-ejepf6");
5188
+ attr(div, "class", "text-button-element svelte-3hgcnq");
5166
5189
  },
5167
5190
  m(target, anchor) {
5168
5191
  insert_hydration(target, div, anchor);
@@ -5254,7 +5277,7 @@ class TextButtonElement extends SvelteComponent {
5254
5277
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5255
5278
 
5256
5279
  function add_css$m(target) {
5257
- 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%}");
5280
+ 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%}");
5258
5281
  }
5259
5282
 
5260
5283
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -5282,7 +5305,7 @@ function create_default_slot$4(ctx) {
5282
5305
  this.h();
5283
5306
  },
5284
5307
  h() {
5285
- attr(img, "class", "image svelte-1alkh1m");
5308
+ attr(img, "class", "image svelte-t6tu0e");
5286
5309
  attr(img, "loading", "lazy");
5287
5310
  attr(img, "width", "auto");
5288
5311
  attr(img, "height", "auto");
@@ -5342,7 +5365,7 @@ function create_fragment$n(ctx) {
5342
5365
  this.h();
5343
5366
  },
5344
5367
  h() {
5345
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
5368
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
5346
5369
  },
5347
5370
  m(target, anchor) {
5348
5371
  insert_hydration(target, div, anchor);
@@ -5361,7 +5384,7 @@ function create_fragment$n(ctx) {
5361
5384
 
5362
5385
  button.$set(button_changes);
5363
5386
 
5364
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
5387
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
5365
5388
  attr(div, "class", div_class_value);
5366
5389
  }
5367
5390
  },
@@ -5433,7 +5456,7 @@ class ImageElement extends SvelteComponent {
5433
5456
  /* src/components/List.svelte generated by Svelte v3.53.1 */
5434
5457
 
5435
5458
  function add_css$l(target) {
5436
- 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}");
5459
+ 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}");
5437
5460
  }
5438
5461
 
5439
5462
  function create_fragment$m(ctx) {
@@ -5456,7 +5479,7 @@ function create_fragment$m(ctx) {
5456
5479
  this.h();
5457
5480
  },
5458
5481
  h() {
5459
- attr(div, "class", "list svelte-1t8r9z");
5482
+ attr(div, "class", "list svelte-aquv6z");
5460
5483
  attr(div, "style", /*style*/ ctx[0]);
5461
5484
  },
5462
5485
  m(target, anchor) {
@@ -5590,7 +5613,7 @@ class List extends SvelteComponent {
5590
5613
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
5591
5614
 
5592
5615
  function add_css$k(target) {
5593
- 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}");
5616
+ 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}");
5594
5617
  }
5595
5618
 
5596
5619
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -5673,7 +5696,7 @@ function create_fragment$l(ctx) {
5673
5696
  this.h();
5674
5697
  },
5675
5698
  h() {
5676
- attr(div, "class", "list-item svelte-1lbw8v2");
5699
+ attr(div, "class", "list-item svelte-9n97pe");
5677
5700
  attr(div, "style", /*listItemStyle*/ ctx[3]);
5678
5701
  },
5679
5702
  m(target, anchor) {
@@ -5799,7 +5822,7 @@ class ListItem extends SvelteComponent {
5799
5822
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
5800
5823
 
5801
5824
  function add_css$j(target) {
5802
- 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}");
5825
+ 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}");
5803
5826
  }
5804
5827
 
5805
5828
  function create_fragment$k(ctx) {
@@ -5817,7 +5840,7 @@ function create_fragment$k(ctx) {
5817
5840
  this.h();
5818
5841
  },
5819
5842
  h() {
5820
- attr(div, "class", "embed svelte-w6jkzh");
5843
+ attr(div, "class", "embed svelte-wocq4p");
5821
5844
  attr(div, "style", /*_style*/ ctx[1]);
5822
5845
  },
5823
5846
  m(target, anchor) {
@@ -5860,7 +5883,7 @@ class EmbedElement extends SvelteComponent {
5860
5883
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
5861
5884
 
5862
5885
  function add_css$i(target) {
5863
- 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%}");
5886
+ 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%}");
5864
5887
  }
5865
5888
 
5866
5889
  function create_fragment$j(ctx) {
@@ -5883,7 +5906,7 @@ function create_fragment$j(ctx) {
5883
5906
  },
5884
5907
  h() {
5885
5908
  attr(div0, "class", "karte-player");
5886
- attr(div1, "class", "embed svelte-ljxq7x");
5909
+ attr(div1, "class", "embed svelte-vikz49");
5887
5910
  attr(div1, "style", /*_style*/ ctx[0]);
5888
5911
  },
5889
5912
  m(target, anchor) {
@@ -6225,7 +6248,7 @@ class MovieYouTubeElement extends SvelteComponent {
6225
6248
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6226
6249
 
6227
6250
  function add_css$h(target) {
6228
- 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%}");
6251
+ 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%}");
6229
6252
  }
6230
6253
 
6231
6254
  function create_fragment$i(ctx) {
@@ -6248,7 +6271,7 @@ function create_fragment$i(ctx) {
6248
6271
  },
6249
6272
  h() {
6250
6273
  attr(div0, "class", "karte-player");
6251
- attr(div1, "class", "embed svelte-ljxq7x");
6274
+ attr(div1, "class", "embed svelte-vikz49");
6252
6275
  attr(div1, "style", /*_style*/ ctx[0]);
6253
6276
  },
6254
6277
  m(target, anchor) {
@@ -6432,7 +6455,7 @@ class MovieVimeoElement extends SvelteComponent {
6432
6455
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
6433
6456
 
6434
6457
  function add_css$g(target) {
6435
- 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}");
6458
+ 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}");
6436
6459
  }
6437
6460
 
6438
6461
  function create_fragment$h(ctx) {
@@ -6462,12 +6485,12 @@ function create_fragment$h(ctx) {
6462
6485
  this.h();
6463
6486
  },
6464
6487
  h() {
6465
- attr(textarea, "class", "textarea svelte-13z4kn0");
6488
+ attr(textarea, "class", "textarea svelte-kyay3k");
6466
6489
  textarea.value = /*$value*/ ctx[3];
6467
6490
  textarea.required = /*required*/ ctx[0];
6468
6491
  attr(textarea, "rows", /*rows*/ ctx[1]);
6469
6492
  attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
6470
- attr(div, "class", "textarea-wrapper svelte-13z4kn0");
6493
+ attr(div, "class", "textarea-wrapper svelte-kyay3k");
6471
6494
  },
6472
6495
  m(target, anchor) {
6473
6496
  insert_hydration(target, div, anchor);
@@ -6563,7 +6586,7 @@ class FormTextarea extends SvelteComponent {
6563
6586
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
6564
6587
 
6565
6588
  function add_css$f(target) {
6566
- 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}");
6589
+ 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}");
6567
6590
  }
6568
6591
 
6569
6592
  function get_each_context$5(ctx, list, i) {
@@ -6619,14 +6642,14 @@ function create_each_block$5(ctx) {
6619
6642
  },
6620
6643
  h() {
6621
6644
  attr(input, "type", "radio");
6622
- attr(input, "class", "radio-button-input svelte-1ntb6j8");
6645
+ attr(input, "class", "radio-button-input svelte-17s08g");
6623
6646
  attr(input, "style", /*buttonStyle*/ ctx[5]);
6624
6647
  attr(input, "name", /*name*/ ctx[0]);
6625
6648
  input.value = input_value_value = /*option*/ ctx[16];
6626
6649
  input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
6627
- attr(span, "class", "radio-button-text svelte-1ntb6j8");
6650
+ attr(span, "class", "radio-button-text svelte-17s08g");
6628
6651
  attr(span, "style", /*_textStyle*/ ctx[2]);
6629
- attr(label, "class", "radio-button svelte-1ntb6j8");
6652
+ attr(label, "class", "radio-button svelte-17s08g");
6630
6653
  },
6631
6654
  m(target, anchor) {
6632
6655
  insert_hydration(target, label, anchor);
@@ -6705,7 +6728,7 @@ function create_fragment$g(ctx) {
6705
6728
  this.h();
6706
6729
  },
6707
6730
  h() {
6708
- attr(div, "class", "radio-buttons svelte-1ntb6j8");
6731
+ attr(div, "class", "radio-buttons svelte-17s08g");
6709
6732
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
6710
6733
  },
6711
6734
  m(target, anchor) {
@@ -6872,7 +6895,7 @@ class FormRadioButtons extends SvelteComponent {
6872
6895
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
6873
6896
 
6874
6897
  function add_css$e(target) {
6875
- 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}");
6898
+ 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}");
6876
6899
  }
6877
6900
 
6878
6901
  function get_each_context$4(ctx, list, i) {
@@ -7043,10 +7066,10 @@ function create_fragment$f(ctx) {
7043
7066
  this.h();
7044
7067
  },
7045
7068
  h() {
7046
- attr(select, "class", "select-select svelte-iejizj");
7069
+ attr(select, "class", "select-select svelte-t9ynyj");
7047
7070
  attr(select, "style", /*style*/ ctx[3]);
7048
- attr(div0, "class", "select-icon svelte-iejizj");
7049
- attr(div1, "class", "select svelte-iejizj");
7071
+ attr(div0, "class", "select-icon svelte-t9ynyj");
7072
+ attr(div1, "class", "select svelte-t9ynyj");
7050
7073
  attr(div1, "style", /*styleVariables*/ ctx[2]);
7051
7074
  },
7052
7075
  m(target, anchor) {
@@ -7248,7 +7271,7 @@ class FormSelect extends SvelteComponent {
7248
7271
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
7249
7272
 
7250
7273
  function add_css$d(target) {
7251
- 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}");
7274
+ 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}");
7252
7275
  }
7253
7276
 
7254
7277
  function get_each_context$3(ctx, list, i) {
@@ -7310,19 +7333,19 @@ function create_each_block$3(ctx) {
7310
7333
  this.h();
7311
7334
  },
7312
7335
  h() {
7313
- attr(input, "class", "check-box-input svelte-2pz1us");
7336
+ attr(input, "class", "check-box-input svelte-1p65cg8");
7314
7337
  attr(input, "type", "checkbox");
7315
7338
  attr(input, "name", /*name*/ ctx[0]);
7316
7339
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
7317
- attr(span0, "class", "check-box-icon svelte-2pz1us");
7340
+ attr(span0, "class", "check-box-icon svelte-1p65cg8");
7318
7341
 
7319
7342
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7320
7343
  ? ' _checked'
7321
- : ''}`) + " svelte-2pz1us"));
7344
+ : ''}`) + " svelte-1p65cg8"));
7322
7345
 
7323
- attr(span2, "class", "check-box-text svelte-2pz1us");
7346
+ attr(span2, "class", "check-box-text svelte-1p65cg8");
7324
7347
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
7325
- attr(label, "class", "check-box svelte-2pz1us");
7348
+ attr(label, "class", "check-box svelte-1p65cg8");
7326
7349
  attr(label, "style", /*styleVariables*/ ctx[5]);
7327
7350
  },
7328
7351
  m(target, anchor) {
@@ -7354,7 +7377,7 @@ function create_each_block$3(ctx) {
7354
7377
 
7355
7378
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7356
7379
  ? ' _checked'
7357
- : ''}`) + " svelte-2pz1us"))) {
7380
+ : ''}`) + " svelte-1p65cg8"))) {
7358
7381
  attr(span1, "class", span1_class_value);
7359
7382
  }
7360
7383
 
@@ -7407,7 +7430,7 @@ function create_fragment$e(ctx) {
7407
7430
  this.h();
7408
7431
  },
7409
7432
  h() {
7410
- attr(div, "class", "check-boxes svelte-2pz1us");
7433
+ attr(div, "class", "check-boxes svelte-1p65cg8");
7411
7434
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7412
7435
  },
7413
7436
  m(target, anchor) {
@@ -7582,7 +7605,7 @@ class FormCheckBoxes extends SvelteComponent {
7582
7605
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
7583
7606
 
7584
7607
  function add_css$c(target) {
7585
- 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}");
7608
+ 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}");
7586
7609
  }
7587
7610
 
7588
7611
  function get_each_context$2(ctx, list, i) {
@@ -7617,7 +7640,7 @@ function create_each_block$2(ctx) {
7617
7640
  this.h();
7618
7641
  },
7619
7642
  h() {
7620
- attr(button, "class", "rating-button svelte-18pfy31");
7643
+ attr(button, "class", "rating-button svelte-zy2va9");
7621
7644
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
7622
7645
  },
7623
7646
  m(target, anchor) {
@@ -7680,7 +7703,7 @@ function create_fragment$d(ctx) {
7680
7703
  this.h();
7681
7704
  },
7682
7705
  h() {
7683
- attr(div, "class", "rating-buttons svelte-18pfy31");
7706
+ attr(div, "class", "rating-buttons svelte-zy2va9");
7684
7707
  },
7685
7708
  m(target, anchor) {
7686
7709
  insert_hydration(target, div, anchor);
@@ -7817,7 +7840,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
7817
7840
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
7818
7841
 
7819
7842
  function add_css$b(target) {
7820
- 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%)}");
7843
+ 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%)}");
7821
7844
  }
7822
7845
 
7823
7846
  function get_each_context$1(ctx, list, i) {
@@ -7853,9 +7876,9 @@ function create_each_block$1(ctx) {
7853
7876
  },
7854
7877
  h() {
7855
7878
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
7856
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
7879
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
7857
7880
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
7858
- attr(button, "class", "rating-button svelte-1b5dvzw");
7881
+ attr(button, "class", "rating-button svelte-tbunko");
7859
7882
  attr(button, "style", /*buttonStyle*/ ctx[0]);
7860
7883
  },
7861
7884
  m(target, anchor) {
@@ -7871,7 +7894,7 @@ function create_each_block$1(ctx) {
7871
7894
  p(new_ctx, dirty) {
7872
7895
  ctx = new_ctx;
7873
7896
 
7874
- 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"))) {
7897
+ 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"))) {
7875
7898
  attr(img, "class", img_class_value);
7876
7899
  }
7877
7900
 
@@ -7918,7 +7941,7 @@ function create_fragment$c(ctx) {
7918
7941
  this.h();
7919
7942
  },
7920
7943
  h() {
7921
- attr(div, "class", "rating-buttons svelte-1b5dvzw");
7944
+ attr(div, "class", "rating-buttons svelte-tbunko");
7922
7945
  },
7923
7946
  m(target, anchor) {
7924
7947
  insert_hydration(target, div, anchor);
@@ -8026,7 +8049,7 @@ class FormRatingButtonsFace extends SvelteComponent {
8026
8049
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
8027
8050
 
8028
8051
  function add_css$a(target) {
8029
- 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%}");
8052
+ 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%}");
8030
8053
  }
8031
8054
 
8032
8055
  function get_each_context(ctx, list, i) {
@@ -8072,9 +8095,9 @@ function create_if_block_1(ctx) {
8072
8095
  attr(svg, "viewBox", "0 0 10 16");
8073
8096
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
8074
8097
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
8075
- attr(button, "class", "move-button svelte-1qfq79t");
8098
+ attr(button, "class", "move-button svelte-ji1fh");
8076
8099
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
8077
- attr(div, "class", "prev-button-container svelte-1qfq79t");
8100
+ attr(div, "class", "prev-button-container svelte-ji1fh");
8078
8101
  },
8079
8102
  m(target, anchor) {
8080
8103
  insert_hydration(target, div, anchor);
@@ -8140,9 +8163,9 @@ function create_if_block$1(ctx) {
8140
8163
  attr(svg, "viewBox", "0 0 10 16");
8141
8164
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
8142
8165
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
8143
- attr(button, "class", "move-button svelte-1qfq79t");
8166
+ attr(button, "class", "move-button svelte-ji1fh");
8144
8167
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
8145
- attr(div, "class", "next-button-container svelte-1qfq79t");
8168
+ attr(div, "class", "next-button-container svelte-ji1fh");
8146
8169
  },
8147
8170
  m(target, anchor) {
8148
8171
  insert_hydration(target, div, anchor);
@@ -8202,9 +8225,9 @@ function create_each_block(ctx) {
8202
8225
  this.h();
8203
8226
  },
8204
8227
  h() {
8205
- attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
8228
+ attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
8206
8229
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
8207
- attr(button, "class", "navigation-item svelte-1qfq79t");
8230
+ attr(button, "class", "navigation-item svelte-ji1fh");
8208
8231
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
8209
8232
  },
8210
8233
  m(target, anchor) {
@@ -8310,14 +8333,14 @@ function create_fragment$b(ctx) {
8310
8333
  this.h();
8311
8334
  },
8312
8335
  h() {
8313
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
8336
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
8314
8337
  attr(div0, "style", /*slideStyle*/ ctx[14]);
8315
- attr(div1, "class", "container svelte-1qfq79t");
8338
+ attr(div1, "class", "container svelte-ji1fh");
8316
8339
  attr(div1, "style", /*_style*/ ctx[0]);
8317
- attr(div2, "class", "navigation svelte-1qfq79t");
8340
+ attr(div2, "class", "navigation svelte-ji1fh");
8318
8341
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
8319
8342
  set_attributes(div3, div3_data);
8320
- toggle_class(div3, "svelte-1qfq79t", true);
8343
+ toggle_class(div3, "svelte-ji1fh", true);
8321
8344
  },
8322
8345
  m(target, anchor) {
8323
8346
  insert_hydration(target, div3, anchor);
@@ -8359,7 +8382,7 @@ function create_fragment$b(ctx) {
8359
8382
  }
8360
8383
  }
8361
8384
 
8362
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
8385
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
8363
8386
  attr(div0, "class", div0_class_value);
8364
8387
  }
8365
8388
 
@@ -8425,7 +8448,7 @@ function create_fragment$b(ctx) {
8425
8448
  }
8426
8449
 
8427
8450
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
8428
- toggle_class(div3, "svelte-1qfq79t", true);
8451
+ toggle_class(div3, "svelte-ji1fh", true);
8429
8452
  },
8430
8453
  i(local) {
8431
8454
  if (current) return;
@@ -8937,7 +8960,7 @@ class Slide extends SvelteComponent {
8937
8960
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
8938
8961
 
8939
8962
  function add_css$9(target) {
8940
- 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}");
8963
+ 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}");
8941
8964
  }
8942
8965
 
8943
8966
  function create_fragment$a(ctx) {
@@ -8965,9 +8988,9 @@ function create_fragment$a(ctx) {
8965
8988
  this.h();
8966
8989
  },
8967
8990
  h() {
8968
- attr(div0, "class", "item-inner svelte-1rv0qgo");
8991
+ attr(div0, "class", "item-inner svelte-9ygf1w");
8969
8992
  attr(div0, "style", /*_style*/ ctx[0]);
8970
- attr(div1, "class", "item svelte-1rv0qgo");
8993
+ attr(div1, "class", "item svelte-9ygf1w");
8971
8994
  attr(div1, "style", /*itemStyle*/ ctx[1]);
8972
8995
  },
8973
8996
  m(target, anchor) {
@@ -9093,7 +9116,7 @@ class SlideItem extends SvelteComponent {
9093
9116
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
9094
9117
 
9095
9118
  function add_css$8(target) {
9096
- 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}");
9119
+ 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}");
9097
9120
  }
9098
9121
 
9099
9122
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -9124,9 +9147,9 @@ function create_fragment$9(ctx) {
9124
9147
  this.h();
9125
9148
  },
9126
9149
  h() {
9127
- attr(div0, "class", "countdown-inner svelte-t87l6f");
9150
+ attr(div0, "class", "countdown-inner svelte-rroxiz");
9128
9151
  attr(div0, "style", /*_style*/ ctx[0]);
9129
- attr(div1, "class", "countdown svelte-t87l6f");
9152
+ attr(div1, "class", "countdown svelte-rroxiz");
9130
9153
  },
9131
9154
  m(target, anchor) {
9132
9155
  insert_hydration(target, div1, anchor);
@@ -9256,7 +9279,7 @@ class Countdown extends SvelteComponent {
9256
9279
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
9257
9280
 
9258
9281
  function add_css$7(target) {
9259
- 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}");
9282
+ 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}");
9260
9283
  }
9261
9284
 
9262
9285
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -9339,7 +9362,7 @@ function create_fragment$8(ctx) {
9339
9362
  this.h();
9340
9363
  },
9341
9364
  h() {
9342
- attr(div, "class", "box svelte-1c91vpe");
9365
+ attr(div, "class", "box svelte-1ccydfy");
9343
9366
  },
9344
9367
  m(target, anchor) {
9345
9368
  insert_hydration(target, div, anchor);
@@ -9400,7 +9423,7 @@ class Box extends SvelteComponent {
9400
9423
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
9401
9424
 
9402
9425
  function add_css$6(target) {
9403
- 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)}");
9426
+ 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)}");
9404
9427
  }
9405
9428
 
9406
9429
  // (56:4) {#if svg}
@@ -9504,7 +9527,7 @@ function create_fragment$7(ctx) {
9504
9527
  this.h();
9505
9528
  },
9506
9529
  h() {
9507
- attr(div, "class", "icon svelte-1mk6wi4");
9530
+ attr(div, "class", "icon svelte-1mkvcuo");
9508
9531
  },
9509
9532
  m(target, anchor) {
9510
9533
  insert_hydration(target, div, anchor);
@@ -9613,7 +9636,7 @@ class IconElement extends SvelteComponent {
9613
9636
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
9614
9637
 
9615
9638
  function add_css$5(target) {
9616
- append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9639
+ append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9617
9640
  }
9618
9641
 
9619
9642
  function create_fragment$6(ctx) {
@@ -9649,7 +9672,7 @@ function create_fragment$6(ctx) {
9649
9672
  this.h();
9650
9673
  },
9651
9674
  h() {
9652
- attr(div, "class", "codeElement svelte-1ng2n51");
9675
+ attr(div, "class", "codeElement svelte-ymsb9l");
9653
9676
  attr(div, "style", /*style*/ ctx[3]);
9654
9677
  },
9655
9678
  m(target, anchor) {
@@ -9738,7 +9761,7 @@ class CodeElement extends SvelteComponent {
9738
9761
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
9739
9762
 
9740
9763
  function add_css$4(target) {
9741
- append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
9764
+ append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
9742
9765
  }
9743
9766
 
9744
9767
  function create_fragment$5(ctx) {
@@ -9762,7 +9785,7 @@ function create_fragment$5(ctx) {
9762
9785
  this.h();
9763
9786
  },
9764
9787
  h() {
9765
- attr(div, "class", "flex svelte-9v2qdg");
9788
+ attr(div, "class", "flex svelte-1e71ejc");
9766
9789
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
9767
9790
  },
9768
9791
  m(target, anchor) {
@@ -9859,7 +9882,7 @@ class Flex extends SvelteComponent {
9859
9882
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
9860
9883
 
9861
9884
  function add_css$3(target) {
9862
- append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9885
+ append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9863
9886
  }
9864
9887
 
9865
9888
  function create_fragment$4(ctx) {
@@ -9882,7 +9905,7 @@ function create_fragment$4(ctx) {
9882
9905
  this.h();
9883
9906
  },
9884
9907
  h() {
9885
- attr(div, "class", "flex-item svelte-164ah5d");
9908
+ attr(div, "class", "flex-item svelte-1p0bk1x");
9886
9909
  attr(div, "style", /*style*/ ctx[0]);
9887
9910
  },
9888
9911
  m(target, anchor) {
@@ -10302,7 +10325,7 @@ class GridModalState extends SvelteComponent {
10302
10325
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
10303
10326
 
10304
10327
  function add_css$2(target) {
10305
- 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%}");
10328
+ 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%}");
10306
10329
  }
10307
10330
 
10308
10331
  function create_fragment$2(ctx) {
@@ -10331,8 +10354,8 @@ function create_fragment$2(ctx) {
10331
10354
  this.h();
10332
10355
  },
10333
10356
  h() {
10334
- attr(div0, "class", "text-block-inner svelte-akic2e");
10335
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
10357
+ attr(div0, "class", "text-block-inner svelte-15pej1m");
10358
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
10336
10359
  attr(div1, "style", /*style*/ ctx[2]);
10337
10360
  },
10338
10361
  m(target, anchor) {
@@ -10346,7 +10369,7 @@ function create_fragment$2(ctx) {
10346
10369
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
10347
10370
  rendertext.$set(rendertext_changes);
10348
10371
 
10349
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
10372
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
10350
10373
  attr(div1, "class", div1_class_value);
10351
10374
  }
10352
10375
 
@@ -10424,7 +10447,7 @@ class TextBlock extends SvelteComponent {
10424
10447
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
10425
10448
 
10426
10449
  function add_css$1(target) {
10427
- 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)}");
10450
+ 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)}");
10428
10451
  }
10429
10452
 
10430
10453
  function create_fragment$1(ctx) {
@@ -10454,9 +10477,9 @@ function create_fragment$1(ctx) {
10454
10477
  this.h();
10455
10478
  },
10456
10479
  h() {
10457
- attr(button, "class", "text-button svelte-1c34p4n");
10480
+ attr(button, "class", "text-button svelte-ff0k6r");
10458
10481
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
10459
- attr(div, "class", "text-button-block svelte-1c34p4n");
10482
+ attr(div, "class", "text-button-block svelte-ff0k6r");
10460
10483
  attr(div, "style", /*_style*/ ctx[2]);
10461
10484
  },
10462
10485
  m(target, anchor) {
@@ -10562,7 +10585,7 @@ class TextButtonBlock extends SvelteComponent {
10562
10585
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
10563
10586
 
10564
10587
  function add_css(target) {
10565
- 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)}");
10588
+ 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)}");
10566
10589
  }
10567
10590
 
10568
10591
  function create_fragment(ctx) {
@@ -10598,14 +10621,14 @@ function create_fragment(ctx) {
10598
10621
  this.h();
10599
10622
  },
10600
10623
  h() {
10601
- attr(img, "class", "image svelte-1jus6sx");
10624
+ attr(img, "class", "image svelte-1pdw891");
10602
10625
  attr(img, "loading", "lazy");
10603
10626
  attr(img, "width", "auto");
10604
10627
  attr(img, "height", "auto");
10605
10628
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
10606
10629
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
10607
10630
  attr(img, "alt", /*alt*/ ctx[1]);
10608
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
10631
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
10609
10632
  attr(div, "style", /*_style*/ ctx[5]);
10610
10633
  },
10611
10634
  m(target, anchor) {
@@ -10630,7 +10653,7 @@ function create_fragment(ctx) {
10630
10653
  attr(img, "alt", /*alt*/ ctx[1]);
10631
10654
  }
10632
10655
 
10633
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
10656
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
10634
10657
  attr(div, "class", div_class_value);
10635
10658
  }
10636
10659