@plaidev/karte-action-sdk 1.1.224 → 1.1.225-28453458.8b5dd950
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hydrate/index.es.d.ts +4 -4
- package/dist/hydrate/index.es.js +133 -130
- package/dist/index.es.d.ts +4 -4
- package/dist/index.es.js +133 -130
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1294,7 +1294,7 @@ function hideOnTime(props, hide = NOOP) {
|
|
1294
1294
|
* スクロール率が `show_on_scroll_rate` に達したときに `show` 関数を呼び出します。
|
1295
1295
|
* `hide_on_scroll_releave` が `true` で、かつ `show_on_scroll_rate` 以下の場合は、アクションに対して `hide` 関数が呼び出されます。
|
1296
1296
|
*
|
1297
|
-
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate
|
1297
|
+
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate`、'hide_on_scroll_releave' そして `show_on_scroll_reenter` が必要です。
|
1298
1298
|
* @param show - アクションを表示するロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1299
1299
|
* @param hide - アクションを非表示にするロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1300
1300
|
*
|
@@ -1304,9 +1304,12 @@ function hideOnTime(props, hide = NOOP) {
|
|
1304
1304
|
* @internal
|
1305
1305
|
*/
|
1306
1306
|
function showOnScroll(props, show = NOOP, hide = NOOP) {
|
1307
|
-
const { show_on_scroll, show_on_scroll_rate, hide_on_scroll_releave } = props;
|
1307
|
+
const { show_on_scroll, show_on_scroll_rate, hide_on_scroll_releave, show_on_scroll_reenter } = props;
|
1308
1308
|
return show_on_scroll && show_on_scroll_rate
|
1309
|
-
? onScroll(show_on_scroll_rate / 100, ctx =>
|
1309
|
+
? onScroll(show_on_scroll_rate / 100, ctx => {
|
1310
|
+
doPresent(ctx, show, hide, hide_on_scroll_releave ?? true);
|
1311
|
+
return show_on_scroll_reenter;
|
1312
|
+
})
|
1310
1313
|
: null;
|
1311
1314
|
}
|
1312
1315
|
/**
|
@@ -1334,7 +1337,7 @@ function showOnTime(props, show = NOOP) {
|
|
1334
1337
|
*/
|
1335
1338
|
const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__ === 'string'
|
1336
1339
|
? __FLYER_GEN_COLLECTION_API_ENDPOINT__
|
1337
|
-
: 'https://
|
1340
|
+
: 'https://action-table.karte.io/collection';
|
1338
1341
|
/**
|
1339
1342
|
* アクションテーブルを管理するメソッドを取得する
|
1340
1343
|
*
|
@@ -3002,7 +3005,7 @@ class State extends SvelteComponent {
|
|
3002
3005
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
3003
3006
|
|
3004
3007
|
function add_css$v(target) {
|
3005
|
-
append_styles(target, "svelte-
|
3008
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
3006
3009
|
}
|
3007
3010
|
|
3008
3011
|
// (23:0) {#if $state === path}
|
@@ -3029,7 +3032,7 @@ function create_if_block$8(ctx) {
|
|
3029
3032
|
},
|
3030
3033
|
h() {
|
3031
3034
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3032
|
-
attr(div, "class", "state-item svelte-
|
3035
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
3033
3036
|
},
|
3034
3037
|
m(target, anchor) {
|
3035
3038
|
insert_hydration(target, div, anchor);
|
@@ -3296,7 +3299,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3296
3299
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3297
3300
|
|
3298
3301
|
function add_css$u(target) {
|
3299
|
-
append_styles(target, "svelte-
|
3302
|
+
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}");
|
3300
3303
|
}
|
3301
3304
|
|
3302
3305
|
// (14:0) {#if backgroundOverlay}
|
@@ -3317,7 +3320,7 @@ function create_if_block$7(ctx) {
|
|
3317
3320
|
this.h();
|
3318
3321
|
},
|
3319
3322
|
h() {
|
3320
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3323
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
|
3321
3324
|
},
|
3322
3325
|
m(target, anchor) {
|
3323
3326
|
insert_hydration(target, div, anchor);
|
@@ -3328,7 +3331,7 @@ function create_if_block$7(ctx) {
|
|
3328
3331
|
}
|
3329
3332
|
},
|
3330
3333
|
p(ctx, dirty) {
|
3331
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3334
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
|
3332
3335
|
attr(div, "class", div_class_value);
|
3333
3336
|
}
|
3334
3337
|
},
|
@@ -3438,7 +3441,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3438
3441
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3439
3442
|
|
3440
3443
|
function add_css$t(target) {
|
3441
|
-
append_styles(target, "svelte-
|
3444
|
+
append_styles(target, "svelte-15k4deh", ".button.svelte-15k4deh{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-15k4deh:link,.button.svelte-15k4deh:visited,.button.svelte-15k4deh:active,.button.svelte-15k4deh:hover{color:inherit}");
|
3442
3445
|
}
|
3443
3446
|
|
3444
3447
|
// (50:0) {:else}
|
@@ -3477,7 +3480,7 @@ function create_else_block$4(ctx) {
|
|
3477
3480
|
},
|
3478
3481
|
h() {
|
3479
3482
|
set_attributes(button, button_data);
|
3480
|
-
toggle_class(button, "svelte-
|
3483
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3481
3484
|
},
|
3482
3485
|
m(target, anchor) {
|
3483
3486
|
insert_hydration(target, button, anchor);
|
@@ -3516,7 +3519,7 @@ function create_else_block$4(ctx) {
|
|
3516
3519
|
dataAttrStopPropagation('click')
|
3517
3520
|
]));
|
3518
3521
|
|
3519
|
-
toggle_class(button, "svelte-
|
3522
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3520
3523
|
},
|
3521
3524
|
i(local) {
|
3522
3525
|
if (current) return;
|
@@ -3557,7 +3560,7 @@ function create_if_block_2$1(ctx) {
|
|
3557
3560
|
this.h();
|
3558
3561
|
},
|
3559
3562
|
h() {
|
3560
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3563
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
|
3561
3564
|
attr(div, "style", /*style*/ ctx[1]);
|
3562
3565
|
},
|
3563
3566
|
m(target, anchor) {
|
@@ -3657,7 +3660,7 @@ function create_if_block_1$2(ctx) {
|
|
3657
3660
|
},
|
3658
3661
|
h() {
|
3659
3662
|
set_attributes(a, a_data);
|
3660
|
-
toggle_class(a, "svelte-
|
3663
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3661
3664
|
},
|
3662
3665
|
m(target, anchor) {
|
3663
3666
|
insert_hydration(target, a, anchor);
|
@@ -3699,7 +3702,7 @@ function create_if_block_1$2(ctx) {
|
|
3699
3702
|
dataAttrStopPropagation('click')
|
3700
3703
|
]));
|
3701
3704
|
|
3702
|
-
toggle_class(a, "svelte-
|
3705
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3703
3706
|
},
|
3704
3707
|
i(local) {
|
3705
3708
|
if (current) return;
|
@@ -3740,7 +3743,7 @@ function create_if_block$6(ctx) {
|
|
3740
3743
|
this.h();
|
3741
3744
|
},
|
3742
3745
|
h() {
|
3743
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3746
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
|
3744
3747
|
attr(div, "style", /*style*/ ctx[1]);
|
3745
3748
|
},
|
3746
3749
|
m(target, anchor) {
|
@@ -3948,7 +3951,7 @@ class Button extends SvelteComponent {
|
|
3948
3951
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3949
3952
|
|
3950
3953
|
function add_css$s(target) {
|
3951
|
-
append_styles(target, "svelte-
|
3954
|
+
append_styles(target, "svelte-1j0m3x1", ".modal.svelte-1j0m3x1{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1j0m3x1 > .button{flex:auto;display:flex}.close.svelte-1j0m3x1{position:absolute;top:0;right:0}.close.svelte-1j0m3x1 > .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-1j0m3x1 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1j0m3x1{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1j0m3x1{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc) !important;margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1j0m3x1{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp) !important;margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
|
3952
3955
|
}
|
3953
3956
|
|
3954
3957
|
// (275:0) {:else}
|
@@ -4123,7 +4126,7 @@ function create_if_block$5(ctx) {
|
|
4123
4126
|
this.h();
|
4124
4127
|
},
|
4125
4128
|
h() {
|
4126
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4129
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"));
|
4127
4130
|
attr(div, "role", "dialog");
|
4128
4131
|
attr(div, "aria-modal", "true");
|
4129
4132
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4147,7 +4150,7 @@ function create_if_block$5(ctx) {
|
|
4147
4150
|
|
4148
4151
|
button.$set(button_changes);
|
4149
4152
|
|
4150
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4153
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"))) {
|
4151
4154
|
attr(div, "class", div_class_value);
|
4152
4155
|
}
|
4153
4156
|
},
|
@@ -4211,7 +4214,7 @@ function create_if_block_1$1(ctx) {
|
|
4211
4214
|
this.h();
|
4212
4215
|
},
|
4213
4216
|
h() {
|
4214
|
-
attr(div, "class", "close svelte-
|
4217
|
+
attr(div, "class", "close svelte-1j0m3x1");
|
4215
4218
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4216
4219
|
},
|
4217
4220
|
m(target, anchor) {
|
@@ -4336,7 +4339,7 @@ function create_default_slot$6(ctx) {
|
|
4336
4339
|
this.h();
|
4337
4340
|
},
|
4338
4341
|
h() {
|
4339
|
-
attr(div, "class", "modal-content svelte-
|
4342
|
+
attr(div, "class", "modal-content svelte-1j0m3x1");
|
4340
4343
|
attr(div, "style", /*_style*/ ctx[5]);
|
4341
4344
|
},
|
4342
4345
|
m(target, anchor) {
|
@@ -4971,7 +4974,7 @@ class Grid extends SvelteComponent {
|
|
4971
4974
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4972
4975
|
|
4973
4976
|
function add_css$r(target) {
|
4974
|
-
append_styles(target, "svelte-
|
4977
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4975
4978
|
}
|
4976
4979
|
|
4977
4980
|
function create_fragment$t(ctx) {
|
@@ -5005,8 +5008,8 @@ function create_fragment$t(ctx) {
|
|
5005
5008
|
this.h();
|
5006
5009
|
},
|
5007
5010
|
h() {
|
5008
|
-
attr(div0, "class", "grid-item-inner svelte-
|
5009
|
-
attr(div1, "class", "grid-item svelte-
|
5011
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
5012
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
5010
5013
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
5011
5014
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
5012
5015
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5328,7 +5331,7 @@ class RenderText extends SvelteComponent {
|
|
5328
5331
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5329
5332
|
|
5330
5333
|
function add_css$q(target) {
|
5331
|
-
append_styles(target, "svelte-
|
5334
|
+
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}");
|
5332
5335
|
}
|
5333
5336
|
|
5334
5337
|
// (94:2) {:else}
|
@@ -5358,8 +5361,8 @@ function create_else_block$1(ctx) {
|
|
5358
5361
|
this.h();
|
5359
5362
|
},
|
5360
5363
|
h() {
|
5361
|
-
attr(div0, "class", "text-element-inner svelte-
|
5362
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5364
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5365
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5363
5366
|
attr(div1, "style", /*style*/ ctx[5]);
|
5364
5367
|
},
|
5365
5368
|
m(target, anchor) {
|
@@ -5373,7 +5376,7 @@ function create_else_block$1(ctx) {
|
|
5373
5376
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5374
5377
|
rendertext.$set(rendertext_changes);
|
5375
5378
|
|
5376
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5379
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5377
5380
|
attr(div1, "class", div1_class_value);
|
5378
5381
|
}
|
5379
5382
|
|
@@ -5448,12 +5451,12 @@ function create_if_block$3(ctx) {
|
|
5448
5451
|
this.h();
|
5449
5452
|
},
|
5450
5453
|
h() {
|
5451
|
-
attr(div0, "class", "text-element-inner svelte-
|
5454
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5452
5455
|
attr(a, "href", '');
|
5453
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5456
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5454
5457
|
attr(a, "style", /*style*/ ctx[5]);
|
5455
|
-
attr(div1, "class", "tooltip svelte-
|
5456
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5458
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
5459
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
5457
5460
|
},
|
5458
5461
|
m(target, anchor) {
|
5459
5462
|
insert_hydration(target, a, anchor);
|
@@ -5479,7 +5482,7 @@ function create_if_block$3(ctx) {
|
|
5479
5482
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5480
5483
|
rendertext.$set(rendertext_changes);
|
5481
5484
|
|
5482
|
-
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-
|
5485
|
+
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"))) {
|
5483
5486
|
attr(a, "class", a_class_value);
|
5484
5487
|
}
|
5485
5488
|
|
@@ -5541,7 +5544,7 @@ function create_fragment$r(ctx) {
|
|
5541
5544
|
this.h();
|
5542
5545
|
},
|
5543
5546
|
h() {
|
5544
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5547
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
5545
5548
|
},
|
5546
5549
|
m(target, anchor) {
|
5547
5550
|
insert_hydration(target, div, anchor);
|
@@ -5707,7 +5710,7 @@ class TextElement extends SvelteComponent {
|
|
5707
5710
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5708
5711
|
|
5709
5712
|
function add_css$p(target) {
|
5710
|
-
append_styles(target, "svelte-
|
5713
|
+
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)}");
|
5711
5714
|
}
|
5712
5715
|
|
5713
5716
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5776,7 +5779,7 @@ function create_fragment$q(ctx) {
|
|
5776
5779
|
this.h();
|
5777
5780
|
},
|
5778
5781
|
h() {
|
5779
|
-
attr(div, "class", "text-button-element svelte-
|
5782
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5780
5783
|
},
|
5781
5784
|
m(target, anchor) {
|
5782
5785
|
insert_hydration(target, div, anchor);
|
@@ -5868,7 +5871,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5868
5871
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5869
5872
|
|
5870
5873
|
function add_css$o(target) {
|
5871
|
-
append_styles(target, "svelte-
|
5874
|
+
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%}");
|
5872
5875
|
}
|
5873
5876
|
|
5874
5877
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5896,7 +5899,7 @@ function create_default_slot$4(ctx) {
|
|
5896
5899
|
this.h();
|
5897
5900
|
},
|
5898
5901
|
h() {
|
5899
|
-
attr(img, "class", "image svelte-
|
5902
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5900
5903
|
attr(img, "loading", "lazy");
|
5901
5904
|
attr(img, "width", "auto");
|
5902
5905
|
attr(img, "height", "auto");
|
@@ -5968,7 +5971,7 @@ function create_fragment$p(ctx) {
|
|
5968
5971
|
this.h();
|
5969
5972
|
},
|
5970
5973
|
h() {
|
5971
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5974
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5972
5975
|
},
|
5973
5976
|
m(target, anchor) {
|
5974
5977
|
insert_hydration(target, div, anchor);
|
@@ -5987,7 +5990,7 @@ function create_fragment$p(ctx) {
|
|
5987
5990
|
|
5988
5991
|
button.$set(button_changes);
|
5989
5992
|
|
5990
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5993
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5991
5994
|
attr(div, "class", div_class_value);
|
5992
5995
|
}
|
5993
5996
|
},
|
@@ -6059,7 +6062,7 @@ class ImageElement extends SvelteComponent {
|
|
6059
6062
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
6060
6063
|
|
6061
6064
|
function add_css$n(target) {
|
6062
|
-
append_styles(target, "svelte-
|
6065
|
+
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}");
|
6063
6066
|
}
|
6064
6067
|
|
6065
6068
|
function create_fragment$o(ctx) {
|
@@ -6082,7 +6085,7 @@ function create_fragment$o(ctx) {
|
|
6082
6085
|
this.h();
|
6083
6086
|
},
|
6084
6087
|
h() {
|
6085
|
-
attr(div, "class", "list svelte-
|
6088
|
+
attr(div, "class", "list svelte-aquv6z");
|
6086
6089
|
attr(div, "style", /*style*/ ctx[0]);
|
6087
6090
|
},
|
6088
6091
|
m(target, anchor) {
|
@@ -6216,7 +6219,7 @@ class List extends SvelteComponent {
|
|
6216
6219
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6217
6220
|
|
6218
6221
|
function add_css$m(target) {
|
6219
|
-
append_styles(target, "svelte-
|
6222
|
+
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}");
|
6220
6223
|
}
|
6221
6224
|
|
6222
6225
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6299,7 +6302,7 @@ function create_fragment$n(ctx) {
|
|
6299
6302
|
this.h();
|
6300
6303
|
},
|
6301
6304
|
h() {
|
6302
|
-
attr(div, "class", "list-item svelte-
|
6305
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
6303
6306
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6304
6307
|
},
|
6305
6308
|
m(target, anchor) {
|
@@ -6425,7 +6428,7 @@ class ListItem extends SvelteComponent {
|
|
6425
6428
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6426
6429
|
|
6427
6430
|
function add_css$l(target) {
|
6428
|
-
append_styles(target, "svelte-
|
6431
|
+
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}");
|
6429
6432
|
}
|
6430
6433
|
|
6431
6434
|
function create_fragment$m(ctx) {
|
@@ -6443,7 +6446,7 @@ function create_fragment$m(ctx) {
|
|
6443
6446
|
this.h();
|
6444
6447
|
},
|
6445
6448
|
h() {
|
6446
|
-
attr(div, "class", "embed svelte-
|
6449
|
+
attr(div, "class", "embed svelte-wocq4p");
|
6447
6450
|
attr(div, "style", /*_style*/ ctx[1]);
|
6448
6451
|
},
|
6449
6452
|
m(target, anchor) {
|
@@ -6486,7 +6489,7 @@ class EmbedElement extends SvelteComponent {
|
|
6486
6489
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6487
6490
|
|
6488
6491
|
function add_css$k(target) {
|
6489
|
-
append_styles(target, "svelte-
|
6492
|
+
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%}");
|
6490
6493
|
}
|
6491
6494
|
|
6492
6495
|
function create_fragment$l(ctx) {
|
@@ -6509,7 +6512,7 @@ function create_fragment$l(ctx) {
|
|
6509
6512
|
},
|
6510
6513
|
h() {
|
6511
6514
|
attr(div0, "class", "karte-player");
|
6512
|
-
attr(div1, "class", "embed svelte-
|
6515
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6513
6516
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6514
6517
|
},
|
6515
6518
|
m(target, anchor) {
|
@@ -6851,7 +6854,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6851
6854
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6852
6855
|
|
6853
6856
|
function add_css$j(target) {
|
6854
|
-
append_styles(target, "svelte-
|
6857
|
+
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%}");
|
6855
6858
|
}
|
6856
6859
|
|
6857
6860
|
function create_fragment$k(ctx) {
|
@@ -6874,7 +6877,7 @@ function create_fragment$k(ctx) {
|
|
6874
6877
|
},
|
6875
6878
|
h() {
|
6876
6879
|
attr(div0, "class", "karte-player");
|
6877
|
-
attr(div1, "class", "embed svelte-
|
6880
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6878
6881
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6879
6882
|
},
|
6880
6883
|
m(target, anchor) {
|
@@ -7058,7 +7061,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
7058
7061
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
7059
7062
|
|
7060
7063
|
function add_css$i(target) {
|
7061
|
-
append_styles(target, "svelte-
|
7064
|
+
append_styles(target, "svelte-zxvkkc", ".textarea-wrapper.svelte-zxvkkc{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-zxvkkc{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-zxvkkc::placeholder{color:var(--placeholder-color)}.textarea.svelte-zxvkkc:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
|
7062
7065
|
}
|
7063
7066
|
|
7064
7067
|
function create_fragment$j(ctx) {
|
@@ -7088,12 +7091,12 @@ function create_fragment$j(ctx) {
|
|
7088
7091
|
this.h();
|
7089
7092
|
},
|
7090
7093
|
h() {
|
7091
|
-
attr(textarea, "class", "textarea svelte-
|
7094
|
+
attr(textarea, "class", "textarea svelte-zxvkkc");
|
7092
7095
|
textarea.value = /*$value*/ ctx[4];
|
7093
7096
|
textarea.required = /*required*/ ctx[1];
|
7094
7097
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
7095
7098
|
attr(textarea, "style", /*style*/ ctx[3]);
|
7096
|
-
attr(div, "class", "textarea-wrapper svelte-
|
7099
|
+
attr(div, "class", "textarea-wrapper svelte-zxvkkc");
|
7097
7100
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
7098
7101
|
},
|
7099
7102
|
m(target, anchor) {
|
@@ -7245,7 +7248,7 @@ class FormTextarea extends SvelteComponent {
|
|
7245
7248
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
7246
7249
|
|
7247
7250
|
function add_css$h(target) {
|
7248
|
-
append_styles(target, "svelte-
|
7251
|
+
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}");
|
7249
7252
|
}
|
7250
7253
|
|
7251
7254
|
function get_each_context$5(ctx, list, i) {
|
@@ -7302,14 +7305,14 @@ function create_each_block$5(ctx) {
|
|
7302
7305
|
},
|
7303
7306
|
h() {
|
7304
7307
|
attr(input, "type", "radio");
|
7305
|
-
attr(input, "class", "radio-button-input svelte-
|
7308
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
7306
7309
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7307
7310
|
attr(input, "name", /*name*/ ctx[0]);
|
7308
7311
|
input.value = input_value_value = /*option*/ ctx[17];
|
7309
7312
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7310
|
-
attr(span, "class", "radio-button-text svelte-
|
7313
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
7311
7314
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7312
|
-
attr(label, "class", "radio-button svelte-
|
7315
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
7313
7316
|
},
|
7314
7317
|
m(target, anchor) {
|
7315
7318
|
insert_hydration(target, label, anchor);
|
@@ -7388,7 +7391,7 @@ function create_fragment$i(ctx) {
|
|
7388
7391
|
this.h();
|
7389
7392
|
},
|
7390
7393
|
h() {
|
7391
|
-
attr(div, "class", "radio-buttons svelte-
|
7394
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
7392
7395
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7393
7396
|
},
|
7394
7397
|
m(target, anchor) {
|
@@ -7557,7 +7560,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7557
7560
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7558
7561
|
|
7559
7562
|
function add_css$g(target) {
|
7560
|
-
append_styles(target, "svelte-
|
7563
|
+
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}");
|
7561
7564
|
}
|
7562
7565
|
|
7563
7566
|
function get_each_context$4(ctx, list, i) {
|
@@ -7728,10 +7731,10 @@ function create_fragment$h(ctx) {
|
|
7728
7731
|
this.h();
|
7729
7732
|
},
|
7730
7733
|
h() {
|
7731
|
-
attr(select, "class", "select-select svelte-
|
7734
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7732
7735
|
attr(select, "style", /*style*/ ctx[3]);
|
7733
|
-
attr(div0, "class", "select-icon svelte-
|
7734
|
-
attr(div1, "class", "select svelte-
|
7736
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7737
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7735
7738
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7736
7739
|
},
|
7737
7740
|
m(target, anchor) {
|
@@ -7933,7 +7936,7 @@ class FormSelect extends SvelteComponent {
|
|
7933
7936
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7934
7937
|
|
7935
7938
|
function add_css$f(target) {
|
7936
|
-
append_styles(target, "svelte-
|
7939
|
+
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}");
|
7937
7940
|
}
|
7938
7941
|
|
7939
7942
|
function get_each_context$3(ctx, list, i) {
|
@@ -7995,19 +7998,19 @@ function create_each_block$3(ctx) {
|
|
7995
7998
|
this.h();
|
7996
7999
|
},
|
7997
8000
|
h() {
|
7998
|
-
attr(input, "class", "check-box-input svelte-
|
8001
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7999
8002
|
attr(input, "type", "checkbox");
|
8000
8003
|
attr(input, "name", /*name*/ ctx[0]);
|
8001
8004
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
8002
|
-
attr(span0, "class", "check-box-icon svelte-
|
8005
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
8003
8006
|
|
8004
8007
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8005
8008
|
? ' _checked'
|
8006
|
-
: ''}`) + " svelte-
|
8009
|
+
: ''}`) + " svelte-1p65cg8"));
|
8007
8010
|
|
8008
|
-
attr(span2, "class", "check-box-text svelte-
|
8011
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
8009
8012
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
8010
|
-
attr(label, "class", "check-box svelte-
|
8013
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
8011
8014
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
8012
8015
|
},
|
8013
8016
|
m(target, anchor) {
|
@@ -8039,7 +8042,7 @@ function create_each_block$3(ctx) {
|
|
8039
8042
|
|
8040
8043
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8041
8044
|
? ' _checked'
|
8042
|
-
: ''}`) + " svelte-
|
8045
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
8043
8046
|
attr(span1, "class", span1_class_value);
|
8044
8047
|
}
|
8045
8048
|
|
@@ -8092,7 +8095,7 @@ function create_fragment$g(ctx) {
|
|
8092
8095
|
this.h();
|
8093
8096
|
},
|
8094
8097
|
h() {
|
8095
|
-
attr(div, "class", "check-boxes svelte-
|
8098
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
8096
8099
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
8097
8100
|
},
|
8098
8101
|
m(target, anchor) {
|
@@ -8267,7 +8270,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
8267
8270
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
8268
8271
|
|
8269
8272
|
function add_css$e(target) {
|
8270
|
-
append_styles(target, "svelte-
|
8273
|
+
append_styles(target, "svelte-1iqf36p", ".rating-buttons.svelte-1iqf36p{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1iqf36p{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
|
8271
8274
|
}
|
8272
8275
|
|
8273
8276
|
function get_each_context$2(ctx, list, i) {
|
@@ -8302,7 +8305,7 @@ function create_each_block$2(ctx) {
|
|
8302
8305
|
this.h();
|
8303
8306
|
},
|
8304
8307
|
h() {
|
8305
|
-
attr(button, "class", "rating-button svelte-
|
8308
|
+
attr(button, "class", "rating-button svelte-1iqf36p");
|
8306
8309
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
8307
8310
|
},
|
8308
8311
|
m(target, anchor) {
|
@@ -8365,7 +8368,7 @@ function create_fragment$f(ctx) {
|
|
8365
8368
|
this.h();
|
8366
8369
|
},
|
8367
8370
|
h() {
|
8368
|
-
attr(div, "class", "rating-buttons svelte-
|
8371
|
+
attr(div, "class", "rating-buttons svelte-1iqf36p");
|
8369
8372
|
},
|
8370
8373
|
m(target, anchor) {
|
8371
8374
|
insert_hydration(target, div, anchor);
|
@@ -8509,7 +8512,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8509
8512
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8510
8513
|
|
8511
8514
|
function add_css$d(target) {
|
8512
|
-
append_styles(target, "svelte-
|
8515
|
+
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%)}");
|
8513
8516
|
}
|
8514
8517
|
|
8515
8518
|
function get_each_context$1(ctx, list, i) {
|
@@ -8545,9 +8548,9 @@ function create_each_block$1(ctx) {
|
|
8545
8548
|
},
|
8546
8549
|
h() {
|
8547
8550
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8548
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8551
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
8549
8552
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8550
|
-
attr(button, "class", "rating-button svelte-
|
8553
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
8551
8554
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8552
8555
|
},
|
8553
8556
|
m(target, anchor) {
|
@@ -8563,7 +8566,7 @@ function create_each_block$1(ctx) {
|
|
8563
8566
|
p(new_ctx, dirty) {
|
8564
8567
|
ctx = new_ctx;
|
8565
8568
|
|
8566
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8569
|
+
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"))) {
|
8567
8570
|
attr(img, "class", img_class_value);
|
8568
8571
|
}
|
8569
8572
|
|
@@ -8610,7 +8613,7 @@ function create_fragment$e(ctx) {
|
|
8610
8613
|
this.h();
|
8611
8614
|
},
|
8612
8615
|
h() {
|
8613
|
-
attr(div, "class", "rating-buttons svelte-
|
8616
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
8614
8617
|
},
|
8615
8618
|
m(target, anchor) {
|
8616
8619
|
insert_hydration(target, div, anchor);
|
@@ -8718,7 +8721,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8718
8721
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8719
8722
|
|
8720
8723
|
function add_css$c(target) {
|
8721
|
-
append_styles(target, "svelte-
|
8724
|
+
append_styles(target, "svelte-h8fqwx", ".input-wrapper.svelte-h8fqwx{display:flex;align-items:center;width:100%;height:100%}.input.svelte-h8fqwx{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-h8fqwx::placeholder{color:var(--placeholder-color)}.input.svelte-h8fqwx:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-h8fqwx{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
|
8722
8725
|
}
|
8723
8726
|
|
8724
8727
|
function create_fragment$d(ctx) {
|
@@ -8749,13 +8752,13 @@ function create_fragment$d(ctx) {
|
|
8749
8752
|
this.h();
|
8750
8753
|
},
|
8751
8754
|
h() {
|
8752
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8755
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
|
8753
8756
|
attr(input, "type", "text");
|
8754
8757
|
input.value = /*$value*/ ctx[2];
|
8755
8758
|
input.required = /*required*/ ctx[0];
|
8756
8759
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8757
8760
|
attr(input, "style", /*style*/ ctx[5]);
|
8758
|
-
attr(div, "class", "input-wrapper svelte-
|
8761
|
+
attr(div, "class", "input-wrapper svelte-h8fqwx");
|
8759
8762
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8760
8763
|
},
|
8761
8764
|
m(target, anchor) {
|
@@ -8768,7 +8771,7 @@ function create_fragment$d(ctx) {
|
|
8768
8771
|
}
|
8769
8772
|
},
|
8770
8773
|
p(ctx, [dirty]) {
|
8771
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8774
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
|
8772
8775
|
attr(input, "class", input_class_value);
|
8773
8776
|
}
|
8774
8777
|
|
@@ -8956,7 +8959,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8956
8959
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8957
8960
|
|
8958
8961
|
function add_css$b(target) {
|
8959
|
-
append_styles(target, "svelte-
|
8962
|
+
append_styles(target, "svelte-8zbmyo", ".radio-buttons.svelte-8zbmyo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-8zbmyo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-8zbmyo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-8zbmyo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-8zbmyo{margin-left:0.5em}");
|
8960
8963
|
}
|
8961
8964
|
|
8962
8965
|
function create_fragment$c(ctx) {
|
@@ -9022,20 +9025,20 @@ function create_fragment$c(ctx) {
|
|
9022
9025
|
},
|
9023
9026
|
h() {
|
9024
9027
|
attr(input0, "type", "radio");
|
9025
|
-
attr(input0, "class", "radio-button-input svelte-
|
9028
|
+
attr(input0, "class", "radio-button-input svelte-8zbmyo");
|
9026
9029
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
9027
9030
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
9028
|
-
attr(span0, "class", "radio-button-text svelte-
|
9031
|
+
attr(span0, "class", "radio-button-text svelte-8zbmyo");
|
9029
9032
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9030
|
-
attr(label0, "class", "radio-button svelte-
|
9033
|
+
attr(label0, "class", "radio-button svelte-8zbmyo");
|
9031
9034
|
attr(input1, "type", "radio");
|
9032
|
-
attr(input1, "class", "radio-button-input svelte-
|
9035
|
+
attr(input1, "class", "radio-button-input svelte-8zbmyo");
|
9033
9036
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
9034
9037
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
9035
|
-
attr(span1, "class", "radio-button-text svelte-
|
9038
|
+
attr(span1, "class", "radio-button-text svelte-8zbmyo");
|
9036
9039
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9037
|
-
attr(label1, "class", "radio-button svelte-
|
9038
|
-
attr(div, "class", "radio-buttons svelte-
|
9040
|
+
attr(label1, "class", "radio-button svelte-8zbmyo");
|
9041
|
+
attr(div, "class", "radio-buttons svelte-8zbmyo");
|
9039
9042
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
9040
9043
|
},
|
9041
9044
|
m(target, anchor) {
|
@@ -9203,7 +9206,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
9203
9206
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
9204
9207
|
|
9205
9208
|
function add_css$a(target) {
|
9206
|
-
append_styles(target, "svelte-
|
9209
|
+
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%}");
|
9207
9210
|
}
|
9208
9211
|
|
9209
9212
|
function get_each_context(ctx, list, i) {
|
@@ -9249,9 +9252,9 @@ function create_if_block_1(ctx) {
|
|
9249
9252
|
attr(svg, "viewBox", "0 0 10 16");
|
9250
9253
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9251
9254
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
9252
|
-
attr(button, "class", "move-button svelte-
|
9255
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9253
9256
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
9254
|
-
attr(div, "class", "prev-button-container svelte-
|
9257
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
9255
9258
|
},
|
9256
9259
|
m(target, anchor) {
|
9257
9260
|
insert_hydration(target, div, anchor);
|
@@ -9317,9 +9320,9 @@ function create_if_block$1(ctx) {
|
|
9317
9320
|
attr(svg, "viewBox", "0 0 10 16");
|
9318
9321
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9319
9322
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
9320
|
-
attr(button, "class", "move-button svelte-
|
9323
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9321
9324
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
9322
|
-
attr(div, "class", "next-button-container svelte-
|
9325
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
9323
9326
|
},
|
9324
9327
|
m(target, anchor) {
|
9325
9328
|
insert_hydration(target, div, anchor);
|
@@ -9379,9 +9382,9 @@ function create_each_block(ctx) {
|
|
9379
9382
|
this.h();
|
9380
9383
|
},
|
9381
9384
|
h() {
|
9382
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
9385
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
9383
9386
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
9384
|
-
attr(button, "class", "navigation-item svelte-
|
9387
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
9385
9388
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
9386
9389
|
},
|
9387
9390
|
m(target, anchor) {
|
@@ -9487,14 +9490,14 @@ function create_fragment$b(ctx) {
|
|
9487
9490
|
this.h();
|
9488
9491
|
},
|
9489
9492
|
h() {
|
9490
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9493
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
9491
9494
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
9492
|
-
attr(div1, "class", "container svelte-
|
9495
|
+
attr(div1, "class", "container svelte-ji1fh");
|
9493
9496
|
attr(div1, "style", /*_style*/ ctx[0]);
|
9494
|
-
attr(div2, "class", "navigation svelte-
|
9497
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
9495
9498
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
9496
9499
|
set_attributes(div3, div3_data);
|
9497
|
-
toggle_class(div3, "svelte-
|
9500
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9498
9501
|
},
|
9499
9502
|
m(target, anchor) {
|
9500
9503
|
insert_hydration(target, div3, anchor);
|
@@ -9536,7 +9539,7 @@ function create_fragment$b(ctx) {
|
|
9536
9539
|
}
|
9537
9540
|
}
|
9538
9541
|
|
9539
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9542
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
9540
9543
|
attr(div0, "class", div0_class_value);
|
9541
9544
|
}
|
9542
9545
|
|
@@ -9602,7 +9605,7 @@ function create_fragment$b(ctx) {
|
|
9602
9605
|
}
|
9603
9606
|
|
9604
9607
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9605
|
-
toggle_class(div3, "svelte-
|
9608
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9606
9609
|
},
|
9607
9610
|
i(local) {
|
9608
9611
|
if (current) return;
|
@@ -10114,7 +10117,7 @@ class Slide extends SvelteComponent {
|
|
10114
10117
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
10115
10118
|
|
10116
10119
|
function add_css$9(target) {
|
10117
|
-
append_styles(target, "svelte-
|
10120
|
+
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}");
|
10118
10121
|
}
|
10119
10122
|
|
10120
10123
|
function create_fragment$a(ctx) {
|
@@ -10142,9 +10145,9 @@ function create_fragment$a(ctx) {
|
|
10142
10145
|
this.h();
|
10143
10146
|
},
|
10144
10147
|
h() {
|
10145
|
-
attr(div0, "class", "item-inner svelte-
|
10148
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
10146
10149
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10147
|
-
attr(div1, "class", "item svelte-
|
10150
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
10148
10151
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
10149
10152
|
},
|
10150
10153
|
m(target, anchor) {
|
@@ -10270,7 +10273,7 @@ class SlideItem extends SvelteComponent {
|
|
10270
10273
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
10271
10274
|
|
10272
10275
|
function add_css$8(target) {
|
10273
|
-
append_styles(target, "svelte-
|
10276
|
+
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}");
|
10274
10277
|
}
|
10275
10278
|
|
10276
10279
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -10301,9 +10304,9 @@ function create_fragment$9(ctx) {
|
|
10301
10304
|
this.h();
|
10302
10305
|
},
|
10303
10306
|
h() {
|
10304
|
-
attr(div0, "class", "countdown-inner svelte-
|
10307
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
10305
10308
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10306
|
-
attr(div1, "class", "countdown svelte-
|
10309
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
10307
10310
|
},
|
10308
10311
|
m(target, anchor) {
|
10309
10312
|
insert_hydration(target, div1, anchor);
|
@@ -10433,7 +10436,7 @@ class Countdown extends SvelteComponent {
|
|
10433
10436
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
10434
10437
|
|
10435
10438
|
function add_css$7(target) {
|
10436
|
-
append_styles(target, "svelte-
|
10439
|
+
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}");
|
10437
10440
|
}
|
10438
10441
|
|
10439
10442
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -10516,7 +10519,7 @@ function create_fragment$8(ctx) {
|
|
10516
10519
|
this.h();
|
10517
10520
|
},
|
10518
10521
|
h() {
|
10519
|
-
attr(div, "class", "box svelte-
|
10522
|
+
attr(div, "class", "box svelte-1ccydfy");
|
10520
10523
|
},
|
10521
10524
|
m(target, anchor) {
|
10522
10525
|
insert_hydration(target, div, anchor);
|
@@ -10577,7 +10580,7 @@ class Box extends SvelteComponent {
|
|
10577
10580
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
10578
10581
|
|
10579
10582
|
function add_css$6(target) {
|
10580
|
-
append_styles(target, "svelte-
|
10583
|
+
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)}");
|
10581
10584
|
}
|
10582
10585
|
|
10583
10586
|
// (56:4) {#if svg}
|
@@ -10681,7 +10684,7 @@ function create_fragment$7(ctx) {
|
|
10681
10684
|
this.h();
|
10682
10685
|
},
|
10683
10686
|
h() {
|
10684
|
-
attr(div, "class", "icon svelte-
|
10687
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
10685
10688
|
},
|
10686
10689
|
m(target, anchor) {
|
10687
10690
|
insert_hydration(target, div, anchor);
|
@@ -10790,7 +10793,7 @@ class IconElement extends SvelteComponent {
|
|
10790
10793
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10791
10794
|
|
10792
10795
|
function add_css$5(target) {
|
10793
|
-
append_styles(target, "svelte-
|
10796
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10794
10797
|
}
|
10795
10798
|
|
10796
10799
|
function create_fragment$6(ctx) {
|
@@ -10826,7 +10829,7 @@ function create_fragment$6(ctx) {
|
|
10826
10829
|
this.h();
|
10827
10830
|
},
|
10828
10831
|
h() {
|
10829
|
-
attr(div, "class", "codeElement svelte-
|
10832
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
10830
10833
|
attr(div, "style", /*style*/ ctx[3]);
|
10831
10834
|
},
|
10832
10835
|
m(target, anchor) {
|
@@ -10915,7 +10918,7 @@ class CodeElement extends SvelteComponent {
|
|
10915
10918
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10916
10919
|
|
10917
10920
|
function add_css$4(target) {
|
10918
|
-
append_styles(target, "svelte-
|
10921
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
10919
10922
|
}
|
10920
10923
|
|
10921
10924
|
function create_fragment$5(ctx) {
|
@@ -10939,7 +10942,7 @@ function create_fragment$5(ctx) {
|
|
10939
10942
|
this.h();
|
10940
10943
|
},
|
10941
10944
|
h() {
|
10942
|
-
attr(div, "class", "flex svelte-
|
10945
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
10943
10946
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10944
10947
|
},
|
10945
10948
|
m(target, anchor) {
|
@@ -11036,7 +11039,7 @@ class Flex extends SvelteComponent {
|
|
11036
11039
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
11037
11040
|
|
11038
11041
|
function add_css$3(target) {
|
11039
|
-
append_styles(target, "svelte-
|
11042
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
11040
11043
|
}
|
11041
11044
|
|
11042
11045
|
function create_fragment$4(ctx) {
|
@@ -11059,7 +11062,7 @@ function create_fragment$4(ctx) {
|
|
11059
11062
|
this.h();
|
11060
11063
|
},
|
11061
11064
|
h() {
|
11062
|
-
attr(div, "class", "flex-item svelte-
|
11065
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
11063
11066
|
attr(div, "style", /*style*/ ctx[0]);
|
11064
11067
|
},
|
11065
11068
|
m(target, anchor) {
|
@@ -11479,7 +11482,7 @@ class GridModalState extends SvelteComponent {
|
|
11479
11482
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
11480
11483
|
|
11481
11484
|
function add_css$2(target) {
|
11482
|
-
append_styles(target, "svelte-
|
11485
|
+
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%}");
|
11483
11486
|
}
|
11484
11487
|
|
11485
11488
|
function create_fragment$2(ctx) {
|
@@ -11508,8 +11511,8 @@ function create_fragment$2(ctx) {
|
|
11508
11511
|
this.h();
|
11509
11512
|
},
|
11510
11513
|
h() {
|
11511
|
-
attr(div0, "class", "text-block-inner svelte-
|
11512
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11514
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
11515
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
11513
11516
|
attr(div1, "style", /*style*/ ctx[2]);
|
11514
11517
|
},
|
11515
11518
|
m(target, anchor) {
|
@@ -11523,7 +11526,7 @@ function create_fragment$2(ctx) {
|
|
11523
11526
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
11524
11527
|
rendertext.$set(rendertext_changes);
|
11525
11528
|
|
11526
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11529
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
11527
11530
|
attr(div1, "class", div1_class_value);
|
11528
11531
|
}
|
11529
11532
|
|
@@ -11601,7 +11604,7 @@ class TextBlock extends SvelteComponent {
|
|
11601
11604
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
11602
11605
|
|
11603
11606
|
function add_css$1(target) {
|
11604
|
-
append_styles(target, "svelte-
|
11607
|
+
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)}");
|
11605
11608
|
}
|
11606
11609
|
|
11607
11610
|
function create_fragment$1(ctx) {
|
@@ -11631,9 +11634,9 @@ function create_fragment$1(ctx) {
|
|
11631
11634
|
this.h();
|
11632
11635
|
},
|
11633
11636
|
h() {
|
11634
|
-
attr(button, "class", "text-button svelte-
|
11637
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
11635
11638
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
11636
|
-
attr(div, "class", "text-button-block svelte-
|
11639
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
11637
11640
|
attr(div, "style", /*_style*/ ctx[2]);
|
11638
11641
|
},
|
11639
11642
|
m(target, anchor) {
|
@@ -11739,7 +11742,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11739
11742
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11740
11743
|
|
11741
11744
|
function add_css(target) {
|
11742
|
-
append_styles(target, "svelte-
|
11745
|
+
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)}");
|
11743
11746
|
}
|
11744
11747
|
|
11745
11748
|
function create_fragment(ctx) {
|
@@ -11775,14 +11778,14 @@ function create_fragment(ctx) {
|
|
11775
11778
|
this.h();
|
11776
11779
|
},
|
11777
11780
|
h() {
|
11778
|
-
attr(img, "class", "image svelte-
|
11781
|
+
attr(img, "class", "image svelte-1pdw891");
|
11779
11782
|
attr(img, "loading", "lazy");
|
11780
11783
|
attr(img, "width", "auto");
|
11781
11784
|
attr(img, "height", "auto");
|
11782
11785
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11783
11786
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11784
11787
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11785
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11788
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
11786
11789
|
attr(div, "style", /*_style*/ ctx[5]);
|
11787
11790
|
},
|
11788
11791
|
m(target, anchor) {
|
@@ -11807,7 +11810,7 @@ function create_fragment(ctx) {
|
|
11807
11810
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11808
11811
|
}
|
11809
11812
|
|
11810
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11813
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
11811
11814
|
attr(div, "class", div_class_value);
|
11812
11815
|
}
|
11813
11816
|
|