@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/index.es.js
CHANGED
@@ -1361,7 +1361,7 @@ const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__
|
|
1361
1361
|
/**
|
1362
1362
|
* アクションテーブルを管理するメソッドを取得する
|
1363
1363
|
*
|
1364
|
-
* @param config -
|
1364
|
+
* @param config - アクションテーブル設定情報
|
1365
1365
|
*
|
1366
1366
|
* @returns メソッドを返します
|
1367
1367
|
*
|
@@ -1372,6 +1372,14 @@ function collection$1(config) {
|
|
1372
1372
|
const api_key = config.api_key;
|
1373
1373
|
const table = config.table;
|
1374
1374
|
return {
|
1375
|
+
/**
|
1376
|
+
* キーを1つ、または複数指定して、対応するアクションテーブルの行を取得する
|
1377
|
+
*
|
1378
|
+
* @param key - 取得する行のキーを一つ、または複数配列で指定
|
1379
|
+
* @param cb - テーブルの行を取得した後に実行するcallback関数
|
1380
|
+
*
|
1381
|
+
* @public
|
1382
|
+
*/
|
1375
1383
|
get(key, cb) {
|
1376
1384
|
if (Array.isArray(key)) {
|
1377
1385
|
return request(`${endpoint}/getByKeys`, {
|
@@ -1381,15 +1389,25 @@ function collection$1(config) {
|
|
1381
1389
|
}, cb);
|
1382
1390
|
}
|
1383
1391
|
else {
|
1384
|
-
request(`${endpoint}/getByKey`, {
|
1392
|
+
return request(`${endpoint}/getByKey`, {
|
1385
1393
|
api_key,
|
1386
1394
|
name: table,
|
1387
1395
|
key,
|
1388
1396
|
}, cb);
|
1389
1397
|
}
|
1390
1398
|
},
|
1399
|
+
/**
|
1400
|
+
* クエリーを指定して、アクションテーブルから行を取得する
|
1401
|
+
* なお、クエリーは事前に管理画面で設定しておく必要があります。
|
1402
|
+
*
|
1403
|
+
* @param query_name - クエリー名
|
1404
|
+
* @param params - クエリーに指定するパラメーター。 `{key: value}` の形式で指定
|
1405
|
+
* @param cb - テーブルの行を取得した後に実行するcallback関数
|
1406
|
+
*
|
1407
|
+
* @public
|
1408
|
+
*/
|
1391
1409
|
getByQuery(query_name, params, options, cb) {
|
1392
|
-
request(`${endpoint}/getByQuery`, {
|
1410
|
+
return request(`${endpoint}/getByQuery`, {
|
1393
1411
|
api_key,
|
1394
1412
|
name: table,
|
1395
1413
|
query_name,
|
@@ -1397,6 +1415,7 @@ function collection$1(config) {
|
|
1397
1415
|
options,
|
1398
1416
|
}, cb);
|
1399
1417
|
},
|
1418
|
+
/** @internal */
|
1400
1419
|
set(key, value, cb) {
|
1401
1420
|
request(`${endpoint}/set`, {
|
1402
1421
|
api_key,
|
@@ -3021,7 +3040,7 @@ class State extends SvelteComponent {
|
|
3021
3040
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
3022
3041
|
|
3023
3042
|
function add_css$v(target) {
|
3024
|
-
append_styles(target, "svelte-
|
3043
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
3025
3044
|
}
|
3026
3045
|
|
3027
3046
|
// (23:0) {#if $state === path}
|
@@ -3038,7 +3057,7 @@ function create_if_block$8(ctx) {
|
|
3038
3057
|
t = space();
|
3039
3058
|
if (default_slot) default_slot.c();
|
3040
3059
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3041
|
-
attr(div, "class", "state-item svelte-
|
3060
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
3042
3061
|
},
|
3043
3062
|
m(target, anchor) {
|
3044
3063
|
insert(target, div, anchor);
|
@@ -3353,7 +3372,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3353
3372
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3354
3373
|
|
3355
3374
|
function add_css$u(target) {
|
3356
|
-
append_styles(target, "svelte-
|
3375
|
+
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}");
|
3357
3376
|
}
|
3358
3377
|
|
3359
3378
|
// (14:0) {#if backgroundOverlay}
|
@@ -3366,7 +3385,7 @@ function create_if_block$7(ctx) {
|
|
3366
3385
|
return {
|
3367
3386
|
c() {
|
3368
3387
|
div = element("div");
|
3369
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3388
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
|
3370
3389
|
},
|
3371
3390
|
m(target, anchor) {
|
3372
3391
|
insert(target, div, anchor);
|
@@ -3377,7 +3396,7 @@ function create_if_block$7(ctx) {
|
|
3377
3396
|
}
|
3378
3397
|
},
|
3379
3398
|
p(ctx, dirty) {
|
3380
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3399
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
|
3381
3400
|
attr(div, "class", div_class_value);
|
3382
3401
|
}
|
3383
3402
|
},
|
@@ -3483,7 +3502,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3483
3502
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3484
3503
|
|
3485
3504
|
function add_css$t(target) {
|
3486
|
-
append_styles(target, "svelte-
|
3505
|
+
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}");
|
3487
3506
|
}
|
3488
3507
|
|
3489
3508
|
// (50:0) {:else}
|
@@ -3512,7 +3531,7 @@ function create_else_block$4(ctx) {
|
|
3512
3531
|
button = element("button");
|
3513
3532
|
if (default_slot) default_slot.c();
|
3514
3533
|
set_attributes(button, button_data);
|
3515
|
-
toggle_class(button, "svelte-
|
3534
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3516
3535
|
},
|
3517
3536
|
m(target, anchor) {
|
3518
3537
|
insert(target, button, anchor);
|
@@ -3551,7 +3570,7 @@ function create_else_block$4(ctx) {
|
|
3551
3570
|
dataAttrStopPropagation('click')
|
3552
3571
|
]));
|
3553
3572
|
|
3554
|
-
toggle_class(button, "svelte-
|
3573
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3555
3574
|
},
|
3556
3575
|
i(local) {
|
3557
3576
|
if (current) return;
|
@@ -3582,7 +3601,7 @@ function create_if_block_2$1(ctx) {
|
|
3582
3601
|
c() {
|
3583
3602
|
div = element("div");
|
3584
3603
|
if (default_slot) default_slot.c();
|
3585
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3604
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
|
3586
3605
|
attr(div, "style", /*style*/ ctx[1]);
|
3587
3606
|
},
|
3588
3607
|
m(target, anchor) {
|
@@ -3666,7 +3685,7 @@ function create_if_block_1$2(ctx) {
|
|
3666
3685
|
a = element("a");
|
3667
3686
|
if (default_slot) default_slot.c();
|
3668
3687
|
set_attributes(a, a_data);
|
3669
|
-
toggle_class(a, "svelte-
|
3688
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3670
3689
|
},
|
3671
3690
|
m(target, anchor) {
|
3672
3691
|
insert(target, a, anchor);
|
@@ -3708,7 +3727,7 @@ function create_if_block_1$2(ctx) {
|
|
3708
3727
|
dataAttrStopPropagation('click')
|
3709
3728
|
]));
|
3710
3729
|
|
3711
|
-
toggle_class(a, "svelte-
|
3730
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3712
3731
|
},
|
3713
3732
|
i(local) {
|
3714
3733
|
if (current) return;
|
@@ -3739,7 +3758,7 @@ function create_if_block$6(ctx) {
|
|
3739
3758
|
c() {
|
3740
3759
|
div = element("div");
|
3741
3760
|
if (default_slot) default_slot.c();
|
3742
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3761
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
|
3743
3762
|
attr(div, "style", /*style*/ ctx[1]);
|
3744
3763
|
},
|
3745
3764
|
m(target, anchor) {
|
@@ -3943,7 +3962,7 @@ class Button extends SvelteComponent {
|
|
3943
3962
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3944
3963
|
|
3945
3964
|
function add_css$s(target) {
|
3946
|
-
append_styles(target, "svelte-
|
3965
|
+
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}}");
|
3947
3966
|
}
|
3948
3967
|
|
3949
3968
|
// (275:0) {:else}
|
@@ -4093,7 +4112,7 @@ function create_if_block$5(ctx) {
|
|
4093
4112
|
c() {
|
4094
4113
|
div = element("div");
|
4095
4114
|
create_component(button.$$.fragment);
|
4096
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4115
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"));
|
4097
4116
|
attr(div, "role", "dialog");
|
4098
4117
|
attr(div, "aria-modal", "true");
|
4099
4118
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4117,7 +4136,7 @@ function create_if_block$5(ctx) {
|
|
4117
4136
|
|
4118
4137
|
button.$set(button_changes);
|
4119
4138
|
|
4120
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4139
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"))) {
|
4121
4140
|
attr(div, "class", div_class_value);
|
4122
4141
|
}
|
4123
4142
|
},
|
@@ -4171,7 +4190,7 @@ function create_if_block_1$1(ctx) {
|
|
4171
4190
|
c() {
|
4172
4191
|
div = element("div");
|
4173
4192
|
create_component(button.$$.fragment);
|
4174
|
-
attr(div, "class", "close svelte-
|
4193
|
+
attr(div, "class", "close svelte-1j0m3x1");
|
4175
4194
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4176
4195
|
},
|
4177
4196
|
m(target, anchor) {
|
@@ -4260,7 +4279,7 @@ function create_default_slot$6(ctx) {
|
|
4260
4279
|
t = space();
|
4261
4280
|
div = element("div");
|
4262
4281
|
if (default_slot) default_slot.c();
|
4263
|
-
attr(div, "class", "modal-content svelte-
|
4282
|
+
attr(div, "class", "modal-content svelte-1j0m3x1");
|
4264
4283
|
attr(div, "style", /*_style*/ ctx[5]);
|
4265
4284
|
},
|
4266
4285
|
m(target, anchor) {
|
@@ -4902,7 +4921,7 @@ class Grid extends SvelteComponent {
|
|
4902
4921
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4903
4922
|
|
4904
4923
|
function add_css$r(target) {
|
4905
|
-
append_styles(target, "svelte-
|
4924
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4906
4925
|
}
|
4907
4926
|
|
4908
4927
|
function create_fragment$t(ctx) {
|
@@ -4917,8 +4936,8 @@ function create_fragment$t(ctx) {
|
|
4917
4936
|
div1 = element("div");
|
4918
4937
|
div0 = element("div");
|
4919
4938
|
if (default_slot) default_slot.c();
|
4920
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4921
|
-
attr(div1, "class", "grid-item svelte-
|
4939
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4940
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4922
4941
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4923
4942
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4924
4943
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5223,7 +5242,7 @@ class RenderText extends SvelteComponent {
|
|
5223
5242
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5224
5243
|
|
5225
5244
|
function add_css$q(target) {
|
5226
|
-
append_styles(target, "svelte-
|
5245
|
+
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}");
|
5227
5246
|
}
|
5228
5247
|
|
5229
5248
|
// (94:2) {:else}
|
@@ -5240,8 +5259,8 @@ function create_else_block$1(ctx) {
|
|
5240
5259
|
div1 = element("div");
|
5241
5260
|
div0 = element("div");
|
5242
5261
|
create_component(rendertext.$$.fragment);
|
5243
|
-
attr(div0, "class", "text-element-inner svelte-
|
5244
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5262
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5263
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5245
5264
|
attr(div1, "style", /*style*/ ctx[5]);
|
5246
5265
|
},
|
5247
5266
|
m(target, anchor) {
|
@@ -5255,7 +5274,7 @@ function create_else_block$1(ctx) {
|
|
5255
5274
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5256
5275
|
rendertext.$set(rendertext_changes);
|
5257
5276
|
|
5258
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5277
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5259
5278
|
attr(div1, "class", div1_class_value);
|
5260
5279
|
}
|
5261
5280
|
|
@@ -5305,12 +5324,12 @@ function create_if_block$3(ctx) {
|
|
5305
5324
|
t2 = space();
|
5306
5325
|
div2 = element("div");
|
5307
5326
|
div2.textContent = "コピーできませんでした";
|
5308
|
-
attr(div0, "class", "text-element-inner svelte-
|
5327
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5309
5328
|
attr(a, "href", '');
|
5310
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5329
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5311
5330
|
attr(a, "style", /*style*/ ctx[5]);
|
5312
|
-
attr(div1, "class", "tooltip svelte-
|
5313
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5331
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
5332
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
5314
5333
|
},
|
5315
5334
|
m(target, anchor) {
|
5316
5335
|
insert(target, a, anchor);
|
@@ -5334,7 +5353,7 @@ function create_if_block$3(ctx) {
|
|
5334
5353
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5335
5354
|
rendertext.$set(rendertext_changes);
|
5336
5355
|
|
5337
|
-
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-
|
5356
|
+
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"))) {
|
5338
5357
|
attr(a, "class", a_class_value);
|
5339
5358
|
}
|
5340
5359
|
|
@@ -5386,7 +5405,7 @@ function create_fragment$r(ctx) {
|
|
5386
5405
|
c() {
|
5387
5406
|
div = element("div");
|
5388
5407
|
if_block.c();
|
5389
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5408
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
5390
5409
|
},
|
5391
5410
|
m(target, anchor) {
|
5392
5411
|
insert(target, div, anchor);
|
@@ -5552,7 +5571,7 @@ class TextElement extends SvelteComponent {
|
|
5552
5571
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5553
5572
|
|
5554
5573
|
function add_css$p(target) {
|
5555
|
-
append_styles(target, "svelte-
|
5574
|
+
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)}");
|
5556
5575
|
}
|
5557
5576
|
|
5558
5577
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5608,7 +5627,7 @@ function create_fragment$q(ctx) {
|
|
5608
5627
|
c() {
|
5609
5628
|
div = element("div");
|
5610
5629
|
create_component(button.$$.fragment);
|
5611
|
-
attr(div, "class", "text-button-element svelte-
|
5630
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5612
5631
|
},
|
5613
5632
|
m(target, anchor) {
|
5614
5633
|
insert(target, div, anchor);
|
@@ -5700,7 +5719,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5700
5719
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5701
5720
|
|
5702
5721
|
function add_css$o(target) {
|
5703
|
-
append_styles(target, "svelte-
|
5722
|
+
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%}");
|
5704
5723
|
}
|
5705
5724
|
|
5706
5725
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5712,7 +5731,7 @@ function create_default_slot$4(ctx) {
|
|
5712
5731
|
return {
|
5713
5732
|
c() {
|
5714
5733
|
img = element("img");
|
5715
|
-
attr(img, "class", "image svelte-
|
5734
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5716
5735
|
attr(img, "loading", "lazy");
|
5717
5736
|
attr(img, "width", "auto");
|
5718
5737
|
attr(img, "height", "auto");
|
@@ -5774,7 +5793,7 @@ function create_fragment$p(ctx) {
|
|
5774
5793
|
c() {
|
5775
5794
|
div = element("div");
|
5776
5795
|
create_component(button.$$.fragment);
|
5777
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5796
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5778
5797
|
},
|
5779
5798
|
m(target, anchor) {
|
5780
5799
|
insert(target, div, anchor);
|
@@ -5793,7 +5812,7 @@ function create_fragment$p(ctx) {
|
|
5793
5812
|
|
5794
5813
|
button.$set(button_changes);
|
5795
5814
|
|
5796
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5815
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5797
5816
|
attr(div, "class", div_class_value);
|
5798
5817
|
}
|
5799
5818
|
},
|
@@ -5865,7 +5884,7 @@ class ImageElement extends SvelteComponent {
|
|
5865
5884
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5866
5885
|
|
5867
5886
|
function add_css$n(target) {
|
5868
|
-
append_styles(target, "svelte-
|
5887
|
+
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}");
|
5869
5888
|
}
|
5870
5889
|
|
5871
5890
|
function create_fragment$o(ctx) {
|
@@ -5878,7 +5897,7 @@ function create_fragment$o(ctx) {
|
|
5878
5897
|
c() {
|
5879
5898
|
div = element("div");
|
5880
5899
|
if (default_slot) default_slot.c();
|
5881
|
-
attr(div, "class", "list svelte-
|
5900
|
+
attr(div, "class", "list svelte-aquv6z");
|
5882
5901
|
attr(div, "style", /*style*/ ctx[0]);
|
5883
5902
|
},
|
5884
5903
|
m(target, anchor) {
|
@@ -6012,7 +6031,7 @@ class List extends SvelteComponent {
|
|
6012
6031
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6013
6032
|
|
6014
6033
|
function add_css$m(target) {
|
6015
|
-
append_styles(target, "svelte-
|
6034
|
+
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}");
|
6016
6035
|
}
|
6017
6036
|
|
6018
6037
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6082,7 +6101,7 @@ function create_fragment$n(ctx) {
|
|
6082
6101
|
c() {
|
6083
6102
|
div = element("div");
|
6084
6103
|
create_component(button.$$.fragment);
|
6085
|
-
attr(div, "class", "list-item svelte-
|
6104
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
6086
6105
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6087
6106
|
},
|
6088
6107
|
m(target, anchor) {
|
@@ -6208,7 +6227,7 @@ class ListItem extends SvelteComponent {
|
|
6208
6227
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6209
6228
|
|
6210
6229
|
function add_css$l(target) {
|
6211
|
-
append_styles(target, "svelte-
|
6230
|
+
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}");
|
6212
6231
|
}
|
6213
6232
|
|
6214
6233
|
function create_fragment$m(ctx) {
|
@@ -6217,7 +6236,7 @@ function create_fragment$m(ctx) {
|
|
6217
6236
|
return {
|
6218
6237
|
c() {
|
6219
6238
|
div = element("div");
|
6220
|
-
attr(div, "class", "embed svelte-
|
6239
|
+
attr(div, "class", "embed svelte-wocq4p");
|
6221
6240
|
attr(div, "style", /*_style*/ ctx[1]);
|
6222
6241
|
},
|
6223
6242
|
m(target, anchor) {
|
@@ -6260,7 +6279,7 @@ class EmbedElement extends SvelteComponent {
|
|
6260
6279
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6261
6280
|
|
6262
6281
|
function add_css$k(target) {
|
6263
|
-
append_styles(target, "svelte-
|
6282
|
+
append_styles(target, "svelte-vikz49", ".embed.svelte-vikz49{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-vikz49 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
6264
6283
|
}
|
6265
6284
|
|
6266
6285
|
function create_fragment$l(ctx) {
|
@@ -6272,7 +6291,7 @@ function create_fragment$l(ctx) {
|
|
6272
6291
|
div1 = element("div");
|
6273
6292
|
div0 = element("div");
|
6274
6293
|
attr(div0, "class", "karte-player");
|
6275
|
-
attr(div1, "class", "embed svelte-
|
6294
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6276
6295
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6277
6296
|
},
|
6278
6297
|
m(target, anchor) {
|
@@ -6614,7 +6633,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6614
6633
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6615
6634
|
|
6616
6635
|
function add_css$j(target) {
|
6617
|
-
append_styles(target, "svelte-
|
6636
|
+
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%}");
|
6618
6637
|
}
|
6619
6638
|
|
6620
6639
|
function create_fragment$k(ctx) {
|
@@ -6626,7 +6645,7 @@ function create_fragment$k(ctx) {
|
|
6626
6645
|
div1 = element("div");
|
6627
6646
|
div0 = element("div");
|
6628
6647
|
attr(div0, "class", "karte-player");
|
6629
|
-
attr(div1, "class", "embed svelte-
|
6648
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6630
6649
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6631
6650
|
},
|
6632
6651
|
m(target, anchor) {
|
@@ -6810,7 +6829,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6810
6829
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6811
6830
|
|
6812
6831
|
function add_css$i(target) {
|
6813
|
-
append_styles(target, "svelte-
|
6832
|
+
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}");
|
6814
6833
|
}
|
6815
6834
|
|
6816
6835
|
function create_fragment$j(ctx) {
|
@@ -6823,12 +6842,12 @@ function create_fragment$j(ctx) {
|
|
6823
6842
|
c() {
|
6824
6843
|
div = element("div");
|
6825
6844
|
textarea = element("textarea");
|
6826
|
-
attr(textarea, "class", "textarea svelte-
|
6845
|
+
attr(textarea, "class", "textarea svelte-zxvkkc");
|
6827
6846
|
textarea.value = /*$value*/ ctx[4];
|
6828
6847
|
textarea.required = /*required*/ ctx[1];
|
6829
6848
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
6830
6849
|
attr(textarea, "style", /*style*/ ctx[3]);
|
6831
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6850
|
+
attr(div, "class", "textarea-wrapper svelte-zxvkkc");
|
6832
6851
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
6833
6852
|
},
|
6834
6853
|
m(target, anchor) {
|
@@ -6980,7 +6999,7 @@ class FormTextarea extends SvelteComponent {
|
|
6980
6999
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6981
7000
|
|
6982
7001
|
function add_css$h(target) {
|
6983
|
-
append_styles(target, "svelte-
|
7002
|
+
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}");
|
6984
7003
|
}
|
6985
7004
|
|
6986
7005
|
function get_each_context$5(ctx, list, i) {
|
@@ -7014,14 +7033,14 @@ function create_each_block$5(ctx) {
|
|
7014
7033
|
t1 = text(t1_value);
|
7015
7034
|
t2 = space();
|
7016
7035
|
attr(input, "type", "radio");
|
7017
|
-
attr(input, "class", "radio-button-input svelte-
|
7036
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
7018
7037
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7019
7038
|
attr(input, "name", /*name*/ ctx[0]);
|
7020
7039
|
input.value = input_value_value = /*option*/ ctx[17];
|
7021
7040
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7022
|
-
attr(span, "class", "radio-button-text svelte-
|
7041
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
7023
7042
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7024
|
-
attr(label, "class", "radio-button svelte-
|
7043
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
7025
7044
|
},
|
7026
7045
|
m(target, anchor) {
|
7027
7046
|
insert(target, label, anchor);
|
@@ -7086,7 +7105,7 @@ function create_fragment$i(ctx) {
|
|
7086
7105
|
each_blocks[i].c();
|
7087
7106
|
}
|
7088
7107
|
|
7089
|
-
attr(div, "class", "radio-buttons svelte-
|
7108
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
7090
7109
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7091
7110
|
},
|
7092
7111
|
m(target, anchor) {
|
@@ -7255,7 +7274,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7255
7274
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7256
7275
|
|
7257
7276
|
function add_css$g(target) {
|
7258
|
-
append_styles(target, "svelte-
|
7277
|
+
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}");
|
7259
7278
|
}
|
7260
7279
|
|
7261
7280
|
function get_each_context$4(ctx, list, i) {
|
@@ -7389,10 +7408,10 @@ function create_fragment$h(ctx) {
|
|
7389
7408
|
|
7390
7409
|
t = space();
|
7391
7410
|
div0 = element("div");
|
7392
|
-
attr(select, "class", "select-select svelte-
|
7411
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7393
7412
|
attr(select, "style", /*style*/ ctx[3]);
|
7394
|
-
attr(div0, "class", "select-icon svelte-
|
7395
|
-
attr(div1, "class", "select svelte-
|
7413
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7414
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7396
7415
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7397
7416
|
},
|
7398
7417
|
m(target, anchor) {
|
@@ -7594,7 +7613,7 @@ class FormSelect extends SvelteComponent {
|
|
7594
7613
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7595
7614
|
|
7596
7615
|
function add_css$f(target) {
|
7597
|
-
append_styles(target, "svelte-
|
7616
|
+
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}");
|
7598
7617
|
}
|
7599
7618
|
|
7600
7619
|
function get_each_context$3(ctx, list, i) {
|
@@ -7633,19 +7652,19 @@ function create_each_block$3(ctx) {
|
|
7633
7652
|
span2 = element("span");
|
7634
7653
|
t2 = text(t2_value);
|
7635
7654
|
t3 = space();
|
7636
|
-
attr(input, "class", "check-box-input svelte-
|
7655
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7637
7656
|
attr(input, "type", "checkbox");
|
7638
7657
|
attr(input, "name", /*name*/ ctx[0]);
|
7639
7658
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7640
|
-
attr(span0, "class", "check-box-icon svelte-
|
7659
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
7641
7660
|
|
7642
7661
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7643
7662
|
? ' _checked'
|
7644
|
-
: ''}`) + " svelte-
|
7663
|
+
: ''}`) + " svelte-1p65cg8"));
|
7645
7664
|
|
7646
|
-
attr(span2, "class", "check-box-text svelte-
|
7665
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
7647
7666
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7648
|
-
attr(label, "class", "check-box svelte-
|
7667
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
7649
7668
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7650
7669
|
},
|
7651
7670
|
m(target, anchor) {
|
@@ -7677,7 +7696,7 @@ function create_each_block$3(ctx) {
|
|
7677
7696
|
|
7678
7697
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7679
7698
|
? ' _checked'
|
7680
|
-
: ''}`) + " svelte-
|
7699
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
7681
7700
|
attr(span1, "class", span1_class_value);
|
7682
7701
|
}
|
7683
7702
|
|
@@ -7716,7 +7735,7 @@ function create_fragment$g(ctx) {
|
|
7716
7735
|
each_blocks[i].c();
|
7717
7736
|
}
|
7718
7737
|
|
7719
|
-
attr(div, "class", "check-boxes svelte-
|
7738
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7720
7739
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7721
7740
|
},
|
7722
7741
|
m(target, anchor) {
|
@@ -7891,7 +7910,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7891
7910
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7892
7911
|
|
7893
7912
|
function add_css$e(target) {
|
7894
|
-
append_styles(target, "svelte-
|
7913
|
+
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}");
|
7895
7914
|
}
|
7896
7915
|
|
7897
7916
|
function get_each_context$2(ctx, list, i) {
|
@@ -7915,7 +7934,7 @@ function create_each_block$2(ctx) {
|
|
7915
7934
|
button = element("button");
|
7916
7935
|
t0 = text(t0_value);
|
7917
7936
|
t1 = space();
|
7918
|
-
attr(button, "class", "rating-button svelte-
|
7937
|
+
attr(button, "class", "rating-button svelte-1iqf36p");
|
7919
7938
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
7920
7939
|
},
|
7921
7940
|
m(target, anchor) {
|
@@ -7964,7 +7983,7 @@ function create_fragment$f(ctx) {
|
|
7964
7983
|
each_blocks[i].c();
|
7965
7984
|
}
|
7966
7985
|
|
7967
|
-
attr(div, "class", "rating-buttons svelte-
|
7986
|
+
attr(div, "class", "rating-buttons svelte-1iqf36p");
|
7968
7987
|
},
|
7969
7988
|
m(target, anchor) {
|
7970
7989
|
insert(target, div, anchor);
|
@@ -8108,7 +8127,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8108
8127
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8109
8128
|
|
8110
8129
|
function add_css$d(target) {
|
8111
|
-
append_styles(target, "svelte-
|
8130
|
+
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%)}");
|
8112
8131
|
}
|
8113
8132
|
|
8114
8133
|
function get_each_context$1(ctx, list, i) {
|
@@ -8133,9 +8152,9 @@ function create_each_block$1(ctx) {
|
|
8133
8152
|
img = element("img");
|
8134
8153
|
t = space();
|
8135
8154
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8136
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8155
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
8137
8156
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8138
|
-
attr(button, "class", "rating-button svelte-
|
8157
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
8139
8158
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8140
8159
|
},
|
8141
8160
|
m(target, anchor) {
|
@@ -8151,7 +8170,7 @@ function create_each_block$1(ctx) {
|
|
8151
8170
|
p(new_ctx, dirty) {
|
8152
8171
|
ctx = new_ctx;
|
8153
8172
|
|
8154
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8173
|
+
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"))) {
|
8155
8174
|
attr(img, "class", img_class_value);
|
8156
8175
|
}
|
8157
8176
|
|
@@ -8184,7 +8203,7 @@ function create_fragment$e(ctx) {
|
|
8184
8203
|
each_blocks[i].c();
|
8185
8204
|
}
|
8186
8205
|
|
8187
|
-
attr(div, "class", "rating-buttons svelte-
|
8206
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
8188
8207
|
},
|
8189
8208
|
m(target, anchor) {
|
8190
8209
|
insert(target, div, anchor);
|
@@ -8292,7 +8311,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8292
8311
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8293
8312
|
|
8294
8313
|
function add_css$c(target) {
|
8295
|
-
append_styles(target, "svelte-
|
8314
|
+
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}");
|
8296
8315
|
}
|
8297
8316
|
|
8298
8317
|
function create_fragment$d(ctx) {
|
@@ -8306,13 +8325,13 @@ function create_fragment$d(ctx) {
|
|
8306
8325
|
c() {
|
8307
8326
|
div = element("div");
|
8308
8327
|
input = element("input");
|
8309
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8328
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
|
8310
8329
|
attr(input, "type", "text");
|
8311
8330
|
input.value = /*$value*/ ctx[2];
|
8312
8331
|
input.required = /*required*/ ctx[0];
|
8313
8332
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8314
8333
|
attr(input, "style", /*style*/ ctx[5]);
|
8315
|
-
attr(div, "class", "input-wrapper svelte-
|
8334
|
+
attr(div, "class", "input-wrapper svelte-h8fqwx");
|
8316
8335
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8317
8336
|
},
|
8318
8337
|
m(target, anchor) {
|
@@ -8325,7 +8344,7 @@ function create_fragment$d(ctx) {
|
|
8325
8344
|
}
|
8326
8345
|
},
|
8327
8346
|
p(ctx, [dirty]) {
|
8328
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8347
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
|
8329
8348
|
attr(input, "class", input_class_value);
|
8330
8349
|
}
|
8331
8350
|
|
@@ -8513,7 +8532,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8513
8532
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8514
8533
|
|
8515
8534
|
function add_css$b(target) {
|
8516
|
-
append_styles(target, "svelte-
|
8535
|
+
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}");
|
8517
8536
|
}
|
8518
8537
|
|
8519
8538
|
function create_fragment$c(ctx) {
|
@@ -8551,20 +8570,20 @@ function create_fragment$c(ctx) {
|
|
8551
8570
|
span1 = element("span");
|
8552
8571
|
t4 = text("いいえ");
|
8553
8572
|
attr(input0, "type", "radio");
|
8554
|
-
attr(input0, "class", "radio-button-input svelte-
|
8573
|
+
attr(input0, "class", "radio-button-input svelte-8zbmyo");
|
8555
8574
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
8556
8575
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
8557
|
-
attr(span0, "class", "radio-button-text svelte-
|
8576
|
+
attr(span0, "class", "radio-button-text svelte-8zbmyo");
|
8558
8577
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
8559
|
-
attr(label0, "class", "radio-button svelte-
|
8578
|
+
attr(label0, "class", "radio-button svelte-8zbmyo");
|
8560
8579
|
attr(input1, "type", "radio");
|
8561
|
-
attr(input1, "class", "radio-button-input svelte-
|
8580
|
+
attr(input1, "class", "radio-button-input svelte-8zbmyo");
|
8562
8581
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
8563
8582
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
8564
|
-
attr(span1, "class", "radio-button-text svelte-
|
8583
|
+
attr(span1, "class", "radio-button-text svelte-8zbmyo");
|
8565
8584
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
8566
|
-
attr(label1, "class", "radio-button svelte-
|
8567
|
-
attr(div, "class", "radio-buttons svelte-
|
8585
|
+
attr(label1, "class", "radio-button svelte-8zbmyo");
|
8586
|
+
attr(div, "class", "radio-buttons svelte-8zbmyo");
|
8568
8587
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
8569
8588
|
},
|
8570
8589
|
m(target, anchor) {
|
@@ -8732,7 +8751,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
8732
8751
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
8733
8752
|
|
8734
8753
|
function add_css$a(target) {
|
8735
|
-
append_styles(target, "svelte-
|
8754
|
+
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%}");
|
8736
8755
|
}
|
8737
8756
|
|
8738
8757
|
function get_each_context(ctx, list, i) {
|
@@ -8761,9 +8780,9 @@ function create_if_block_1(ctx) {
|
|
8761
8780
|
attr(svg, "viewBox", "0 0 10 16");
|
8762
8781
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8763
8782
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
8764
|
-
attr(button, "class", "move-button svelte-
|
8783
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8765
8784
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
8766
|
-
attr(div, "class", "prev-button-container svelte-
|
8785
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
8767
8786
|
},
|
8768
8787
|
m(target, anchor) {
|
8769
8788
|
insert(target, div, anchor);
|
@@ -8812,9 +8831,9 @@ function create_if_block$1(ctx) {
|
|
8812
8831
|
attr(svg, "viewBox", "0 0 10 16");
|
8813
8832
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8814
8833
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
8815
|
-
attr(button, "class", "move-button svelte-
|
8834
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8816
8835
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
8817
|
-
attr(div, "class", "next-button-container svelte-
|
8836
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
8818
8837
|
},
|
8819
8838
|
m(target, anchor) {
|
8820
8839
|
insert(target, div, anchor);
|
@@ -8862,9 +8881,9 @@ function create_each_block(ctx) {
|
|
8862
8881
|
button = element("button");
|
8863
8882
|
div = element("div");
|
8864
8883
|
t = space();
|
8865
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
8884
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
8866
8885
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
8867
|
-
attr(button, "class", "navigation-item svelte-
|
8886
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
8868
8887
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
8869
8888
|
},
|
8870
8889
|
m(target, anchor) {
|
@@ -8941,14 +8960,14 @@ function create_fragment$b(ctx) {
|
|
8941
8960
|
each_blocks[i].c();
|
8942
8961
|
}
|
8943
8962
|
|
8944
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8963
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
8945
8964
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
8946
|
-
attr(div1, "class", "container svelte-
|
8965
|
+
attr(div1, "class", "container svelte-ji1fh");
|
8947
8966
|
attr(div1, "style", /*_style*/ ctx[0]);
|
8948
|
-
attr(div2, "class", "navigation svelte-
|
8967
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
8949
8968
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
8950
8969
|
set_attributes(div3, div3_data);
|
8951
|
-
toggle_class(div3, "svelte-
|
8970
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8952
8971
|
},
|
8953
8972
|
m(target, anchor) {
|
8954
8973
|
insert(target, div3, anchor);
|
@@ -8990,7 +9009,7 @@ function create_fragment$b(ctx) {
|
|
8990
9009
|
}
|
8991
9010
|
}
|
8992
9011
|
|
8993
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9012
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
8994
9013
|
attr(div0, "class", div0_class_value);
|
8995
9014
|
}
|
8996
9015
|
|
@@ -9056,7 +9075,7 @@ function create_fragment$b(ctx) {
|
|
9056
9075
|
}
|
9057
9076
|
|
9058
9077
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9059
|
-
toggle_class(div3, "svelte-
|
9078
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9060
9079
|
},
|
9061
9080
|
i(local) {
|
9062
9081
|
if (current) return;
|
@@ -9568,7 +9587,7 @@ class Slide extends SvelteComponent {
|
|
9568
9587
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
9569
9588
|
|
9570
9589
|
function add_css$9(target) {
|
9571
|
-
append_styles(target, "svelte-
|
9590
|
+
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}");
|
9572
9591
|
}
|
9573
9592
|
|
9574
9593
|
function create_fragment$a(ctx) {
|
@@ -9583,9 +9602,9 @@ function create_fragment$a(ctx) {
|
|
9583
9602
|
div1 = element("div");
|
9584
9603
|
div0 = element("div");
|
9585
9604
|
if (default_slot) default_slot.c();
|
9586
|
-
attr(div0, "class", "item-inner svelte-
|
9605
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
9587
9606
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9588
|
-
attr(div1, "class", "item svelte-
|
9607
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
9589
9608
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
9590
9609
|
},
|
9591
9610
|
m(target, anchor) {
|
@@ -9711,7 +9730,7 @@ class SlideItem extends SvelteComponent {
|
|
9711
9730
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
9712
9731
|
|
9713
9732
|
function add_css$8(target) {
|
9714
|
-
append_styles(target, "svelte-
|
9733
|
+
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}");
|
9715
9734
|
}
|
9716
9735
|
|
9717
9736
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -9729,9 +9748,9 @@ function create_fragment$9(ctx) {
|
|
9729
9748
|
div1 = element("div");
|
9730
9749
|
div0 = element("div");
|
9731
9750
|
if (default_slot) default_slot.c();
|
9732
|
-
attr(div0, "class", "countdown-inner svelte-
|
9751
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
9733
9752
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9734
|
-
attr(div1, "class", "countdown svelte-
|
9753
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
9735
9754
|
},
|
9736
9755
|
m(target, anchor) {
|
9737
9756
|
insert(target, div1, anchor);
|
@@ -9865,7 +9884,7 @@ class Countdown extends SvelteComponent {
|
|
9865
9884
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
9866
9885
|
|
9867
9886
|
function add_css$7(target) {
|
9868
|
-
append_styles(target, "svelte-
|
9887
|
+
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}");
|
9869
9888
|
}
|
9870
9889
|
|
9871
9890
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -9935,7 +9954,7 @@ function create_fragment$8(ctx) {
|
|
9935
9954
|
c() {
|
9936
9955
|
div = element("div");
|
9937
9956
|
create_component(button.$$.fragment);
|
9938
|
-
attr(div, "class", "box svelte-
|
9957
|
+
attr(div, "class", "box svelte-1ccydfy");
|
9939
9958
|
},
|
9940
9959
|
m(target, anchor) {
|
9941
9960
|
insert(target, div, anchor);
|
@@ -9996,7 +10015,7 @@ class Box extends SvelteComponent {
|
|
9996
10015
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
9997
10016
|
|
9998
10017
|
function add_css$6(target) {
|
9999
|
-
append_styles(target, "svelte-
|
10018
|
+
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)}");
|
10000
10019
|
}
|
10001
10020
|
|
10002
10021
|
// (56:4) {#if svg}
|
@@ -10078,7 +10097,7 @@ function create_fragment$7(ctx) {
|
|
10078
10097
|
c() {
|
10079
10098
|
div = element("div");
|
10080
10099
|
create_component(button.$$.fragment);
|
10081
|
-
attr(div, "class", "icon svelte-
|
10100
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
10082
10101
|
},
|
10083
10102
|
m(target, anchor) {
|
10084
10103
|
insert(target, div, anchor);
|
@@ -10187,7 +10206,7 @@ class IconElement extends SvelteComponent {
|
|
10187
10206
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10188
10207
|
|
10189
10208
|
function add_css$5(target) {
|
10190
|
-
append_styles(target, "svelte-
|
10209
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10191
10210
|
}
|
10192
10211
|
|
10193
10212
|
function create_fragment$6(ctx) {
|
@@ -10213,7 +10232,7 @@ function create_fragment$6(ctx) {
|
|
10213
10232
|
c() {
|
10214
10233
|
div = element("div");
|
10215
10234
|
if (switch_instance) create_component(switch_instance.$$.fragment);
|
10216
|
-
attr(div, "class", "codeElement svelte-
|
10235
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
10217
10236
|
attr(div, "style", /*style*/ ctx[3]);
|
10218
10237
|
},
|
10219
10238
|
m(target, anchor) {
|
@@ -10302,7 +10321,7 @@ class CodeElement extends SvelteComponent {
|
|
10302
10321
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10303
10322
|
|
10304
10323
|
function add_css$4(target) {
|
10305
|
-
append_styles(target, "svelte-
|
10324
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
10306
10325
|
}
|
10307
10326
|
|
10308
10327
|
function create_fragment$5(ctx) {
|
@@ -10316,7 +10335,7 @@ function create_fragment$5(ctx) {
|
|
10316
10335
|
c() {
|
10317
10336
|
div = element("div");
|
10318
10337
|
if (default_slot) default_slot.c();
|
10319
|
-
attr(div, "class", "flex svelte-
|
10338
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
10320
10339
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10321
10340
|
},
|
10322
10341
|
m(target, anchor) {
|
@@ -10413,7 +10432,7 @@ class Flex extends SvelteComponent {
|
|
10413
10432
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
10414
10433
|
|
10415
10434
|
function add_css$3(target) {
|
10416
|
-
append_styles(target, "svelte-
|
10435
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
10417
10436
|
}
|
10418
10437
|
|
10419
10438
|
function create_fragment$4(ctx) {
|
@@ -10426,7 +10445,7 @@ function create_fragment$4(ctx) {
|
|
10426
10445
|
c() {
|
10427
10446
|
div = element("div");
|
10428
10447
|
if (default_slot) default_slot.c();
|
10429
|
-
attr(div, "class", "flex-item svelte-
|
10448
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
10430
10449
|
attr(div, "style", /*style*/ ctx[0]);
|
10431
10450
|
},
|
10432
10451
|
m(target, anchor) {
|
@@ -10834,7 +10853,7 @@ class GridModalState extends SvelteComponent {
|
|
10834
10853
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
10835
10854
|
|
10836
10855
|
function add_css$2(target) {
|
10837
|
-
append_styles(target, "svelte-
|
10856
|
+
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%}");
|
10838
10857
|
}
|
10839
10858
|
|
10840
10859
|
function create_fragment$2(ctx) {
|
@@ -10850,8 +10869,8 @@ function create_fragment$2(ctx) {
|
|
10850
10869
|
div1 = element("div");
|
10851
10870
|
div0 = element("div");
|
10852
10871
|
create_component(rendertext.$$.fragment);
|
10853
|
-
attr(div0, "class", "text-block-inner svelte-
|
10854
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10872
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
10873
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
10855
10874
|
attr(div1, "style", /*style*/ ctx[2]);
|
10856
10875
|
},
|
10857
10876
|
m(target, anchor) {
|
@@ -10865,7 +10884,7 @@ function create_fragment$2(ctx) {
|
|
10865
10884
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
10866
10885
|
rendertext.$set(rendertext_changes);
|
10867
10886
|
|
10868
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10887
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
10869
10888
|
attr(div1, "class", div1_class_value);
|
10870
10889
|
}
|
10871
10890
|
|
@@ -10943,7 +10962,7 @@ class TextBlock extends SvelteComponent {
|
|
10943
10962
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
10944
10963
|
|
10945
10964
|
function add_css$1(target) {
|
10946
|
-
append_styles(target, "svelte-
|
10965
|
+
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)}");
|
10947
10966
|
}
|
10948
10967
|
|
10949
10968
|
function create_fragment$1(ctx) {
|
@@ -10960,9 +10979,9 @@ function create_fragment$1(ctx) {
|
|
10960
10979
|
div = element("div");
|
10961
10980
|
button = element("button");
|
10962
10981
|
create_component(rendertext.$$.fragment);
|
10963
|
-
attr(button, "class", "text-button svelte-
|
10982
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
10964
10983
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
10965
|
-
attr(div, "class", "text-button-block svelte-
|
10984
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
10966
10985
|
attr(div, "style", /*_style*/ ctx[2]);
|
10967
10986
|
},
|
10968
10987
|
m(target, anchor) {
|
@@ -11068,7 +11087,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11068
11087
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11069
11088
|
|
11070
11089
|
function add_css(target) {
|
11071
|
-
append_styles(target, "svelte-
|
11090
|
+
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)}");
|
11072
11091
|
}
|
11073
11092
|
|
11074
11093
|
function create_fragment(ctx) {
|
@@ -11084,14 +11103,14 @@ function create_fragment(ctx) {
|
|
11084
11103
|
c() {
|
11085
11104
|
div = element("div");
|
11086
11105
|
img = element("img");
|
11087
|
-
attr(img, "class", "image svelte-
|
11106
|
+
attr(img, "class", "image svelte-1pdw891");
|
11088
11107
|
attr(img, "loading", "lazy");
|
11089
11108
|
attr(img, "width", "auto");
|
11090
11109
|
attr(img, "height", "auto");
|
11091
11110
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11092
11111
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11093
11112
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11094
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11113
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
11095
11114
|
attr(div, "style", /*_style*/ ctx[5]);
|
11096
11115
|
},
|
11097
11116
|
m(target, anchor) {
|
@@ -11116,7 +11135,7 @@ function create_fragment(ctx) {
|
|
11116
11135
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11117
11136
|
}
|
11118
11137
|
|
11119
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11138
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
11120
11139
|
attr(div, "class", div_class_value);
|
11121
11140
|
}
|
11122
11141
|
|