@plaidev/karte-action-sdk 1.1.201 → 1.1.202-28184304.e377c6fd

Sign up to get free protection for your applications and to get access to all the features.
@@ -342,7 +342,7 @@ const OnClickOperationOptions = [
342
342
  {
343
343
  name: 'url',
344
344
  type: 'Url',
345
- default: '',
345
+ default: 'https://example.com',
346
346
  },
347
347
  {
348
348
  name: 'open_new_tab',
@@ -1332,43 +1332,57 @@ function request(url, data, cb) {
1332
1332
  });
1333
1333
  }
1334
1334
  /** @internal */
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
- });
1344
- };
1335
+ const loadActionTableRow = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1336
+ const key = data[config.query.key] ?? null;
1337
+ if (key == null) {
1338
+ console.warn('key is not found. key: ', config.query.key);
1339
+ return reject('key is not found.');
1340
+ }
1341
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
1342
+ });
1345
1343
  /** @internal */
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 == null) {
1350
- console.warn('key is not defined.');
1351
- }
1352
- if (keys.some(key => key == null)) {
1353
- keys.forEach((key, i) => key == null
1354
- && console.warn('key is not found. key: ', config.query.key[i]));
1355
- return reject('key is not found.');
1344
+ const loadActionTableRows = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1345
+ if (config.query.key == null) {
1346
+ console.warn('key is not defined.');
1347
+ return reject('key is not defined.');
1348
+ }
1349
+ const keys = [];
1350
+ let hasError = false;
1351
+ const originalKeys = Array.isArray(config.query.key) ? config.query.key : [config.query.key];
1352
+ originalKeys.forEach(key => {
1353
+ const d = data[key];
1354
+ if (d == null) {
1355
+ console.warn('key is not found. key: ', key);
1356
+ hasError = true;
1356
1357
  }
1357
- return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => (err ? reject(err) : resolve(data)));
1358
+ keys.push(d);
1358
1359
  });
1359
- };
1360
+ if (hasError) {
1361
+ return reject('key is not found.');
1362
+ }
1363
+ return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => (err ? reject(err) : resolve(data)));
1364
+ });
1360
1365
  /** @internal */
1361
- const loadActionTableQuery = async (config, data, api_key, endpoint) => {
1362
- return new Promise((resolve, reject) => {
1363
- const params = config.query.params?.map(param => data[param] ?? null);
1364
- if (params.some(param => param == null)) {
1365
- params.forEach((param, i) => param == null
1366
- && console.warn('key is not found. param: ', config.query.params[i]));
1367
- return reject('key is not found.');
1366
+ const loadActionTableQuery = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
1367
+ if (config.query.params == null) {
1368
+ console.warn('key is not defined.');
1369
+ return reject('key is not defined.');
1370
+ }
1371
+ const params = {};
1372
+ let hasError = false;
1373
+ Object.entries(config.query.params).forEach(([key, param]) => {
1374
+ const d = data[param];
1375
+ if (d == null) {
1376
+ console.warn('key is not found. param: ', param);
1377
+ hasError = true;
1368
1378
  }
1369
- 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)));
1379
+ params[key] = d;
1370
1380
  });
1371
- };
1381
+ if (hasError) {
1382
+ return reject('key is not found.');
1383
+ }
1384
+ 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)));
1385
+ });
1372
1386
  /** @internal */
1373
1387
  const loadActionTable = async (config, data, api_key, endpoint) => {
1374
1388
  console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
@@ -2589,7 +2603,7 @@ class State extends SvelteComponent {
2589
2603
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
2590
2604
 
2591
2605
  function add_css$t(target) {
2592
- append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
2606
+ append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
2593
2607
  }
2594
2608
 
2595
2609
  // (23:0) {#if $state === path}
@@ -2616,7 +2630,7 @@ function create_if_block$8(ctx) {
2616
2630
  },
2617
2631
  h() {
2618
2632
  attr(div, "data-state-path", /*path*/ ctx[0]);
2619
- attr(div, "class", "state-item svelte-1amihue");
2633
+ attr(div, "class", "state-item svelte-2qb6dm");
2620
2634
  },
2621
2635
  m(target, anchor) {
2622
2636
  insert_hydration(target, div, anchor);
@@ -2975,7 +2989,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
2975
2989
  /* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
2976
2990
 
2977
2991
  function add_css$s(target) {
2978
- 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}");
2992
+ 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}");
2979
2993
  }
2980
2994
 
2981
2995
  // (9:0) {#if backgroundOverlay}
@@ -2995,7 +3009,7 @@ function create_if_block$7(ctx) {
2995
3009
  this.h();
2996
3010
  },
2997
3011
  h() {
2998
- attr(div, "class", "background svelte-g6ucc2");
3012
+ attr(div, "class", "background svelte-1d4fta");
2999
3013
  },
3000
3014
  m(target, anchor) {
3001
3015
  insert_hydration(target, div, anchor);
@@ -3110,7 +3124,7 @@ function checkStopPropagation(eventName, handler) {
3110
3124
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
3111
3125
 
3112
3126
  function add_css$r(target) {
3113
- 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}");
3127
+ 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}");
3114
3128
  }
3115
3129
 
3116
3130
  // (50:0) {:else}
@@ -3149,7 +3163,7 @@ function create_else_block$3(ctx) {
3149
3163
  },
3150
3164
  h() {
3151
3165
  set_attributes(button, button_data);
3152
- toggle_class(button, "svelte-1dtbrzj", true);
3166
+ toggle_class(button, "svelte-1tg0tf", true);
3153
3167
  },
3154
3168
  m(target, anchor) {
3155
3169
  insert_hydration(target, button, anchor);
@@ -3188,7 +3202,7 @@ function create_else_block$3(ctx) {
3188
3202
  dataAttrStopPropagation('click')
3189
3203
  ]));
3190
3204
 
3191
- toggle_class(button, "svelte-1dtbrzj", true);
3205
+ toggle_class(button, "svelte-1tg0tf", true);
3192
3206
  },
3193
3207
  i(local) {
3194
3208
  if (current) return;
@@ -3229,7 +3243,7 @@ function create_if_block_2(ctx) {
3229
3243
  this.h();
3230
3244
  },
3231
3245
  h() {
3232
- attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1dtbrzj"));
3246
+ attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
3233
3247
  attr(div, "style", /*style*/ ctx[1]);
3234
3248
  },
3235
3249
  m(target, anchor) {
@@ -3329,7 +3343,7 @@ function create_if_block_1$2(ctx) {
3329
3343
  },
3330
3344
  h() {
3331
3345
  set_attributes(a, a_data);
3332
- toggle_class(a, "svelte-1dtbrzj", true);
3346
+ toggle_class(a, "svelte-1tg0tf", true);
3333
3347
  },
3334
3348
  m(target, anchor) {
3335
3349
  insert_hydration(target, a, anchor);
@@ -3371,7 +3385,7 @@ function create_if_block_1$2(ctx) {
3371
3385
  dataAttrStopPropagation('click')
3372
3386
  ]));
3373
3387
 
3374
- toggle_class(a, "svelte-1dtbrzj", true);
3388
+ toggle_class(a, "svelte-1tg0tf", true);
3375
3389
  },
3376
3390
  i(local) {
3377
3391
  if (current) return;
@@ -3412,7 +3426,7 @@ function create_if_block$6(ctx) {
3412
3426
  this.h();
3413
3427
  },
3414
3428
  h() {
3415
- attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1dtbrzj"));
3429
+ attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
3416
3430
  attr(div, "style", /*style*/ ctx[1]);
3417
3431
  },
3418
3432
  m(target, anchor) {
@@ -3620,7 +3634,7 @@ class Button extends SvelteComponent {
3620
3634
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3621
3635
 
3622
3636
  function add_css$q(target) {
3623
- 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}");
3637
+ 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}");
3624
3638
  }
3625
3639
 
3626
3640
  // (145:0) {#if visible}
@@ -3661,7 +3675,7 @@ function create_if_block$5(ctx) {
3661
3675
  this.h();
3662
3676
  },
3663
3677
  h() {
3664
- attr(div, "class", "modal svelte-1m1do8u");
3678
+ attr(div, "class", "modal svelte-yvwr7u");
3665
3679
  attr(div, "role", "dialog");
3666
3680
  attr(div, "aria-modal", "true");
3667
3681
  attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
@@ -3749,7 +3763,7 @@ function create_if_block_1$1(ctx) {
3749
3763
  this.h();
3750
3764
  },
3751
3765
  h() {
3752
- attr(div, "class", "close svelte-1m1do8u");
3766
+ attr(div, "class", "close svelte-yvwr7u");
3753
3767
  set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
3754
3768
  },
3755
3769
  m(target, anchor) {
@@ -3874,7 +3888,7 @@ function create_default_slot$6(ctx) {
3874
3888
  this.h();
3875
3889
  },
3876
3890
  h() {
3877
- attr(div, "class", "modal-content svelte-1m1do8u");
3891
+ attr(div, "class", "modal-content svelte-yvwr7u");
3878
3892
  attr(div, "style", /*_style*/ ctx[4]);
3879
3893
  },
3880
3894
  m(target, anchor) {
@@ -4384,7 +4398,7 @@ class Grid extends SvelteComponent {
4384
4398
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
4385
4399
 
4386
4400
  function add_css$p(target) {
4387
- append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
4401
+ append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
4388
4402
  }
4389
4403
 
4390
4404
  function create_fragment$r(ctx) {
@@ -4418,8 +4432,8 @@ function create_fragment$r(ctx) {
4418
4432
  this.h();
4419
4433
  },
4420
4434
  h() {
4421
- attr(div0, "class", "grid-item-inner svelte-1cryhmb");
4422
- attr(div1, "class", "grid-item svelte-1cryhmb");
4435
+ attr(div0, "class", "grid-item-inner svelte-n7kdl3");
4436
+ attr(div1, "class", "grid-item svelte-n7kdl3");
4423
4437
  attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
4424
4438
  attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
4425
4439
  attr(div1, "style", /*_style*/ ctx[1]);
@@ -4741,7 +4755,7 @@ class RenderText extends SvelteComponent {
4741
4755
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
4742
4756
 
4743
4757
  function add_css$o(target) {
4744
- 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}");
4758
+ 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}");
4745
4759
  }
4746
4760
 
4747
4761
  // (93:2) {:else}
@@ -4771,8 +4785,8 @@ function create_else_block$1(ctx) {
4771
4785
  this.h();
4772
4786
  },
4773
4787
  h() {
4774
- attr(div0, "class", "text-element-inner svelte-vz6867");
4775
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4788
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4789
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4776
4790
  attr(div1, "style", /*style*/ ctx[5]);
4777
4791
  },
4778
4792
  m(target, anchor) {
@@ -4786,7 +4800,7 @@ function create_else_block$1(ctx) {
4786
4800
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4787
4801
  rendertext.$set(rendertext_changes);
4788
4802
 
4789
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
4803
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
4790
4804
  attr(div1, "class", div1_class_value);
4791
4805
  }
4792
4806
 
@@ -4861,12 +4875,12 @@ function create_if_block$3(ctx) {
4861
4875
  this.h();
4862
4876
  },
4863
4877
  h() {
4864
- attr(div0, "class", "text-element-inner svelte-vz6867");
4878
+ attr(div0, "class", "text-element-inner svelte-9ixs0b");
4865
4879
  attr(a, "href", '');
4866
- attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
4880
+ attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
4867
4881
  attr(a, "style", /*style*/ ctx[5]);
4868
- attr(div1, "class", "tooltip svelte-vz6867");
4869
- attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
4882
+ attr(div1, "class", "tooltip svelte-9ixs0b");
4883
+ attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
4870
4884
  },
4871
4885
  m(target, anchor) {
4872
4886
  insert_hydration(target, a, anchor);
@@ -4892,7 +4906,7 @@ function create_if_block$3(ctx) {
4892
4906
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
4893
4907
  rendertext.$set(rendertext_changes);
4894
4908
 
4895
- 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"))) {
4909
+ 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"))) {
4896
4910
  attr(a, "class", a_class_value);
4897
4911
  }
4898
4912
 
@@ -4954,7 +4968,7 @@ function create_fragment$p(ctx) {
4954
4968
  this.h();
4955
4969
  },
4956
4970
  h() {
4957
- attr(div, "class", "text-element-wrapper svelte-vz6867");
4971
+ attr(div, "class", "text-element-wrapper svelte-9ixs0b");
4958
4972
  },
4959
4973
  m(target, anchor) {
4960
4974
  insert_hydration(target, div, anchor);
@@ -5006,7 +5020,7 @@ function create_fragment$p(ctx) {
5006
5020
 
5007
5021
  function instance$p($$self, $$props, $$invalidate) {
5008
5022
  let style;
5009
- let { text = 'サンプルSample' } = $$props;
5023
+ let { text = 'テキストのコンテンツ' } = $$props;
5010
5024
  let { font = SYSTEM_FONT } = $$props;
5011
5025
  let { _textStyle = '' } = $$props;
5012
5026
  let { textDirection = 'horizontal' } = $$props;
@@ -5119,7 +5133,7 @@ class TextElement extends SvelteComponent {
5119
5133
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
5120
5134
 
5121
5135
  function add_css$n(target) {
5122
- 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)}");
5136
+ 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)}");
5123
5137
  }
5124
5138
 
5125
5139
  // (48:2) <Button {onClick} {style} {eventName}>
@@ -5188,7 +5202,7 @@ function create_fragment$o(ctx) {
5188
5202
  this.h();
5189
5203
  },
5190
5204
  h() {
5191
- attr(div, "class", "text-button-element svelte-ejepf6");
5205
+ attr(div, "class", "text-button-element svelte-1vg84sc");
5192
5206
  },
5193
5207
  m(target, anchor) {
5194
5208
  insert_hydration(target, div, anchor);
@@ -5225,7 +5239,7 @@ function create_fragment$o(ctx) {
5225
5239
 
5226
5240
  function instance$o($$self, $$props, $$invalidate) {
5227
5241
  let style;
5228
- let { text = 'ボタンラベル' } = $$props;
5242
+ let { text = 'ボタンのラベル' } = $$props;
5229
5243
  let { onClick = { operation: 'none', args: [] } } = $$props;
5230
5244
  let { eventName = '' } = $$props;
5231
5245
  let { font = SYSTEM_FONT } = $$props;
@@ -5280,7 +5294,7 @@ class TextButtonElement extends SvelteComponent {
5280
5294
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
5281
5295
 
5282
5296
  function add_css$m(target) {
5283
- 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%}");
5297
+ 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%}");
5284
5298
  }
5285
5299
 
5286
5300
  // (44:2) <Button {onClick} style={_style} {eventName}>
@@ -5308,23 +5322,35 @@ function create_default_slot$4(ctx) {
5308
5322
  this.h();
5309
5323
  },
5310
5324
  h() {
5311
- attr(img, "class", "image svelte-1alkh1m");
5325
+ attr(img, "class", "image svelte-t6tu0e");
5312
5326
  attr(img, "loading", "lazy");
5313
5327
  attr(img, "width", "auto");
5314
5328
  attr(img, "height", "auto");
5315
- attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[6]} object-fit: ${/*objectFit*/ ctx[3]};`);
5316
- if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
5329
+
5330
+ attr(img, "style", img_style_value = [
5331
+ /*_imageStyle*/ ctx[6],
5332
+ /*src*/ ctx[0]
5333
+ ? `object-fit: ${/*objectFit*/ ctx[3]}`
5334
+ : 'object-fit: contain'
5335
+ ].join('; '));
5336
+
5337
+ if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0] || 'https://admin.karte.io/action-editor2/public/images/no_image_en.svg')) attr(img, "src", img_src_value);
5317
5338
  attr(img, "alt", /*alt*/ ctx[1]);
5318
5339
  },
5319
5340
  m(target, anchor) {
5320
5341
  insert_hydration(target, img, anchor);
5321
5342
  },
5322
5343
  p(ctx, dirty) {
5323
- if (dirty & /*_imageStyle, objectFit*/ 72 && img_style_value !== (img_style_value = `${/*_imageStyle*/ ctx[6]} object-fit: ${/*objectFit*/ ctx[3]};`)) {
5344
+ if (dirty & /*_imageStyle, src, objectFit*/ 73 && img_style_value !== (img_style_value = [
5345
+ /*_imageStyle*/ ctx[6],
5346
+ /*src*/ ctx[0]
5347
+ ? `object-fit: ${/*objectFit*/ ctx[3]}`
5348
+ : 'object-fit: contain'
5349
+ ].join('; '))) {
5324
5350
  attr(img, "style", img_style_value);
5325
5351
  }
5326
5352
 
5327
- if (dirty & /*src*/ 1 && !src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) {
5353
+ if (dirty & /*src*/ 1 && !src_url_equal(img.src, img_src_value = /*src*/ ctx[0] || 'https://admin.karte.io/action-editor2/public/images/no_image_en.svg')) {
5328
5354
  attr(img, "src", img_src_value);
5329
5355
  }
5330
5356
 
@@ -5368,7 +5394,7 @@ function create_fragment$n(ctx) {
5368
5394
  this.h();
5369
5395
  },
5370
5396
  h() {
5371
- attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
5397
+ attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
5372
5398
  },
5373
5399
  m(target, anchor) {
5374
5400
  insert_hydration(target, div, anchor);
@@ -5381,13 +5407,13 @@ function create_fragment$n(ctx) {
5381
5407
  if (dirty & /*_style*/ 128) button_changes.style = /*_style*/ ctx[7];
5382
5408
  if (dirty & /*eventName*/ 32) button_changes.eventName = /*eventName*/ ctx[5];
5383
5409
 
5384
- if (dirty & /*$$scope, _imageStyle, objectFit, src, alt*/ 331) {
5410
+ if (dirty & /*$$scope, _imageStyle, src, objectFit, alt*/ 331) {
5385
5411
  button_changes.$$scope = { dirty, ctx };
5386
5412
  }
5387
5413
 
5388
5414
  button.$set(button_changes);
5389
5415
 
5390
- if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
5416
+ if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
5391
5417
  attr(div, "class", div_class_value);
5392
5418
  }
5393
5419
  },
@@ -5408,8 +5434,8 @@ function create_fragment$n(ctx) {
5408
5434
  }
5409
5435
 
5410
5436
  function instance$n($$self, $$props, $$invalidate) {
5411
- let { src = 'https://admin.karte.io/action-editor2/public/images/no_image_en.svg' } = $$props;
5412
- let { alt = 'No Image' } = $$props;
5437
+ let { src = '' } = $$props;
5438
+ let { alt = '画像の説明' } = $$props;
5413
5439
  let { transport = false } = $$props;
5414
5440
  let { objectFit = 'cover' } = $$props;
5415
5441
  let { onClick = { operation: 'none', args: [] } } = $$props;
@@ -5459,7 +5485,7 @@ class ImageElement extends SvelteComponent {
5459
5485
  /* src/components/List.svelte generated by Svelte v3.53.1 */
5460
5486
 
5461
5487
  function add_css$l(target) {
5462
- 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}");
5488
+ 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}");
5463
5489
  }
5464
5490
 
5465
5491
  function create_fragment$m(ctx) {
@@ -5482,7 +5508,7 @@ function create_fragment$m(ctx) {
5482
5508
  this.h();
5483
5509
  },
5484
5510
  h() {
5485
- attr(div, "class", "list svelte-1t8r9z");
5511
+ attr(div, "class", "list svelte-aquv6z");
5486
5512
  attr(div, "style", /*style*/ ctx[0]);
5487
5513
  },
5488
5514
  m(target, anchor) {
@@ -5616,7 +5642,7 @@ class List extends SvelteComponent {
5616
5642
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
5617
5643
 
5618
5644
  function add_css$k(target) {
5619
- 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}");
5645
+ 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}");
5620
5646
  }
5621
5647
 
5622
5648
  // (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
@@ -5699,7 +5725,7 @@ function create_fragment$l(ctx) {
5699
5725
  this.h();
5700
5726
  },
5701
5727
  h() {
5702
- attr(div, "class", "list-item svelte-1lbw8v2");
5728
+ attr(div, "class", "list-item svelte-9n97pe");
5703
5729
  attr(div, "style", /*listItemStyle*/ ctx[3]);
5704
5730
  },
5705
5731
  m(target, anchor) {
@@ -5825,7 +5851,7 @@ class ListItem extends SvelteComponent {
5825
5851
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
5826
5852
 
5827
5853
  function add_css$j(target) {
5828
- 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}");
5854
+ 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}");
5829
5855
  }
5830
5856
 
5831
5857
  function create_fragment$k(ctx) {
@@ -5843,7 +5869,7 @@ function create_fragment$k(ctx) {
5843
5869
  this.h();
5844
5870
  },
5845
5871
  h() {
5846
- attr(div, "class", "embed svelte-w6jkzh");
5872
+ attr(div, "class", "embed svelte-wocq4p");
5847
5873
  attr(div, "style", /*_style*/ ctx[1]);
5848
5874
  },
5849
5875
  m(target, anchor) {
@@ -5886,7 +5912,7 @@ class EmbedElement extends SvelteComponent {
5886
5912
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
5887
5913
 
5888
5914
  function add_css$i(target) {
5889
- 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%}");
5915
+ 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%}");
5890
5916
  }
5891
5917
 
5892
5918
  function create_fragment$j(ctx) {
@@ -5909,7 +5935,7 @@ function create_fragment$j(ctx) {
5909
5935
  },
5910
5936
  h() {
5911
5937
  attr(div0, "class", "karte-player");
5912
- attr(div1, "class", "embed svelte-ljxq7x");
5938
+ attr(div1, "class", "embed svelte-vikz49");
5913
5939
  attr(div1, "style", /*_style*/ ctx[0]);
5914
5940
  },
5915
5941
  m(target, anchor) {
@@ -6251,7 +6277,7 @@ class MovieYouTubeElement extends SvelteComponent {
6251
6277
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
6252
6278
 
6253
6279
  function add_css$h(target) {
6254
- 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%}");
6280
+ 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%}");
6255
6281
  }
6256
6282
 
6257
6283
  function create_fragment$i(ctx) {
@@ -6274,7 +6300,7 @@ function create_fragment$i(ctx) {
6274
6300
  },
6275
6301
  h() {
6276
6302
  attr(div0, "class", "karte-player");
6277
- attr(div1, "class", "embed svelte-ljxq7x");
6303
+ attr(div1, "class", "embed svelte-vikz49");
6278
6304
  attr(div1, "style", /*_style*/ ctx[0]);
6279
6305
  },
6280
6306
  m(target, anchor) {
@@ -6458,7 +6484,7 @@ class MovieVimeoElement extends SvelteComponent {
6458
6484
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
6459
6485
 
6460
6486
  function add_css$g(target) {
6461
- 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}");
6487
+ 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}");
6462
6488
  }
6463
6489
 
6464
6490
  function create_fragment$h(ctx) {
@@ -6488,12 +6514,12 @@ function create_fragment$h(ctx) {
6488
6514
  this.h();
6489
6515
  },
6490
6516
  h() {
6491
- attr(textarea, "class", "textarea svelte-13z4kn0");
6517
+ attr(textarea, "class", "textarea svelte-kyay3k");
6492
6518
  textarea.value = /*$value*/ ctx[3];
6493
6519
  textarea.required = /*required*/ ctx[0];
6494
6520
  attr(textarea, "rows", /*rows*/ ctx[1]);
6495
6521
  attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
6496
- attr(div, "class", "textarea-wrapper svelte-13z4kn0");
6522
+ attr(div, "class", "textarea-wrapper svelte-kyay3k");
6497
6523
  },
6498
6524
  m(target, anchor) {
6499
6525
  insert_hydration(target, div, anchor);
@@ -6589,7 +6615,7 @@ class FormTextarea extends SvelteComponent {
6589
6615
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
6590
6616
 
6591
6617
  function add_css$f(target) {
6592
- 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}");
6618
+ 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}");
6593
6619
  }
6594
6620
 
6595
6621
  function get_each_context$5(ctx, list, i) {
@@ -6645,14 +6671,14 @@ function create_each_block$5(ctx) {
6645
6671
  },
6646
6672
  h() {
6647
6673
  attr(input, "type", "radio");
6648
- attr(input, "class", "radio-button-input svelte-1ntb6j8");
6674
+ attr(input, "class", "radio-button-input svelte-17s08g");
6649
6675
  attr(input, "style", /*buttonStyle*/ ctx[5]);
6650
6676
  attr(input, "name", /*name*/ ctx[0]);
6651
6677
  input.value = input_value_value = /*option*/ ctx[16];
6652
6678
  input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
6653
- attr(span, "class", "radio-button-text svelte-1ntb6j8");
6679
+ attr(span, "class", "radio-button-text svelte-17s08g");
6654
6680
  attr(span, "style", /*_textStyle*/ ctx[2]);
6655
- attr(label, "class", "radio-button svelte-1ntb6j8");
6681
+ attr(label, "class", "radio-button svelte-17s08g");
6656
6682
  },
6657
6683
  m(target, anchor) {
6658
6684
  insert_hydration(target, label, anchor);
@@ -6731,7 +6757,7 @@ function create_fragment$g(ctx) {
6731
6757
  this.h();
6732
6758
  },
6733
6759
  h() {
6734
- attr(div, "class", "radio-buttons svelte-1ntb6j8");
6760
+ attr(div, "class", "radio-buttons svelte-17s08g");
6735
6761
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
6736
6762
  },
6737
6763
  m(target, anchor) {
@@ -6898,7 +6924,7 @@ class FormRadioButtons extends SvelteComponent {
6898
6924
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
6899
6925
 
6900
6926
  function add_css$e(target) {
6901
- 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}");
6927
+ 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}");
6902
6928
  }
6903
6929
 
6904
6930
  function get_each_context$4(ctx, list, i) {
@@ -7069,10 +7095,10 @@ function create_fragment$f(ctx) {
7069
7095
  this.h();
7070
7096
  },
7071
7097
  h() {
7072
- attr(select, "class", "select-select svelte-iejizj");
7098
+ attr(select, "class", "select-select svelte-t9ynyj");
7073
7099
  attr(select, "style", /*style*/ ctx[3]);
7074
- attr(div0, "class", "select-icon svelte-iejizj");
7075
- attr(div1, "class", "select svelte-iejizj");
7100
+ attr(div0, "class", "select-icon svelte-t9ynyj");
7101
+ attr(div1, "class", "select svelte-t9ynyj");
7076
7102
  attr(div1, "style", /*styleVariables*/ ctx[2]);
7077
7103
  },
7078
7104
  m(target, anchor) {
@@ -7274,7 +7300,7 @@ class FormSelect extends SvelteComponent {
7274
7300
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
7275
7301
 
7276
7302
  function add_css$d(target) {
7277
- 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}");
7303
+ 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}");
7278
7304
  }
7279
7305
 
7280
7306
  function get_each_context$3(ctx, list, i) {
@@ -7336,19 +7362,19 @@ function create_each_block$3(ctx) {
7336
7362
  this.h();
7337
7363
  },
7338
7364
  h() {
7339
- attr(input, "class", "check-box-input svelte-2pz1us");
7365
+ attr(input, "class", "check-box-input svelte-1p65cg8");
7340
7366
  attr(input, "type", "checkbox");
7341
7367
  attr(input, "name", /*name*/ ctx[0]);
7342
7368
  input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
7343
- attr(span0, "class", "check-box-icon svelte-2pz1us");
7369
+ attr(span0, "class", "check-box-icon svelte-1p65cg8");
7344
7370
 
7345
7371
  attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7346
7372
  ? ' _checked'
7347
- : ''}`) + " svelte-2pz1us"));
7373
+ : ''}`) + " svelte-1p65cg8"));
7348
7374
 
7349
- attr(span2, "class", "check-box-text svelte-2pz1us");
7375
+ attr(span2, "class", "check-box-text svelte-1p65cg8");
7350
7376
  attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
7351
- attr(label, "class", "check-box svelte-2pz1us");
7377
+ attr(label, "class", "check-box svelte-1p65cg8");
7352
7378
  attr(label, "style", /*styleVariables*/ ctx[5]);
7353
7379
  },
7354
7380
  m(target, anchor) {
@@ -7380,7 +7406,7 @@ function create_each_block$3(ctx) {
7380
7406
 
7381
7407
  if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
7382
7408
  ? ' _checked'
7383
- : ''}`) + " svelte-2pz1us"))) {
7409
+ : ''}`) + " svelte-1p65cg8"))) {
7384
7410
  attr(span1, "class", span1_class_value);
7385
7411
  }
7386
7412
 
@@ -7433,7 +7459,7 @@ function create_fragment$e(ctx) {
7433
7459
  this.h();
7434
7460
  },
7435
7461
  h() {
7436
- attr(div, "class", "check-boxes svelte-2pz1us");
7462
+ attr(div, "class", "check-boxes svelte-1p65cg8");
7437
7463
  attr(div, "style", /*_layoutStyle*/ ctx[1]);
7438
7464
  },
7439
7465
  m(target, anchor) {
@@ -7608,7 +7634,7 @@ class FormCheckBoxes extends SvelteComponent {
7608
7634
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
7609
7635
 
7610
7636
  function add_css$c(target) {
7611
- 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}");
7637
+ 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}");
7612
7638
  }
7613
7639
 
7614
7640
  function get_each_context$2(ctx, list, i) {
@@ -7643,7 +7669,7 @@ function create_each_block$2(ctx) {
7643
7669
  this.h();
7644
7670
  },
7645
7671
  h() {
7646
- attr(button, "class", "rating-button svelte-18pfy31");
7672
+ attr(button, "class", "rating-button svelte-zy2va9");
7647
7673
  attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
7648
7674
  },
7649
7675
  m(target, anchor) {
@@ -7706,7 +7732,7 @@ function create_fragment$d(ctx) {
7706
7732
  this.h();
7707
7733
  },
7708
7734
  h() {
7709
- attr(div, "class", "rating-buttons svelte-18pfy31");
7735
+ attr(div, "class", "rating-buttons svelte-zy2va9");
7710
7736
  },
7711
7737
  m(target, anchor) {
7712
7738
  insert_hydration(target, div, anchor);
@@ -7843,7 +7869,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
7843
7869
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
7844
7870
 
7845
7871
  function add_css$b(target) {
7846
- 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%)}");
7872
+ 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%)}");
7847
7873
  }
7848
7874
 
7849
7875
  function get_each_context$1(ctx, list, i) {
@@ -7879,9 +7905,9 @@ function create_each_block$1(ctx) {
7879
7905
  },
7880
7906
  h() {
7881
7907
  if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
7882
- attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
7908
+ attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
7883
7909
  attr(img, "alt", "rate" + /*i*/ ctx[10]);
7884
- attr(button, "class", "rating-button svelte-1b5dvzw");
7910
+ attr(button, "class", "rating-button svelte-tbunko");
7885
7911
  attr(button, "style", /*buttonStyle*/ ctx[0]);
7886
7912
  },
7887
7913
  m(target, anchor) {
@@ -7897,7 +7923,7 @@ function create_each_block$1(ctx) {
7897
7923
  p(new_ctx, dirty) {
7898
7924
  ctx = new_ctx;
7899
7925
 
7900
- 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"))) {
7926
+ 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"))) {
7901
7927
  attr(img, "class", img_class_value);
7902
7928
  }
7903
7929
 
@@ -7944,7 +7970,7 @@ function create_fragment$c(ctx) {
7944
7970
  this.h();
7945
7971
  },
7946
7972
  h() {
7947
- attr(div, "class", "rating-buttons svelte-1b5dvzw");
7973
+ attr(div, "class", "rating-buttons svelte-tbunko");
7948
7974
  },
7949
7975
  m(target, anchor) {
7950
7976
  insert_hydration(target, div, anchor);
@@ -8052,7 +8078,7 @@ class FormRatingButtonsFace extends SvelteComponent {
8052
8078
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
8053
8079
 
8054
8080
  function add_css$a(target) {
8055
- 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%}");
8081
+ 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%}");
8056
8082
  }
8057
8083
 
8058
8084
  function get_each_context(ctx, list, i) {
@@ -8098,9 +8124,9 @@ function create_if_block_1(ctx) {
8098
8124
  attr(svg, "viewBox", "0 0 10 16");
8099
8125
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
8100
8126
  attr(svg, "style", /*prevIconStyle*/ ctx[10]);
8101
- attr(button, "class", "move-button svelte-1qfq79t");
8127
+ attr(button, "class", "move-button svelte-ji1fh");
8102
8128
  attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
8103
- attr(div, "class", "prev-button-container svelte-1qfq79t");
8129
+ attr(div, "class", "prev-button-container svelte-ji1fh");
8104
8130
  },
8105
8131
  m(target, anchor) {
8106
8132
  insert_hydration(target, div, anchor);
@@ -8166,9 +8192,9 @@ function create_if_block$1(ctx) {
8166
8192
  attr(svg, "viewBox", "0 0 10 16");
8167
8193
  attr(svg, "xmlns", "http://www.w3.org/2000/svg");
8168
8194
  attr(svg, "style", /*nextIconStyle*/ ctx[8]);
8169
- attr(button, "class", "move-button svelte-1qfq79t");
8195
+ attr(button, "class", "move-button svelte-ji1fh");
8170
8196
  attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
8171
- attr(div, "class", "next-button-container svelte-1qfq79t");
8197
+ attr(div, "class", "next-button-container svelte-ji1fh");
8172
8198
  },
8173
8199
  m(target, anchor) {
8174
8200
  insert_hydration(target, div, anchor);
@@ -8228,9 +8254,9 @@ function create_each_block(ctx) {
8228
8254
  this.h();
8229
8255
  },
8230
8256
  h() {
8231
- attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
8257
+ attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
8232
8258
  attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
8233
- attr(button, "class", "navigation-item svelte-1qfq79t");
8259
+ attr(button, "class", "navigation-item svelte-ji1fh");
8234
8260
  attr(button, "style", /*navigationItemStyle*/ ctx[6]);
8235
8261
  },
8236
8262
  m(target, anchor) {
@@ -8336,14 +8362,14 @@ function create_fragment$b(ctx) {
8336
8362
  this.h();
8337
8363
  },
8338
8364
  h() {
8339
- attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
8365
+ attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
8340
8366
  attr(div0, "style", /*slideStyle*/ ctx[14]);
8341
- attr(div1, "class", "container svelte-1qfq79t");
8367
+ attr(div1, "class", "container svelte-ji1fh");
8342
8368
  attr(div1, "style", /*_style*/ ctx[0]);
8343
- attr(div2, "class", "navigation svelte-1qfq79t");
8369
+ attr(div2, "class", "navigation svelte-ji1fh");
8344
8370
  attr(div2, "style", /*navigationStyle*/ ctx[4]);
8345
8371
  set_attributes(div3, div3_data);
8346
- toggle_class(div3, "svelte-1qfq79t", true);
8372
+ toggle_class(div3, "svelte-ji1fh", true);
8347
8373
  },
8348
8374
  m(target, anchor) {
8349
8375
  insert_hydration(target, div3, anchor);
@@ -8385,7 +8411,7 @@ function create_fragment$b(ctx) {
8385
8411
  }
8386
8412
  }
8387
8413
 
8388
- if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
8414
+ if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
8389
8415
  attr(div0, "class", div0_class_value);
8390
8416
  }
8391
8417
 
@@ -8451,7 +8477,7 @@ function create_fragment$b(ctx) {
8451
8477
  }
8452
8478
 
8453
8479
  set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
8454
- toggle_class(div3, "svelte-1qfq79t", true);
8480
+ toggle_class(div3, "svelte-ji1fh", true);
8455
8481
  },
8456
8482
  i(local) {
8457
8483
  if (current) return;
@@ -8963,7 +8989,7 @@ class Slide extends SvelteComponent {
8963
8989
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
8964
8990
 
8965
8991
  function add_css$9(target) {
8966
- 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}");
8992
+ 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}");
8967
8993
  }
8968
8994
 
8969
8995
  function create_fragment$a(ctx) {
@@ -8991,9 +9017,9 @@ function create_fragment$a(ctx) {
8991
9017
  this.h();
8992
9018
  },
8993
9019
  h() {
8994
- attr(div0, "class", "item-inner svelte-1rv0qgo");
9020
+ attr(div0, "class", "item-inner svelte-9ygf1w");
8995
9021
  attr(div0, "style", /*_style*/ ctx[0]);
8996
- attr(div1, "class", "item svelte-1rv0qgo");
9022
+ attr(div1, "class", "item svelte-9ygf1w");
8997
9023
  attr(div1, "style", /*itemStyle*/ ctx[1]);
8998
9024
  },
8999
9025
  m(target, anchor) {
@@ -9119,7 +9145,7 @@ class SlideItem extends SvelteComponent {
9119
9145
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
9120
9146
 
9121
9147
  function add_css$8(target) {
9122
- 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}");
9148
+ 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}");
9123
9149
  }
9124
9150
 
9125
9151
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
@@ -9150,9 +9176,9 @@ function create_fragment$9(ctx) {
9150
9176
  this.h();
9151
9177
  },
9152
9178
  h() {
9153
- attr(div0, "class", "countdown-inner svelte-t87l6f");
9179
+ attr(div0, "class", "countdown-inner svelte-rroxiz");
9154
9180
  attr(div0, "style", /*_style*/ ctx[0]);
9155
- attr(div1, "class", "countdown svelte-t87l6f");
9181
+ attr(div1, "class", "countdown svelte-rroxiz");
9156
9182
  },
9157
9183
  m(target, anchor) {
9158
9184
  insert_hydration(target, div1, anchor);
@@ -9282,7 +9308,7 @@ class Countdown extends SvelteComponent {
9282
9308
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
9283
9309
 
9284
9310
  function add_css$7(target) {
9285
- 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}");
9311
+ 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}");
9286
9312
  }
9287
9313
 
9288
9314
  // (24:2) <Button {onClick} style={_style} {eventName}>
@@ -9365,7 +9391,7 @@ function create_fragment$8(ctx) {
9365
9391
  this.h();
9366
9392
  },
9367
9393
  h() {
9368
- attr(div, "class", "box svelte-1c91vpe");
9394
+ attr(div, "class", "box svelte-1ccydfy");
9369
9395
  },
9370
9396
  m(target, anchor) {
9371
9397
  insert_hydration(target, div, anchor);
@@ -9426,7 +9452,7 @@ class Box extends SvelteComponent {
9426
9452
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
9427
9453
 
9428
9454
  function add_css$6(target) {
9429
- 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)}");
9455
+ 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)}");
9430
9456
  }
9431
9457
 
9432
9458
  // (56:4) {#if svg}
@@ -9530,7 +9556,7 @@ function create_fragment$7(ctx) {
9530
9556
  this.h();
9531
9557
  },
9532
9558
  h() {
9533
- attr(div, "class", "icon svelte-1mk6wi4");
9559
+ attr(div, "class", "icon svelte-1mkvcuo");
9534
9560
  },
9535
9561
  m(target, anchor) {
9536
9562
  insert_hydration(target, div, anchor);
@@ -9639,7 +9665,7 @@ class IconElement extends SvelteComponent {
9639
9665
  /* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
9640
9666
 
9641
9667
  function add_css$5(target) {
9642
- append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9668
+ append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
9643
9669
  }
9644
9670
 
9645
9671
  function create_fragment$6(ctx) {
@@ -9675,7 +9701,7 @@ function create_fragment$6(ctx) {
9675
9701
  this.h();
9676
9702
  },
9677
9703
  h() {
9678
- attr(div, "class", "codeElement svelte-1ng2n51");
9704
+ attr(div, "class", "codeElement svelte-ymsb9l");
9679
9705
  attr(div, "style", /*style*/ ctx[3]);
9680
9706
  },
9681
9707
  m(target, anchor) {
@@ -9764,7 +9790,7 @@ class CodeElement extends SvelteComponent {
9764
9790
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
9765
9791
 
9766
9792
  function add_css$4(target) {
9767
- append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
9793
+ append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
9768
9794
  }
9769
9795
 
9770
9796
  function create_fragment$5(ctx) {
@@ -9788,7 +9814,7 @@ function create_fragment$5(ctx) {
9788
9814
  this.h();
9789
9815
  },
9790
9816
  h() {
9791
- attr(div, "class", "flex svelte-9v2qdg");
9817
+ attr(div, "class", "flex svelte-1e71ejc");
9792
9818
  attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
9793
9819
  },
9794
9820
  m(target, anchor) {
@@ -9885,7 +9911,7 @@ class Flex extends SvelteComponent {
9885
9911
  /* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
9886
9912
 
9887
9913
  function add_css$3(target) {
9888
- append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9914
+ append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
9889
9915
  }
9890
9916
 
9891
9917
  function create_fragment$4(ctx) {
@@ -9908,7 +9934,7 @@ function create_fragment$4(ctx) {
9908
9934
  this.h();
9909
9935
  },
9910
9936
  h() {
9911
- attr(div, "class", "flex-item svelte-164ah5d");
9937
+ attr(div, "class", "flex-item svelte-1p0bk1x");
9912
9938
  attr(div, "style", /*style*/ ctx[0]);
9913
9939
  },
9914
9940
  m(target, anchor) {
@@ -10328,7 +10354,7 @@ class GridModalState extends SvelteComponent {
10328
10354
  /* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
10329
10355
 
10330
10356
  function add_css$2(target) {
10331
- 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%}");
10357
+ 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%}");
10332
10358
  }
10333
10359
 
10334
10360
  function create_fragment$2(ctx) {
@@ -10357,8 +10383,8 @@ function create_fragment$2(ctx) {
10357
10383
  this.h();
10358
10384
  },
10359
10385
  h() {
10360
- attr(div0, "class", "text-block-inner svelte-akic2e");
10361
- attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
10386
+ attr(div0, "class", "text-block-inner svelte-15pej1m");
10387
+ attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
10362
10388
  attr(div1, "style", /*style*/ ctx[2]);
10363
10389
  },
10364
10390
  m(target, anchor) {
@@ -10372,7 +10398,7 @@ function create_fragment$2(ctx) {
10372
10398
  if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
10373
10399
  rendertext.$set(rendertext_changes);
10374
10400
 
10375
- if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
10401
+ if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
10376
10402
  attr(div1, "class", div1_class_value);
10377
10403
  }
10378
10404
 
@@ -10450,7 +10476,7 @@ class TextBlock extends SvelteComponent {
10450
10476
  /* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
10451
10477
 
10452
10478
  function add_css$1(target) {
10453
- 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)}");
10479
+ 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)}");
10454
10480
  }
10455
10481
 
10456
10482
  function create_fragment$1(ctx) {
@@ -10480,9 +10506,9 @@ function create_fragment$1(ctx) {
10480
10506
  this.h();
10481
10507
  },
10482
10508
  h() {
10483
- attr(button, "class", "text-button svelte-1c34p4n");
10509
+ attr(button, "class", "text-button svelte-ff0k6r");
10484
10510
  attr(button, "style", /*_buttonStyle*/ ctx[1]);
10485
- attr(div, "class", "text-button-block svelte-1c34p4n");
10511
+ attr(div, "class", "text-button-block svelte-ff0k6r");
10486
10512
  attr(div, "style", /*_style*/ ctx[2]);
10487
10513
  },
10488
10514
  m(target, anchor) {
@@ -10588,7 +10614,7 @@ class TextButtonBlock extends SvelteComponent {
10588
10614
  /* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
10589
10615
 
10590
10616
  function add_css(target) {
10591
- 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)}");
10617
+ 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)}");
10592
10618
  }
10593
10619
 
10594
10620
  function create_fragment(ctx) {
@@ -10624,14 +10650,14 @@ function create_fragment(ctx) {
10624
10650
  this.h();
10625
10651
  },
10626
10652
  h() {
10627
- attr(img, "class", "image svelte-1jus6sx");
10653
+ attr(img, "class", "image svelte-1pdw891");
10628
10654
  attr(img, "loading", "lazy");
10629
10655
  attr(img, "width", "auto");
10630
10656
  attr(img, "height", "auto");
10631
10657
  attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
10632
10658
  if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
10633
10659
  attr(img, "alt", /*alt*/ ctx[1]);
10634
- attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
10660
+ attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
10635
10661
  attr(div, "style", /*_style*/ ctx[5]);
10636
10662
  },
10637
10663
  m(target, anchor) {
@@ -10656,7 +10682,7 @@ function create_fragment(ctx) {
10656
10682
  attr(img, "alt", /*alt*/ ctx[1]);
10657
10683
  }
10658
10684
 
10659
- if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
10685
+ if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
10660
10686
  attr(div, "class", div_class_value);
10661
10687
  }
10662
10688