@plaidev/karte-action-sdk 1.1.197 → 1.1.198-28170852.9d9fb983
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hydrate/index.es.d.ts +3 -1
- package/dist/hydrate/index.es.js +124 -115
- package/dist/index.es.d.ts +3 -1
- package/dist/index.es.js +124 -116
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -1369,13 +1369,11 @@ const loadActionTableQuery = async (config, api_key, endpoint) => {
|
|
1369
1369
|
/** @internal */
|
1370
1370
|
const loadActionTable = async (config, api_key, endpoint) => {
|
1371
1371
|
console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
|
1372
|
-
console.log("load action table", config);
|
1373
1372
|
const results = await Promise.all(config
|
1374
1373
|
.filter(c => c.resolver === 'action-table-row' ||
|
1375
1374
|
c.resolver === 'action-table-rows' ||
|
1376
1375
|
c.resolver === 'action-table-query')
|
1377
1376
|
.map(async (c) => {
|
1378
|
-
console.log("loadActionTable");
|
1379
1377
|
if (c.resolver === 'action-table-row') {
|
1380
1378
|
return await loadActionTableRow(c, api_key, endpoint);
|
1381
1379
|
}
|
@@ -1386,7 +1384,6 @@ const loadActionTable = async (config, api_key, endpoint) => {
|
|
1386
1384
|
return await loadActionTableQuery(c, api_key, endpoint);
|
1387
1385
|
}
|
1388
1386
|
}));
|
1389
|
-
console.log("results", results);
|
1390
1387
|
return config.reduce((acc, c, i) => {
|
1391
1388
|
const value = results[i] ?? c.query.default_value;
|
1392
1389
|
if (value) {
|
@@ -1407,6 +1404,17 @@ async function setupActionTable(localVariablesQuery, apiKey) {
|
|
1407
1404
|
success,
|
1408
1405
|
};
|
1409
1406
|
}
|
1407
|
+
/** @internal */
|
1408
|
+
function initActionTable(localVariablesQuery) {
|
1409
|
+
const initValues = {
|
1410
|
+
// default values
|
1411
|
+
action_table: [],
|
1412
|
+
};
|
1413
|
+
localVariablesQuery?.forEach((query) => {
|
1414
|
+
initValues[query.name] = [];
|
1415
|
+
});
|
1416
|
+
setVariables(initValues);
|
1417
|
+
}
|
1410
1418
|
|
1411
1419
|
/**
|
1412
1420
|
* モーダル(ポップアップ)に関連するコードの管理
|
@@ -1600,7 +1608,6 @@ function createModal(App, options = {
|
|
1600
1608
|
context: { api_key: '' },
|
1601
1609
|
}) {
|
1602
1610
|
let app = null;
|
1603
|
-
console.log("start modal");
|
1604
1611
|
const data = {
|
1605
1612
|
...options.props,
|
1606
1613
|
...options.variables,
|
@@ -1729,6 +1736,7 @@ function createModal(App, options = {
|
|
1729
1736
|
// ここからメインの処理
|
1730
1737
|
initialize({ send: options.send, initialState: data.initial_state });
|
1731
1738
|
// ActionTable APIへの非同期リクエスト
|
1739
|
+
initActionTable(options.localVariablesQuery);
|
1732
1740
|
let actionTablePromise = null;
|
1733
1741
|
if (options.localVariablesQuery && data.api_key) {
|
1734
1742
|
actionTablePromise = setupActionTable(options.localVariablesQuery, data.api_key);
|
@@ -2592,7 +2600,7 @@ class State extends SvelteComponent {
|
|
2592
2600
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2593
2601
|
|
2594
2602
|
function add_css$t(target) {
|
2595
|
-
append_styles(target, "svelte-
|
2603
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2596
2604
|
}
|
2597
2605
|
|
2598
2606
|
// (23:0) {#if $state === path}
|
@@ -2609,7 +2617,7 @@ function create_if_block$8(ctx) {
|
|
2609
2617
|
t = space();
|
2610
2618
|
if (default_slot) default_slot.c();
|
2611
2619
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
2612
|
-
attr(div, "class", "state-item svelte-
|
2620
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
2613
2621
|
},
|
2614
2622
|
m(target, anchor) {
|
2615
2623
|
insert(target, div, anchor);
|
@@ -3011,7 +3019,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3011
3019
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3012
3020
|
|
3013
3021
|
function add_css$s(target) {
|
3014
|
-
append_styles(target, "svelte-
|
3022
|
+
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}");
|
3015
3023
|
}
|
3016
3024
|
|
3017
3025
|
// (9:0) {#if backgroundOverlay}
|
@@ -3023,7 +3031,7 @@ function create_if_block$7(ctx) {
|
|
3023
3031
|
return {
|
3024
3032
|
c() {
|
3025
3033
|
div = element("div");
|
3026
|
-
attr(div, "class", "background svelte-
|
3034
|
+
attr(div, "class", "background svelte-1d4fta");
|
3027
3035
|
},
|
3028
3036
|
m(target, anchor) {
|
3029
3037
|
insert(target, div, anchor);
|
@@ -3134,7 +3142,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3134
3142
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3135
3143
|
|
3136
3144
|
function add_css$r(target) {
|
3137
|
-
append_styles(target, "svelte-
|
3145
|
+
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}");
|
3138
3146
|
}
|
3139
3147
|
|
3140
3148
|
// (50:0) {:else}
|
@@ -3163,7 +3171,7 @@ function create_else_block$3(ctx) {
|
|
3163
3171
|
button = element("button");
|
3164
3172
|
if (default_slot) default_slot.c();
|
3165
3173
|
set_attributes(button, button_data);
|
3166
|
-
toggle_class(button, "svelte-
|
3174
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3167
3175
|
},
|
3168
3176
|
m(target, anchor) {
|
3169
3177
|
insert(target, button, anchor);
|
@@ -3202,7 +3210,7 @@ function create_else_block$3(ctx) {
|
|
3202
3210
|
dataAttrStopPropagation('click')
|
3203
3211
|
]));
|
3204
3212
|
|
3205
|
-
toggle_class(button, "svelte-
|
3213
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3206
3214
|
},
|
3207
3215
|
i(local) {
|
3208
3216
|
if (current) return;
|
@@ -3233,7 +3241,7 @@ function create_if_block_2(ctx) {
|
|
3233
3241
|
c() {
|
3234
3242
|
div = element("div");
|
3235
3243
|
if (default_slot) default_slot.c();
|
3236
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3244
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
|
3237
3245
|
attr(div, "style", /*style*/ ctx[1]);
|
3238
3246
|
},
|
3239
3247
|
m(target, anchor) {
|
@@ -3317,7 +3325,7 @@ function create_if_block_1$2(ctx) {
|
|
3317
3325
|
a = element("a");
|
3318
3326
|
if (default_slot) default_slot.c();
|
3319
3327
|
set_attributes(a, a_data);
|
3320
|
-
toggle_class(a, "svelte-
|
3328
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3321
3329
|
},
|
3322
3330
|
m(target, anchor) {
|
3323
3331
|
insert(target, a, anchor);
|
@@ -3359,7 +3367,7 @@ function create_if_block_1$2(ctx) {
|
|
3359
3367
|
dataAttrStopPropagation('click')
|
3360
3368
|
]));
|
3361
3369
|
|
3362
|
-
toggle_class(a, "svelte-
|
3370
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3363
3371
|
},
|
3364
3372
|
i(local) {
|
3365
3373
|
if (current) return;
|
@@ -3390,7 +3398,7 @@ function create_if_block$6(ctx) {
|
|
3390
3398
|
c() {
|
3391
3399
|
div = element("div");
|
3392
3400
|
if (default_slot) default_slot.c();
|
3393
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3401
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
|
3394
3402
|
attr(div, "style", /*style*/ ctx[1]);
|
3395
3403
|
},
|
3396
3404
|
m(target, anchor) {
|
@@ -3594,7 +3602,7 @@ class Button extends SvelteComponent {
|
|
3594
3602
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3595
3603
|
|
3596
3604
|
function add_css$q(target) {
|
3597
|
-
append_styles(target, "svelte-
|
3605
|
+
append_styles(target, "svelte-yvwr7u", ".modal.svelte-yvwr7u{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-yvwr7u > .button{flex:auto;display:flex}.close.svelte-yvwr7u{position:absolute;top:0;right:0}.close.svelte-yvwr7u > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-yvwr7u > .button:hover{transform:rotate(90deg)}.modal-content.svelte-yvwr7u{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
3598
3606
|
}
|
3599
3607
|
|
3600
3608
|
// (145:0) {#if visible}
|
@@ -3619,7 +3627,7 @@ function create_if_block$5(ctx) {
|
|
3619
3627
|
c() {
|
3620
3628
|
div = element("div");
|
3621
3629
|
create_component(button.$$.fragment);
|
3622
|
-
attr(div, "class", "modal svelte-
|
3630
|
+
attr(div, "class", "modal svelte-yvwr7u");
|
3623
3631
|
attr(div, "role", "dialog");
|
3624
3632
|
attr(div, "aria-modal", "true");
|
3625
3633
|
attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
|
@@ -3697,7 +3705,7 @@ function create_if_block_1$1(ctx) {
|
|
3697
3705
|
c() {
|
3698
3706
|
div = element("div");
|
3699
3707
|
create_component(button.$$.fragment);
|
3700
|
-
attr(div, "class", "close svelte-
|
3708
|
+
attr(div, "class", "close svelte-yvwr7u");
|
3701
3709
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
|
3702
3710
|
},
|
3703
3711
|
m(target, anchor) {
|
@@ -3786,7 +3794,7 @@ function create_default_slot$6(ctx) {
|
|
3786
3794
|
t = space();
|
3787
3795
|
div = element("div");
|
3788
3796
|
if (default_slot) default_slot.c();
|
3789
|
-
attr(div, "class", "modal-content svelte-
|
3797
|
+
attr(div, "class", "modal-content svelte-yvwr7u");
|
3790
3798
|
attr(div, "style", /*_style*/ ctx[4]);
|
3791
3799
|
},
|
3792
3800
|
m(target, anchor) {
|
@@ -4277,7 +4285,7 @@ class Grid extends SvelteComponent {
|
|
4277
4285
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4278
4286
|
|
4279
4287
|
function add_css$p(target) {
|
4280
|
-
append_styles(target, "svelte-
|
4288
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4281
4289
|
}
|
4282
4290
|
|
4283
4291
|
function create_fragment$r(ctx) {
|
@@ -4292,8 +4300,8 @@ function create_fragment$r(ctx) {
|
|
4292
4300
|
div1 = element("div");
|
4293
4301
|
div0 = element("div");
|
4294
4302
|
if (default_slot) default_slot.c();
|
4295
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4296
|
-
attr(div1, "class", "grid-item svelte-
|
4303
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4304
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4297
4305
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4298
4306
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4299
4307
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -4598,7 +4606,7 @@ class RenderText extends SvelteComponent {
|
|
4598
4606
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
4599
4607
|
|
4600
4608
|
function add_css$o(target) {
|
4601
|
-
append_styles(target, "svelte-
|
4609
|
+
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}");
|
4602
4610
|
}
|
4603
4611
|
|
4604
4612
|
// (93:2) {:else}
|
@@ -4615,8 +4623,8 @@ function create_else_block$1(ctx) {
|
|
4615
4623
|
div1 = element("div");
|
4616
4624
|
div0 = element("div");
|
4617
4625
|
create_component(rendertext.$$.fragment);
|
4618
|
-
attr(div0, "class", "text-element-inner svelte-
|
4619
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4626
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4627
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4620
4628
|
attr(div1, "style", /*style*/ ctx[5]);
|
4621
4629
|
},
|
4622
4630
|
m(target, anchor) {
|
@@ -4630,7 +4638,7 @@ function create_else_block$1(ctx) {
|
|
4630
4638
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4631
4639
|
rendertext.$set(rendertext_changes);
|
4632
4640
|
|
4633
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4641
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
4634
4642
|
attr(div1, "class", div1_class_value);
|
4635
4643
|
}
|
4636
4644
|
|
@@ -4680,12 +4688,12 @@ function create_if_block$3(ctx) {
|
|
4680
4688
|
t2 = space();
|
4681
4689
|
div2 = element("div");
|
4682
4690
|
div2.textContent = "コピーできませんでした";
|
4683
|
-
attr(div0, "class", "text-element-inner svelte-
|
4691
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4684
4692
|
attr(a, "href", '');
|
4685
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4693
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4686
4694
|
attr(a, "style", /*style*/ ctx[5]);
|
4687
|
-
attr(div1, "class", "tooltip svelte-
|
4688
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
4695
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
4696
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
4689
4697
|
},
|
4690
4698
|
m(target, anchor) {
|
4691
4699
|
insert(target, a, anchor);
|
@@ -4709,7 +4717,7 @@ function create_if_block$3(ctx) {
|
|
4709
4717
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4710
4718
|
rendertext.$set(rendertext_changes);
|
4711
4719
|
|
4712
|
-
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-
|
4720
|
+
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"))) {
|
4713
4721
|
attr(a, "class", a_class_value);
|
4714
4722
|
}
|
4715
4723
|
|
@@ -4761,7 +4769,7 @@ function create_fragment$p(ctx) {
|
|
4761
4769
|
c() {
|
4762
4770
|
div = element("div");
|
4763
4771
|
if_block.c();
|
4764
|
-
attr(div, "class", "text-element-wrapper svelte-
|
4772
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
4765
4773
|
},
|
4766
4774
|
m(target, anchor) {
|
4767
4775
|
insert(target, div, anchor);
|
@@ -4926,7 +4934,7 @@ class TextElement extends SvelteComponent {
|
|
4926
4934
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
4927
4935
|
|
4928
4936
|
function add_css$n(target) {
|
4929
|
-
append_styles(target, "svelte-
|
4937
|
+
append_styles(target, "svelte-3hgcnq", ".text-button-element.svelte-3hgcnq{width:100%;height:100%}.text-button-element.svelte-3hgcnq > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#000000;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-3hgcnq > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-3hgcnq > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-3hgcnq > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
4930
4938
|
}
|
4931
4939
|
|
4932
4940
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -4982,7 +4990,7 @@ function create_fragment$o(ctx) {
|
|
4982
4990
|
c() {
|
4983
4991
|
div = element("div");
|
4984
4992
|
create_component(button.$$.fragment);
|
4985
|
-
attr(div, "class", "text-button-element svelte-
|
4993
|
+
attr(div, "class", "text-button-element svelte-3hgcnq");
|
4986
4994
|
},
|
4987
4995
|
m(target, anchor) {
|
4988
4996
|
insert(target, div, anchor);
|
@@ -5074,7 +5082,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5074
5082
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5075
5083
|
|
5076
5084
|
function add_css$m(target) {
|
5077
|
-
append_styles(target, "svelte-
|
5085
|
+
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%}");
|
5078
5086
|
}
|
5079
5087
|
|
5080
5088
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5086,7 +5094,7 @@ function create_default_slot$4(ctx) {
|
|
5086
5094
|
return {
|
5087
5095
|
c() {
|
5088
5096
|
img = element("img");
|
5089
|
-
attr(img, "class", "image svelte-
|
5097
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5090
5098
|
attr(img, "loading", "lazy");
|
5091
5099
|
attr(img, "width", "auto");
|
5092
5100
|
attr(img, "height", "auto");
|
@@ -5136,7 +5144,7 @@ function create_fragment$n(ctx) {
|
|
5136
5144
|
c() {
|
5137
5145
|
div = element("div");
|
5138
5146
|
create_component(button.$$.fragment);
|
5139
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5147
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5140
5148
|
},
|
5141
5149
|
m(target, anchor) {
|
5142
5150
|
insert(target, div, anchor);
|
@@ -5155,7 +5163,7 @@ function create_fragment$n(ctx) {
|
|
5155
5163
|
|
5156
5164
|
button.$set(button_changes);
|
5157
5165
|
|
5158
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5166
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5159
5167
|
attr(div, "class", div_class_value);
|
5160
5168
|
}
|
5161
5169
|
},
|
@@ -5227,7 +5235,7 @@ class ImageElement extends SvelteComponent {
|
|
5227
5235
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5228
5236
|
|
5229
5237
|
function add_css$l(target) {
|
5230
|
-
append_styles(target, "svelte-
|
5238
|
+
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}");
|
5231
5239
|
}
|
5232
5240
|
|
5233
5241
|
function create_fragment$m(ctx) {
|
@@ -5240,7 +5248,7 @@ function create_fragment$m(ctx) {
|
|
5240
5248
|
c() {
|
5241
5249
|
div = element("div");
|
5242
5250
|
if (default_slot) default_slot.c();
|
5243
|
-
attr(div, "class", "list svelte-
|
5251
|
+
attr(div, "class", "list svelte-aquv6z");
|
5244
5252
|
attr(div, "style", /*style*/ ctx[0]);
|
5245
5253
|
},
|
5246
5254
|
m(target, anchor) {
|
@@ -5374,7 +5382,7 @@ class List extends SvelteComponent {
|
|
5374
5382
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
5375
5383
|
|
5376
5384
|
function add_css$k(target) {
|
5377
|
-
append_styles(target, "svelte-
|
5385
|
+
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}");
|
5378
5386
|
}
|
5379
5387
|
|
5380
5388
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -5444,7 +5452,7 @@ function create_fragment$l(ctx) {
|
|
5444
5452
|
c() {
|
5445
5453
|
div = element("div");
|
5446
5454
|
create_component(button.$$.fragment);
|
5447
|
-
attr(div, "class", "list-item svelte-
|
5455
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
5448
5456
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
5449
5457
|
},
|
5450
5458
|
m(target, anchor) {
|
@@ -5570,7 +5578,7 @@ class ListItem extends SvelteComponent {
|
|
5570
5578
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
5571
5579
|
|
5572
5580
|
function add_css$j(target) {
|
5573
|
-
append_styles(target, "svelte-
|
5581
|
+
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}");
|
5574
5582
|
}
|
5575
5583
|
|
5576
5584
|
function create_fragment$k(ctx) {
|
@@ -5579,7 +5587,7 @@ function create_fragment$k(ctx) {
|
|
5579
5587
|
return {
|
5580
5588
|
c() {
|
5581
5589
|
div = element("div");
|
5582
|
-
attr(div, "class", "embed svelte-
|
5590
|
+
attr(div, "class", "embed svelte-wocq4p");
|
5583
5591
|
attr(div, "style", /*_style*/ ctx[1]);
|
5584
5592
|
},
|
5585
5593
|
m(target, anchor) {
|
@@ -5622,7 +5630,7 @@ class EmbedElement extends SvelteComponent {
|
|
5622
5630
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
5623
5631
|
|
5624
5632
|
function add_css$i(target) {
|
5625
|
-
append_styles(target, "svelte-
|
5633
|
+
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%}");
|
5626
5634
|
}
|
5627
5635
|
|
5628
5636
|
function create_fragment$j(ctx) {
|
@@ -5634,7 +5642,7 @@ function create_fragment$j(ctx) {
|
|
5634
5642
|
div1 = element("div");
|
5635
5643
|
div0 = element("div");
|
5636
5644
|
attr(div0, "class", "karte-player");
|
5637
|
-
attr(div1, "class", "embed svelte-
|
5645
|
+
attr(div1, "class", "embed svelte-vikz49");
|
5638
5646
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5639
5647
|
},
|
5640
5648
|
m(target, anchor) {
|
@@ -5976,7 +5984,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
5976
5984
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
5977
5985
|
|
5978
5986
|
function add_css$h(target) {
|
5979
|
-
append_styles(target, "svelte-
|
5987
|
+
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%}");
|
5980
5988
|
}
|
5981
5989
|
|
5982
5990
|
function create_fragment$i(ctx) {
|
@@ -5988,7 +5996,7 @@ function create_fragment$i(ctx) {
|
|
5988
5996
|
div1 = element("div");
|
5989
5997
|
div0 = element("div");
|
5990
5998
|
attr(div0, "class", "karte-player");
|
5991
|
-
attr(div1, "class", "embed svelte-
|
5999
|
+
attr(div1, "class", "embed svelte-vikz49");
|
5992
6000
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5993
6001
|
},
|
5994
6002
|
m(target, anchor) {
|
@@ -6172,7 +6180,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6172
6180
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6173
6181
|
|
6174
6182
|
function add_css$g(target) {
|
6175
|
-
append_styles(target, "svelte-
|
6183
|
+
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}");
|
6176
6184
|
}
|
6177
6185
|
|
6178
6186
|
function create_fragment$h(ctx) {
|
@@ -6185,12 +6193,12 @@ function create_fragment$h(ctx) {
|
|
6185
6193
|
c() {
|
6186
6194
|
div = element("div");
|
6187
6195
|
textarea = element("textarea");
|
6188
|
-
attr(textarea, "class", "textarea svelte-
|
6196
|
+
attr(textarea, "class", "textarea svelte-kyay3k");
|
6189
6197
|
textarea.value = /*$value*/ ctx[3];
|
6190
6198
|
textarea.required = /*required*/ ctx[0];
|
6191
6199
|
attr(textarea, "rows", /*rows*/ ctx[1]);
|
6192
6200
|
attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
|
6193
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6201
|
+
attr(div, "class", "textarea-wrapper svelte-kyay3k");
|
6194
6202
|
},
|
6195
6203
|
m(target, anchor) {
|
6196
6204
|
insert(target, div, anchor);
|
@@ -6286,7 +6294,7 @@ class FormTextarea extends SvelteComponent {
|
|
6286
6294
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6287
6295
|
|
6288
6296
|
function add_css$f(target) {
|
6289
|
-
append_styles(target, "svelte-
|
6297
|
+
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}");
|
6290
6298
|
}
|
6291
6299
|
|
6292
6300
|
function get_each_context$5(ctx, list, i) {
|
@@ -6319,14 +6327,14 @@ function create_each_block$5(ctx) {
|
|
6319
6327
|
t1 = text(t1_value);
|
6320
6328
|
t2 = space();
|
6321
6329
|
attr(input, "type", "radio");
|
6322
|
-
attr(input, "class", "radio-button-input svelte-
|
6330
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
6323
6331
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
6324
6332
|
attr(input, "name", /*name*/ ctx[0]);
|
6325
6333
|
input.value = input_value_value = /*option*/ ctx[16];
|
6326
6334
|
input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
|
6327
|
-
attr(span, "class", "radio-button-text svelte-
|
6335
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
6328
6336
|
attr(span, "style", /*_textStyle*/ ctx[2]);
|
6329
|
-
attr(label, "class", "radio-button svelte-
|
6337
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
6330
6338
|
},
|
6331
6339
|
m(target, anchor) {
|
6332
6340
|
insert(target, label, anchor);
|
@@ -6391,7 +6399,7 @@ function create_fragment$g(ctx) {
|
|
6391
6399
|
each_blocks[i].c();
|
6392
6400
|
}
|
6393
6401
|
|
6394
|
-
attr(div, "class", "radio-buttons svelte-
|
6402
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
6395
6403
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
6396
6404
|
},
|
6397
6405
|
m(target, anchor) {
|
@@ -6558,7 +6566,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
6558
6566
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
6559
6567
|
|
6560
6568
|
function add_css$e(target) {
|
6561
|
-
append_styles(target, "svelte-
|
6569
|
+
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}");
|
6562
6570
|
}
|
6563
6571
|
|
6564
6572
|
function get_each_context$4(ctx, list, i) {
|
@@ -6692,10 +6700,10 @@ function create_fragment$f(ctx) {
|
|
6692
6700
|
|
6693
6701
|
t = space();
|
6694
6702
|
div0 = element("div");
|
6695
|
-
attr(select, "class", "select-select svelte-
|
6703
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
6696
6704
|
attr(select, "style", /*style*/ ctx[3]);
|
6697
|
-
attr(div0, "class", "select-icon svelte-
|
6698
|
-
attr(div1, "class", "select svelte-
|
6705
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
6706
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
6699
6707
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
6700
6708
|
},
|
6701
6709
|
m(target, anchor) {
|
@@ -6897,7 +6905,7 @@ class FormSelect extends SvelteComponent {
|
|
6897
6905
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
6898
6906
|
|
6899
6907
|
function add_css$d(target) {
|
6900
|
-
append_styles(target, "svelte-
|
6908
|
+
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}");
|
6901
6909
|
}
|
6902
6910
|
|
6903
6911
|
function get_each_context$3(ctx, list, i) {
|
@@ -6936,19 +6944,19 @@ function create_each_block$3(ctx) {
|
|
6936
6944
|
span2 = element("span");
|
6937
6945
|
t2 = text(t2_value);
|
6938
6946
|
t3 = space();
|
6939
|
-
attr(input, "class", "check-box-input svelte-
|
6947
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
6940
6948
|
attr(input, "type", "checkbox");
|
6941
6949
|
attr(input, "name", /*name*/ ctx[0]);
|
6942
6950
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
6943
|
-
attr(span0, "class", "check-box-icon svelte-
|
6951
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
6944
6952
|
|
6945
6953
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
6946
6954
|
? ' _checked'
|
6947
|
-
: ''}`) + " svelte-
|
6955
|
+
: ''}`) + " svelte-1p65cg8"));
|
6948
6956
|
|
6949
|
-
attr(span2, "class", "check-box-text svelte-
|
6957
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
6950
6958
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
6951
|
-
attr(label, "class", "check-box svelte-
|
6959
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
6952
6960
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
6953
6961
|
},
|
6954
6962
|
m(target, anchor) {
|
@@ -6980,7 +6988,7 @@ function create_each_block$3(ctx) {
|
|
6980
6988
|
|
6981
6989
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
6982
6990
|
? ' _checked'
|
6983
|
-
: ''}`) + " svelte-
|
6991
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
6984
6992
|
attr(span1, "class", span1_class_value);
|
6985
6993
|
}
|
6986
6994
|
|
@@ -7019,7 +7027,7 @@ function create_fragment$e(ctx) {
|
|
7019
7027
|
each_blocks[i].c();
|
7020
7028
|
}
|
7021
7029
|
|
7022
|
-
attr(div, "class", "check-boxes svelte-
|
7030
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7023
7031
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7024
7032
|
},
|
7025
7033
|
m(target, anchor) {
|
@@ -7194,7 +7202,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7194
7202
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7195
7203
|
|
7196
7204
|
function add_css$c(target) {
|
7197
|
-
append_styles(target, "svelte-
|
7205
|
+
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}");
|
7198
7206
|
}
|
7199
7207
|
|
7200
7208
|
function get_each_context$2(ctx, list, i) {
|
@@ -7218,7 +7226,7 @@ function create_each_block$2(ctx) {
|
|
7218
7226
|
button = element("button");
|
7219
7227
|
t0 = text(t0_value);
|
7220
7228
|
t1 = space();
|
7221
|
-
attr(button, "class", "rating-button svelte-
|
7229
|
+
attr(button, "class", "rating-button svelte-zy2va9");
|
7222
7230
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
|
7223
7231
|
},
|
7224
7232
|
m(target, anchor) {
|
@@ -7267,7 +7275,7 @@ function create_fragment$d(ctx) {
|
|
7267
7275
|
each_blocks[i].c();
|
7268
7276
|
}
|
7269
7277
|
|
7270
|
-
attr(div, "class", "rating-buttons svelte-
|
7278
|
+
attr(div, "class", "rating-buttons svelte-zy2va9");
|
7271
7279
|
},
|
7272
7280
|
m(target, anchor) {
|
7273
7281
|
insert(target, div, anchor);
|
@@ -7404,7 +7412,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
7404
7412
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
7405
7413
|
|
7406
7414
|
function add_css$b(target) {
|
7407
|
-
append_styles(target, "svelte-
|
7415
|
+
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%)}");
|
7408
7416
|
}
|
7409
7417
|
|
7410
7418
|
function get_each_context$1(ctx, list, i) {
|
@@ -7429,9 +7437,9 @@ function create_each_block$1(ctx) {
|
|
7429
7437
|
img = element("img");
|
7430
7438
|
t = space();
|
7431
7439
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
7432
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7440
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
7433
7441
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
7434
|
-
attr(button, "class", "rating-button svelte-
|
7442
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
7435
7443
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
7436
7444
|
},
|
7437
7445
|
m(target, anchor) {
|
@@ -7447,7 +7455,7 @@ function create_each_block$1(ctx) {
|
|
7447
7455
|
p(new_ctx, dirty) {
|
7448
7456
|
ctx = new_ctx;
|
7449
7457
|
|
7450
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7458
|
+
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"))) {
|
7451
7459
|
attr(img, "class", img_class_value);
|
7452
7460
|
}
|
7453
7461
|
|
@@ -7480,7 +7488,7 @@ function create_fragment$c(ctx) {
|
|
7480
7488
|
each_blocks[i].c();
|
7481
7489
|
}
|
7482
7490
|
|
7483
|
-
attr(div, "class", "rating-buttons svelte-
|
7491
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
7484
7492
|
},
|
7485
7493
|
m(target, anchor) {
|
7486
7494
|
insert(target, div, anchor);
|
@@ -7588,7 +7596,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
7588
7596
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
7589
7597
|
|
7590
7598
|
function add_css$a(target) {
|
7591
|
-
append_styles(target, "svelte-
|
7599
|
+
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%}");
|
7592
7600
|
}
|
7593
7601
|
|
7594
7602
|
function get_each_context(ctx, list, i) {
|
@@ -7617,9 +7625,9 @@ function create_if_block_1(ctx) {
|
|
7617
7625
|
attr(svg, "viewBox", "0 0 10 16");
|
7618
7626
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
7619
7627
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
7620
|
-
attr(button, "class", "move-button svelte-
|
7628
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
7621
7629
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
7622
|
-
attr(div, "class", "prev-button-container svelte-
|
7630
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
7623
7631
|
},
|
7624
7632
|
m(target, anchor) {
|
7625
7633
|
insert(target, div, anchor);
|
@@ -7668,9 +7676,9 @@ function create_if_block$1(ctx) {
|
|
7668
7676
|
attr(svg, "viewBox", "0 0 10 16");
|
7669
7677
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
7670
7678
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
7671
|
-
attr(button, "class", "move-button svelte-
|
7679
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
7672
7680
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
7673
|
-
attr(div, "class", "next-button-container svelte-
|
7681
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
7674
7682
|
},
|
7675
7683
|
m(target, anchor) {
|
7676
7684
|
insert(target, div, anchor);
|
@@ -7718,9 +7726,9 @@ function create_each_block(ctx) {
|
|
7718
7726
|
button = element("button");
|
7719
7727
|
div = element("div");
|
7720
7728
|
t = space();
|
7721
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
7729
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
7722
7730
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
7723
|
-
attr(button, "class", "navigation-item svelte-
|
7731
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
7724
7732
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
7725
7733
|
},
|
7726
7734
|
m(target, anchor) {
|
@@ -7797,14 +7805,14 @@ function create_fragment$b(ctx) {
|
|
7797
7805
|
each_blocks[i].c();
|
7798
7806
|
}
|
7799
7807
|
|
7800
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
7808
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
7801
7809
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
7802
|
-
attr(div1, "class", "container svelte-
|
7810
|
+
attr(div1, "class", "container svelte-ji1fh");
|
7803
7811
|
attr(div1, "style", /*_style*/ ctx[0]);
|
7804
|
-
attr(div2, "class", "navigation svelte-
|
7812
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
7805
7813
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
7806
7814
|
set_attributes(div3, div3_data);
|
7807
|
-
toggle_class(div3, "svelte-
|
7815
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
7808
7816
|
},
|
7809
7817
|
m(target, anchor) {
|
7810
7818
|
insert(target, div3, anchor);
|
@@ -7846,7 +7854,7 @@ function create_fragment$b(ctx) {
|
|
7846
7854
|
}
|
7847
7855
|
}
|
7848
7856
|
|
7849
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
7857
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
7850
7858
|
attr(div0, "class", div0_class_value);
|
7851
7859
|
}
|
7852
7860
|
|
@@ -7912,7 +7920,7 @@ function create_fragment$b(ctx) {
|
|
7912
7920
|
}
|
7913
7921
|
|
7914
7922
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
7915
|
-
toggle_class(div3, "svelte-
|
7923
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
7916
7924
|
},
|
7917
7925
|
i(local) {
|
7918
7926
|
if (current) return;
|
@@ -8424,7 +8432,7 @@ class Slide extends SvelteComponent {
|
|
8424
8432
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
8425
8433
|
|
8426
8434
|
function add_css$9(target) {
|
8427
|
-
append_styles(target, "svelte-
|
8435
|
+
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}");
|
8428
8436
|
}
|
8429
8437
|
|
8430
8438
|
function create_fragment$a(ctx) {
|
@@ -8439,9 +8447,9 @@ function create_fragment$a(ctx) {
|
|
8439
8447
|
div1 = element("div");
|
8440
8448
|
div0 = element("div");
|
8441
8449
|
if (default_slot) default_slot.c();
|
8442
|
-
attr(div0, "class", "item-inner svelte-
|
8450
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
8443
8451
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8444
|
-
attr(div1, "class", "item svelte-
|
8452
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
8445
8453
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
8446
8454
|
},
|
8447
8455
|
m(target, anchor) {
|
@@ -8567,7 +8575,7 @@ class SlideItem extends SvelteComponent {
|
|
8567
8575
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
8568
8576
|
|
8569
8577
|
function add_css$8(target) {
|
8570
|
-
append_styles(target, "svelte-
|
8578
|
+
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}");
|
8571
8579
|
}
|
8572
8580
|
|
8573
8581
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -8585,9 +8593,9 @@ function create_fragment$9(ctx) {
|
|
8585
8593
|
div1 = element("div");
|
8586
8594
|
div0 = element("div");
|
8587
8595
|
if (default_slot) default_slot.c();
|
8588
|
-
attr(div0, "class", "countdown-inner svelte-
|
8596
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
8589
8597
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8590
|
-
attr(div1, "class", "countdown svelte-
|
8598
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
8591
8599
|
},
|
8592
8600
|
m(target, anchor) {
|
8593
8601
|
insert(target, div1, anchor);
|
@@ -8721,7 +8729,7 @@ class Countdown extends SvelteComponent {
|
|
8721
8729
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
8722
8730
|
|
8723
8731
|
function add_css$7(target) {
|
8724
|
-
append_styles(target, "svelte-
|
8732
|
+
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}");
|
8725
8733
|
}
|
8726
8734
|
|
8727
8735
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -8791,7 +8799,7 @@ function create_fragment$8(ctx) {
|
|
8791
8799
|
c() {
|
8792
8800
|
div = element("div");
|
8793
8801
|
create_component(button.$$.fragment);
|
8794
|
-
attr(div, "class", "box svelte-
|
8802
|
+
attr(div, "class", "box svelte-1ccydfy");
|
8795
8803
|
},
|
8796
8804
|
m(target, anchor) {
|
8797
8805
|
insert(target, div, anchor);
|
@@ -8852,7 +8860,7 @@ class Box extends SvelteComponent {
|
|
8852
8860
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
8853
8861
|
|
8854
8862
|
function add_css$6(target) {
|
8855
|
-
append_styles(target, "svelte-
|
8863
|
+
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)}");
|
8856
8864
|
}
|
8857
8865
|
|
8858
8866
|
// (56:4) {#if svg}
|
@@ -8934,7 +8942,7 @@ function create_fragment$7(ctx) {
|
|
8934
8942
|
c() {
|
8935
8943
|
div = element("div");
|
8936
8944
|
create_component(button.$$.fragment);
|
8937
|
-
attr(div, "class", "icon svelte-
|
8945
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
8938
8946
|
},
|
8939
8947
|
m(target, anchor) {
|
8940
8948
|
insert(target, div, anchor);
|
@@ -9043,7 +9051,7 @@ class IconElement extends SvelteComponent {
|
|
9043
9051
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
9044
9052
|
|
9045
9053
|
function add_css$5(target) {
|
9046
|
-
append_styles(target, "svelte-
|
9054
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
9047
9055
|
}
|
9048
9056
|
|
9049
9057
|
function create_fragment$6(ctx) {
|
@@ -9069,7 +9077,7 @@ function create_fragment$6(ctx) {
|
|
9069
9077
|
c() {
|
9070
9078
|
div = element("div");
|
9071
9079
|
if (switch_instance) create_component(switch_instance.$$.fragment);
|
9072
|
-
attr(div, "class", "codeElement svelte-
|
9080
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
9073
9081
|
attr(div, "style", /*style*/ ctx[3]);
|
9074
9082
|
},
|
9075
9083
|
m(target, anchor) {
|
@@ -9158,7 +9166,7 @@ class CodeElement extends SvelteComponent {
|
|
9158
9166
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
9159
9167
|
|
9160
9168
|
function add_css$4(target) {
|
9161
|
-
append_styles(target, "svelte-
|
9169
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
9162
9170
|
}
|
9163
9171
|
|
9164
9172
|
function create_fragment$5(ctx) {
|
@@ -9172,7 +9180,7 @@ function create_fragment$5(ctx) {
|
|
9172
9180
|
c() {
|
9173
9181
|
div = element("div");
|
9174
9182
|
if (default_slot) default_slot.c();
|
9175
|
-
attr(div, "class", "flex svelte-
|
9183
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
9176
9184
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
9177
9185
|
},
|
9178
9186
|
m(target, anchor) {
|
@@ -9269,7 +9277,7 @@ class Flex extends SvelteComponent {
|
|
9269
9277
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
9270
9278
|
|
9271
9279
|
function add_css$3(target) {
|
9272
|
-
append_styles(target, "svelte-
|
9280
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
9273
9281
|
}
|
9274
9282
|
|
9275
9283
|
function create_fragment$4(ctx) {
|
@@ -9282,7 +9290,7 @@ function create_fragment$4(ctx) {
|
|
9282
9290
|
c() {
|
9283
9291
|
div = element("div");
|
9284
9292
|
if (default_slot) default_slot.c();
|
9285
|
-
attr(div, "class", "flex-item svelte-
|
9293
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
9286
9294
|
attr(div, "style", /*style*/ ctx[0]);
|
9287
9295
|
},
|
9288
9296
|
m(target, anchor) {
|
@@ -9690,7 +9698,7 @@ class GridModalState extends SvelteComponent {
|
|
9690
9698
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
9691
9699
|
|
9692
9700
|
function add_css$2(target) {
|
9693
|
-
append_styles(target, "svelte-
|
9701
|
+
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%}");
|
9694
9702
|
}
|
9695
9703
|
|
9696
9704
|
function create_fragment$2(ctx) {
|
@@ -9706,8 +9714,8 @@ function create_fragment$2(ctx) {
|
|
9706
9714
|
div1 = element("div");
|
9707
9715
|
div0 = element("div");
|
9708
9716
|
create_component(rendertext.$$.fragment);
|
9709
|
-
attr(div0, "class", "text-block-inner svelte-
|
9710
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
9717
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
9718
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
9711
9719
|
attr(div1, "style", /*style*/ ctx[2]);
|
9712
9720
|
},
|
9713
9721
|
m(target, anchor) {
|
@@ -9721,7 +9729,7 @@ function create_fragment$2(ctx) {
|
|
9721
9729
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
9722
9730
|
rendertext.$set(rendertext_changes);
|
9723
9731
|
|
9724
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
9732
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
9725
9733
|
attr(div1, "class", div1_class_value);
|
9726
9734
|
}
|
9727
9735
|
|
@@ -9799,7 +9807,7 @@ class TextBlock extends SvelteComponent {
|
|
9799
9807
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
9800
9808
|
|
9801
9809
|
function add_css$1(target) {
|
9802
|
-
append_styles(target, "svelte-
|
9810
|
+
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)}");
|
9803
9811
|
}
|
9804
9812
|
|
9805
9813
|
function create_fragment$1(ctx) {
|
@@ -9816,9 +9824,9 @@ function create_fragment$1(ctx) {
|
|
9816
9824
|
div = element("div");
|
9817
9825
|
button = element("button");
|
9818
9826
|
create_component(rendertext.$$.fragment);
|
9819
|
-
attr(button, "class", "text-button svelte-
|
9827
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
9820
9828
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
9821
|
-
attr(div, "class", "text-button-block svelte-
|
9829
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
9822
9830
|
attr(div, "style", /*_style*/ ctx[2]);
|
9823
9831
|
},
|
9824
9832
|
m(target, anchor) {
|
@@ -9924,7 +9932,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
9924
9932
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
9925
9933
|
|
9926
9934
|
function add_css(target) {
|
9927
|
-
append_styles(target, "svelte-
|
9935
|
+
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)}");
|
9928
9936
|
}
|
9929
9937
|
|
9930
9938
|
function create_fragment(ctx) {
|
@@ -9940,14 +9948,14 @@ function create_fragment(ctx) {
|
|
9940
9948
|
c() {
|
9941
9949
|
div = element("div");
|
9942
9950
|
img = element("img");
|
9943
|
-
attr(img, "class", "image svelte-
|
9951
|
+
attr(img, "class", "image svelte-1pdw891");
|
9944
9952
|
attr(img, "loading", "lazy");
|
9945
9953
|
attr(img, "width", "auto");
|
9946
9954
|
attr(img, "height", "auto");
|
9947
9955
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
9948
9956
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
9949
9957
|
attr(img, "alt", /*alt*/ ctx[1]);
|
9950
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
9958
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
9951
9959
|
attr(div, "style", /*_style*/ ctx[5]);
|
9952
9960
|
},
|
9953
9961
|
m(target, anchor) {
|
@@ -9972,7 +9980,7 @@ function create_fragment(ctx) {
|
|
9972
9980
|
attr(img, "alt", /*alt*/ ctx[1]);
|
9973
9981
|
}
|
9974
9982
|
|
9975
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
9983
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
9976
9984
|
attr(div, "class", div_class_value);
|
9977
9985
|
}
|
9978
9986
|
|