@plaidev/karte-action-sdk 1.1.198 → 1.1.199-28181334.2aca4feb
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 +27 -9
- package/dist/hydrate/index.es.js +148 -125
- package/dist/index.es.d.ts +27 -9
- package/dist/index.es.js +151 -128
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -1355,19 +1355,42 @@ function request(url, data, cb) {
|
|
1355
1355
|
});
|
1356
1356
|
}
|
1357
1357
|
/** @internal */
|
1358
|
-
const loadActionTableRow = async (config, api_key, endpoint) => {
|
1359
|
-
return new Promise((resolve, reject) =>
|
1358
|
+
const loadActionTableRow = async (config, data, api_key, endpoint) => {
|
1359
|
+
return new Promise((resolve, reject) => {
|
1360
|
+
const key = data[config.query.key] ?? null;
|
1361
|
+
if (key == null) {
|
1362
|
+
console.warn('key is not found. key: ', config.query.key);
|
1363
|
+
return reject('key is not found.');
|
1364
|
+
}
|
1365
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => err ? reject(err) : resolve(data));
|
1366
|
+
});
|
1360
1367
|
};
|
1361
1368
|
/** @internal */
|
1362
|
-
const loadActionTableRows = async (config, api_key, endpoint) => {
|
1363
|
-
return new Promise((resolve, reject) =>
|
1369
|
+
const loadActionTableRows = async (config, data, api_key, endpoint) => {
|
1370
|
+
return new Promise((resolve, reject) => {
|
1371
|
+
const keys = config.query.key.map(key => data[key] ?? null);
|
1372
|
+
if (keys.some(key => key == null)) {
|
1373
|
+
keys.filter(key => key == null).forEach(key => console.warn('key is not found. key: ', key));
|
1374
|
+
return reject('key is not found.');
|
1375
|
+
}
|
1376
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(config.query.key, (err, data) => (err ? reject(err) : resolve(data)));
|
1377
|
+
});
|
1364
1378
|
};
|
1365
1379
|
/** @internal */
|
1366
|
-
const loadActionTableQuery = async (config, api_key, endpoint) => {
|
1367
|
-
return new Promise((resolve, reject) =>
|
1380
|
+
const loadActionTableQuery = async (config, data, api_key, endpoint) => {
|
1381
|
+
return new Promise((resolve, reject) => {
|
1382
|
+
const params = config.query.params.map(param => data[param] ?? null);
|
1383
|
+
if (params.some(param => param == null)) {
|
1384
|
+
params
|
1385
|
+
.filter(param => param == null)
|
1386
|
+
.forEach(param => console.warn('key is not found. param: ', param));
|
1387
|
+
return reject('key is not found.');
|
1388
|
+
}
|
1389
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, config.query.params, null, (err, data) => (err ? reject(err) : resolve(data)));
|
1390
|
+
});
|
1368
1391
|
};
|
1369
1392
|
/** @internal */
|
1370
|
-
const loadActionTable = async (config, api_key, endpoint) => {
|
1393
|
+
const loadActionTable = async (config, data, api_key, endpoint) => {
|
1371
1394
|
console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
|
1372
1395
|
const results = await Promise.all(config
|
1373
1396
|
.filter(c => c.resolver === 'action-table-row' ||
|
@@ -1375,13 +1398,13 @@ const loadActionTable = async (config, api_key, endpoint) => {
|
|
1375
1398
|
c.resolver === 'action-table-query')
|
1376
1399
|
.map(async (c) => {
|
1377
1400
|
if (c.resolver === 'action-table-row') {
|
1378
|
-
return await loadActionTableRow(c, api_key, endpoint);
|
1401
|
+
return await loadActionTableRow(c, data, api_key, endpoint);
|
1379
1402
|
}
|
1380
1403
|
else if (c.resolver === 'action-table-rows') {
|
1381
|
-
return await loadActionTableRows(c, api_key, endpoint);
|
1404
|
+
return await loadActionTableRows(c, data, api_key, endpoint);
|
1382
1405
|
}
|
1383
1406
|
else if (c.resolver === 'action-table-query') {
|
1384
|
-
return await loadActionTableQuery(c, api_key, endpoint);
|
1407
|
+
return await loadActionTableQuery(c, data, api_key, endpoint);
|
1385
1408
|
}
|
1386
1409
|
}));
|
1387
1410
|
return config.reduce((acc, c, i) => {
|
@@ -1393,8 +1416,8 @@ const loadActionTable = async (config, api_key, endpoint) => {
|
|
1393
1416
|
}, {});
|
1394
1417
|
};
|
1395
1418
|
/** @internal */
|
1396
|
-
async function setupActionTable(localVariablesQuery, apiKey) {
|
1397
|
-
const result = await loadActionTable(localVariablesQuery, apiKey);
|
1419
|
+
async function setupActionTable(localVariablesQuery, data, apiKey) {
|
1420
|
+
const result = await loadActionTable(localVariablesQuery, data, apiKey);
|
1398
1421
|
let success = false;
|
1399
1422
|
if (Object.keys(result).length === localVariablesQuery.length) {
|
1400
1423
|
setVariables(result);
|
@@ -1406,7 +1429,7 @@ async function setupActionTable(localVariablesQuery, apiKey) {
|
|
1406
1429
|
}
|
1407
1430
|
/** @internal */
|
1408
1431
|
function initActionTable(localVariablesQuery) {
|
1409
|
-
|
1432
|
+
const initValues = {
|
1410
1433
|
// default values
|
1411
1434
|
action_table: [],
|
1412
1435
|
};
|
@@ -1736,11 +1759,10 @@ function createModal(App, options = {
|
|
1736
1759
|
// ここからメインの処理
|
1737
1760
|
initialize({ send: options.send, initialState: data.initial_state });
|
1738
1761
|
// ActionTable APIへの非同期リクエスト
|
1739
|
-
console.log("initialize action table");
|
1740
1762
|
initActionTable(options.localVariablesQuery);
|
1741
1763
|
let actionTablePromise = null;
|
1742
1764
|
if (options.localVariablesQuery && data.api_key) {
|
1743
|
-
actionTablePromise = setupActionTable(options.localVariablesQuery, data.api_key);
|
1765
|
+
actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key);
|
1744
1766
|
}
|
1745
1767
|
// NOTE: onCreateより前にListenする必要がある
|
1746
1768
|
window.addEventListener(ACTION_SHOW_EVENT, handleShow);
|
@@ -1930,7 +1952,8 @@ async function runScript$1(options = {
|
|
1930
1952
|
data,
|
1931
1953
|
};
|
1932
1954
|
initialize({ send: options.send, initialState: data.initial_state });
|
1933
|
-
|
1955
|
+
initActionTable(options.localVariablesQuery);
|
1956
|
+
const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
|
1934
1957
|
if (!success)
|
1935
1958
|
return;
|
1936
1959
|
options.send('script_fired');
|
@@ -2601,7 +2624,7 @@ class State extends SvelteComponent {
|
|
2601
2624
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2602
2625
|
|
2603
2626
|
function add_css$t(target) {
|
2604
|
-
append_styles(target, "svelte-
|
2627
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2605
2628
|
}
|
2606
2629
|
|
2607
2630
|
// (23:0) {#if $state === path}
|
@@ -2618,7 +2641,7 @@ function create_if_block$8(ctx) {
|
|
2618
2641
|
t = space();
|
2619
2642
|
if (default_slot) default_slot.c();
|
2620
2643
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
2621
|
-
attr(div, "class", "state-item svelte-
|
2644
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
2622
2645
|
},
|
2623
2646
|
m(target, anchor) {
|
2624
2647
|
insert(target, div, anchor);
|
@@ -3020,7 +3043,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3020
3043
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3021
3044
|
|
3022
3045
|
function add_css$s(target) {
|
3023
|
-
append_styles(target, "svelte-
|
3046
|
+
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}");
|
3024
3047
|
}
|
3025
3048
|
|
3026
3049
|
// (9:0) {#if backgroundOverlay}
|
@@ -3032,7 +3055,7 @@ function create_if_block$7(ctx) {
|
|
3032
3055
|
return {
|
3033
3056
|
c() {
|
3034
3057
|
div = element("div");
|
3035
|
-
attr(div, "class", "background svelte-
|
3058
|
+
attr(div, "class", "background svelte-1d4fta");
|
3036
3059
|
},
|
3037
3060
|
m(target, anchor) {
|
3038
3061
|
insert(target, div, anchor);
|
@@ -3143,7 +3166,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3143
3166
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3144
3167
|
|
3145
3168
|
function add_css$r(target) {
|
3146
|
-
append_styles(target, "svelte-
|
3169
|
+
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}");
|
3147
3170
|
}
|
3148
3171
|
|
3149
3172
|
// (50:0) {:else}
|
@@ -3172,7 +3195,7 @@ function create_else_block$3(ctx) {
|
|
3172
3195
|
button = element("button");
|
3173
3196
|
if (default_slot) default_slot.c();
|
3174
3197
|
set_attributes(button, button_data);
|
3175
|
-
toggle_class(button, "svelte-
|
3198
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3176
3199
|
},
|
3177
3200
|
m(target, anchor) {
|
3178
3201
|
insert(target, button, anchor);
|
@@ -3211,7 +3234,7 @@ function create_else_block$3(ctx) {
|
|
3211
3234
|
dataAttrStopPropagation('click')
|
3212
3235
|
]));
|
3213
3236
|
|
3214
|
-
toggle_class(button, "svelte-
|
3237
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3215
3238
|
},
|
3216
3239
|
i(local) {
|
3217
3240
|
if (current) return;
|
@@ -3242,7 +3265,7 @@ function create_if_block_2(ctx) {
|
|
3242
3265
|
c() {
|
3243
3266
|
div = element("div");
|
3244
3267
|
if (default_slot) default_slot.c();
|
3245
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3268
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
|
3246
3269
|
attr(div, "style", /*style*/ ctx[1]);
|
3247
3270
|
},
|
3248
3271
|
m(target, anchor) {
|
@@ -3326,7 +3349,7 @@ function create_if_block_1$2(ctx) {
|
|
3326
3349
|
a = element("a");
|
3327
3350
|
if (default_slot) default_slot.c();
|
3328
3351
|
set_attributes(a, a_data);
|
3329
|
-
toggle_class(a, "svelte-
|
3352
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3330
3353
|
},
|
3331
3354
|
m(target, anchor) {
|
3332
3355
|
insert(target, a, anchor);
|
@@ -3368,7 +3391,7 @@ function create_if_block_1$2(ctx) {
|
|
3368
3391
|
dataAttrStopPropagation('click')
|
3369
3392
|
]));
|
3370
3393
|
|
3371
|
-
toggle_class(a, "svelte-
|
3394
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3372
3395
|
},
|
3373
3396
|
i(local) {
|
3374
3397
|
if (current) return;
|
@@ -3399,7 +3422,7 @@ function create_if_block$6(ctx) {
|
|
3399
3422
|
c() {
|
3400
3423
|
div = element("div");
|
3401
3424
|
if (default_slot) default_slot.c();
|
3402
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3425
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
|
3403
3426
|
attr(div, "style", /*style*/ ctx[1]);
|
3404
3427
|
},
|
3405
3428
|
m(target, anchor) {
|
@@ -3603,7 +3626,7 @@ class Button extends SvelteComponent {
|
|
3603
3626
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3604
3627
|
|
3605
3628
|
function add_css$q(target) {
|
3606
|
-
append_styles(target, "svelte-
|
3629
|
+
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}");
|
3607
3630
|
}
|
3608
3631
|
|
3609
3632
|
// (145:0) {#if visible}
|
@@ -3628,7 +3651,7 @@ function create_if_block$5(ctx) {
|
|
3628
3651
|
c() {
|
3629
3652
|
div = element("div");
|
3630
3653
|
create_component(button.$$.fragment);
|
3631
|
-
attr(div, "class", "modal svelte-
|
3654
|
+
attr(div, "class", "modal svelte-yvwr7u");
|
3632
3655
|
attr(div, "role", "dialog");
|
3633
3656
|
attr(div, "aria-modal", "true");
|
3634
3657
|
attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
|
@@ -3706,7 +3729,7 @@ function create_if_block_1$1(ctx) {
|
|
3706
3729
|
c() {
|
3707
3730
|
div = element("div");
|
3708
3731
|
create_component(button.$$.fragment);
|
3709
|
-
attr(div, "class", "close svelte-
|
3732
|
+
attr(div, "class", "close svelte-yvwr7u");
|
3710
3733
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
|
3711
3734
|
},
|
3712
3735
|
m(target, anchor) {
|
@@ -3795,7 +3818,7 @@ function create_default_slot$6(ctx) {
|
|
3795
3818
|
t = space();
|
3796
3819
|
div = element("div");
|
3797
3820
|
if (default_slot) default_slot.c();
|
3798
|
-
attr(div, "class", "modal-content svelte-
|
3821
|
+
attr(div, "class", "modal-content svelte-yvwr7u");
|
3799
3822
|
attr(div, "style", /*_style*/ ctx[4]);
|
3800
3823
|
},
|
3801
3824
|
m(target, anchor) {
|
@@ -4286,7 +4309,7 @@ class Grid extends SvelteComponent {
|
|
4286
4309
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4287
4310
|
|
4288
4311
|
function add_css$p(target) {
|
4289
|
-
append_styles(target, "svelte-
|
4312
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4290
4313
|
}
|
4291
4314
|
|
4292
4315
|
function create_fragment$r(ctx) {
|
@@ -4301,8 +4324,8 @@ function create_fragment$r(ctx) {
|
|
4301
4324
|
div1 = element("div");
|
4302
4325
|
div0 = element("div");
|
4303
4326
|
if (default_slot) default_slot.c();
|
4304
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4305
|
-
attr(div1, "class", "grid-item svelte-
|
4327
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4328
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4306
4329
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4307
4330
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4308
4331
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -4607,7 +4630,7 @@ class RenderText extends SvelteComponent {
|
|
4607
4630
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
4608
4631
|
|
4609
4632
|
function add_css$o(target) {
|
4610
|
-
append_styles(target, "svelte-
|
4633
|
+
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}");
|
4611
4634
|
}
|
4612
4635
|
|
4613
4636
|
// (93:2) {:else}
|
@@ -4624,8 +4647,8 @@ function create_else_block$1(ctx) {
|
|
4624
4647
|
div1 = element("div");
|
4625
4648
|
div0 = element("div");
|
4626
4649
|
create_component(rendertext.$$.fragment);
|
4627
|
-
attr(div0, "class", "text-element-inner svelte-
|
4628
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4650
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4651
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4629
4652
|
attr(div1, "style", /*style*/ ctx[5]);
|
4630
4653
|
},
|
4631
4654
|
m(target, anchor) {
|
@@ -4639,7 +4662,7 @@ function create_else_block$1(ctx) {
|
|
4639
4662
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4640
4663
|
rendertext.$set(rendertext_changes);
|
4641
4664
|
|
4642
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4665
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
4643
4666
|
attr(div1, "class", div1_class_value);
|
4644
4667
|
}
|
4645
4668
|
|
@@ -4689,12 +4712,12 @@ function create_if_block$3(ctx) {
|
|
4689
4712
|
t2 = space();
|
4690
4713
|
div2 = element("div");
|
4691
4714
|
div2.textContent = "コピーできませんでした";
|
4692
|
-
attr(div0, "class", "text-element-inner svelte-
|
4715
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4693
4716
|
attr(a, "href", '');
|
4694
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4717
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4695
4718
|
attr(a, "style", /*style*/ ctx[5]);
|
4696
|
-
attr(div1, "class", "tooltip svelte-
|
4697
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
4719
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
4720
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
4698
4721
|
},
|
4699
4722
|
m(target, anchor) {
|
4700
4723
|
insert(target, a, anchor);
|
@@ -4718,7 +4741,7 @@ function create_if_block$3(ctx) {
|
|
4718
4741
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4719
4742
|
rendertext.$set(rendertext_changes);
|
4720
4743
|
|
4721
|
-
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-
|
4744
|
+
if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
4722
4745
|
attr(a, "class", a_class_value);
|
4723
4746
|
}
|
4724
4747
|
|
@@ -4770,7 +4793,7 @@ function create_fragment$p(ctx) {
|
|
4770
4793
|
c() {
|
4771
4794
|
div = element("div");
|
4772
4795
|
if_block.c();
|
4773
|
-
attr(div, "class", "text-element-wrapper svelte-
|
4796
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
4774
4797
|
},
|
4775
4798
|
m(target, anchor) {
|
4776
4799
|
insert(target, div, anchor);
|
@@ -4935,7 +4958,7 @@ class TextElement extends SvelteComponent {
|
|
4935
4958
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
4936
4959
|
|
4937
4960
|
function add_css$n(target) {
|
4938
|
-
append_styles(target, "svelte-
|
4961
|
+
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)}");
|
4939
4962
|
}
|
4940
4963
|
|
4941
4964
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -4991,7 +5014,7 @@ function create_fragment$o(ctx) {
|
|
4991
5014
|
c() {
|
4992
5015
|
div = element("div");
|
4993
5016
|
create_component(button.$$.fragment);
|
4994
|
-
attr(div, "class", "text-button-element svelte-
|
5017
|
+
attr(div, "class", "text-button-element svelte-3hgcnq");
|
4995
5018
|
},
|
4996
5019
|
m(target, anchor) {
|
4997
5020
|
insert(target, div, anchor);
|
@@ -5083,7 +5106,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5083
5106
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5084
5107
|
|
5085
5108
|
function add_css$m(target) {
|
5086
|
-
append_styles(target, "svelte-
|
5109
|
+
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%}");
|
5087
5110
|
}
|
5088
5111
|
|
5089
5112
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5095,7 +5118,7 @@ function create_default_slot$4(ctx) {
|
|
5095
5118
|
return {
|
5096
5119
|
c() {
|
5097
5120
|
img = element("img");
|
5098
|
-
attr(img, "class", "image svelte-
|
5121
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5099
5122
|
attr(img, "loading", "lazy");
|
5100
5123
|
attr(img, "width", "auto");
|
5101
5124
|
attr(img, "height", "auto");
|
@@ -5145,7 +5168,7 @@ function create_fragment$n(ctx) {
|
|
5145
5168
|
c() {
|
5146
5169
|
div = element("div");
|
5147
5170
|
create_component(button.$$.fragment);
|
5148
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5171
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5149
5172
|
},
|
5150
5173
|
m(target, anchor) {
|
5151
5174
|
insert(target, div, anchor);
|
@@ -5164,7 +5187,7 @@ function create_fragment$n(ctx) {
|
|
5164
5187
|
|
5165
5188
|
button.$set(button_changes);
|
5166
5189
|
|
5167
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5190
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5168
5191
|
attr(div, "class", div_class_value);
|
5169
5192
|
}
|
5170
5193
|
},
|
@@ -5236,7 +5259,7 @@ class ImageElement extends SvelteComponent {
|
|
5236
5259
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5237
5260
|
|
5238
5261
|
function add_css$l(target) {
|
5239
|
-
append_styles(target, "svelte-
|
5262
|
+
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}");
|
5240
5263
|
}
|
5241
5264
|
|
5242
5265
|
function create_fragment$m(ctx) {
|
@@ -5249,7 +5272,7 @@ function create_fragment$m(ctx) {
|
|
5249
5272
|
c() {
|
5250
5273
|
div = element("div");
|
5251
5274
|
if (default_slot) default_slot.c();
|
5252
|
-
attr(div, "class", "list svelte-
|
5275
|
+
attr(div, "class", "list svelte-aquv6z");
|
5253
5276
|
attr(div, "style", /*style*/ ctx[0]);
|
5254
5277
|
},
|
5255
5278
|
m(target, anchor) {
|
@@ -5383,7 +5406,7 @@ class List extends SvelteComponent {
|
|
5383
5406
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
5384
5407
|
|
5385
5408
|
function add_css$k(target) {
|
5386
|
-
append_styles(target, "svelte-
|
5409
|
+
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}");
|
5387
5410
|
}
|
5388
5411
|
|
5389
5412
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -5453,7 +5476,7 @@ function create_fragment$l(ctx) {
|
|
5453
5476
|
c() {
|
5454
5477
|
div = element("div");
|
5455
5478
|
create_component(button.$$.fragment);
|
5456
|
-
attr(div, "class", "list-item svelte-
|
5479
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
5457
5480
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
5458
5481
|
},
|
5459
5482
|
m(target, anchor) {
|
@@ -5579,7 +5602,7 @@ class ListItem extends SvelteComponent {
|
|
5579
5602
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
5580
5603
|
|
5581
5604
|
function add_css$j(target) {
|
5582
|
-
append_styles(target, "svelte-
|
5605
|
+
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}");
|
5583
5606
|
}
|
5584
5607
|
|
5585
5608
|
function create_fragment$k(ctx) {
|
@@ -5588,7 +5611,7 @@ function create_fragment$k(ctx) {
|
|
5588
5611
|
return {
|
5589
5612
|
c() {
|
5590
5613
|
div = element("div");
|
5591
|
-
attr(div, "class", "embed svelte-
|
5614
|
+
attr(div, "class", "embed svelte-wocq4p");
|
5592
5615
|
attr(div, "style", /*_style*/ ctx[1]);
|
5593
5616
|
},
|
5594
5617
|
m(target, anchor) {
|
@@ -5631,7 +5654,7 @@ class EmbedElement extends SvelteComponent {
|
|
5631
5654
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
5632
5655
|
|
5633
5656
|
function add_css$i(target) {
|
5634
|
-
append_styles(target, "svelte-
|
5657
|
+
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%}");
|
5635
5658
|
}
|
5636
5659
|
|
5637
5660
|
function create_fragment$j(ctx) {
|
@@ -5643,7 +5666,7 @@ function create_fragment$j(ctx) {
|
|
5643
5666
|
div1 = element("div");
|
5644
5667
|
div0 = element("div");
|
5645
5668
|
attr(div0, "class", "karte-player");
|
5646
|
-
attr(div1, "class", "embed svelte-
|
5669
|
+
attr(div1, "class", "embed svelte-vikz49");
|
5647
5670
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5648
5671
|
},
|
5649
5672
|
m(target, anchor) {
|
@@ -5985,7 +6008,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
5985
6008
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
5986
6009
|
|
5987
6010
|
function add_css$h(target) {
|
5988
|
-
append_styles(target, "svelte-
|
6011
|
+
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%}");
|
5989
6012
|
}
|
5990
6013
|
|
5991
6014
|
function create_fragment$i(ctx) {
|
@@ -5997,7 +6020,7 @@ function create_fragment$i(ctx) {
|
|
5997
6020
|
div1 = element("div");
|
5998
6021
|
div0 = element("div");
|
5999
6022
|
attr(div0, "class", "karte-player");
|
6000
|
-
attr(div1, "class", "embed svelte-
|
6023
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6001
6024
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6002
6025
|
},
|
6003
6026
|
m(target, anchor) {
|
@@ -6181,7 +6204,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6181
6204
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6182
6205
|
|
6183
6206
|
function add_css$g(target) {
|
6184
|
-
append_styles(target, "svelte-
|
6207
|
+
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}");
|
6185
6208
|
}
|
6186
6209
|
|
6187
6210
|
function create_fragment$h(ctx) {
|
@@ -6194,12 +6217,12 @@ function create_fragment$h(ctx) {
|
|
6194
6217
|
c() {
|
6195
6218
|
div = element("div");
|
6196
6219
|
textarea = element("textarea");
|
6197
|
-
attr(textarea, "class", "textarea svelte-
|
6220
|
+
attr(textarea, "class", "textarea svelte-kyay3k");
|
6198
6221
|
textarea.value = /*$value*/ ctx[3];
|
6199
6222
|
textarea.required = /*required*/ ctx[0];
|
6200
6223
|
attr(textarea, "rows", /*rows*/ ctx[1]);
|
6201
6224
|
attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
|
6202
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6225
|
+
attr(div, "class", "textarea-wrapper svelte-kyay3k");
|
6203
6226
|
},
|
6204
6227
|
m(target, anchor) {
|
6205
6228
|
insert(target, div, anchor);
|
@@ -6295,7 +6318,7 @@ class FormTextarea extends SvelteComponent {
|
|
6295
6318
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6296
6319
|
|
6297
6320
|
function add_css$f(target) {
|
6298
|
-
append_styles(target, "svelte-
|
6321
|
+
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}");
|
6299
6322
|
}
|
6300
6323
|
|
6301
6324
|
function get_each_context$5(ctx, list, i) {
|
@@ -6328,14 +6351,14 @@ function create_each_block$5(ctx) {
|
|
6328
6351
|
t1 = text(t1_value);
|
6329
6352
|
t2 = space();
|
6330
6353
|
attr(input, "type", "radio");
|
6331
|
-
attr(input, "class", "radio-button-input svelte-
|
6354
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
6332
6355
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
6333
6356
|
attr(input, "name", /*name*/ ctx[0]);
|
6334
6357
|
input.value = input_value_value = /*option*/ ctx[16];
|
6335
6358
|
input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
|
6336
|
-
attr(span, "class", "radio-button-text svelte-
|
6359
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
6337
6360
|
attr(span, "style", /*_textStyle*/ ctx[2]);
|
6338
|
-
attr(label, "class", "radio-button svelte-
|
6361
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
6339
6362
|
},
|
6340
6363
|
m(target, anchor) {
|
6341
6364
|
insert(target, label, anchor);
|
@@ -6400,7 +6423,7 @@ function create_fragment$g(ctx) {
|
|
6400
6423
|
each_blocks[i].c();
|
6401
6424
|
}
|
6402
6425
|
|
6403
|
-
attr(div, "class", "radio-buttons svelte-
|
6426
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
6404
6427
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
6405
6428
|
},
|
6406
6429
|
m(target, anchor) {
|
@@ -6567,7 +6590,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
6567
6590
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
6568
6591
|
|
6569
6592
|
function add_css$e(target) {
|
6570
|
-
append_styles(target, "svelte-
|
6593
|
+
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}");
|
6571
6594
|
}
|
6572
6595
|
|
6573
6596
|
function get_each_context$4(ctx, list, i) {
|
@@ -6701,10 +6724,10 @@ function create_fragment$f(ctx) {
|
|
6701
6724
|
|
6702
6725
|
t = space();
|
6703
6726
|
div0 = element("div");
|
6704
|
-
attr(select, "class", "select-select svelte-
|
6727
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
6705
6728
|
attr(select, "style", /*style*/ ctx[3]);
|
6706
|
-
attr(div0, "class", "select-icon svelte-
|
6707
|
-
attr(div1, "class", "select svelte-
|
6729
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
6730
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
6708
6731
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
6709
6732
|
},
|
6710
6733
|
m(target, anchor) {
|
@@ -6906,7 +6929,7 @@ class FormSelect extends SvelteComponent {
|
|
6906
6929
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
6907
6930
|
|
6908
6931
|
function add_css$d(target) {
|
6909
|
-
append_styles(target, "svelte-
|
6932
|
+
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}");
|
6910
6933
|
}
|
6911
6934
|
|
6912
6935
|
function get_each_context$3(ctx, list, i) {
|
@@ -6945,19 +6968,19 @@ function create_each_block$3(ctx) {
|
|
6945
6968
|
span2 = element("span");
|
6946
6969
|
t2 = text(t2_value);
|
6947
6970
|
t3 = space();
|
6948
|
-
attr(input, "class", "check-box-input svelte-
|
6971
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
6949
6972
|
attr(input, "type", "checkbox");
|
6950
6973
|
attr(input, "name", /*name*/ ctx[0]);
|
6951
6974
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
6952
|
-
attr(span0, "class", "check-box-icon svelte-
|
6975
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
6953
6976
|
|
6954
6977
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
6955
6978
|
? ' _checked'
|
6956
|
-
: ''}`) + " svelte-
|
6979
|
+
: ''}`) + " svelte-1p65cg8"));
|
6957
6980
|
|
6958
|
-
attr(span2, "class", "check-box-text svelte-
|
6981
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
6959
6982
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
6960
|
-
attr(label, "class", "check-box svelte-
|
6983
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
6961
6984
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
6962
6985
|
},
|
6963
6986
|
m(target, anchor) {
|
@@ -6989,7 +7012,7 @@ function create_each_block$3(ctx) {
|
|
6989
7012
|
|
6990
7013
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
6991
7014
|
? ' _checked'
|
6992
|
-
: ''}`) + " svelte-
|
7015
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
6993
7016
|
attr(span1, "class", span1_class_value);
|
6994
7017
|
}
|
6995
7018
|
|
@@ -7028,7 +7051,7 @@ function create_fragment$e(ctx) {
|
|
7028
7051
|
each_blocks[i].c();
|
7029
7052
|
}
|
7030
7053
|
|
7031
|
-
attr(div, "class", "check-boxes svelte-
|
7054
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7032
7055
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7033
7056
|
},
|
7034
7057
|
m(target, anchor) {
|
@@ -7203,7 +7226,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7203
7226
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7204
7227
|
|
7205
7228
|
function add_css$c(target) {
|
7206
|
-
append_styles(target, "svelte-
|
7229
|
+
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}");
|
7207
7230
|
}
|
7208
7231
|
|
7209
7232
|
function get_each_context$2(ctx, list, i) {
|
@@ -7227,7 +7250,7 @@ function create_each_block$2(ctx) {
|
|
7227
7250
|
button = element("button");
|
7228
7251
|
t0 = text(t0_value);
|
7229
7252
|
t1 = space();
|
7230
|
-
attr(button, "class", "rating-button svelte-
|
7253
|
+
attr(button, "class", "rating-button svelte-zy2va9");
|
7231
7254
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
|
7232
7255
|
},
|
7233
7256
|
m(target, anchor) {
|
@@ -7276,7 +7299,7 @@ function create_fragment$d(ctx) {
|
|
7276
7299
|
each_blocks[i].c();
|
7277
7300
|
}
|
7278
7301
|
|
7279
|
-
attr(div, "class", "rating-buttons svelte-
|
7302
|
+
attr(div, "class", "rating-buttons svelte-zy2va9");
|
7280
7303
|
},
|
7281
7304
|
m(target, anchor) {
|
7282
7305
|
insert(target, div, anchor);
|
@@ -7413,7 +7436,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
7413
7436
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
7414
7437
|
|
7415
7438
|
function add_css$b(target) {
|
7416
|
-
append_styles(target, "svelte-
|
7439
|
+
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%)}");
|
7417
7440
|
}
|
7418
7441
|
|
7419
7442
|
function get_each_context$1(ctx, list, i) {
|
@@ -7438,9 +7461,9 @@ function create_each_block$1(ctx) {
|
|
7438
7461
|
img = element("img");
|
7439
7462
|
t = space();
|
7440
7463
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
7441
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7464
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
7442
7465
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
7443
|
-
attr(button, "class", "rating-button svelte-
|
7466
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
7444
7467
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
7445
7468
|
},
|
7446
7469
|
m(target, anchor) {
|
@@ -7456,7 +7479,7 @@ function create_each_block$1(ctx) {
|
|
7456
7479
|
p(new_ctx, dirty) {
|
7457
7480
|
ctx = new_ctx;
|
7458
7481
|
|
7459
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7482
|
+
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"))) {
|
7460
7483
|
attr(img, "class", img_class_value);
|
7461
7484
|
}
|
7462
7485
|
|
@@ -7489,7 +7512,7 @@ function create_fragment$c(ctx) {
|
|
7489
7512
|
each_blocks[i].c();
|
7490
7513
|
}
|
7491
7514
|
|
7492
|
-
attr(div, "class", "rating-buttons svelte-
|
7515
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
7493
7516
|
},
|
7494
7517
|
m(target, anchor) {
|
7495
7518
|
insert(target, div, anchor);
|
@@ -7597,7 +7620,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
7597
7620
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
7598
7621
|
|
7599
7622
|
function add_css$a(target) {
|
7600
|
-
append_styles(target, "svelte-
|
7623
|
+
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%}");
|
7601
7624
|
}
|
7602
7625
|
|
7603
7626
|
function get_each_context(ctx, list, i) {
|
@@ -7626,9 +7649,9 @@ function create_if_block_1(ctx) {
|
|
7626
7649
|
attr(svg, "viewBox", "0 0 10 16");
|
7627
7650
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
7628
7651
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
7629
|
-
attr(button, "class", "move-button svelte-
|
7652
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
7630
7653
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
7631
|
-
attr(div, "class", "prev-button-container svelte-
|
7654
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
7632
7655
|
},
|
7633
7656
|
m(target, anchor) {
|
7634
7657
|
insert(target, div, anchor);
|
@@ -7677,9 +7700,9 @@ function create_if_block$1(ctx) {
|
|
7677
7700
|
attr(svg, "viewBox", "0 0 10 16");
|
7678
7701
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
7679
7702
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
7680
|
-
attr(button, "class", "move-button svelte-
|
7703
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
7681
7704
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
7682
|
-
attr(div, "class", "next-button-container svelte-
|
7705
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
7683
7706
|
},
|
7684
7707
|
m(target, anchor) {
|
7685
7708
|
insert(target, div, anchor);
|
@@ -7727,9 +7750,9 @@ function create_each_block(ctx) {
|
|
7727
7750
|
button = element("button");
|
7728
7751
|
div = element("div");
|
7729
7752
|
t = space();
|
7730
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
7753
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
7731
7754
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
7732
|
-
attr(button, "class", "navigation-item svelte-
|
7755
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
7733
7756
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
7734
7757
|
},
|
7735
7758
|
m(target, anchor) {
|
@@ -7806,14 +7829,14 @@ function create_fragment$b(ctx) {
|
|
7806
7829
|
each_blocks[i].c();
|
7807
7830
|
}
|
7808
7831
|
|
7809
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
7832
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
7810
7833
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
7811
|
-
attr(div1, "class", "container svelte-
|
7834
|
+
attr(div1, "class", "container svelte-ji1fh");
|
7812
7835
|
attr(div1, "style", /*_style*/ ctx[0]);
|
7813
|
-
attr(div2, "class", "navigation svelte-
|
7836
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
7814
7837
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
7815
7838
|
set_attributes(div3, div3_data);
|
7816
|
-
toggle_class(div3, "svelte-
|
7839
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
7817
7840
|
},
|
7818
7841
|
m(target, anchor) {
|
7819
7842
|
insert(target, div3, anchor);
|
@@ -7855,7 +7878,7 @@ function create_fragment$b(ctx) {
|
|
7855
7878
|
}
|
7856
7879
|
}
|
7857
7880
|
|
7858
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
7881
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
7859
7882
|
attr(div0, "class", div0_class_value);
|
7860
7883
|
}
|
7861
7884
|
|
@@ -7921,7 +7944,7 @@ function create_fragment$b(ctx) {
|
|
7921
7944
|
}
|
7922
7945
|
|
7923
7946
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
7924
|
-
toggle_class(div3, "svelte-
|
7947
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
7925
7948
|
},
|
7926
7949
|
i(local) {
|
7927
7950
|
if (current) return;
|
@@ -8433,7 +8456,7 @@ class Slide extends SvelteComponent {
|
|
8433
8456
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
8434
8457
|
|
8435
8458
|
function add_css$9(target) {
|
8436
|
-
append_styles(target, "svelte-
|
8459
|
+
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}");
|
8437
8460
|
}
|
8438
8461
|
|
8439
8462
|
function create_fragment$a(ctx) {
|
@@ -8448,9 +8471,9 @@ function create_fragment$a(ctx) {
|
|
8448
8471
|
div1 = element("div");
|
8449
8472
|
div0 = element("div");
|
8450
8473
|
if (default_slot) default_slot.c();
|
8451
|
-
attr(div0, "class", "item-inner svelte-
|
8474
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
8452
8475
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8453
|
-
attr(div1, "class", "item svelte-
|
8476
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
8454
8477
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
8455
8478
|
},
|
8456
8479
|
m(target, anchor) {
|
@@ -8576,7 +8599,7 @@ class SlideItem extends SvelteComponent {
|
|
8576
8599
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
8577
8600
|
|
8578
8601
|
function add_css$8(target) {
|
8579
|
-
append_styles(target, "svelte-
|
8602
|
+
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}");
|
8580
8603
|
}
|
8581
8604
|
|
8582
8605
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -8594,9 +8617,9 @@ function create_fragment$9(ctx) {
|
|
8594
8617
|
div1 = element("div");
|
8595
8618
|
div0 = element("div");
|
8596
8619
|
if (default_slot) default_slot.c();
|
8597
|
-
attr(div0, "class", "countdown-inner svelte-
|
8620
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
8598
8621
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8599
|
-
attr(div1, "class", "countdown svelte-
|
8622
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
8600
8623
|
},
|
8601
8624
|
m(target, anchor) {
|
8602
8625
|
insert(target, div1, anchor);
|
@@ -8730,7 +8753,7 @@ class Countdown extends SvelteComponent {
|
|
8730
8753
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
8731
8754
|
|
8732
8755
|
function add_css$7(target) {
|
8733
|
-
append_styles(target, "svelte-
|
8756
|
+
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}");
|
8734
8757
|
}
|
8735
8758
|
|
8736
8759
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -8800,7 +8823,7 @@ function create_fragment$8(ctx) {
|
|
8800
8823
|
c() {
|
8801
8824
|
div = element("div");
|
8802
8825
|
create_component(button.$$.fragment);
|
8803
|
-
attr(div, "class", "box svelte-
|
8826
|
+
attr(div, "class", "box svelte-1ccydfy");
|
8804
8827
|
},
|
8805
8828
|
m(target, anchor) {
|
8806
8829
|
insert(target, div, anchor);
|
@@ -8861,7 +8884,7 @@ class Box extends SvelteComponent {
|
|
8861
8884
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
8862
8885
|
|
8863
8886
|
function add_css$6(target) {
|
8864
|
-
append_styles(target, "svelte-
|
8887
|
+
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)}");
|
8865
8888
|
}
|
8866
8889
|
|
8867
8890
|
// (56:4) {#if svg}
|
@@ -8943,7 +8966,7 @@ function create_fragment$7(ctx) {
|
|
8943
8966
|
c() {
|
8944
8967
|
div = element("div");
|
8945
8968
|
create_component(button.$$.fragment);
|
8946
|
-
attr(div, "class", "icon svelte-
|
8969
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
8947
8970
|
},
|
8948
8971
|
m(target, anchor) {
|
8949
8972
|
insert(target, div, anchor);
|
@@ -9052,7 +9075,7 @@ class IconElement extends SvelteComponent {
|
|
9052
9075
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
9053
9076
|
|
9054
9077
|
function add_css$5(target) {
|
9055
|
-
append_styles(target, "svelte-
|
9078
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
9056
9079
|
}
|
9057
9080
|
|
9058
9081
|
function create_fragment$6(ctx) {
|
@@ -9078,7 +9101,7 @@ function create_fragment$6(ctx) {
|
|
9078
9101
|
c() {
|
9079
9102
|
div = element("div");
|
9080
9103
|
if (switch_instance) create_component(switch_instance.$$.fragment);
|
9081
|
-
attr(div, "class", "codeElement svelte-
|
9104
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
9082
9105
|
attr(div, "style", /*style*/ ctx[3]);
|
9083
9106
|
},
|
9084
9107
|
m(target, anchor) {
|
@@ -9167,7 +9190,7 @@ class CodeElement extends SvelteComponent {
|
|
9167
9190
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
9168
9191
|
|
9169
9192
|
function add_css$4(target) {
|
9170
|
-
append_styles(target, "svelte-
|
9193
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
9171
9194
|
}
|
9172
9195
|
|
9173
9196
|
function create_fragment$5(ctx) {
|
@@ -9181,7 +9204,7 @@ function create_fragment$5(ctx) {
|
|
9181
9204
|
c() {
|
9182
9205
|
div = element("div");
|
9183
9206
|
if (default_slot) default_slot.c();
|
9184
|
-
attr(div, "class", "flex svelte-
|
9207
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
9185
9208
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
9186
9209
|
},
|
9187
9210
|
m(target, anchor) {
|
@@ -9278,7 +9301,7 @@ class Flex extends SvelteComponent {
|
|
9278
9301
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
9279
9302
|
|
9280
9303
|
function add_css$3(target) {
|
9281
|
-
append_styles(target, "svelte-
|
9304
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
9282
9305
|
}
|
9283
9306
|
|
9284
9307
|
function create_fragment$4(ctx) {
|
@@ -9291,7 +9314,7 @@ function create_fragment$4(ctx) {
|
|
9291
9314
|
c() {
|
9292
9315
|
div = element("div");
|
9293
9316
|
if (default_slot) default_slot.c();
|
9294
|
-
attr(div, "class", "flex-item svelte-
|
9317
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
9295
9318
|
attr(div, "style", /*style*/ ctx[0]);
|
9296
9319
|
},
|
9297
9320
|
m(target, anchor) {
|
@@ -9699,7 +9722,7 @@ class GridModalState extends SvelteComponent {
|
|
9699
9722
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
9700
9723
|
|
9701
9724
|
function add_css$2(target) {
|
9702
|
-
append_styles(target, "svelte-
|
9725
|
+
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%}");
|
9703
9726
|
}
|
9704
9727
|
|
9705
9728
|
function create_fragment$2(ctx) {
|
@@ -9715,8 +9738,8 @@ function create_fragment$2(ctx) {
|
|
9715
9738
|
div1 = element("div");
|
9716
9739
|
div0 = element("div");
|
9717
9740
|
create_component(rendertext.$$.fragment);
|
9718
|
-
attr(div0, "class", "text-block-inner svelte-
|
9719
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
9741
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
9742
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
9720
9743
|
attr(div1, "style", /*style*/ ctx[2]);
|
9721
9744
|
},
|
9722
9745
|
m(target, anchor) {
|
@@ -9730,7 +9753,7 @@ function create_fragment$2(ctx) {
|
|
9730
9753
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
9731
9754
|
rendertext.$set(rendertext_changes);
|
9732
9755
|
|
9733
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
9756
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
9734
9757
|
attr(div1, "class", div1_class_value);
|
9735
9758
|
}
|
9736
9759
|
|
@@ -9808,7 +9831,7 @@ class TextBlock extends SvelteComponent {
|
|
9808
9831
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
9809
9832
|
|
9810
9833
|
function add_css$1(target) {
|
9811
|
-
append_styles(target, "svelte-
|
9834
|
+
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)}");
|
9812
9835
|
}
|
9813
9836
|
|
9814
9837
|
function create_fragment$1(ctx) {
|
@@ -9825,9 +9848,9 @@ function create_fragment$1(ctx) {
|
|
9825
9848
|
div = element("div");
|
9826
9849
|
button = element("button");
|
9827
9850
|
create_component(rendertext.$$.fragment);
|
9828
|
-
attr(button, "class", "text-button svelte-
|
9851
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
9829
9852
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
9830
|
-
attr(div, "class", "text-button-block svelte-
|
9853
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
9831
9854
|
attr(div, "style", /*_style*/ ctx[2]);
|
9832
9855
|
},
|
9833
9856
|
m(target, anchor) {
|
@@ -9933,7 +9956,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
9933
9956
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
9934
9957
|
|
9935
9958
|
function add_css(target) {
|
9936
|
-
append_styles(target, "svelte-
|
9959
|
+
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)}");
|
9937
9960
|
}
|
9938
9961
|
|
9939
9962
|
function create_fragment(ctx) {
|
@@ -9949,14 +9972,14 @@ function create_fragment(ctx) {
|
|
9949
9972
|
c() {
|
9950
9973
|
div = element("div");
|
9951
9974
|
img = element("img");
|
9952
|
-
attr(img, "class", "image svelte-
|
9975
|
+
attr(img, "class", "image svelte-1pdw891");
|
9953
9976
|
attr(img, "loading", "lazy");
|
9954
9977
|
attr(img, "width", "auto");
|
9955
9978
|
attr(img, "height", "auto");
|
9956
9979
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
9957
9980
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
9958
9981
|
attr(img, "alt", /*alt*/ ctx[1]);
|
9959
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
9982
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
9960
9983
|
attr(div, "style", /*_style*/ ctx[5]);
|
9961
9984
|
},
|
9962
9985
|
m(target, anchor) {
|
@@ -9981,7 +10004,7 @@ function create_fragment(ctx) {
|
|
9981
10004
|
attr(img, "alt", /*alt*/ ctx[1]);
|
9982
10005
|
}
|
9983
10006
|
|
9984
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10007
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
9985
10008
|
attr(div, "class", div_class_value);
|
9986
10009
|
}
|
9987
10010
|
|