@plaidev/karte-action-sdk 1.1.222 → 1.1.224-28341417.bf1b2188
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 +10 -22
- package/dist/hydrate/index.es.js +148 -129
- package/dist/index.es.d.ts +10 -22
- package/dist/index.es.js +148 -129
- package/package.json +10 -10
package/dist/hydrate/index.es.js
CHANGED
@@ -1338,7 +1338,7 @@ const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__
|
|
1338
1338
|
/**
|
1339
1339
|
* アクションテーブルを管理するメソッドを取得する
|
1340
1340
|
*
|
1341
|
-
* @param config -
|
1341
|
+
* @param config - アクションテーブル設定情報
|
1342
1342
|
*
|
1343
1343
|
* @returns メソッドを返します
|
1344
1344
|
*
|
@@ -1349,6 +1349,14 @@ function collection$1(config) {
|
|
1349
1349
|
const api_key = config.api_key;
|
1350
1350
|
const table = config.table;
|
1351
1351
|
return {
|
1352
|
+
/**
|
1353
|
+
* キーを1つ、または複数指定して、対応するアクションテーブルの行を取得する
|
1354
|
+
*
|
1355
|
+
* @param key - 取得する行のキーを一つ、または複数配列で指定
|
1356
|
+
* @param cb - テーブルの行を取得した後に実行するcallback関数
|
1357
|
+
*
|
1358
|
+
* @public
|
1359
|
+
*/
|
1352
1360
|
get(key, cb) {
|
1353
1361
|
if (Array.isArray(key)) {
|
1354
1362
|
return request(`${endpoint}/getByKeys`, {
|
@@ -1358,15 +1366,25 @@ function collection$1(config) {
|
|
1358
1366
|
}, cb);
|
1359
1367
|
}
|
1360
1368
|
else {
|
1361
|
-
request(`${endpoint}/getByKey`, {
|
1369
|
+
return request(`${endpoint}/getByKey`, {
|
1362
1370
|
api_key,
|
1363
1371
|
name: table,
|
1364
1372
|
key,
|
1365
1373
|
}, cb);
|
1366
1374
|
}
|
1367
1375
|
},
|
1376
|
+
/**
|
1377
|
+
* クエリーを指定して、アクションテーブルから行を取得する
|
1378
|
+
* なお、クエリーは事前に管理画面で設定しておく必要があります。
|
1379
|
+
*
|
1380
|
+
* @param query_name - クエリー名
|
1381
|
+
* @param params - クエリーに指定するパラメーター。 `{key: value}` の形式で指定
|
1382
|
+
* @param cb - テーブルの行を取得した後に実行するcallback関数
|
1383
|
+
*
|
1384
|
+
* @public
|
1385
|
+
*/
|
1368
1386
|
getByQuery(query_name, params, options, cb) {
|
1369
|
-
request(`${endpoint}/getByQuery`, {
|
1387
|
+
return request(`${endpoint}/getByQuery`, {
|
1370
1388
|
api_key,
|
1371
1389
|
name: table,
|
1372
1390
|
query_name,
|
@@ -1374,6 +1392,7 @@ function collection$1(config) {
|
|
1374
1392
|
options,
|
1375
1393
|
}, cb);
|
1376
1394
|
},
|
1395
|
+
/** @internal */
|
1377
1396
|
set(key, value, cb) {
|
1378
1397
|
request(`${endpoint}/set`, {
|
1379
1398
|
api_key,
|
@@ -2983,7 +3002,7 @@ class State extends SvelteComponent {
|
|
2983
3002
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2984
3003
|
|
2985
3004
|
function add_css$v(target) {
|
2986
|
-
append_styles(target, "svelte-
|
3005
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2987
3006
|
}
|
2988
3007
|
|
2989
3008
|
// (23:0) {#if $state === path}
|
@@ -3010,7 +3029,7 @@ function create_if_block$8(ctx) {
|
|
3010
3029
|
},
|
3011
3030
|
h() {
|
3012
3031
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3013
|
-
attr(div, "class", "state-item svelte-
|
3032
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
3014
3033
|
},
|
3015
3034
|
m(target, anchor) {
|
3016
3035
|
insert_hydration(target, div, anchor);
|
@@ -3277,7 +3296,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3277
3296
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3278
3297
|
|
3279
3298
|
function add_css$u(target) {
|
3280
|
-
append_styles(target, "svelte-
|
3299
|
+
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}");
|
3281
3300
|
}
|
3282
3301
|
|
3283
3302
|
// (14:0) {#if backgroundOverlay}
|
@@ -3298,7 +3317,7 @@ function create_if_block$7(ctx) {
|
|
3298
3317
|
this.h();
|
3299
3318
|
},
|
3300
3319
|
h() {
|
3301
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3320
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
|
3302
3321
|
},
|
3303
3322
|
m(target, anchor) {
|
3304
3323
|
insert_hydration(target, div, anchor);
|
@@ -3309,7 +3328,7 @@ function create_if_block$7(ctx) {
|
|
3309
3328
|
}
|
3310
3329
|
},
|
3311
3330
|
p(ctx, dirty) {
|
3312
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3331
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
|
3313
3332
|
attr(div, "class", div_class_value);
|
3314
3333
|
}
|
3315
3334
|
},
|
@@ -3419,7 +3438,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3419
3438
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3420
3439
|
|
3421
3440
|
function add_css$t(target) {
|
3422
|
-
append_styles(target, "svelte-
|
3441
|
+
append_styles(target, "svelte-15k4deh", ".button.svelte-15k4deh{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-15k4deh:link,.button.svelte-15k4deh:visited,.button.svelte-15k4deh:active,.button.svelte-15k4deh:hover{color:inherit}");
|
3423
3442
|
}
|
3424
3443
|
|
3425
3444
|
// (50:0) {:else}
|
@@ -3458,7 +3477,7 @@ function create_else_block$4(ctx) {
|
|
3458
3477
|
},
|
3459
3478
|
h() {
|
3460
3479
|
set_attributes(button, button_data);
|
3461
|
-
toggle_class(button, "svelte-
|
3480
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3462
3481
|
},
|
3463
3482
|
m(target, anchor) {
|
3464
3483
|
insert_hydration(target, button, anchor);
|
@@ -3497,7 +3516,7 @@ function create_else_block$4(ctx) {
|
|
3497
3516
|
dataAttrStopPropagation('click')
|
3498
3517
|
]));
|
3499
3518
|
|
3500
|
-
toggle_class(button, "svelte-
|
3519
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3501
3520
|
},
|
3502
3521
|
i(local) {
|
3503
3522
|
if (current) return;
|
@@ -3538,7 +3557,7 @@ function create_if_block_2$1(ctx) {
|
|
3538
3557
|
this.h();
|
3539
3558
|
},
|
3540
3559
|
h() {
|
3541
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3560
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
|
3542
3561
|
attr(div, "style", /*style*/ ctx[1]);
|
3543
3562
|
},
|
3544
3563
|
m(target, anchor) {
|
@@ -3638,7 +3657,7 @@ function create_if_block_1$2(ctx) {
|
|
3638
3657
|
},
|
3639
3658
|
h() {
|
3640
3659
|
set_attributes(a, a_data);
|
3641
|
-
toggle_class(a, "svelte-
|
3660
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3642
3661
|
},
|
3643
3662
|
m(target, anchor) {
|
3644
3663
|
insert_hydration(target, a, anchor);
|
@@ -3680,7 +3699,7 @@ function create_if_block_1$2(ctx) {
|
|
3680
3699
|
dataAttrStopPropagation('click')
|
3681
3700
|
]));
|
3682
3701
|
|
3683
|
-
toggle_class(a, "svelte-
|
3702
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3684
3703
|
},
|
3685
3704
|
i(local) {
|
3686
3705
|
if (current) return;
|
@@ -3721,7 +3740,7 @@ function create_if_block$6(ctx) {
|
|
3721
3740
|
this.h();
|
3722
3741
|
},
|
3723
3742
|
h() {
|
3724
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3743
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
|
3725
3744
|
attr(div, "style", /*style*/ ctx[1]);
|
3726
3745
|
},
|
3727
3746
|
m(target, anchor) {
|
@@ -3929,7 +3948,7 @@ class Button extends SvelteComponent {
|
|
3929
3948
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3930
3949
|
|
3931
3950
|
function add_css$s(target) {
|
3932
|
-
append_styles(target, "svelte-
|
3951
|
+
append_styles(target, "svelte-1j0m3x1", ".modal.svelte-1j0m3x1{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1j0m3x1 > .button{flex:auto;display:flex}.close.svelte-1j0m3x1{position:absolute;top:0;right:0}.close.svelte-1j0m3x1 > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1j0m3x1 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1j0m3x1{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1j0m3x1{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc) !important;margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1j0m3x1{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp) !important;margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
|
3933
3952
|
}
|
3934
3953
|
|
3935
3954
|
// (275:0) {:else}
|
@@ -4104,7 +4123,7 @@ function create_if_block$5(ctx) {
|
|
4104
4123
|
this.h();
|
4105
4124
|
},
|
4106
4125
|
h() {
|
4107
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4126
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"));
|
4108
4127
|
attr(div, "role", "dialog");
|
4109
4128
|
attr(div, "aria-modal", "true");
|
4110
4129
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4128,7 +4147,7 @@ function create_if_block$5(ctx) {
|
|
4128
4147
|
|
4129
4148
|
button.$set(button_changes);
|
4130
4149
|
|
4131
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4150
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"))) {
|
4132
4151
|
attr(div, "class", div_class_value);
|
4133
4152
|
}
|
4134
4153
|
},
|
@@ -4192,7 +4211,7 @@ function create_if_block_1$1(ctx) {
|
|
4192
4211
|
this.h();
|
4193
4212
|
},
|
4194
4213
|
h() {
|
4195
|
-
attr(div, "class", "close svelte-
|
4214
|
+
attr(div, "class", "close svelte-1j0m3x1");
|
4196
4215
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4197
4216
|
},
|
4198
4217
|
m(target, anchor) {
|
@@ -4317,7 +4336,7 @@ function create_default_slot$6(ctx) {
|
|
4317
4336
|
this.h();
|
4318
4337
|
},
|
4319
4338
|
h() {
|
4320
|
-
attr(div, "class", "modal-content svelte-
|
4339
|
+
attr(div, "class", "modal-content svelte-1j0m3x1");
|
4321
4340
|
attr(div, "style", /*_style*/ ctx[5]);
|
4322
4341
|
},
|
4323
4342
|
m(target, anchor) {
|
@@ -4952,7 +4971,7 @@ class Grid extends SvelteComponent {
|
|
4952
4971
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4953
4972
|
|
4954
4973
|
function add_css$r(target) {
|
4955
|
-
append_styles(target, "svelte-
|
4974
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4956
4975
|
}
|
4957
4976
|
|
4958
4977
|
function create_fragment$t(ctx) {
|
@@ -4986,8 +5005,8 @@ function create_fragment$t(ctx) {
|
|
4986
5005
|
this.h();
|
4987
5006
|
},
|
4988
5007
|
h() {
|
4989
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4990
|
-
attr(div1, "class", "grid-item svelte-
|
5008
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
5009
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4991
5010
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4992
5011
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4993
5012
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5309,7 +5328,7 @@ class RenderText extends SvelteComponent {
|
|
5309
5328
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5310
5329
|
|
5311
5330
|
function add_css$q(target) {
|
5312
|
-
append_styles(target, "svelte-
|
5331
|
+
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}");
|
5313
5332
|
}
|
5314
5333
|
|
5315
5334
|
// (94:2) {:else}
|
@@ -5339,8 +5358,8 @@ function create_else_block$1(ctx) {
|
|
5339
5358
|
this.h();
|
5340
5359
|
},
|
5341
5360
|
h() {
|
5342
|
-
attr(div0, "class", "text-element-inner svelte-
|
5343
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5361
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5362
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5344
5363
|
attr(div1, "style", /*style*/ ctx[5]);
|
5345
5364
|
},
|
5346
5365
|
m(target, anchor) {
|
@@ -5354,7 +5373,7 @@ function create_else_block$1(ctx) {
|
|
5354
5373
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5355
5374
|
rendertext.$set(rendertext_changes);
|
5356
5375
|
|
5357
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5376
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5358
5377
|
attr(div1, "class", div1_class_value);
|
5359
5378
|
}
|
5360
5379
|
|
@@ -5429,12 +5448,12 @@ function create_if_block$3(ctx) {
|
|
5429
5448
|
this.h();
|
5430
5449
|
},
|
5431
5450
|
h() {
|
5432
|
-
attr(div0, "class", "text-element-inner svelte-
|
5451
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5433
5452
|
attr(a, "href", '');
|
5434
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5453
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5435
5454
|
attr(a, "style", /*style*/ ctx[5]);
|
5436
|
-
attr(div1, "class", "tooltip svelte-
|
5437
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5455
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
5456
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
5438
5457
|
},
|
5439
5458
|
m(target, anchor) {
|
5440
5459
|
insert_hydration(target, a, anchor);
|
@@ -5460,7 +5479,7 @@ function create_if_block$3(ctx) {
|
|
5460
5479
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5461
5480
|
rendertext.$set(rendertext_changes);
|
5462
5481
|
|
5463
|
-
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-
|
5482
|
+
if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5464
5483
|
attr(a, "class", a_class_value);
|
5465
5484
|
}
|
5466
5485
|
|
@@ -5522,7 +5541,7 @@ function create_fragment$r(ctx) {
|
|
5522
5541
|
this.h();
|
5523
5542
|
},
|
5524
5543
|
h() {
|
5525
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5544
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
5526
5545
|
},
|
5527
5546
|
m(target, anchor) {
|
5528
5547
|
insert_hydration(target, div, anchor);
|
@@ -5688,7 +5707,7 @@ class TextElement extends SvelteComponent {
|
|
5688
5707
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5689
5708
|
|
5690
5709
|
function add_css$p(target) {
|
5691
|
-
append_styles(target, "svelte-
|
5710
|
+
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)}");
|
5692
5711
|
}
|
5693
5712
|
|
5694
5713
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5757,7 +5776,7 @@ function create_fragment$q(ctx) {
|
|
5757
5776
|
this.h();
|
5758
5777
|
},
|
5759
5778
|
h() {
|
5760
|
-
attr(div, "class", "text-button-element svelte-
|
5779
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5761
5780
|
},
|
5762
5781
|
m(target, anchor) {
|
5763
5782
|
insert_hydration(target, div, anchor);
|
@@ -5849,7 +5868,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5849
5868
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5850
5869
|
|
5851
5870
|
function add_css$o(target) {
|
5852
|
-
append_styles(target, "svelte-
|
5871
|
+
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%}");
|
5853
5872
|
}
|
5854
5873
|
|
5855
5874
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5877,7 +5896,7 @@ function create_default_slot$4(ctx) {
|
|
5877
5896
|
this.h();
|
5878
5897
|
},
|
5879
5898
|
h() {
|
5880
|
-
attr(img, "class", "image svelte-
|
5899
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5881
5900
|
attr(img, "loading", "lazy");
|
5882
5901
|
attr(img, "width", "auto");
|
5883
5902
|
attr(img, "height", "auto");
|
@@ -5949,7 +5968,7 @@ function create_fragment$p(ctx) {
|
|
5949
5968
|
this.h();
|
5950
5969
|
},
|
5951
5970
|
h() {
|
5952
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5971
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5953
5972
|
},
|
5954
5973
|
m(target, anchor) {
|
5955
5974
|
insert_hydration(target, div, anchor);
|
@@ -5968,7 +5987,7 @@ function create_fragment$p(ctx) {
|
|
5968
5987
|
|
5969
5988
|
button.$set(button_changes);
|
5970
5989
|
|
5971
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5990
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5972
5991
|
attr(div, "class", div_class_value);
|
5973
5992
|
}
|
5974
5993
|
},
|
@@ -6040,7 +6059,7 @@ class ImageElement extends SvelteComponent {
|
|
6040
6059
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
6041
6060
|
|
6042
6061
|
function add_css$n(target) {
|
6043
|
-
append_styles(target, "svelte-
|
6062
|
+
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}");
|
6044
6063
|
}
|
6045
6064
|
|
6046
6065
|
function create_fragment$o(ctx) {
|
@@ -6063,7 +6082,7 @@ function create_fragment$o(ctx) {
|
|
6063
6082
|
this.h();
|
6064
6083
|
},
|
6065
6084
|
h() {
|
6066
|
-
attr(div, "class", "list svelte-
|
6085
|
+
attr(div, "class", "list svelte-aquv6z");
|
6067
6086
|
attr(div, "style", /*style*/ ctx[0]);
|
6068
6087
|
},
|
6069
6088
|
m(target, anchor) {
|
@@ -6197,7 +6216,7 @@ class List extends SvelteComponent {
|
|
6197
6216
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6198
6217
|
|
6199
6218
|
function add_css$m(target) {
|
6200
|
-
append_styles(target, "svelte-
|
6219
|
+
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}");
|
6201
6220
|
}
|
6202
6221
|
|
6203
6222
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6280,7 +6299,7 @@ function create_fragment$n(ctx) {
|
|
6280
6299
|
this.h();
|
6281
6300
|
},
|
6282
6301
|
h() {
|
6283
|
-
attr(div, "class", "list-item svelte-
|
6302
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
6284
6303
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6285
6304
|
},
|
6286
6305
|
m(target, anchor) {
|
@@ -6406,7 +6425,7 @@ class ListItem extends SvelteComponent {
|
|
6406
6425
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6407
6426
|
|
6408
6427
|
function add_css$l(target) {
|
6409
|
-
append_styles(target, "svelte-
|
6428
|
+
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}");
|
6410
6429
|
}
|
6411
6430
|
|
6412
6431
|
function create_fragment$m(ctx) {
|
@@ -6424,7 +6443,7 @@ function create_fragment$m(ctx) {
|
|
6424
6443
|
this.h();
|
6425
6444
|
},
|
6426
6445
|
h() {
|
6427
|
-
attr(div, "class", "embed svelte-
|
6446
|
+
attr(div, "class", "embed svelte-wocq4p");
|
6428
6447
|
attr(div, "style", /*_style*/ ctx[1]);
|
6429
6448
|
},
|
6430
6449
|
m(target, anchor) {
|
@@ -6467,7 +6486,7 @@ class EmbedElement extends SvelteComponent {
|
|
6467
6486
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6468
6487
|
|
6469
6488
|
function add_css$k(target) {
|
6470
|
-
append_styles(target, "svelte-
|
6489
|
+
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%}");
|
6471
6490
|
}
|
6472
6491
|
|
6473
6492
|
function create_fragment$l(ctx) {
|
@@ -6490,7 +6509,7 @@ function create_fragment$l(ctx) {
|
|
6490
6509
|
},
|
6491
6510
|
h() {
|
6492
6511
|
attr(div0, "class", "karte-player");
|
6493
|
-
attr(div1, "class", "embed svelte-
|
6512
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6494
6513
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6495
6514
|
},
|
6496
6515
|
m(target, anchor) {
|
@@ -6832,7 +6851,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6832
6851
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6833
6852
|
|
6834
6853
|
function add_css$j(target) {
|
6835
|
-
append_styles(target, "svelte-
|
6854
|
+
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%}");
|
6836
6855
|
}
|
6837
6856
|
|
6838
6857
|
function create_fragment$k(ctx) {
|
@@ -6855,7 +6874,7 @@ function create_fragment$k(ctx) {
|
|
6855
6874
|
},
|
6856
6875
|
h() {
|
6857
6876
|
attr(div0, "class", "karte-player");
|
6858
|
-
attr(div1, "class", "embed svelte-
|
6877
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6859
6878
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6860
6879
|
},
|
6861
6880
|
m(target, anchor) {
|
@@ -7039,7 +7058,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
7039
7058
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
7040
7059
|
|
7041
7060
|
function add_css$i(target) {
|
7042
|
-
append_styles(target, "svelte-
|
7061
|
+
append_styles(target, "svelte-zxvkkc", ".textarea-wrapper.svelte-zxvkkc{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-zxvkkc{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-zxvkkc::placeholder{color:var(--placeholder-color)}.textarea.svelte-zxvkkc:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
|
7043
7062
|
}
|
7044
7063
|
|
7045
7064
|
function create_fragment$j(ctx) {
|
@@ -7069,12 +7088,12 @@ function create_fragment$j(ctx) {
|
|
7069
7088
|
this.h();
|
7070
7089
|
},
|
7071
7090
|
h() {
|
7072
|
-
attr(textarea, "class", "textarea svelte-
|
7091
|
+
attr(textarea, "class", "textarea svelte-zxvkkc");
|
7073
7092
|
textarea.value = /*$value*/ ctx[4];
|
7074
7093
|
textarea.required = /*required*/ ctx[1];
|
7075
7094
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
7076
7095
|
attr(textarea, "style", /*style*/ ctx[3]);
|
7077
|
-
attr(div, "class", "textarea-wrapper svelte-
|
7096
|
+
attr(div, "class", "textarea-wrapper svelte-zxvkkc");
|
7078
7097
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
7079
7098
|
},
|
7080
7099
|
m(target, anchor) {
|
@@ -7226,7 +7245,7 @@ class FormTextarea extends SvelteComponent {
|
|
7226
7245
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
7227
7246
|
|
7228
7247
|
function add_css$h(target) {
|
7229
|
-
append_styles(target, "svelte-
|
7248
|
+
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}");
|
7230
7249
|
}
|
7231
7250
|
|
7232
7251
|
function get_each_context$5(ctx, list, i) {
|
@@ -7283,14 +7302,14 @@ function create_each_block$5(ctx) {
|
|
7283
7302
|
},
|
7284
7303
|
h() {
|
7285
7304
|
attr(input, "type", "radio");
|
7286
|
-
attr(input, "class", "radio-button-input svelte-
|
7305
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
7287
7306
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7288
7307
|
attr(input, "name", /*name*/ ctx[0]);
|
7289
7308
|
input.value = input_value_value = /*option*/ ctx[17];
|
7290
7309
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7291
|
-
attr(span, "class", "radio-button-text svelte-
|
7310
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
7292
7311
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7293
|
-
attr(label, "class", "radio-button svelte-
|
7312
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
7294
7313
|
},
|
7295
7314
|
m(target, anchor) {
|
7296
7315
|
insert_hydration(target, label, anchor);
|
@@ -7369,7 +7388,7 @@ function create_fragment$i(ctx) {
|
|
7369
7388
|
this.h();
|
7370
7389
|
},
|
7371
7390
|
h() {
|
7372
|
-
attr(div, "class", "radio-buttons svelte-
|
7391
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
7373
7392
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7374
7393
|
},
|
7375
7394
|
m(target, anchor) {
|
@@ -7538,7 +7557,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7538
7557
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7539
7558
|
|
7540
7559
|
function add_css$g(target) {
|
7541
|
-
append_styles(target, "svelte-
|
7560
|
+
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}");
|
7542
7561
|
}
|
7543
7562
|
|
7544
7563
|
function get_each_context$4(ctx, list, i) {
|
@@ -7709,10 +7728,10 @@ function create_fragment$h(ctx) {
|
|
7709
7728
|
this.h();
|
7710
7729
|
},
|
7711
7730
|
h() {
|
7712
|
-
attr(select, "class", "select-select svelte-
|
7731
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7713
7732
|
attr(select, "style", /*style*/ ctx[3]);
|
7714
|
-
attr(div0, "class", "select-icon svelte-
|
7715
|
-
attr(div1, "class", "select svelte-
|
7733
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7734
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7716
7735
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7717
7736
|
},
|
7718
7737
|
m(target, anchor) {
|
@@ -7914,7 +7933,7 @@ class FormSelect extends SvelteComponent {
|
|
7914
7933
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7915
7934
|
|
7916
7935
|
function add_css$f(target) {
|
7917
|
-
append_styles(target, "svelte-
|
7936
|
+
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}");
|
7918
7937
|
}
|
7919
7938
|
|
7920
7939
|
function get_each_context$3(ctx, list, i) {
|
@@ -7976,19 +7995,19 @@ function create_each_block$3(ctx) {
|
|
7976
7995
|
this.h();
|
7977
7996
|
},
|
7978
7997
|
h() {
|
7979
|
-
attr(input, "class", "check-box-input svelte-
|
7998
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7980
7999
|
attr(input, "type", "checkbox");
|
7981
8000
|
attr(input, "name", /*name*/ ctx[0]);
|
7982
8001
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7983
|
-
attr(span0, "class", "check-box-icon svelte-
|
8002
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
7984
8003
|
|
7985
8004
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7986
8005
|
? ' _checked'
|
7987
|
-
: ''}`) + " svelte-
|
8006
|
+
: ''}`) + " svelte-1p65cg8"));
|
7988
8007
|
|
7989
|
-
attr(span2, "class", "check-box-text svelte-
|
8008
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
7990
8009
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7991
|
-
attr(label, "class", "check-box svelte-
|
8010
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
7992
8011
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7993
8012
|
},
|
7994
8013
|
m(target, anchor) {
|
@@ -8020,7 +8039,7 @@ function create_each_block$3(ctx) {
|
|
8020
8039
|
|
8021
8040
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8022
8041
|
? ' _checked'
|
8023
|
-
: ''}`) + " svelte-
|
8042
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
8024
8043
|
attr(span1, "class", span1_class_value);
|
8025
8044
|
}
|
8026
8045
|
|
@@ -8073,7 +8092,7 @@ function create_fragment$g(ctx) {
|
|
8073
8092
|
this.h();
|
8074
8093
|
},
|
8075
8094
|
h() {
|
8076
|
-
attr(div, "class", "check-boxes svelte-
|
8095
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
8077
8096
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
8078
8097
|
},
|
8079
8098
|
m(target, anchor) {
|
@@ -8248,7 +8267,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
8248
8267
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
8249
8268
|
|
8250
8269
|
function add_css$e(target) {
|
8251
|
-
append_styles(target, "svelte-
|
8270
|
+
append_styles(target, "svelte-1iqf36p", ".rating-buttons.svelte-1iqf36p{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1iqf36p{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
|
8252
8271
|
}
|
8253
8272
|
|
8254
8273
|
function get_each_context$2(ctx, list, i) {
|
@@ -8283,7 +8302,7 @@ function create_each_block$2(ctx) {
|
|
8283
8302
|
this.h();
|
8284
8303
|
},
|
8285
8304
|
h() {
|
8286
|
-
attr(button, "class", "rating-button svelte-
|
8305
|
+
attr(button, "class", "rating-button svelte-1iqf36p");
|
8287
8306
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
8288
8307
|
},
|
8289
8308
|
m(target, anchor) {
|
@@ -8346,7 +8365,7 @@ function create_fragment$f(ctx) {
|
|
8346
8365
|
this.h();
|
8347
8366
|
},
|
8348
8367
|
h() {
|
8349
|
-
attr(div, "class", "rating-buttons svelte-
|
8368
|
+
attr(div, "class", "rating-buttons svelte-1iqf36p");
|
8350
8369
|
},
|
8351
8370
|
m(target, anchor) {
|
8352
8371
|
insert_hydration(target, div, anchor);
|
@@ -8490,7 +8509,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8490
8509
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8491
8510
|
|
8492
8511
|
function add_css$d(target) {
|
8493
|
-
append_styles(target, "svelte-
|
8512
|
+
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%)}");
|
8494
8513
|
}
|
8495
8514
|
|
8496
8515
|
function get_each_context$1(ctx, list, i) {
|
@@ -8526,9 +8545,9 @@ function create_each_block$1(ctx) {
|
|
8526
8545
|
},
|
8527
8546
|
h() {
|
8528
8547
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8529
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8548
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
8530
8549
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8531
|
-
attr(button, "class", "rating-button svelte-
|
8550
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
8532
8551
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8533
8552
|
},
|
8534
8553
|
m(target, anchor) {
|
@@ -8544,7 +8563,7 @@ function create_each_block$1(ctx) {
|
|
8544
8563
|
p(new_ctx, dirty) {
|
8545
8564
|
ctx = new_ctx;
|
8546
8565
|
|
8547
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8566
|
+
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"))) {
|
8548
8567
|
attr(img, "class", img_class_value);
|
8549
8568
|
}
|
8550
8569
|
|
@@ -8591,7 +8610,7 @@ function create_fragment$e(ctx) {
|
|
8591
8610
|
this.h();
|
8592
8611
|
},
|
8593
8612
|
h() {
|
8594
|
-
attr(div, "class", "rating-buttons svelte-
|
8613
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
8595
8614
|
},
|
8596
8615
|
m(target, anchor) {
|
8597
8616
|
insert_hydration(target, div, anchor);
|
@@ -8699,7 +8718,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8699
8718
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8700
8719
|
|
8701
8720
|
function add_css$c(target) {
|
8702
|
-
append_styles(target, "svelte-
|
8721
|
+
append_styles(target, "svelte-h8fqwx", ".input-wrapper.svelte-h8fqwx{display:flex;align-items:center;width:100%;height:100%}.input.svelte-h8fqwx{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-h8fqwx::placeholder{color:var(--placeholder-color)}.input.svelte-h8fqwx:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-h8fqwx{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
|
8703
8722
|
}
|
8704
8723
|
|
8705
8724
|
function create_fragment$d(ctx) {
|
@@ -8730,13 +8749,13 @@ function create_fragment$d(ctx) {
|
|
8730
8749
|
this.h();
|
8731
8750
|
},
|
8732
8751
|
h() {
|
8733
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8752
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
|
8734
8753
|
attr(input, "type", "text");
|
8735
8754
|
input.value = /*$value*/ ctx[2];
|
8736
8755
|
input.required = /*required*/ ctx[0];
|
8737
8756
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8738
8757
|
attr(input, "style", /*style*/ ctx[5]);
|
8739
|
-
attr(div, "class", "input-wrapper svelte-
|
8758
|
+
attr(div, "class", "input-wrapper svelte-h8fqwx");
|
8740
8759
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8741
8760
|
},
|
8742
8761
|
m(target, anchor) {
|
@@ -8749,7 +8768,7 @@ function create_fragment$d(ctx) {
|
|
8749
8768
|
}
|
8750
8769
|
},
|
8751
8770
|
p(ctx, [dirty]) {
|
8752
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8771
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
|
8753
8772
|
attr(input, "class", input_class_value);
|
8754
8773
|
}
|
8755
8774
|
|
@@ -8937,7 +8956,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8937
8956
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8938
8957
|
|
8939
8958
|
function add_css$b(target) {
|
8940
|
-
append_styles(target, "svelte-
|
8959
|
+
append_styles(target, "svelte-8zbmyo", ".radio-buttons.svelte-8zbmyo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-8zbmyo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-8zbmyo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-8zbmyo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-8zbmyo{margin-left:0.5em}");
|
8941
8960
|
}
|
8942
8961
|
|
8943
8962
|
function create_fragment$c(ctx) {
|
@@ -9003,20 +9022,20 @@ function create_fragment$c(ctx) {
|
|
9003
9022
|
},
|
9004
9023
|
h() {
|
9005
9024
|
attr(input0, "type", "radio");
|
9006
|
-
attr(input0, "class", "radio-button-input svelte-
|
9025
|
+
attr(input0, "class", "radio-button-input svelte-8zbmyo");
|
9007
9026
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
9008
9027
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
9009
|
-
attr(span0, "class", "radio-button-text svelte-
|
9028
|
+
attr(span0, "class", "radio-button-text svelte-8zbmyo");
|
9010
9029
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9011
|
-
attr(label0, "class", "radio-button svelte-
|
9030
|
+
attr(label0, "class", "radio-button svelte-8zbmyo");
|
9012
9031
|
attr(input1, "type", "radio");
|
9013
|
-
attr(input1, "class", "radio-button-input svelte-
|
9032
|
+
attr(input1, "class", "radio-button-input svelte-8zbmyo");
|
9014
9033
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
9015
9034
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
9016
|
-
attr(span1, "class", "radio-button-text svelte-
|
9035
|
+
attr(span1, "class", "radio-button-text svelte-8zbmyo");
|
9017
9036
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9018
|
-
attr(label1, "class", "radio-button svelte-
|
9019
|
-
attr(div, "class", "radio-buttons svelte-
|
9037
|
+
attr(label1, "class", "radio-button svelte-8zbmyo");
|
9038
|
+
attr(div, "class", "radio-buttons svelte-8zbmyo");
|
9020
9039
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
9021
9040
|
},
|
9022
9041
|
m(target, anchor) {
|
@@ -9184,7 +9203,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
9184
9203
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
9185
9204
|
|
9186
9205
|
function add_css$a(target) {
|
9187
|
-
append_styles(target, "svelte-
|
9206
|
+
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%}");
|
9188
9207
|
}
|
9189
9208
|
|
9190
9209
|
function get_each_context(ctx, list, i) {
|
@@ -9230,9 +9249,9 @@ function create_if_block_1(ctx) {
|
|
9230
9249
|
attr(svg, "viewBox", "0 0 10 16");
|
9231
9250
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9232
9251
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
9233
|
-
attr(button, "class", "move-button svelte-
|
9252
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9234
9253
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
9235
|
-
attr(div, "class", "prev-button-container svelte-
|
9254
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
9236
9255
|
},
|
9237
9256
|
m(target, anchor) {
|
9238
9257
|
insert_hydration(target, div, anchor);
|
@@ -9298,9 +9317,9 @@ function create_if_block$1(ctx) {
|
|
9298
9317
|
attr(svg, "viewBox", "0 0 10 16");
|
9299
9318
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9300
9319
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
9301
|
-
attr(button, "class", "move-button svelte-
|
9320
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9302
9321
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
9303
|
-
attr(div, "class", "next-button-container svelte-
|
9322
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
9304
9323
|
},
|
9305
9324
|
m(target, anchor) {
|
9306
9325
|
insert_hydration(target, div, anchor);
|
@@ -9360,9 +9379,9 @@ function create_each_block(ctx) {
|
|
9360
9379
|
this.h();
|
9361
9380
|
},
|
9362
9381
|
h() {
|
9363
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
9382
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
9364
9383
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
9365
|
-
attr(button, "class", "navigation-item svelte-
|
9384
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
9366
9385
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
9367
9386
|
},
|
9368
9387
|
m(target, anchor) {
|
@@ -9468,14 +9487,14 @@ function create_fragment$b(ctx) {
|
|
9468
9487
|
this.h();
|
9469
9488
|
},
|
9470
9489
|
h() {
|
9471
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9490
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
9472
9491
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
9473
|
-
attr(div1, "class", "container svelte-
|
9492
|
+
attr(div1, "class", "container svelte-ji1fh");
|
9474
9493
|
attr(div1, "style", /*_style*/ ctx[0]);
|
9475
|
-
attr(div2, "class", "navigation svelte-
|
9494
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
9476
9495
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
9477
9496
|
set_attributes(div3, div3_data);
|
9478
|
-
toggle_class(div3, "svelte-
|
9497
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9479
9498
|
},
|
9480
9499
|
m(target, anchor) {
|
9481
9500
|
insert_hydration(target, div3, anchor);
|
@@ -9517,7 +9536,7 @@ function create_fragment$b(ctx) {
|
|
9517
9536
|
}
|
9518
9537
|
}
|
9519
9538
|
|
9520
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9539
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
9521
9540
|
attr(div0, "class", div0_class_value);
|
9522
9541
|
}
|
9523
9542
|
|
@@ -9583,7 +9602,7 @@ function create_fragment$b(ctx) {
|
|
9583
9602
|
}
|
9584
9603
|
|
9585
9604
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9586
|
-
toggle_class(div3, "svelte-
|
9605
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9587
9606
|
},
|
9588
9607
|
i(local) {
|
9589
9608
|
if (current) return;
|
@@ -10095,7 +10114,7 @@ class Slide extends SvelteComponent {
|
|
10095
10114
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
10096
10115
|
|
10097
10116
|
function add_css$9(target) {
|
10098
|
-
append_styles(target, "svelte-
|
10117
|
+
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}");
|
10099
10118
|
}
|
10100
10119
|
|
10101
10120
|
function create_fragment$a(ctx) {
|
@@ -10123,9 +10142,9 @@ function create_fragment$a(ctx) {
|
|
10123
10142
|
this.h();
|
10124
10143
|
},
|
10125
10144
|
h() {
|
10126
|
-
attr(div0, "class", "item-inner svelte-
|
10145
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
10127
10146
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10128
|
-
attr(div1, "class", "item svelte-
|
10147
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
10129
10148
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
10130
10149
|
},
|
10131
10150
|
m(target, anchor) {
|
@@ -10251,7 +10270,7 @@ class SlideItem extends SvelteComponent {
|
|
10251
10270
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
10252
10271
|
|
10253
10272
|
function add_css$8(target) {
|
10254
|
-
append_styles(target, "svelte-
|
10273
|
+
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}");
|
10255
10274
|
}
|
10256
10275
|
|
10257
10276
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -10282,9 +10301,9 @@ function create_fragment$9(ctx) {
|
|
10282
10301
|
this.h();
|
10283
10302
|
},
|
10284
10303
|
h() {
|
10285
|
-
attr(div0, "class", "countdown-inner svelte-
|
10304
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
10286
10305
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10287
|
-
attr(div1, "class", "countdown svelte-
|
10306
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
10288
10307
|
},
|
10289
10308
|
m(target, anchor) {
|
10290
10309
|
insert_hydration(target, div1, anchor);
|
@@ -10414,7 +10433,7 @@ class Countdown extends SvelteComponent {
|
|
10414
10433
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
10415
10434
|
|
10416
10435
|
function add_css$7(target) {
|
10417
|
-
append_styles(target, "svelte-
|
10436
|
+
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}");
|
10418
10437
|
}
|
10419
10438
|
|
10420
10439
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -10497,7 +10516,7 @@ function create_fragment$8(ctx) {
|
|
10497
10516
|
this.h();
|
10498
10517
|
},
|
10499
10518
|
h() {
|
10500
|
-
attr(div, "class", "box svelte-
|
10519
|
+
attr(div, "class", "box svelte-1ccydfy");
|
10501
10520
|
},
|
10502
10521
|
m(target, anchor) {
|
10503
10522
|
insert_hydration(target, div, anchor);
|
@@ -10558,7 +10577,7 @@ class Box extends SvelteComponent {
|
|
10558
10577
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
10559
10578
|
|
10560
10579
|
function add_css$6(target) {
|
10561
|
-
append_styles(target, "svelte-
|
10580
|
+
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)}");
|
10562
10581
|
}
|
10563
10582
|
|
10564
10583
|
// (56:4) {#if svg}
|
@@ -10662,7 +10681,7 @@ function create_fragment$7(ctx) {
|
|
10662
10681
|
this.h();
|
10663
10682
|
},
|
10664
10683
|
h() {
|
10665
|
-
attr(div, "class", "icon svelte-
|
10684
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
10666
10685
|
},
|
10667
10686
|
m(target, anchor) {
|
10668
10687
|
insert_hydration(target, div, anchor);
|
@@ -10771,7 +10790,7 @@ class IconElement extends SvelteComponent {
|
|
10771
10790
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10772
10791
|
|
10773
10792
|
function add_css$5(target) {
|
10774
|
-
append_styles(target, "svelte-
|
10793
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10775
10794
|
}
|
10776
10795
|
|
10777
10796
|
function create_fragment$6(ctx) {
|
@@ -10807,7 +10826,7 @@ function create_fragment$6(ctx) {
|
|
10807
10826
|
this.h();
|
10808
10827
|
},
|
10809
10828
|
h() {
|
10810
|
-
attr(div, "class", "codeElement svelte-
|
10829
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
10811
10830
|
attr(div, "style", /*style*/ ctx[3]);
|
10812
10831
|
},
|
10813
10832
|
m(target, anchor) {
|
@@ -10896,7 +10915,7 @@ class CodeElement extends SvelteComponent {
|
|
10896
10915
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10897
10916
|
|
10898
10917
|
function add_css$4(target) {
|
10899
|
-
append_styles(target, "svelte-
|
10918
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
10900
10919
|
}
|
10901
10920
|
|
10902
10921
|
function create_fragment$5(ctx) {
|
@@ -10920,7 +10939,7 @@ function create_fragment$5(ctx) {
|
|
10920
10939
|
this.h();
|
10921
10940
|
},
|
10922
10941
|
h() {
|
10923
|
-
attr(div, "class", "flex svelte-
|
10942
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
10924
10943
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10925
10944
|
},
|
10926
10945
|
m(target, anchor) {
|
@@ -11017,7 +11036,7 @@ class Flex extends SvelteComponent {
|
|
11017
11036
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
11018
11037
|
|
11019
11038
|
function add_css$3(target) {
|
11020
|
-
append_styles(target, "svelte-
|
11039
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
11021
11040
|
}
|
11022
11041
|
|
11023
11042
|
function create_fragment$4(ctx) {
|
@@ -11040,7 +11059,7 @@ function create_fragment$4(ctx) {
|
|
11040
11059
|
this.h();
|
11041
11060
|
},
|
11042
11061
|
h() {
|
11043
|
-
attr(div, "class", "flex-item svelte-
|
11062
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
11044
11063
|
attr(div, "style", /*style*/ ctx[0]);
|
11045
11064
|
},
|
11046
11065
|
m(target, anchor) {
|
@@ -11460,7 +11479,7 @@ class GridModalState extends SvelteComponent {
|
|
11460
11479
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
11461
11480
|
|
11462
11481
|
function add_css$2(target) {
|
11463
|
-
append_styles(target, "svelte-
|
11482
|
+
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%}");
|
11464
11483
|
}
|
11465
11484
|
|
11466
11485
|
function create_fragment$2(ctx) {
|
@@ -11489,8 +11508,8 @@ function create_fragment$2(ctx) {
|
|
11489
11508
|
this.h();
|
11490
11509
|
},
|
11491
11510
|
h() {
|
11492
|
-
attr(div0, "class", "text-block-inner svelte-
|
11493
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11511
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
11512
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
11494
11513
|
attr(div1, "style", /*style*/ ctx[2]);
|
11495
11514
|
},
|
11496
11515
|
m(target, anchor) {
|
@@ -11504,7 +11523,7 @@ function create_fragment$2(ctx) {
|
|
11504
11523
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
11505
11524
|
rendertext.$set(rendertext_changes);
|
11506
11525
|
|
11507
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11526
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
11508
11527
|
attr(div1, "class", div1_class_value);
|
11509
11528
|
}
|
11510
11529
|
|
@@ -11582,7 +11601,7 @@ class TextBlock extends SvelteComponent {
|
|
11582
11601
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
11583
11602
|
|
11584
11603
|
function add_css$1(target) {
|
11585
|
-
append_styles(target, "svelte-
|
11604
|
+
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)}");
|
11586
11605
|
}
|
11587
11606
|
|
11588
11607
|
function create_fragment$1(ctx) {
|
@@ -11612,9 +11631,9 @@ function create_fragment$1(ctx) {
|
|
11612
11631
|
this.h();
|
11613
11632
|
},
|
11614
11633
|
h() {
|
11615
|
-
attr(button, "class", "text-button svelte-
|
11634
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
11616
11635
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
11617
|
-
attr(div, "class", "text-button-block svelte-
|
11636
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
11618
11637
|
attr(div, "style", /*_style*/ ctx[2]);
|
11619
11638
|
},
|
11620
11639
|
m(target, anchor) {
|
@@ -11720,7 +11739,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11720
11739
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11721
11740
|
|
11722
11741
|
function add_css(target) {
|
11723
|
-
append_styles(target, "svelte-
|
11742
|
+
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)}");
|
11724
11743
|
}
|
11725
11744
|
|
11726
11745
|
function create_fragment(ctx) {
|
@@ -11756,14 +11775,14 @@ function create_fragment(ctx) {
|
|
11756
11775
|
this.h();
|
11757
11776
|
},
|
11758
11777
|
h() {
|
11759
|
-
attr(img, "class", "image svelte-
|
11778
|
+
attr(img, "class", "image svelte-1pdw891");
|
11760
11779
|
attr(img, "loading", "lazy");
|
11761
11780
|
attr(img, "width", "auto");
|
11762
11781
|
attr(img, "height", "auto");
|
11763
11782
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11764
11783
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11765
11784
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11766
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11785
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
11767
11786
|
attr(div, "style", /*_style*/ ctx[5]);
|
11768
11787
|
},
|
11769
11788
|
m(target, anchor) {
|
@@ -11788,7 +11807,7 @@ function create_fragment(ctx) {
|
|
11788
11807
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11789
11808
|
}
|
11790
11809
|
|
11791
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11810
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
11792
11811
|
attr(div, "class", div_class_value);
|
11793
11812
|
}
|
11794
11813
|
|