@plaidev/karte-action-sdk 1.1.203-28184351.02fb20ce → 1.1.203

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.es.js CHANGED
@@ -1355,57 +1355,40 @@ function request(url, data, cb) {
1355
1355
  });
1356
1356
  }
1357
1357
  /** @internal */
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
- });
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
+ };
1366
1368
  /** @internal */
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;
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.');
1380
1375
  }
1381
- keys.push(d);
1376
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data)));
1382
1377
  });
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
- });
1378
+ };
1388
1379
  /** @internal */
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;
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.');
1401
1388
  }
1402
- params[key] = d;
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)));
1403
1390
  });
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
- });
1391
+ };
1409
1392
  /** @internal */
1410
1393
  const loadActionTable = async (config, data, api_key, endpoint) => {
1411
1394
  console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
@@ -2641,7 +2624,7 @@ class State extends SvelteComponent {
2641
2624
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
2642
2625
 
2643
2626
  function add_css$t(target) {
2644
- append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
2627
+ append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
2645
2628
  }
2646
2629
 
2647
2630
  // (23:0) {#if $state === path}
@@ -2658,7 +2641,7 @@ function create_if_block$8(ctx) {
2658
2641
  t = space();
2659
2642
  if (default_slot) default_slot.c();
2660
2643
  attr(div, "data-state-path", /*path*/ ctx[0]);
2661
- attr(div, "class", "state-item svelte-2qb6dm");
2644
+ attr(div, "class", "state-item svelte-1amihue");
2662
2645
  },
2663
2646
  m(target, anchor) {
2664
2647
  insert(target, div, anchor);
@@ -3060,7 +3043,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
3060
3043
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
3061
3044
 
3062
3045
  function add_css$s(target) {
3063
- 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}");
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}");
3064
3047
  }
3065
3048
 
3066
3049
  // (9:0) {#if backgroundOverlay}
@@ -3072,7 +3055,7 @@ function create_if_block$7(ctx) {
3072
3055
  return {
3073
3056
  c() {
3074
3057
  div = element("div");
3075
- attr(div, "class", "background svelte-1d4fta");
3058
+ attr(div, "class", "background svelte-g6ucc2");
3076
3059
  },
3077
3060
  m(target, anchor) {
3078
3061
  insert(target, div, anchor);
@@ -3183,7 +3166,7 @@ function checkStopPropagation(eventName, handler) {
3183
3166
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3184
3167
 
3185
3168
  function add_css$r(target) {
3186
- 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}");
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}");
3187
3170
  }
3188
3171
 
3189
3172
  // (50:0) {:else}
@@ -3212,7 +3195,7 @@ function create_else_block$3(ctx) {
3212
3195
  button = element("button");
3213
3196
  if (default_slot) default_slot.c();
3214
3197
  set_attributes(button, button_data);
3215
- toggle_class(button, "svelte-1tg0tf", true);
3198
+ toggle_class(button, "svelte-1dtbrzj", true);
3216
3199
  },
3217
3200
  m(target, anchor) {
3218
3201
  insert(target, button, anchor);
@@ -3251,7 +3234,7 @@ function create_else_block$3(ctx) {
3251
3234
  dataAttrStopPropagation('click')
3252
3235
  ]));
3253
3236
 
3254
- toggle_class(button, "svelte-1tg0tf", true);
3237
+ toggle_class(button, "svelte-1dtbrzj", true);
3255
3238
  },
3256
3239
  i(local) {
3257
3240
  if (current) return;
@@ -3282,7 +3265,7 @@ function create_if_block_2(ctx) {
3282
3265
  c() {
3283
3266
  div = element("div");
3284
3267
  if (default_slot) default_slot.c();
3285
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
3268
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1dtbrzj"));
3286
3269
  attr(div, "style", /*style*/ ctx[1]);
3287
3270
  },
3288
3271
  m(target, anchor) {
@@ -3366,7 +3349,7 @@ function create_if_block_1$2(ctx) {
3366
3349
  a = element("a");
3367
3350
  if (default_slot) default_slot.c();
3368
3351
  set_attributes(a, a_data);
3369
- toggle_class(a, "svelte-1tg0tf", true);
3352
+ toggle_class(a, "svelte-1dtbrzj", true);
3370
3353
  },
3371
3354
  m(target, anchor) {
3372
3355
  insert(target, a, anchor);
@@ -3408,7 +3391,7 @@ function create_if_block_1$2(ctx) {
3408
3391
  dataAttrStopPropagation('click')
3409
3392
  ]));
3410
3393
 
3411
- toggle_class(a, "svelte-1tg0tf", true);
3394
+ toggle_class(a, "svelte-1dtbrzj", true);
3412
3395
  },
3413
3396
  i(local) {
3414
3397
  if (current) return;
@@ -3439,7 +3422,7 @@ function create_if_block$6(ctx) {
3439
3422
  c() {
3440
3423
  div = element("div");
3441
3424
  if (default_slot) default_slot.c();
3442
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
3425
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1dtbrzj"));
3443
3426
  attr(div, "style", /*style*/ ctx[1]);
3444
3427
  },
3445
3428
  m(target, anchor) {
@@ -3643,7 +3626,7 @@ class Button extends SvelteComponent {
3643
3626
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3644
3627
 
3645
3628
  function add_css$q(target) {
3646
- 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}");
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}");
3647
3630
  }
3648
3631
 
3649
3632
  // (145:0) {#if visible}
@@ -3668,7 +3651,7 @@ function create_if_block$5(ctx) {
3668
3651
  c() {
3669
3652
  div = element("div");
3670
3653
  create_component(button.$$.fragment);
3671
- attr(div, "class", "modal svelte-yvwr7u");
3654
+ attr(div, "class", "modal svelte-1m1do8u");
3672
3655
  attr(div, "role", "dialog");
3673
3656
  attr(div, "aria-modal", "true");
3674
3657
  attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
@@ -3746,7 +3729,7 @@ function create_if_block_1$1(ctx) {
3746
3729
  c() {
3747
3730
  div = element("div");
3748
3731
  create_component(button.$$.fragment);
3749
- attr(div, "class", "close svelte-yvwr7u");
3732
+ attr(div, "class", "close svelte-1m1do8u");
3750
3733
  set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
3751
3734
  },
3752
3735
  m(target, anchor) {
@@ -3835,7 +3818,7 @@ function create_default_slot$6(ctx) {
3835
3818
  t = space();
3836
3819
  div = element("div");
3837
3820
  if (default_slot) default_slot.c();
3838
- attr(div, "class", "modal-content svelte-yvwr7u");
3821
+ attr(div, "class", "modal-content svelte-1m1do8u");
3839
3822
  attr(div, "style", /*_style*/ ctx[4]);
3840
3823
  },
3841
3824
  m(target, anchor) {
@@ -4326,7 +4309,7 @@ class Grid extends SvelteComponent {
4326
4309
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
4327
4310
 
4328
4311
  function add_css$p(target) {
4329
- append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
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}");
4330
4313
  }
4331
4314
 
4332
4315
  function create_fragment$r(ctx) {
@@ -4341,8 +4324,8 @@ function create_fragment$r(ctx) {
4341
4324
  div1 = element("div");
4342
4325
  div0 = element("div");
4343
4326
  if (default_slot) default_slot.c();
4344
- attr(div0, "class", "grid-item-inner svelte-n7kdl3");
4345
- attr(div1, "class", "grid-item svelte-n7kdl3");
4327
+ attr(div0, "class", "grid-item-inner svelte-1cryhmb");
4328
+ attr(div1, "class", "grid-item svelte-1cryhmb");
4346
4329
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
4347
4330
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
4348
4331
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -4647,7 +4630,7 @@ class RenderText extends SvelteComponent {
4647
4630
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
4648
4631
 
4649
4632
  function add_css$o(target) {
4650
- 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}");
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}");
4651
4634
  }
4652
4635
 
4653
4636
  // (93:2) {:else}
@@ -4664,8 +4647,8 @@ function create_else_block$1(ctx) {
4664
4647
  div1 = element("div");
4665
4648
  div0 = element("div");
4666
4649
  create_component(rendertext.$$.fragment);
4667
- attr(div0, "class", "text-element-inner svelte-9ixs0b");
4668
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
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"));
4669
4652
  attr(div1, "style", /*style*/ ctx[5]);
4670
4653
  },
4671
4654
  m(target, anchor) {
@@ -4679,7 +4662,7 @@ function create_else_block$1(ctx) {
4679
4662
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4680
4663
  rendertext.$set(rendertext_changes);
4681
4664
 
4682
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
4665
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
4683
4666
  attr(div1, "class", div1_class_value);
4684
4667
  }
4685
4668
 
@@ -4729,12 +4712,12 @@ function create_if_block$3(ctx) {
4729
4712
  t2 = space();
4730
4713
  div2 = element("div");
4731
4714
  div2.textContent = "コピーできませんでした";
4732
- attr(div0, "class", "text-element-inner svelte-9ixs0b");
4715
+ attr(div0, "class", "text-element-inner svelte-vz6867");
4733
4716
  attr(a, "href", '');
4734
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4717
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4735
4718
  attr(a, "style", /*style*/ ctx[5]);
4736
- attr(div1, "class", "tooltip svelte-9ixs0b");
4737
- attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
4719
+ attr(div1, "class", "tooltip svelte-vz6867");
4720
+ attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
4738
4721
  },
4739
4722
  m(target, anchor) {
4740
4723
  insert(target, a, anchor);
@@ -4758,7 +4741,7 @@ function create_if_block$3(ctx) {
4758
4741
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4759
4742
  rendertext.$set(rendertext_changes);
4760
4743
 
4761
- 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"))) {
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"))) {
4762
4745
  attr(a, "class", a_class_value);
4763
4746
  }
4764
4747
 
@@ -4810,7 +4793,7 @@ function create_fragment$p(ctx) {
4810
4793
  c() {
4811
4794
  div = element("div");
4812
4795
  if_block.c();
4813
- attr(div, "class", "text-element-wrapper svelte-9ixs0b");
4796
+ attr(div, "class", "text-element-wrapper svelte-vz6867");
4814
4797
  },
4815
4798
  m(target, anchor) {
4816
4799
  insert(target, div, anchor);
@@ -4975,7 +4958,7 @@ class TextElement extends SvelteComponent {
4975
4958
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
4976
4959
 
4977
4960
  function add_css$n(target) {
4978
- 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)}");
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)}");
4979
4962
  }
4980
4963
 
4981
4964
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5031,7 +5014,7 @@ function create_fragment$o(ctx) {
5031
5014
  c() {
5032
5015
  div = element("div");
5033
5016
  create_component(button.$$.fragment);
5034
- attr(div, "class", "text-button-element svelte-1vg84sc");
5017
+ attr(div, "class", "text-button-element svelte-ujdxfc");
5035
5018
  },
5036
5019
  m(target, anchor) {
5037
5020
  insert(target, div, anchor);
@@ -5123,7 +5106,7 @@ class TextButtonElement extends SvelteComponent {
5123
5106
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5124
5107
 
5125
5108
  function add_css$m(target) {
5126
- 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%}");
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%}");
5127
5110
  }
5128
5111
 
5129
5112
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -5135,7 +5118,7 @@ function create_default_slot$4(ctx) {
5135
5118
  return {
5136
5119
  c() {
5137
5120
  img = element("img");
5138
- attr(img, "class", "image svelte-t6tu0e");
5121
+ attr(img, "class", "image svelte-1alkh1m");
5139
5122
  attr(img, "loading", "lazy");
5140
5123
  attr(img, "width", "auto");
5141
5124
  attr(img, "height", "auto");
@@ -5197,7 +5180,7 @@ function create_fragment$n(ctx) {
5197
5180
  c() {
5198
5181
  div = element("div");
5199
5182
  create_component(button.$$.fragment);
5200
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
5183
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
5201
5184
  },
5202
5185
  m(target, anchor) {
5203
5186
  insert(target, div, anchor);
@@ -5216,7 +5199,7 @@ function create_fragment$n(ctx) {
5216
5199
 
5217
5200
  button.$set(button_changes);
5218
5201
 
5219
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
5202
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
5220
5203
  attr(div, "class", div_class_value);
5221
5204
  }
5222
5205
  },
@@ -5288,7 +5271,7 @@ class ImageElement extends SvelteComponent {
5288
5271
  /* src/components/List.svelte generated by Svelte v3.53.1 */
5289
5272
 
5290
5273
  function add_css$l(target) {
5291
- 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}");
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}");
5292
5275
  }
5293
5276
 
5294
5277
  function create_fragment$m(ctx) {
@@ -5301,7 +5284,7 @@ function create_fragment$m(ctx) {
5301
5284
  c() {
5302
5285
  div = element("div");
5303
5286
  if (default_slot) default_slot.c();
5304
- attr(div, "class", "list svelte-aquv6z");
5287
+ attr(div, "class", "list svelte-1t8r9z");
5305
5288
  attr(div, "style", /*style*/ ctx[0]);
5306
5289
  },
5307
5290
  m(target, anchor) {
@@ -5435,7 +5418,7 @@ class List extends SvelteComponent {
5435
5418
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
5436
5419
 
5437
5420
  function add_css$k(target) {
5438
- 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}");
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}");
5439
5422
  }
5440
5423
 
5441
5424
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -5505,7 +5488,7 @@ function create_fragment$l(ctx) {
5505
5488
  c() {
5506
5489
  div = element("div");
5507
5490
  create_component(button.$$.fragment);
5508
- attr(div, "class", "list-item svelte-9n97pe");
5491
+ attr(div, "class", "list-item svelte-1lbw8v2");
5509
5492
  attr(div, "style", /*listItemStyle*/ ctx[3]);
5510
5493
  },
5511
5494
  m(target, anchor) {
@@ -5631,7 +5614,7 @@ class ListItem extends SvelteComponent {
5631
5614
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
5632
5615
 
5633
5616
  function add_css$j(target) {
5634
- 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}");
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}");
5635
5618
  }
5636
5619
 
5637
5620
  function create_fragment$k(ctx) {
@@ -5640,7 +5623,7 @@ function create_fragment$k(ctx) {
5640
5623
  return {
5641
5624
  c() {
5642
5625
  div = element("div");
5643
- attr(div, "class", "embed svelte-wocq4p");
5626
+ attr(div, "class", "embed svelte-w6jkzh");
5644
5627
  attr(div, "style", /*_style*/ ctx[1]);
5645
5628
  },
5646
5629
  m(target, anchor) {
@@ -5683,7 +5666,7 @@ class EmbedElement extends SvelteComponent {
5683
5666
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
5684
5667
 
5685
5668
  function add_css$i(target) {
5686
- 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%}");
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%}");
5687
5670
  }
5688
5671
 
5689
5672
  function create_fragment$j(ctx) {
@@ -5695,7 +5678,7 @@ function create_fragment$j(ctx) {
5695
5678
  div1 = element("div");
5696
5679
  div0 = element("div");
5697
5680
  attr(div0, "class", "karte-player");
5698
- attr(div1, "class", "embed svelte-vikz49");
5681
+ attr(div1, "class", "embed svelte-ljxq7x");
5699
5682
  attr(div1, "style", /*_style*/ ctx[0]);
5700
5683
  },
5701
5684
  m(target, anchor) {
@@ -6037,7 +6020,7 @@ class MovieYouTubeElement extends SvelteComponent {
6037
6020
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6038
6021
 
6039
6022
  function add_css$h(target) {
6040
- 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%}");
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%}");
6041
6024
  }
6042
6025
 
6043
6026
  function create_fragment$i(ctx) {
@@ -6049,7 +6032,7 @@ function create_fragment$i(ctx) {
6049
6032
  div1 = element("div");
6050
6033
  div0 = element("div");
6051
6034
  attr(div0, "class", "karte-player");
6052
- attr(div1, "class", "embed svelte-vikz49");
6035
+ attr(div1, "class", "embed svelte-ljxq7x");
6053
6036
  attr(div1, "style", /*_style*/ ctx[0]);
6054
6037
  },
6055
6038
  m(target, anchor) {
@@ -6233,7 +6216,7 @@ class MovieVimeoElement extends SvelteComponent {
6233
6216
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
6234
6217
 
6235
6218
  function add_css$g(target) {
6236
- 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}");
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}");
6237
6220
  }
6238
6221
 
6239
6222
  function create_fragment$h(ctx) {
@@ -6246,12 +6229,12 @@ function create_fragment$h(ctx) {
6246
6229
  c() {
6247
6230
  div = element("div");
6248
6231
  textarea = element("textarea");
6249
- attr(textarea, "class", "textarea svelte-kyay3k");
6232
+ attr(textarea, "class", "textarea svelte-13z4kn0");
6250
6233
  textarea.value = /*$value*/ ctx[3];
6251
6234
  textarea.required = /*required*/ ctx[0];
6252
6235
  attr(textarea, "rows", /*rows*/ ctx[1]);
6253
6236
  attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
6254
- attr(div, "class", "textarea-wrapper svelte-kyay3k");
6237
+ attr(div, "class", "textarea-wrapper svelte-13z4kn0");
6255
6238
  },
6256
6239
  m(target, anchor) {
6257
6240
  insert(target, div, anchor);
@@ -6347,7 +6330,7 @@ class FormTextarea extends SvelteComponent {
6347
6330
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
6348
6331
 
6349
6332
  function add_css$f(target) {
6350
- 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}");
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}");
6351
6334
  }
6352
6335
 
6353
6336
  function get_each_context$5(ctx, list, i) {
@@ -6380,14 +6363,14 @@ function create_each_block$5(ctx) {
6380
6363
  t1 = text(t1_value);
6381
6364
  t2 = space();
6382
6365
  attr(input, "type", "radio");
6383
- attr(input, "class", "radio-button-input svelte-17s08g");
6366
+ attr(input, "class", "radio-button-input svelte-1ntb6j8");
6384
6367
  attr(input, "style", /*buttonStyle*/ ctx[5]);
6385
6368
  attr(input, "name", /*name*/ ctx[0]);
6386
6369
  input.value = input_value_value = /*option*/ ctx[16];
6387
6370
  input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
6388
- attr(span, "class", "radio-button-text svelte-17s08g");
6371
+ attr(span, "class", "radio-button-text svelte-1ntb6j8");
6389
6372
  attr(span, "style", /*_textStyle*/ ctx[2]);
6390
- attr(label, "class", "radio-button svelte-17s08g");
6373
+ attr(label, "class", "radio-button svelte-1ntb6j8");
6391
6374
  },
6392
6375
  m(target, anchor) {
6393
6376
  insert(target, label, anchor);
@@ -6452,7 +6435,7 @@ function create_fragment$g(ctx) {
6452
6435
  each_blocks[i].c();
6453
6436
  }
6454
6437
 
6455
- attr(div, "class", "radio-buttons svelte-17s08g");
6438
+ attr(div, "class", "radio-buttons svelte-1ntb6j8");
6456
6439
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
6457
6440
  },
6458
6441
  m(target, anchor) {
@@ -6619,7 +6602,7 @@ class FormRadioButtons extends SvelteComponent {
6619
6602
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
6620
6603
 
6621
6604
  function add_css$e(target) {
6622
- 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}");
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}");
6623
6606
  }
6624
6607
 
6625
6608
  function get_each_context$4(ctx, list, i) {
@@ -6753,10 +6736,10 @@ function create_fragment$f(ctx) {
6753
6736
 
6754
6737
  t = space();
6755
6738
  div0 = element("div");
6756
- attr(select, "class", "select-select svelte-t9ynyj");
6739
+ attr(select, "class", "select-select svelte-iejizj");
6757
6740
  attr(select, "style", /*style*/ ctx[3]);
6758
- attr(div0, "class", "select-icon svelte-t9ynyj");
6759
- attr(div1, "class", "select svelte-t9ynyj");
6741
+ attr(div0, "class", "select-icon svelte-iejizj");
6742
+ attr(div1, "class", "select svelte-iejizj");
6760
6743
  attr(div1, "style", /*styleVariables*/ ctx[2]);
6761
6744
  },
6762
6745
  m(target, anchor) {
@@ -6958,7 +6941,7 @@ class FormSelect extends SvelteComponent {
6958
6941
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
6959
6942
 
6960
6943
  function add_css$d(target) {
6961
- 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}");
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}");
6962
6945
  }
6963
6946
 
6964
6947
  function get_each_context$3(ctx, list, i) {
@@ -6997,19 +6980,19 @@ function create_each_block$3(ctx) {
6997
6980
  span2 = element("span");
6998
6981
  t2 = text(t2_value);
6999
6982
  t3 = space();
7000
- attr(input, "class", "check-box-input svelte-1p65cg8");
6983
+ attr(input, "class", "check-box-input svelte-2pz1us");
7001
6984
  attr(input, "type", "checkbox");
7002
6985
  attr(input, "name", /*name*/ ctx[0]);
7003
6986
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
7004
- attr(span0, "class", "check-box-icon svelte-1p65cg8");
6987
+ attr(span0, "class", "check-box-icon svelte-2pz1us");
7005
6988
 
7006
6989
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7007
6990
  ? ' _checked'
7008
- : ''}`) + " svelte-1p65cg8"));
6991
+ : ''}`) + " svelte-2pz1us"));
7009
6992
 
7010
- attr(span2, "class", "check-box-text svelte-1p65cg8");
6993
+ attr(span2, "class", "check-box-text svelte-2pz1us");
7011
6994
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
7012
- attr(label, "class", "check-box svelte-1p65cg8");
6995
+ attr(label, "class", "check-box svelte-2pz1us");
7013
6996
  attr(label, "style", /*styleVariables*/ ctx[5]);
7014
6997
  },
7015
6998
  m(target, anchor) {
@@ -7041,7 +7024,7 @@ function create_each_block$3(ctx) {
7041
7024
 
7042
7025
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7043
7026
  ? ' _checked'
7044
- : ''}`) + " svelte-1p65cg8"))) {
7027
+ : ''}`) + " svelte-2pz1us"))) {
7045
7028
  attr(span1, "class", span1_class_value);
7046
7029
  }
7047
7030
 
@@ -7080,7 +7063,7 @@ function create_fragment$e(ctx) {
7080
7063
  each_blocks[i].c();
7081
7064
  }
7082
7065
 
7083
- attr(div, "class", "check-boxes svelte-1p65cg8");
7066
+ attr(div, "class", "check-boxes svelte-2pz1us");
7084
7067
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7085
7068
  },
7086
7069
  m(target, anchor) {
@@ -7255,7 +7238,7 @@ class FormCheckBoxes extends SvelteComponent {
7255
7238
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
7256
7239
 
7257
7240
  function add_css$c(target) {
7258
- 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}");
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}");
7259
7242
  }
7260
7243
 
7261
7244
  function get_each_context$2(ctx, list, i) {
@@ -7279,7 +7262,7 @@ function create_each_block$2(ctx) {
7279
7262
  button = element("button");
7280
7263
  t0 = text(t0_value);
7281
7264
  t1 = space();
7282
- attr(button, "class", "rating-button svelte-zy2va9");
7265
+ attr(button, "class", "rating-button svelte-18pfy31");
7283
7266
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
7284
7267
  },
7285
7268
  m(target, anchor) {
@@ -7328,7 +7311,7 @@ function create_fragment$d(ctx) {
7328
7311
  each_blocks[i].c();
7329
7312
  }
7330
7313
 
7331
- attr(div, "class", "rating-buttons svelte-zy2va9");
7314
+ attr(div, "class", "rating-buttons svelte-18pfy31");
7332
7315
  },
7333
7316
  m(target, anchor) {
7334
7317
  insert(target, div, anchor);
@@ -7465,7 +7448,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
7465
7448
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
7466
7449
 
7467
7450
  function add_css$b(target) {
7468
- 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%)}");
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%)}");
7469
7452
  }
7470
7453
 
7471
7454
  function get_each_context$1(ctx, list, i) {
@@ -7490,9 +7473,9 @@ function create_each_block$1(ctx) {
7490
7473
  img = element("img");
7491
7474
  t = space();
7492
7475
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
7493
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
7476
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
7494
7477
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
7495
- attr(button, "class", "rating-button svelte-tbunko");
7478
+ attr(button, "class", "rating-button svelte-1b5dvzw");
7496
7479
  attr(button, "style", /*buttonStyle*/ ctx[0]);
7497
7480
  },
7498
7481
  m(target, anchor) {
@@ -7508,7 +7491,7 @@ function create_each_block$1(ctx) {
7508
7491
  p(new_ctx, dirty) {
7509
7492
  ctx = new_ctx;
7510
7493
 
7511
- 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"))) {
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"))) {
7512
7495
  attr(img, "class", img_class_value);
7513
7496
  }
7514
7497
 
@@ -7541,7 +7524,7 @@ function create_fragment$c(ctx) {
7541
7524
  each_blocks[i].c();
7542
7525
  }
7543
7526
 
7544
- attr(div, "class", "rating-buttons svelte-tbunko");
7527
+ attr(div, "class", "rating-buttons svelte-1b5dvzw");
7545
7528
  },
7546
7529
  m(target, anchor) {
7547
7530
  insert(target, div, anchor);
@@ -7649,7 +7632,7 @@ class FormRatingButtonsFace extends SvelteComponent {
7649
7632
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
7650
7633
 
7651
7634
  function add_css$a(target) {
7652
- 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%}");
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%}");
7653
7636
  }
7654
7637
 
7655
7638
  function get_each_context(ctx, list, i) {
@@ -7678,9 +7661,9 @@ function create_if_block_1(ctx) {
7678
7661
  attr(svg, "viewBox", "0 0 10 16");
7679
7662
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
7680
7663
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
7681
- attr(button, "class", "move-button svelte-ji1fh");
7664
+ attr(button, "class", "move-button svelte-1qfq79t");
7682
7665
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
7683
- attr(div, "class", "prev-button-container svelte-ji1fh");
7666
+ attr(div, "class", "prev-button-container svelte-1qfq79t");
7684
7667
  },
7685
7668
  m(target, anchor) {
7686
7669
  insert(target, div, anchor);
@@ -7729,9 +7712,9 @@ function create_if_block$1(ctx) {
7729
7712
  attr(svg, "viewBox", "0 0 10 16");
7730
7713
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
7731
7714
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
7732
- attr(button, "class", "move-button svelte-ji1fh");
7715
+ attr(button, "class", "move-button svelte-1qfq79t");
7733
7716
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
7734
- attr(div, "class", "next-button-container svelte-ji1fh");
7717
+ attr(div, "class", "next-button-container svelte-1qfq79t");
7735
7718
  },
7736
7719
  m(target, anchor) {
7737
7720
  insert(target, div, anchor);
@@ -7779,9 +7762,9 @@ function create_each_block(ctx) {
7779
7762
  button = element("button");
7780
7763
  div = element("div");
7781
7764
  t = space();
7782
- attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
7765
+ attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
7783
7766
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
7784
- attr(button, "class", "navigation-item svelte-ji1fh");
7767
+ attr(button, "class", "navigation-item svelte-1qfq79t");
7785
7768
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
7786
7769
  },
7787
7770
  m(target, anchor) {
@@ -7858,14 +7841,14 @@ function create_fragment$b(ctx) {
7858
7841
  each_blocks[i].c();
7859
7842
  }
7860
7843
 
7861
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
7844
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
7862
7845
  attr(div0, "style", /*slideStyle*/ ctx[14]);
7863
- attr(div1, "class", "container svelte-ji1fh");
7846
+ attr(div1, "class", "container svelte-1qfq79t");
7864
7847
  attr(div1, "style", /*_style*/ ctx[0]);
7865
- attr(div2, "class", "navigation svelte-ji1fh");
7848
+ attr(div2, "class", "navigation svelte-1qfq79t");
7866
7849
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
7867
7850
  set_attributes(div3, div3_data);
7868
- toggle_class(div3, "svelte-ji1fh", true);
7851
+ toggle_class(div3, "svelte-1qfq79t", true);
7869
7852
  },
7870
7853
  m(target, anchor) {
7871
7854
  insert(target, div3, anchor);
@@ -7907,7 +7890,7 @@ function create_fragment$b(ctx) {
7907
7890
  }
7908
7891
  }
7909
7892
 
7910
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
7893
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
7911
7894
  attr(div0, "class", div0_class_value);
7912
7895
  }
7913
7896
 
@@ -7973,7 +7956,7 @@ function create_fragment$b(ctx) {
7973
7956
  }
7974
7957
 
7975
7958
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
7976
- toggle_class(div3, "svelte-ji1fh", true);
7959
+ toggle_class(div3, "svelte-1qfq79t", true);
7977
7960
  },
7978
7961
  i(local) {
7979
7962
  if (current) return;
@@ -8485,7 +8468,7 @@ class Slide extends SvelteComponent {
8485
8468
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
8486
8469
 
8487
8470
  function add_css$9(target) {
8488
- 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}");
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}");
8489
8472
  }
8490
8473
 
8491
8474
  function create_fragment$a(ctx) {
@@ -8500,9 +8483,9 @@ function create_fragment$a(ctx) {
8500
8483
  div1 = element("div");
8501
8484
  div0 = element("div");
8502
8485
  if (default_slot) default_slot.c();
8503
- attr(div0, "class", "item-inner svelte-9ygf1w");
8486
+ attr(div0, "class", "item-inner svelte-1rv0qgo");
8504
8487
  attr(div0, "style", /*_style*/ ctx[0]);
8505
- attr(div1, "class", "item svelte-9ygf1w");
8488
+ attr(div1, "class", "item svelte-1rv0qgo");
8506
8489
  attr(div1, "style", /*itemStyle*/ ctx[1]);
8507
8490
  },
8508
8491
  m(target, anchor) {
@@ -8628,7 +8611,7 @@ class SlideItem extends SvelteComponent {
8628
8611
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
8629
8612
 
8630
8613
  function add_css$8(target) {
8631
- 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}");
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}");
8632
8615
  }
8633
8616
 
8634
8617
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -8646,9 +8629,9 @@ function create_fragment$9(ctx) {
8646
8629
  div1 = element("div");
8647
8630
  div0 = element("div");
8648
8631
  if (default_slot) default_slot.c();
8649
- attr(div0, "class", "countdown-inner svelte-rroxiz");
8632
+ attr(div0, "class", "countdown-inner svelte-t87l6f");
8650
8633
  attr(div0, "style", /*_style*/ ctx[0]);
8651
- attr(div1, "class", "countdown svelte-rroxiz");
8634
+ attr(div1, "class", "countdown svelte-t87l6f");
8652
8635
  },
8653
8636
  m(target, anchor) {
8654
8637
  insert(target, div1, anchor);
@@ -8782,7 +8765,7 @@ class Countdown extends SvelteComponent {
8782
8765
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
8783
8766
 
8784
8767
  function add_css$7(target) {
8785
- 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}");
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}");
8786
8769
  }
8787
8770
 
8788
8771
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -8852,7 +8835,7 @@ function create_fragment$8(ctx) {
8852
8835
  c() {
8853
8836
  div = element("div");
8854
8837
  create_component(button.$$.fragment);
8855
- attr(div, "class", "box svelte-1ccydfy");
8838
+ attr(div, "class", "box svelte-1c91vpe");
8856
8839
  },
8857
8840
  m(target, anchor) {
8858
8841
  insert(target, div, anchor);
@@ -8913,7 +8896,7 @@ class Box extends SvelteComponent {
8913
8896
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
8914
8897
 
8915
8898
  function add_css$6(target) {
8916
- 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)}");
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)}");
8917
8900
  }
8918
8901
 
8919
8902
  // (56:4) {#if svg}
@@ -8995,7 +8978,7 @@ function create_fragment$7(ctx) {
8995
8978
  c() {
8996
8979
  div = element("div");
8997
8980
  create_component(button.$$.fragment);
8998
- attr(div, "class", "icon svelte-1mkvcuo");
8981
+ attr(div, "class", "icon svelte-1mk6wi4");
8999
8982
  },
9000
8983
  m(target, anchor) {
9001
8984
  insert(target, div, anchor);
@@ -9104,7 +9087,7 @@ class IconElement extends SvelteComponent {
9104
9087
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
9105
9088
 
9106
9089
  function add_css$5(target) {
9107
- append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9090
+ append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9108
9091
  }
9109
9092
 
9110
9093
  function create_fragment$6(ctx) {
@@ -9130,7 +9113,7 @@ function create_fragment$6(ctx) {
9130
9113
  c() {
9131
9114
  div = element("div");
9132
9115
  if (switch_instance) create_component(switch_instance.$$.fragment);
9133
- attr(div, "class", "codeElement svelte-ymsb9l");
9116
+ attr(div, "class", "codeElement svelte-1ng2n51");
9134
9117
  attr(div, "style", /*style*/ ctx[3]);
9135
9118
  },
9136
9119
  m(target, anchor) {
@@ -9219,7 +9202,7 @@ class CodeElement extends SvelteComponent {
9219
9202
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
9220
9203
 
9221
9204
  function add_css$4(target) {
9222
- append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
9205
+ append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
9223
9206
  }
9224
9207
 
9225
9208
  function create_fragment$5(ctx) {
@@ -9233,7 +9216,7 @@ function create_fragment$5(ctx) {
9233
9216
  c() {
9234
9217
  div = element("div");
9235
9218
  if (default_slot) default_slot.c();
9236
- attr(div, "class", "flex svelte-1e71ejc");
9219
+ attr(div, "class", "flex svelte-9v2qdg");
9237
9220
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
9238
9221
  },
9239
9222
  m(target, anchor) {
@@ -9330,7 +9313,7 @@ class Flex extends SvelteComponent {
9330
9313
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
9331
9314
 
9332
9315
  function add_css$3(target) {
9333
- append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9316
+ append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9334
9317
  }
9335
9318
 
9336
9319
  function create_fragment$4(ctx) {
@@ -9343,7 +9326,7 @@ function create_fragment$4(ctx) {
9343
9326
  c() {
9344
9327
  div = element("div");
9345
9328
  if (default_slot) default_slot.c();
9346
- attr(div, "class", "flex-item svelte-1p0bk1x");
9329
+ attr(div, "class", "flex-item svelte-164ah5d");
9347
9330
  attr(div, "style", /*style*/ ctx[0]);
9348
9331
  },
9349
9332
  m(target, anchor) {
@@ -9751,7 +9734,7 @@ class GridModalState extends SvelteComponent {
9751
9734
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
9752
9735
 
9753
9736
  function add_css$2(target) {
9754
- 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%}");
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%}");
9755
9738
  }
9756
9739
 
9757
9740
  function create_fragment$2(ctx) {
@@ -9767,8 +9750,8 @@ function create_fragment$2(ctx) {
9767
9750
  div1 = element("div");
9768
9751
  div0 = element("div");
9769
9752
  create_component(rendertext.$$.fragment);
9770
- attr(div0, "class", "text-block-inner svelte-15pej1m");
9771
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
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"));
9772
9755
  attr(div1, "style", /*style*/ ctx[2]);
9773
9756
  },
9774
9757
  m(target, anchor) {
@@ -9782,7 +9765,7 @@ function create_fragment$2(ctx) {
9782
9765
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
9783
9766
  rendertext.$set(rendertext_changes);
9784
9767
 
9785
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
9768
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
9786
9769
  attr(div1, "class", div1_class_value);
9787
9770
  }
9788
9771
 
@@ -9860,7 +9843,7 @@ class TextBlock extends SvelteComponent {
9860
9843
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
9861
9844
 
9862
9845
  function add_css$1(target) {
9863
- 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)}");
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)}");
9864
9847
  }
9865
9848
 
9866
9849
  function create_fragment$1(ctx) {
@@ -9877,9 +9860,9 @@ function create_fragment$1(ctx) {
9877
9860
  div = element("div");
9878
9861
  button = element("button");
9879
9862
  create_component(rendertext.$$.fragment);
9880
- attr(button, "class", "text-button svelte-ff0k6r");
9863
+ attr(button, "class", "text-button svelte-1c34p4n");
9881
9864
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
9882
- attr(div, "class", "text-button-block svelte-ff0k6r");
9865
+ attr(div, "class", "text-button-block svelte-1c34p4n");
9883
9866
  attr(div, "style", /*_style*/ ctx[2]);
9884
9867
  },
9885
9868
  m(target, anchor) {
@@ -9985,7 +9968,7 @@ class TextButtonBlock extends SvelteComponent {
9985
9968
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
9986
9969
 
9987
9970
  function add_css(target) {
9988
- 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)}");
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)}");
9989
9972
  }
9990
9973
 
9991
9974
  function create_fragment(ctx) {
@@ -10001,14 +9984,14 @@ function create_fragment(ctx) {
10001
9984
  c() {
10002
9985
  div = element("div");
10003
9986
  img = element("img");
10004
- attr(img, "class", "image svelte-1pdw891");
9987
+ attr(img, "class", "image svelte-1jus6sx");
10005
9988
  attr(img, "loading", "lazy");
10006
9989
  attr(img, "width", "auto");
10007
9990
  attr(img, "height", "auto");
10008
9991
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
10009
9992
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
10010
9993
  attr(img, "alt", /*alt*/ ctx[1]);
10011
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
9994
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
10012
9995
  attr(div, "style", /*_style*/ ctx[5]);
10013
9996
  },
10014
9997
  m(target, anchor) {
@@ -10033,7 +10016,7 @@ function create_fragment(ctx) {
10033
10016
  attr(img, "alt", /*alt*/ ctx[1]);
10034
10017
  }
10035
10018
 
10036
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
10019
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
10037
10020
  attr(div, "class", div_class_value);
10038
10021
  }
10039
10022