@plaidev/karte-action-sdk 1.1.203 → 1.1.204-28199907.4843b7f4
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 +6 -2
- package/dist/hydrate/index.es.js +171 -145
- package/dist/index.es.d.ts +6 -2
- package/dist/index.es.js +171 -145
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1332,40 +1332,57 @@ function request(url, data, cb) {
|
|
1332
1332
|
});
|
1333
1333
|
}
|
1334
1334
|
/** @internal */
|
1335
|
-
const loadActionTableRow = async (config, data, api_key, endpoint) => {
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
});
|
1344
|
-
};
|
1335
|
+
const loadActionTableRow = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1336
|
+
const key = data[config.query.key] ?? null;
|
1337
|
+
if (key == null) {
|
1338
|
+
console.warn('key is not found. key: ', config.query.key);
|
1339
|
+
return reject('key is not found.');
|
1340
|
+
}
|
1341
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
|
1342
|
+
});
|
1345
1343
|
/** @internal */
|
1346
|
-
const loadActionTableRows = async (config, data, api_key, endpoint) => {
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1344
|
+
const loadActionTableRows = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1345
|
+
if (config.query.key == null) {
|
1346
|
+
console.warn('key is not defined.');
|
1347
|
+
return reject('key is not defined.');
|
1348
|
+
}
|
1349
|
+
const keys = [];
|
1350
|
+
let hasError = false;
|
1351
|
+
const originalKeys = Array.isArray(config.query.key) ? config.query.key : [config.query.key];
|
1352
|
+
originalKeys.forEach(key => {
|
1353
|
+
const d = data[key];
|
1354
|
+
if (d == null) {
|
1355
|
+
console.warn('key is not found. key: ', key);
|
1356
|
+
hasError = true;
|
1352
1357
|
}
|
1353
|
-
|
1358
|
+
keys.push(d);
|
1354
1359
|
});
|
1355
|
-
|
1360
|
+
if (hasError) {
|
1361
|
+
return reject('key is not found.');
|
1362
|
+
}
|
1363
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => (err ? reject(err) : resolve(data)));
|
1364
|
+
});
|
1356
1365
|
/** @internal */
|
1357
|
-
const loadActionTableQuery = async (config, data, api_key, endpoint) => {
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1366
|
+
const loadActionTableQuery = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1367
|
+
if (config.query.params == null) {
|
1368
|
+
console.warn('key is not defined.');
|
1369
|
+
return reject('key is not defined.');
|
1370
|
+
}
|
1371
|
+
const params = {};
|
1372
|
+
let hasError = false;
|
1373
|
+
Object.entries(config.query.params).forEach(([key, param]) => {
|
1374
|
+
const d = data[param];
|
1375
|
+
if (d == null) {
|
1376
|
+
console.warn('key is not found. param: ', param);
|
1377
|
+
hasError = true;
|
1365
1378
|
}
|
1366
|
-
|
1379
|
+
params[key] = d;
|
1367
1380
|
});
|
1368
|
-
|
1381
|
+
if (hasError) {
|
1382
|
+
return reject('key is not found.');
|
1383
|
+
}
|
1384
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, params, null, (err, data) => (err ? reject(err) : resolve(data)));
|
1385
|
+
});
|
1369
1386
|
/** @internal */
|
1370
1387
|
const loadActionTable = async (config, data, api_key, endpoint) => {
|
1371
1388
|
console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
|
@@ -1411,8 +1428,13 @@ function initActionTable(localVariablesQuery) {
|
|
1411
1428
|
/** @internal */
|
1412
1429
|
const handleState = (event) => {
|
1413
1430
|
if (event.detail.actionId === actionId || event.detail.actionId === ALL_ACTION_ID) {
|
1414
|
-
send_event('_message_state_changed', {
|
1415
|
-
|
1431
|
+
send_event('_message_state_changed', {
|
1432
|
+
oldState: event.detail.from ?? '',
|
1433
|
+
newState: event.detail.to ?? '',
|
1434
|
+
});
|
1435
|
+
setState$1(event.detail.to, {
|
1436
|
+
disableInPreview: event.detail.disableInPreview,
|
1437
|
+
});
|
1416
1438
|
}
|
1417
1439
|
};
|
1418
1440
|
/**
|
@@ -2586,7 +2608,7 @@ class State extends SvelteComponent {
|
|
2586
2608
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2587
2609
|
|
2588
2610
|
function add_css$t(target) {
|
2589
|
-
append_styles(target, "svelte-
|
2611
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2590
2612
|
}
|
2591
2613
|
|
2592
2614
|
// (23:0) {#if $state === path}
|
@@ -2613,7 +2635,7 @@ function create_if_block$8(ctx) {
|
|
2613
2635
|
},
|
2614
2636
|
h() {
|
2615
2637
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
2616
|
-
attr(div, "class", "state-item svelte-
|
2638
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
2617
2639
|
},
|
2618
2640
|
m(target, anchor) {
|
2619
2641
|
insert_hydration(target, div, anchor);
|
@@ -2859,7 +2881,10 @@ function submit() {
|
|
2859
2881
|
* モーダル(ポップアップ)のコンポーネントが利用するコードの管理
|
2860
2882
|
*/
|
2861
2883
|
function _moveTo(to) {
|
2862
|
-
|
2884
|
+
const currentState = getState$1();
|
2885
|
+
window.dispatchEvent(new CustomEvent(ACTION_CHANGE_STATE_EVENT, {
|
2886
|
+
detail: { from: currentState, to, actionId },
|
2887
|
+
}));
|
2863
2888
|
}
|
2864
2889
|
/** @internal */
|
2865
2890
|
const moveTo = (to) => () => {
|
@@ -2972,7 +2997,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
2972
2997
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
2973
2998
|
|
2974
2999
|
function add_css$s(target) {
|
2975
|
-
append_styles(target, "svelte-
|
3000
|
+
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}");
|
2976
3001
|
}
|
2977
3002
|
|
2978
3003
|
// (9:0) {#if backgroundOverlay}
|
@@ -2992,7 +3017,7 @@ function create_if_block$7(ctx) {
|
|
2992
3017
|
this.h();
|
2993
3018
|
},
|
2994
3019
|
h() {
|
2995
|
-
attr(div, "class", "background svelte-
|
3020
|
+
attr(div, "class", "background svelte-1d4fta");
|
2996
3021
|
},
|
2997
3022
|
m(target, anchor) {
|
2998
3023
|
insert_hydration(target, div, anchor);
|
@@ -3107,7 +3132,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3107
3132
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3108
3133
|
|
3109
3134
|
function add_css$r(target) {
|
3110
|
-
append_styles(target, "svelte-
|
3135
|
+
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}");
|
3111
3136
|
}
|
3112
3137
|
|
3113
3138
|
// (50:0) {:else}
|
@@ -3146,7 +3171,7 @@ function create_else_block$3(ctx) {
|
|
3146
3171
|
},
|
3147
3172
|
h() {
|
3148
3173
|
set_attributes(button, button_data);
|
3149
|
-
toggle_class(button, "svelte-
|
3174
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3150
3175
|
},
|
3151
3176
|
m(target, anchor) {
|
3152
3177
|
insert_hydration(target, button, anchor);
|
@@ -3185,7 +3210,7 @@ function create_else_block$3(ctx) {
|
|
3185
3210
|
dataAttrStopPropagation('click')
|
3186
3211
|
]));
|
3187
3212
|
|
3188
|
-
toggle_class(button, "svelte-
|
3213
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3189
3214
|
},
|
3190
3215
|
i(local) {
|
3191
3216
|
if (current) return;
|
@@ -3226,7 +3251,7 @@ function create_if_block_2(ctx) {
|
|
3226
3251
|
this.h();
|
3227
3252
|
},
|
3228
3253
|
h() {
|
3229
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3254
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
|
3230
3255
|
attr(div, "style", /*style*/ ctx[1]);
|
3231
3256
|
},
|
3232
3257
|
m(target, anchor) {
|
@@ -3326,7 +3351,7 @@ function create_if_block_1$2(ctx) {
|
|
3326
3351
|
},
|
3327
3352
|
h() {
|
3328
3353
|
set_attributes(a, a_data);
|
3329
|
-
toggle_class(a, "svelte-
|
3354
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3330
3355
|
},
|
3331
3356
|
m(target, anchor) {
|
3332
3357
|
insert_hydration(target, a, anchor);
|
@@ -3368,7 +3393,7 @@ function create_if_block_1$2(ctx) {
|
|
3368
3393
|
dataAttrStopPropagation('click')
|
3369
3394
|
]));
|
3370
3395
|
|
3371
|
-
toggle_class(a, "svelte-
|
3396
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3372
3397
|
},
|
3373
3398
|
i(local) {
|
3374
3399
|
if (current) return;
|
@@ -3409,7 +3434,7 @@ function create_if_block$6(ctx) {
|
|
3409
3434
|
this.h();
|
3410
3435
|
},
|
3411
3436
|
h() {
|
3412
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3437
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
|
3413
3438
|
attr(div, "style", /*style*/ ctx[1]);
|
3414
3439
|
},
|
3415
3440
|
m(target, anchor) {
|
@@ -3617,7 +3642,7 @@ class Button extends SvelteComponent {
|
|
3617
3642
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3618
3643
|
|
3619
3644
|
function add_css$q(target) {
|
3620
|
-
append_styles(target, "svelte-
|
3645
|
+
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}");
|
3621
3646
|
}
|
3622
3647
|
|
3623
3648
|
// (145:0) {#if visible}
|
@@ -3658,7 +3683,7 @@ function create_if_block$5(ctx) {
|
|
3658
3683
|
this.h();
|
3659
3684
|
},
|
3660
3685
|
h() {
|
3661
|
-
attr(div, "class", "modal svelte-
|
3686
|
+
attr(div, "class", "modal svelte-yvwr7u");
|
3662
3687
|
attr(div, "role", "dialog");
|
3663
3688
|
attr(div, "aria-modal", "true");
|
3664
3689
|
attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
|
@@ -3746,7 +3771,7 @@ function create_if_block_1$1(ctx) {
|
|
3746
3771
|
this.h();
|
3747
3772
|
},
|
3748
3773
|
h() {
|
3749
|
-
attr(div, "class", "close svelte-
|
3774
|
+
attr(div, "class", "close svelte-yvwr7u");
|
3750
3775
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
|
3751
3776
|
},
|
3752
3777
|
m(target, anchor) {
|
@@ -3871,7 +3896,7 @@ function create_default_slot$6(ctx) {
|
|
3871
3896
|
this.h();
|
3872
3897
|
},
|
3873
3898
|
h() {
|
3874
|
-
attr(div, "class", "modal-content svelte-
|
3899
|
+
attr(div, "class", "modal-content svelte-yvwr7u");
|
3875
3900
|
attr(div, "style", /*_style*/ ctx[4]);
|
3876
3901
|
},
|
3877
3902
|
m(target, anchor) {
|
@@ -4381,7 +4406,7 @@ class Grid extends SvelteComponent {
|
|
4381
4406
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4382
4407
|
|
4383
4408
|
function add_css$p(target) {
|
4384
|
-
append_styles(target, "svelte-
|
4409
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4385
4410
|
}
|
4386
4411
|
|
4387
4412
|
function create_fragment$r(ctx) {
|
@@ -4415,8 +4440,8 @@ function create_fragment$r(ctx) {
|
|
4415
4440
|
this.h();
|
4416
4441
|
},
|
4417
4442
|
h() {
|
4418
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4419
|
-
attr(div1, "class", "grid-item svelte-
|
4443
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4444
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4420
4445
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4421
4446
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4422
4447
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -4738,10 +4763,10 @@ class RenderText extends SvelteComponent {
|
|
4738
4763
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
4739
4764
|
|
4740
4765
|
function add_css$o(target) {
|
4741
|
-
append_styles(target, "svelte-
|
4766
|
+
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}");
|
4742
4767
|
}
|
4743
4768
|
|
4744
|
-
// (
|
4769
|
+
// (94:2) {:else}
|
4745
4770
|
function create_else_block$1(ctx) {
|
4746
4771
|
let div1;
|
4747
4772
|
let div0;
|
@@ -4768,8 +4793,8 @@ function create_else_block$1(ctx) {
|
|
4768
4793
|
this.h();
|
4769
4794
|
},
|
4770
4795
|
h() {
|
4771
|
-
attr(div0, "class", "text-element-inner svelte-
|
4772
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4796
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4797
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4773
4798
|
attr(div1, "style", /*style*/ ctx[5]);
|
4774
4799
|
},
|
4775
4800
|
m(target, anchor) {
|
@@ -4783,7 +4808,7 @@ function create_else_block$1(ctx) {
|
|
4783
4808
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4784
4809
|
rendertext.$set(rendertext_changes);
|
4785
4810
|
|
4786
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4811
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
4787
4812
|
attr(div1, "class", div1_class_value);
|
4788
4813
|
}
|
4789
4814
|
|
@@ -4807,7 +4832,7 @@ function create_else_block$1(ctx) {
|
|
4807
4832
|
};
|
4808
4833
|
}
|
4809
4834
|
|
4810
|
-
// (
|
4835
|
+
// (80:2) {#if enableCopy}
|
4811
4836
|
function create_if_block$3(ctx) {
|
4812
4837
|
let a;
|
4813
4838
|
let div0;
|
@@ -4858,12 +4883,12 @@ function create_if_block$3(ctx) {
|
|
4858
4883
|
this.h();
|
4859
4884
|
},
|
4860
4885
|
h() {
|
4861
|
-
attr(div0, "class", "text-element-inner svelte-
|
4886
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4862
4887
|
attr(a, "href", '');
|
4863
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4888
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4864
4889
|
attr(a, "style", /*style*/ ctx[5]);
|
4865
|
-
attr(div1, "class", "tooltip svelte-
|
4866
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
4890
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
4891
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
4867
4892
|
},
|
4868
4893
|
m(target, anchor) {
|
4869
4894
|
insert_hydration(target, a, anchor);
|
@@ -4889,7 +4914,7 @@ function create_if_block$3(ctx) {
|
|
4889
4914
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4890
4915
|
rendertext.$set(rendertext_changes);
|
4891
4916
|
|
4892
|
-
if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4917
|
+
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"))) {
|
4893
4918
|
attr(a, "class", a_class_value);
|
4894
4919
|
}
|
4895
4920
|
|
@@ -4951,7 +4976,7 @@ function create_fragment$p(ctx) {
|
|
4951
4976
|
this.h();
|
4952
4977
|
},
|
4953
4978
|
h() {
|
4954
|
-
attr(div, "class", "text-element-wrapper svelte-
|
4979
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
4955
4980
|
},
|
4956
4981
|
m(target, anchor) {
|
4957
4982
|
insert_hydration(target, div, anchor);
|
@@ -5019,6 +5044,7 @@ function instance$p($$self, $$props, $$invalidate) {
|
|
5019
5044
|
|
5020
5045
|
try {
|
5021
5046
|
await navigator.clipboard.writeText(text);
|
5047
|
+
send_event('_click_copy', { text });
|
5022
5048
|
|
5023
5049
|
if (eventName) {
|
5024
5050
|
send_event(eventName, eventValue);
|
@@ -5116,7 +5142,7 @@ class TextElement extends SvelteComponent {
|
|
5116
5142
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5117
5143
|
|
5118
5144
|
function add_css$n(target) {
|
5119
|
-
append_styles(target, "svelte-
|
5145
|
+
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)}");
|
5120
5146
|
}
|
5121
5147
|
|
5122
5148
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5185,7 +5211,7 @@ function create_fragment$o(ctx) {
|
|
5185
5211
|
this.h();
|
5186
5212
|
},
|
5187
5213
|
h() {
|
5188
|
-
attr(div, "class", "text-button-element svelte-
|
5214
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5189
5215
|
},
|
5190
5216
|
m(target, anchor) {
|
5191
5217
|
insert_hydration(target, div, anchor);
|
@@ -5277,7 +5303,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5277
5303
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5278
5304
|
|
5279
5305
|
function add_css$m(target) {
|
5280
|
-
append_styles(target, "svelte-
|
5306
|
+
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%}");
|
5281
5307
|
}
|
5282
5308
|
|
5283
5309
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5305,7 +5331,7 @@ function create_default_slot$4(ctx) {
|
|
5305
5331
|
this.h();
|
5306
5332
|
},
|
5307
5333
|
h() {
|
5308
|
-
attr(img, "class", "image svelte-
|
5334
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5309
5335
|
attr(img, "loading", "lazy");
|
5310
5336
|
attr(img, "width", "auto");
|
5311
5337
|
attr(img, "height", "auto");
|
@@ -5377,7 +5403,7 @@ function create_fragment$n(ctx) {
|
|
5377
5403
|
this.h();
|
5378
5404
|
},
|
5379
5405
|
h() {
|
5380
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5406
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5381
5407
|
},
|
5382
5408
|
m(target, anchor) {
|
5383
5409
|
insert_hydration(target, div, anchor);
|
@@ -5396,7 +5422,7 @@ function create_fragment$n(ctx) {
|
|
5396
5422
|
|
5397
5423
|
button.$set(button_changes);
|
5398
5424
|
|
5399
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5425
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5400
5426
|
attr(div, "class", div_class_value);
|
5401
5427
|
}
|
5402
5428
|
},
|
@@ -5468,7 +5494,7 @@ class ImageElement extends SvelteComponent {
|
|
5468
5494
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5469
5495
|
|
5470
5496
|
function add_css$l(target) {
|
5471
|
-
append_styles(target, "svelte-
|
5497
|
+
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}");
|
5472
5498
|
}
|
5473
5499
|
|
5474
5500
|
function create_fragment$m(ctx) {
|
@@ -5491,7 +5517,7 @@ function create_fragment$m(ctx) {
|
|
5491
5517
|
this.h();
|
5492
5518
|
},
|
5493
5519
|
h() {
|
5494
|
-
attr(div, "class", "list svelte-
|
5520
|
+
attr(div, "class", "list svelte-aquv6z");
|
5495
5521
|
attr(div, "style", /*style*/ ctx[0]);
|
5496
5522
|
},
|
5497
5523
|
m(target, anchor) {
|
@@ -5625,7 +5651,7 @@ class List extends SvelteComponent {
|
|
5625
5651
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
5626
5652
|
|
5627
5653
|
function add_css$k(target) {
|
5628
|
-
append_styles(target, "svelte-
|
5654
|
+
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}");
|
5629
5655
|
}
|
5630
5656
|
|
5631
5657
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -5708,7 +5734,7 @@ function create_fragment$l(ctx) {
|
|
5708
5734
|
this.h();
|
5709
5735
|
},
|
5710
5736
|
h() {
|
5711
|
-
attr(div, "class", "list-item svelte-
|
5737
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
5712
5738
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
5713
5739
|
},
|
5714
5740
|
m(target, anchor) {
|
@@ -5834,7 +5860,7 @@ class ListItem extends SvelteComponent {
|
|
5834
5860
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
5835
5861
|
|
5836
5862
|
function add_css$j(target) {
|
5837
|
-
append_styles(target, "svelte-
|
5863
|
+
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}");
|
5838
5864
|
}
|
5839
5865
|
|
5840
5866
|
function create_fragment$k(ctx) {
|
@@ -5852,7 +5878,7 @@ function create_fragment$k(ctx) {
|
|
5852
5878
|
this.h();
|
5853
5879
|
},
|
5854
5880
|
h() {
|
5855
|
-
attr(div, "class", "embed svelte-
|
5881
|
+
attr(div, "class", "embed svelte-wocq4p");
|
5856
5882
|
attr(div, "style", /*_style*/ ctx[1]);
|
5857
5883
|
},
|
5858
5884
|
m(target, anchor) {
|
@@ -5895,7 +5921,7 @@ class EmbedElement extends SvelteComponent {
|
|
5895
5921
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
5896
5922
|
|
5897
5923
|
function add_css$i(target) {
|
5898
|
-
append_styles(target, "svelte-
|
5924
|
+
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%}");
|
5899
5925
|
}
|
5900
5926
|
|
5901
5927
|
function create_fragment$j(ctx) {
|
@@ -5918,7 +5944,7 @@ function create_fragment$j(ctx) {
|
|
5918
5944
|
},
|
5919
5945
|
h() {
|
5920
5946
|
attr(div0, "class", "karte-player");
|
5921
|
-
attr(div1, "class", "embed svelte-
|
5947
|
+
attr(div1, "class", "embed svelte-vikz49");
|
5922
5948
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5923
5949
|
},
|
5924
5950
|
m(target, anchor) {
|
@@ -6260,7 +6286,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6260
6286
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6261
6287
|
|
6262
6288
|
function add_css$h(target) {
|
6263
|
-
append_styles(target, "svelte-
|
6289
|
+
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%}");
|
6264
6290
|
}
|
6265
6291
|
|
6266
6292
|
function create_fragment$i(ctx) {
|
@@ -6283,7 +6309,7 @@ function create_fragment$i(ctx) {
|
|
6283
6309
|
},
|
6284
6310
|
h() {
|
6285
6311
|
attr(div0, "class", "karte-player");
|
6286
|
-
attr(div1, "class", "embed svelte-
|
6312
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6287
6313
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6288
6314
|
},
|
6289
6315
|
m(target, anchor) {
|
@@ -6467,7 +6493,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6467
6493
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6468
6494
|
|
6469
6495
|
function add_css$g(target) {
|
6470
|
-
append_styles(target, "svelte-
|
6496
|
+
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}");
|
6471
6497
|
}
|
6472
6498
|
|
6473
6499
|
function create_fragment$h(ctx) {
|
@@ -6497,12 +6523,12 @@ function create_fragment$h(ctx) {
|
|
6497
6523
|
this.h();
|
6498
6524
|
},
|
6499
6525
|
h() {
|
6500
|
-
attr(textarea, "class", "textarea svelte-
|
6526
|
+
attr(textarea, "class", "textarea svelte-kyay3k");
|
6501
6527
|
textarea.value = /*$value*/ ctx[3];
|
6502
6528
|
textarea.required = /*required*/ ctx[0];
|
6503
6529
|
attr(textarea, "rows", /*rows*/ ctx[1]);
|
6504
6530
|
attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
|
6505
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6531
|
+
attr(div, "class", "textarea-wrapper svelte-kyay3k");
|
6506
6532
|
},
|
6507
6533
|
m(target, anchor) {
|
6508
6534
|
insert_hydration(target, div, anchor);
|
@@ -6598,7 +6624,7 @@ class FormTextarea extends SvelteComponent {
|
|
6598
6624
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6599
6625
|
|
6600
6626
|
function add_css$f(target) {
|
6601
|
-
append_styles(target, "svelte-
|
6627
|
+
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}");
|
6602
6628
|
}
|
6603
6629
|
|
6604
6630
|
function get_each_context$5(ctx, list, i) {
|
@@ -6654,14 +6680,14 @@ function create_each_block$5(ctx) {
|
|
6654
6680
|
},
|
6655
6681
|
h() {
|
6656
6682
|
attr(input, "type", "radio");
|
6657
|
-
attr(input, "class", "radio-button-input svelte-
|
6683
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
6658
6684
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
6659
6685
|
attr(input, "name", /*name*/ ctx[0]);
|
6660
6686
|
input.value = input_value_value = /*option*/ ctx[16];
|
6661
6687
|
input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
|
6662
|
-
attr(span, "class", "radio-button-text svelte-
|
6688
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
6663
6689
|
attr(span, "style", /*_textStyle*/ ctx[2]);
|
6664
|
-
attr(label, "class", "radio-button svelte-
|
6690
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
6665
6691
|
},
|
6666
6692
|
m(target, anchor) {
|
6667
6693
|
insert_hydration(target, label, anchor);
|
@@ -6740,7 +6766,7 @@ function create_fragment$g(ctx) {
|
|
6740
6766
|
this.h();
|
6741
6767
|
},
|
6742
6768
|
h() {
|
6743
|
-
attr(div, "class", "radio-buttons svelte-
|
6769
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
6744
6770
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
6745
6771
|
},
|
6746
6772
|
m(target, anchor) {
|
@@ -6907,7 +6933,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
6907
6933
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
6908
6934
|
|
6909
6935
|
function add_css$e(target) {
|
6910
|
-
append_styles(target, "svelte-
|
6936
|
+
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}");
|
6911
6937
|
}
|
6912
6938
|
|
6913
6939
|
function get_each_context$4(ctx, list, i) {
|
@@ -7078,10 +7104,10 @@ function create_fragment$f(ctx) {
|
|
7078
7104
|
this.h();
|
7079
7105
|
},
|
7080
7106
|
h() {
|
7081
|
-
attr(select, "class", "select-select svelte-
|
7107
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7082
7108
|
attr(select, "style", /*style*/ ctx[3]);
|
7083
|
-
attr(div0, "class", "select-icon svelte-
|
7084
|
-
attr(div1, "class", "select svelte-
|
7109
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7110
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7085
7111
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7086
7112
|
},
|
7087
7113
|
m(target, anchor) {
|
@@ -7283,7 +7309,7 @@ class FormSelect extends SvelteComponent {
|
|
7283
7309
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7284
7310
|
|
7285
7311
|
function add_css$d(target) {
|
7286
|
-
append_styles(target, "svelte-
|
7312
|
+
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}");
|
7287
7313
|
}
|
7288
7314
|
|
7289
7315
|
function get_each_context$3(ctx, list, i) {
|
@@ -7345,19 +7371,19 @@ function create_each_block$3(ctx) {
|
|
7345
7371
|
this.h();
|
7346
7372
|
},
|
7347
7373
|
h() {
|
7348
|
-
attr(input, "class", "check-box-input svelte-
|
7374
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7349
7375
|
attr(input, "type", "checkbox");
|
7350
7376
|
attr(input, "name", /*name*/ ctx[0]);
|
7351
7377
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7352
|
-
attr(span0, "class", "check-box-icon svelte-
|
7378
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
7353
7379
|
|
7354
7380
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7355
7381
|
? ' _checked'
|
7356
|
-
: ''}`) + " svelte-
|
7382
|
+
: ''}`) + " svelte-1p65cg8"));
|
7357
7383
|
|
7358
|
-
attr(span2, "class", "check-box-text svelte-
|
7384
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
7359
7385
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7360
|
-
attr(label, "class", "check-box svelte-
|
7386
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
7361
7387
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7362
7388
|
},
|
7363
7389
|
m(target, anchor) {
|
@@ -7389,7 +7415,7 @@ function create_each_block$3(ctx) {
|
|
7389
7415
|
|
7390
7416
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7391
7417
|
? ' _checked'
|
7392
|
-
: ''}`) + " svelte-
|
7418
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
7393
7419
|
attr(span1, "class", span1_class_value);
|
7394
7420
|
}
|
7395
7421
|
|
@@ -7442,7 +7468,7 @@ function create_fragment$e(ctx) {
|
|
7442
7468
|
this.h();
|
7443
7469
|
},
|
7444
7470
|
h() {
|
7445
|
-
attr(div, "class", "check-boxes svelte-
|
7471
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7446
7472
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7447
7473
|
},
|
7448
7474
|
m(target, anchor) {
|
@@ -7617,7 +7643,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7617
7643
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7618
7644
|
|
7619
7645
|
function add_css$c(target) {
|
7620
|
-
append_styles(target, "svelte-
|
7646
|
+
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}");
|
7621
7647
|
}
|
7622
7648
|
|
7623
7649
|
function get_each_context$2(ctx, list, i) {
|
@@ -7652,7 +7678,7 @@ function create_each_block$2(ctx) {
|
|
7652
7678
|
this.h();
|
7653
7679
|
},
|
7654
7680
|
h() {
|
7655
|
-
attr(button, "class", "rating-button svelte-
|
7681
|
+
attr(button, "class", "rating-button svelte-zy2va9");
|
7656
7682
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
|
7657
7683
|
},
|
7658
7684
|
m(target, anchor) {
|
@@ -7715,7 +7741,7 @@ function create_fragment$d(ctx) {
|
|
7715
7741
|
this.h();
|
7716
7742
|
},
|
7717
7743
|
h() {
|
7718
|
-
attr(div, "class", "rating-buttons svelte-
|
7744
|
+
attr(div, "class", "rating-buttons svelte-zy2va9");
|
7719
7745
|
},
|
7720
7746
|
m(target, anchor) {
|
7721
7747
|
insert_hydration(target, div, anchor);
|
@@ -7852,7 +7878,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
7852
7878
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
7853
7879
|
|
7854
7880
|
function add_css$b(target) {
|
7855
|
-
append_styles(target, "svelte-
|
7881
|
+
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%)}");
|
7856
7882
|
}
|
7857
7883
|
|
7858
7884
|
function get_each_context$1(ctx, list, i) {
|
@@ -7888,9 +7914,9 @@ function create_each_block$1(ctx) {
|
|
7888
7914
|
},
|
7889
7915
|
h() {
|
7890
7916
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
7891
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7917
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
7892
7918
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
7893
|
-
attr(button, "class", "rating-button svelte-
|
7919
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
7894
7920
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
7895
7921
|
},
|
7896
7922
|
m(target, anchor) {
|
@@ -7906,7 +7932,7 @@ function create_each_block$1(ctx) {
|
|
7906
7932
|
p(new_ctx, dirty) {
|
7907
7933
|
ctx = new_ctx;
|
7908
7934
|
|
7909
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7935
|
+
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"))) {
|
7910
7936
|
attr(img, "class", img_class_value);
|
7911
7937
|
}
|
7912
7938
|
|
@@ -7953,7 +7979,7 @@ function create_fragment$c(ctx) {
|
|
7953
7979
|
this.h();
|
7954
7980
|
},
|
7955
7981
|
h() {
|
7956
|
-
attr(div, "class", "rating-buttons svelte-
|
7982
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
7957
7983
|
},
|
7958
7984
|
m(target, anchor) {
|
7959
7985
|
insert_hydration(target, div, anchor);
|
@@ -8061,7 +8087,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8061
8087
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
8062
8088
|
|
8063
8089
|
function add_css$a(target) {
|
8064
|
-
append_styles(target, "svelte-
|
8090
|
+
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%}");
|
8065
8091
|
}
|
8066
8092
|
|
8067
8093
|
function get_each_context(ctx, list, i) {
|
@@ -8107,9 +8133,9 @@ function create_if_block_1(ctx) {
|
|
8107
8133
|
attr(svg, "viewBox", "0 0 10 16");
|
8108
8134
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8109
8135
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
8110
|
-
attr(button, "class", "move-button svelte-
|
8136
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8111
8137
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
8112
|
-
attr(div, "class", "prev-button-container svelte-
|
8138
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
8113
8139
|
},
|
8114
8140
|
m(target, anchor) {
|
8115
8141
|
insert_hydration(target, div, anchor);
|
@@ -8175,9 +8201,9 @@ function create_if_block$1(ctx) {
|
|
8175
8201
|
attr(svg, "viewBox", "0 0 10 16");
|
8176
8202
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8177
8203
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
8178
|
-
attr(button, "class", "move-button svelte-
|
8204
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8179
8205
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
8180
|
-
attr(div, "class", "next-button-container svelte-
|
8206
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
8181
8207
|
},
|
8182
8208
|
m(target, anchor) {
|
8183
8209
|
insert_hydration(target, div, anchor);
|
@@ -8237,9 +8263,9 @@ function create_each_block(ctx) {
|
|
8237
8263
|
this.h();
|
8238
8264
|
},
|
8239
8265
|
h() {
|
8240
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
8266
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
8241
8267
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
8242
|
-
attr(button, "class", "navigation-item svelte-
|
8268
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
8243
8269
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
8244
8270
|
},
|
8245
8271
|
m(target, anchor) {
|
@@ -8345,14 +8371,14 @@ function create_fragment$b(ctx) {
|
|
8345
8371
|
this.h();
|
8346
8372
|
},
|
8347
8373
|
h() {
|
8348
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8374
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
8349
8375
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
8350
|
-
attr(div1, "class", "container svelte-
|
8376
|
+
attr(div1, "class", "container svelte-ji1fh");
|
8351
8377
|
attr(div1, "style", /*_style*/ ctx[0]);
|
8352
|
-
attr(div2, "class", "navigation svelte-
|
8378
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
8353
8379
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
8354
8380
|
set_attributes(div3, div3_data);
|
8355
|
-
toggle_class(div3, "svelte-
|
8381
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8356
8382
|
},
|
8357
8383
|
m(target, anchor) {
|
8358
8384
|
insert_hydration(target, div3, anchor);
|
@@ -8394,7 +8420,7 @@ function create_fragment$b(ctx) {
|
|
8394
8420
|
}
|
8395
8421
|
}
|
8396
8422
|
|
8397
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8423
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
8398
8424
|
attr(div0, "class", div0_class_value);
|
8399
8425
|
}
|
8400
8426
|
|
@@ -8460,7 +8486,7 @@ function create_fragment$b(ctx) {
|
|
8460
8486
|
}
|
8461
8487
|
|
8462
8488
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
8463
|
-
toggle_class(div3, "svelte-
|
8489
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8464
8490
|
},
|
8465
8491
|
i(local) {
|
8466
8492
|
if (current) return;
|
@@ -8972,7 +8998,7 @@ class Slide extends SvelteComponent {
|
|
8972
8998
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
8973
8999
|
|
8974
9000
|
function add_css$9(target) {
|
8975
|
-
append_styles(target, "svelte-
|
9001
|
+
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}");
|
8976
9002
|
}
|
8977
9003
|
|
8978
9004
|
function create_fragment$a(ctx) {
|
@@ -9000,9 +9026,9 @@ function create_fragment$a(ctx) {
|
|
9000
9026
|
this.h();
|
9001
9027
|
},
|
9002
9028
|
h() {
|
9003
|
-
attr(div0, "class", "item-inner svelte-
|
9029
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
9004
9030
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9005
|
-
attr(div1, "class", "item svelte-
|
9031
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
9006
9032
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
9007
9033
|
},
|
9008
9034
|
m(target, anchor) {
|
@@ -9128,7 +9154,7 @@ class SlideItem extends SvelteComponent {
|
|
9128
9154
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
9129
9155
|
|
9130
9156
|
function add_css$8(target) {
|
9131
|
-
append_styles(target, "svelte-
|
9157
|
+
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}");
|
9132
9158
|
}
|
9133
9159
|
|
9134
9160
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -9159,9 +9185,9 @@ function create_fragment$9(ctx) {
|
|
9159
9185
|
this.h();
|
9160
9186
|
},
|
9161
9187
|
h() {
|
9162
|
-
attr(div0, "class", "countdown-inner svelte-
|
9188
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
9163
9189
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9164
|
-
attr(div1, "class", "countdown svelte-
|
9190
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
9165
9191
|
},
|
9166
9192
|
m(target, anchor) {
|
9167
9193
|
insert_hydration(target, div1, anchor);
|
@@ -9291,7 +9317,7 @@ class Countdown extends SvelteComponent {
|
|
9291
9317
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
9292
9318
|
|
9293
9319
|
function add_css$7(target) {
|
9294
|
-
append_styles(target, "svelte-
|
9320
|
+
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}");
|
9295
9321
|
}
|
9296
9322
|
|
9297
9323
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -9374,7 +9400,7 @@ function create_fragment$8(ctx) {
|
|
9374
9400
|
this.h();
|
9375
9401
|
},
|
9376
9402
|
h() {
|
9377
|
-
attr(div, "class", "box svelte-
|
9403
|
+
attr(div, "class", "box svelte-1ccydfy");
|
9378
9404
|
},
|
9379
9405
|
m(target, anchor) {
|
9380
9406
|
insert_hydration(target, div, anchor);
|
@@ -9435,7 +9461,7 @@ class Box extends SvelteComponent {
|
|
9435
9461
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
9436
9462
|
|
9437
9463
|
function add_css$6(target) {
|
9438
|
-
append_styles(target, "svelte-
|
9464
|
+
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)}");
|
9439
9465
|
}
|
9440
9466
|
|
9441
9467
|
// (56:4) {#if svg}
|
@@ -9539,7 +9565,7 @@ function create_fragment$7(ctx) {
|
|
9539
9565
|
this.h();
|
9540
9566
|
},
|
9541
9567
|
h() {
|
9542
|
-
attr(div, "class", "icon svelte-
|
9568
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
9543
9569
|
},
|
9544
9570
|
m(target, anchor) {
|
9545
9571
|
insert_hydration(target, div, anchor);
|
@@ -9648,7 +9674,7 @@ class IconElement extends SvelteComponent {
|
|
9648
9674
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
9649
9675
|
|
9650
9676
|
function add_css$5(target) {
|
9651
|
-
append_styles(target, "svelte-
|
9677
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
9652
9678
|
}
|
9653
9679
|
|
9654
9680
|
function create_fragment$6(ctx) {
|
@@ -9684,7 +9710,7 @@ function create_fragment$6(ctx) {
|
|
9684
9710
|
this.h();
|
9685
9711
|
},
|
9686
9712
|
h() {
|
9687
|
-
attr(div, "class", "codeElement svelte-
|
9713
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
9688
9714
|
attr(div, "style", /*style*/ ctx[3]);
|
9689
9715
|
},
|
9690
9716
|
m(target, anchor) {
|
@@ -9773,7 +9799,7 @@ class CodeElement extends SvelteComponent {
|
|
9773
9799
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
9774
9800
|
|
9775
9801
|
function add_css$4(target) {
|
9776
|
-
append_styles(target, "svelte-
|
9802
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
9777
9803
|
}
|
9778
9804
|
|
9779
9805
|
function create_fragment$5(ctx) {
|
@@ -9797,7 +9823,7 @@ function create_fragment$5(ctx) {
|
|
9797
9823
|
this.h();
|
9798
9824
|
},
|
9799
9825
|
h() {
|
9800
|
-
attr(div, "class", "flex svelte-
|
9826
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
9801
9827
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
9802
9828
|
},
|
9803
9829
|
m(target, anchor) {
|
@@ -9894,7 +9920,7 @@ class Flex extends SvelteComponent {
|
|
9894
9920
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
9895
9921
|
|
9896
9922
|
function add_css$3(target) {
|
9897
|
-
append_styles(target, "svelte-
|
9923
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
9898
9924
|
}
|
9899
9925
|
|
9900
9926
|
function create_fragment$4(ctx) {
|
@@ -9917,7 +9943,7 @@ function create_fragment$4(ctx) {
|
|
9917
9943
|
this.h();
|
9918
9944
|
},
|
9919
9945
|
h() {
|
9920
|
-
attr(div, "class", "flex-item svelte-
|
9946
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
9921
9947
|
attr(div, "style", /*style*/ ctx[0]);
|
9922
9948
|
},
|
9923
9949
|
m(target, anchor) {
|
@@ -10337,7 +10363,7 @@ class GridModalState extends SvelteComponent {
|
|
10337
10363
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
10338
10364
|
|
10339
10365
|
function add_css$2(target) {
|
10340
|
-
append_styles(target, "svelte-
|
10366
|
+
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%}");
|
10341
10367
|
}
|
10342
10368
|
|
10343
10369
|
function create_fragment$2(ctx) {
|
@@ -10366,8 +10392,8 @@ function create_fragment$2(ctx) {
|
|
10366
10392
|
this.h();
|
10367
10393
|
},
|
10368
10394
|
h() {
|
10369
|
-
attr(div0, "class", "text-block-inner svelte-
|
10370
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10395
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
10396
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
10371
10397
|
attr(div1, "style", /*style*/ ctx[2]);
|
10372
10398
|
},
|
10373
10399
|
m(target, anchor) {
|
@@ -10381,7 +10407,7 @@ function create_fragment$2(ctx) {
|
|
10381
10407
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
10382
10408
|
rendertext.$set(rendertext_changes);
|
10383
10409
|
|
10384
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10410
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
10385
10411
|
attr(div1, "class", div1_class_value);
|
10386
10412
|
}
|
10387
10413
|
|
@@ -10459,7 +10485,7 @@ class TextBlock extends SvelteComponent {
|
|
10459
10485
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
10460
10486
|
|
10461
10487
|
function add_css$1(target) {
|
10462
|
-
append_styles(target, "svelte-
|
10488
|
+
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)}");
|
10463
10489
|
}
|
10464
10490
|
|
10465
10491
|
function create_fragment$1(ctx) {
|
@@ -10489,9 +10515,9 @@ function create_fragment$1(ctx) {
|
|
10489
10515
|
this.h();
|
10490
10516
|
},
|
10491
10517
|
h() {
|
10492
|
-
attr(button, "class", "text-button svelte-
|
10518
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
10493
10519
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
10494
|
-
attr(div, "class", "text-button-block svelte-
|
10520
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
10495
10521
|
attr(div, "style", /*_style*/ ctx[2]);
|
10496
10522
|
},
|
10497
10523
|
m(target, anchor) {
|
@@ -10597,7 +10623,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
10597
10623
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
10598
10624
|
|
10599
10625
|
function add_css(target) {
|
10600
|
-
append_styles(target, "svelte-
|
10626
|
+
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)}");
|
10601
10627
|
}
|
10602
10628
|
|
10603
10629
|
function create_fragment(ctx) {
|
@@ -10633,14 +10659,14 @@ function create_fragment(ctx) {
|
|
10633
10659
|
this.h();
|
10634
10660
|
},
|
10635
10661
|
h() {
|
10636
|
-
attr(img, "class", "image svelte-
|
10662
|
+
attr(img, "class", "image svelte-1pdw891");
|
10637
10663
|
attr(img, "loading", "lazy");
|
10638
10664
|
attr(img, "width", "auto");
|
10639
10665
|
attr(img, "height", "auto");
|
10640
10666
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
10641
10667
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
10642
10668
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10643
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10669
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
10644
10670
|
attr(div, "style", /*_style*/ ctx[5]);
|
10645
10671
|
},
|
10646
10672
|
m(target, anchor) {
|
@@ -10665,7 +10691,7 @@ function create_fragment(ctx) {
|
|
10665
10691
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10666
10692
|
}
|
10667
10693
|
|
10668
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10694
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
10669
10695
|
attr(div, "class", div_class_value);
|
10670
10696
|
}
|
10671
10697
|
|