@plaidev/karte-action-sdk 1.1.224 → 1.1.225-28453458.8b5dd950
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 +4 -4
- package/dist/hydrate/index.es.js +133 -130
- package/dist/index.es.d.ts +4 -4
- package/dist/index.es.js +133 -130
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -1265,7 +1265,7 @@ function hideOnTime(props, hide = NOOP) {
|
|
1265
1265
|
* スクロール率が `show_on_scroll_rate` に達したときに `show` 関数を呼び出します。
|
1266
1266
|
* `hide_on_scroll_releave` が `true` で、かつ `show_on_scroll_rate` 以下の場合は、アクションに対して `hide` 関数が呼び出されます。
|
1267
1267
|
*
|
1268
|
-
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate
|
1268
|
+
* @param props - アクションのプロパティ。プロパティには `show_on_scroll`、`show_on_scroll_rate`、'hide_on_scroll_releave' そして `show_on_scroll_reenter` が必要です。
|
1269
1269
|
* @param show - アクションを表示するロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1270
1270
|
* @param hide - アクションを非表示にするロジックが実装された関数。指定ない場合は noop 関数が使用されます。
|
1271
1271
|
*
|
@@ -1275,9 +1275,12 @@ function hideOnTime(props, hide = NOOP) {
|
|
1275
1275
|
* @internal
|
1276
1276
|
*/
|
1277
1277
|
function showOnScroll(props, show = NOOP, hide = NOOP) {
|
1278
|
-
const { show_on_scroll, show_on_scroll_rate, hide_on_scroll_releave } = props;
|
1278
|
+
const { show_on_scroll, show_on_scroll_rate, hide_on_scroll_releave, show_on_scroll_reenter } = props;
|
1279
1279
|
return show_on_scroll && show_on_scroll_rate
|
1280
|
-
? onScroll(show_on_scroll_rate / 100, ctx =>
|
1280
|
+
? onScroll(show_on_scroll_rate / 100, ctx => {
|
1281
|
+
doPresent(ctx, show, hide, hide_on_scroll_releave ?? true);
|
1282
|
+
return show_on_scroll_reenter;
|
1283
|
+
})
|
1281
1284
|
: null;
|
1282
1285
|
}
|
1283
1286
|
/**
|
@@ -1357,7 +1360,7 @@ function checkAndDo(checkFn, fn, ...conditionFns) {
|
|
1357
1360
|
*/
|
1358
1361
|
const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__ === 'string'
|
1359
1362
|
? __FLYER_GEN_COLLECTION_API_ENDPOINT__
|
1360
|
-
: 'https://
|
1363
|
+
: 'https://action-table.karte.io/collection';
|
1361
1364
|
/**
|
1362
1365
|
* アクションテーブルを管理するメソッドを取得する
|
1363
1366
|
*
|
@@ -3040,7 +3043,7 @@ class State extends SvelteComponent {
|
|
3040
3043
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
3041
3044
|
|
3042
3045
|
function add_css$v(target) {
|
3043
|
-
append_styles(target, "svelte-
|
3046
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
3044
3047
|
}
|
3045
3048
|
|
3046
3049
|
// (23:0) {#if $state === path}
|
@@ -3057,7 +3060,7 @@ function create_if_block$8(ctx) {
|
|
3057
3060
|
t = space();
|
3058
3061
|
if (default_slot) default_slot.c();
|
3059
3062
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3060
|
-
attr(div, "class", "state-item svelte-
|
3063
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
3061
3064
|
},
|
3062
3065
|
m(target, anchor) {
|
3063
3066
|
insert(target, div, anchor);
|
@@ -3372,7 +3375,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
3372
3375
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3373
3376
|
|
3374
3377
|
function add_css$u(target) {
|
3375
|
-
append_styles(target, "svelte-
|
3378
|
+
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}");
|
3376
3379
|
}
|
3377
3380
|
|
3378
3381
|
// (14:0) {#if backgroundOverlay}
|
@@ -3385,7 +3388,7 @@ function create_if_block$7(ctx) {
|
|
3385
3388
|
return {
|
3386
3389
|
c() {
|
3387
3390
|
div = element("div");
|
3388
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3391
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
|
3389
3392
|
},
|
3390
3393
|
m(target, anchor) {
|
3391
3394
|
insert(target, div, anchor);
|
@@ -3396,7 +3399,7 @@ function create_if_block$7(ctx) {
|
|
3396
3399
|
}
|
3397
3400
|
},
|
3398
3401
|
p(ctx, dirty) {
|
3399
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3402
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
|
3400
3403
|
attr(div, "class", div_class_value);
|
3401
3404
|
}
|
3402
3405
|
},
|
@@ -3502,7 +3505,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3502
3505
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3503
3506
|
|
3504
3507
|
function add_css$t(target) {
|
3505
|
-
append_styles(target, "svelte-
|
3508
|
+
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}");
|
3506
3509
|
}
|
3507
3510
|
|
3508
3511
|
// (50:0) {:else}
|
@@ -3531,7 +3534,7 @@ function create_else_block$4(ctx) {
|
|
3531
3534
|
button = element("button");
|
3532
3535
|
if (default_slot) default_slot.c();
|
3533
3536
|
set_attributes(button, button_data);
|
3534
|
-
toggle_class(button, "svelte-
|
3537
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3535
3538
|
},
|
3536
3539
|
m(target, anchor) {
|
3537
3540
|
insert(target, button, anchor);
|
@@ -3570,7 +3573,7 @@ function create_else_block$4(ctx) {
|
|
3570
3573
|
dataAttrStopPropagation('click')
|
3571
3574
|
]));
|
3572
3575
|
|
3573
|
-
toggle_class(button, "svelte-
|
3576
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3574
3577
|
},
|
3575
3578
|
i(local) {
|
3576
3579
|
if (current) return;
|
@@ -3601,7 +3604,7 @@ function create_if_block_2$1(ctx) {
|
|
3601
3604
|
c() {
|
3602
3605
|
div = element("div");
|
3603
3606
|
if (default_slot) default_slot.c();
|
3604
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3607
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
|
3605
3608
|
attr(div, "style", /*style*/ ctx[1]);
|
3606
3609
|
},
|
3607
3610
|
m(target, anchor) {
|
@@ -3685,7 +3688,7 @@ function create_if_block_1$2(ctx) {
|
|
3685
3688
|
a = element("a");
|
3686
3689
|
if (default_slot) default_slot.c();
|
3687
3690
|
set_attributes(a, a_data);
|
3688
|
-
toggle_class(a, "svelte-
|
3691
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3689
3692
|
},
|
3690
3693
|
m(target, anchor) {
|
3691
3694
|
insert(target, a, anchor);
|
@@ -3727,7 +3730,7 @@ function create_if_block_1$2(ctx) {
|
|
3727
3730
|
dataAttrStopPropagation('click')
|
3728
3731
|
]));
|
3729
3732
|
|
3730
|
-
toggle_class(a, "svelte-
|
3733
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3731
3734
|
},
|
3732
3735
|
i(local) {
|
3733
3736
|
if (current) return;
|
@@ -3758,7 +3761,7 @@ function create_if_block$6(ctx) {
|
|
3758
3761
|
c() {
|
3759
3762
|
div = element("div");
|
3760
3763
|
if (default_slot) default_slot.c();
|
3761
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3764
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
|
3762
3765
|
attr(div, "style", /*style*/ ctx[1]);
|
3763
3766
|
},
|
3764
3767
|
m(target, anchor) {
|
@@ -3962,7 +3965,7 @@ class Button extends SvelteComponent {
|
|
3962
3965
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3963
3966
|
|
3964
3967
|
function add_css$s(target) {
|
3965
|
-
append_styles(target, "svelte-
|
3968
|
+
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}}");
|
3966
3969
|
}
|
3967
3970
|
|
3968
3971
|
// (275:0) {:else}
|
@@ -4112,7 +4115,7 @@ function create_if_block$5(ctx) {
|
|
4112
4115
|
c() {
|
4113
4116
|
div = element("div");
|
4114
4117
|
create_component(button.$$.fragment);
|
4115
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4118
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"));
|
4116
4119
|
attr(div, "role", "dialog");
|
4117
4120
|
attr(div, "aria-modal", "true");
|
4118
4121
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4136,7 +4139,7 @@ function create_if_block$5(ctx) {
|
|
4136
4139
|
|
4137
4140
|
button.$set(button_changes);
|
4138
4141
|
|
4139
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4142
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1j0m3x1"))) {
|
4140
4143
|
attr(div, "class", div_class_value);
|
4141
4144
|
}
|
4142
4145
|
},
|
@@ -4190,7 +4193,7 @@ function create_if_block_1$1(ctx) {
|
|
4190
4193
|
c() {
|
4191
4194
|
div = element("div");
|
4192
4195
|
create_component(button.$$.fragment);
|
4193
|
-
attr(div, "class", "close svelte-
|
4196
|
+
attr(div, "class", "close svelte-1j0m3x1");
|
4194
4197
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4195
4198
|
},
|
4196
4199
|
m(target, anchor) {
|
@@ -4279,7 +4282,7 @@ function create_default_slot$6(ctx) {
|
|
4279
4282
|
t = space();
|
4280
4283
|
div = element("div");
|
4281
4284
|
if (default_slot) default_slot.c();
|
4282
|
-
attr(div, "class", "modal-content svelte-
|
4285
|
+
attr(div, "class", "modal-content svelte-1j0m3x1");
|
4283
4286
|
attr(div, "style", /*_style*/ ctx[5]);
|
4284
4287
|
},
|
4285
4288
|
m(target, anchor) {
|
@@ -4921,7 +4924,7 @@ class Grid extends SvelteComponent {
|
|
4921
4924
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4922
4925
|
|
4923
4926
|
function add_css$r(target) {
|
4924
|
-
append_styles(target, "svelte-
|
4927
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4925
4928
|
}
|
4926
4929
|
|
4927
4930
|
function create_fragment$t(ctx) {
|
@@ -4936,8 +4939,8 @@ function create_fragment$t(ctx) {
|
|
4936
4939
|
div1 = element("div");
|
4937
4940
|
div0 = element("div");
|
4938
4941
|
if (default_slot) default_slot.c();
|
4939
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4940
|
-
attr(div1, "class", "grid-item svelte-
|
4942
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4943
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4941
4944
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4942
4945
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4943
4946
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5242,7 +5245,7 @@ class RenderText extends SvelteComponent {
|
|
5242
5245
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5243
5246
|
|
5244
5247
|
function add_css$q(target) {
|
5245
|
-
append_styles(target, "svelte-
|
5248
|
+
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}");
|
5246
5249
|
}
|
5247
5250
|
|
5248
5251
|
// (94:2) {:else}
|
@@ -5259,8 +5262,8 @@ function create_else_block$1(ctx) {
|
|
5259
5262
|
div1 = element("div");
|
5260
5263
|
div0 = element("div");
|
5261
5264
|
create_component(rendertext.$$.fragment);
|
5262
|
-
attr(div0, "class", "text-element-inner svelte-
|
5263
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5265
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5266
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5264
5267
|
attr(div1, "style", /*style*/ ctx[5]);
|
5265
5268
|
},
|
5266
5269
|
m(target, anchor) {
|
@@ -5274,7 +5277,7 @@ function create_else_block$1(ctx) {
|
|
5274
5277
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5275
5278
|
rendertext.$set(rendertext_changes);
|
5276
5279
|
|
5277
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5280
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5278
5281
|
attr(div1, "class", div1_class_value);
|
5279
5282
|
}
|
5280
5283
|
|
@@ -5324,12 +5327,12 @@ function create_if_block$3(ctx) {
|
|
5324
5327
|
t2 = space();
|
5325
5328
|
div2 = element("div");
|
5326
5329
|
div2.textContent = "コピーできませんでした";
|
5327
|
-
attr(div0, "class", "text-element-inner svelte-
|
5330
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5328
5331
|
attr(a, "href", '');
|
5329
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5332
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5330
5333
|
attr(a, "style", /*style*/ ctx[5]);
|
5331
|
-
attr(div1, "class", "tooltip svelte-
|
5332
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5334
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
5335
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
5333
5336
|
},
|
5334
5337
|
m(target, anchor) {
|
5335
5338
|
insert(target, a, anchor);
|
@@ -5353,7 +5356,7 @@ function create_if_block$3(ctx) {
|
|
5353
5356
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5354
5357
|
rendertext.$set(rendertext_changes);
|
5355
5358
|
|
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-
|
5359
|
+
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"))) {
|
5357
5360
|
attr(a, "class", a_class_value);
|
5358
5361
|
}
|
5359
5362
|
|
@@ -5405,7 +5408,7 @@ function create_fragment$r(ctx) {
|
|
5405
5408
|
c() {
|
5406
5409
|
div = element("div");
|
5407
5410
|
if_block.c();
|
5408
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5411
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
5409
5412
|
},
|
5410
5413
|
m(target, anchor) {
|
5411
5414
|
insert(target, div, anchor);
|
@@ -5571,7 +5574,7 @@ class TextElement extends SvelteComponent {
|
|
5571
5574
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5572
5575
|
|
5573
5576
|
function add_css$p(target) {
|
5574
|
-
append_styles(target, "svelte-
|
5577
|
+
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)}");
|
5575
5578
|
}
|
5576
5579
|
|
5577
5580
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5627,7 +5630,7 @@ function create_fragment$q(ctx) {
|
|
5627
5630
|
c() {
|
5628
5631
|
div = element("div");
|
5629
5632
|
create_component(button.$$.fragment);
|
5630
|
-
attr(div, "class", "text-button-element svelte-
|
5633
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5631
5634
|
},
|
5632
5635
|
m(target, anchor) {
|
5633
5636
|
insert(target, div, anchor);
|
@@ -5719,7 +5722,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5719
5722
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5720
5723
|
|
5721
5724
|
function add_css$o(target) {
|
5722
|
-
append_styles(target, "svelte-
|
5725
|
+
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%}");
|
5723
5726
|
}
|
5724
5727
|
|
5725
5728
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5731,7 +5734,7 @@ function create_default_slot$4(ctx) {
|
|
5731
5734
|
return {
|
5732
5735
|
c() {
|
5733
5736
|
img = element("img");
|
5734
|
-
attr(img, "class", "image svelte-
|
5737
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5735
5738
|
attr(img, "loading", "lazy");
|
5736
5739
|
attr(img, "width", "auto");
|
5737
5740
|
attr(img, "height", "auto");
|
@@ -5793,7 +5796,7 @@ function create_fragment$p(ctx) {
|
|
5793
5796
|
c() {
|
5794
5797
|
div = element("div");
|
5795
5798
|
create_component(button.$$.fragment);
|
5796
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5799
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5797
5800
|
},
|
5798
5801
|
m(target, anchor) {
|
5799
5802
|
insert(target, div, anchor);
|
@@ -5812,7 +5815,7 @@ function create_fragment$p(ctx) {
|
|
5812
5815
|
|
5813
5816
|
button.$set(button_changes);
|
5814
5817
|
|
5815
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5818
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5816
5819
|
attr(div, "class", div_class_value);
|
5817
5820
|
}
|
5818
5821
|
},
|
@@ -5884,7 +5887,7 @@ class ImageElement extends SvelteComponent {
|
|
5884
5887
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5885
5888
|
|
5886
5889
|
function add_css$n(target) {
|
5887
|
-
append_styles(target, "svelte-
|
5890
|
+
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}");
|
5888
5891
|
}
|
5889
5892
|
|
5890
5893
|
function create_fragment$o(ctx) {
|
@@ -5897,7 +5900,7 @@ function create_fragment$o(ctx) {
|
|
5897
5900
|
c() {
|
5898
5901
|
div = element("div");
|
5899
5902
|
if (default_slot) default_slot.c();
|
5900
|
-
attr(div, "class", "list svelte-
|
5903
|
+
attr(div, "class", "list svelte-aquv6z");
|
5901
5904
|
attr(div, "style", /*style*/ ctx[0]);
|
5902
5905
|
},
|
5903
5906
|
m(target, anchor) {
|
@@ -6031,7 +6034,7 @@ class List extends SvelteComponent {
|
|
6031
6034
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6032
6035
|
|
6033
6036
|
function add_css$m(target) {
|
6034
|
-
append_styles(target, "svelte-
|
6037
|
+
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}");
|
6035
6038
|
}
|
6036
6039
|
|
6037
6040
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6101,7 +6104,7 @@ function create_fragment$n(ctx) {
|
|
6101
6104
|
c() {
|
6102
6105
|
div = element("div");
|
6103
6106
|
create_component(button.$$.fragment);
|
6104
|
-
attr(div, "class", "list-item svelte-
|
6107
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
6105
6108
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6106
6109
|
},
|
6107
6110
|
m(target, anchor) {
|
@@ -6227,7 +6230,7 @@ class ListItem extends SvelteComponent {
|
|
6227
6230
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6228
6231
|
|
6229
6232
|
function add_css$l(target) {
|
6230
|
-
append_styles(target, "svelte-
|
6233
|
+
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}");
|
6231
6234
|
}
|
6232
6235
|
|
6233
6236
|
function create_fragment$m(ctx) {
|
@@ -6236,7 +6239,7 @@ function create_fragment$m(ctx) {
|
|
6236
6239
|
return {
|
6237
6240
|
c() {
|
6238
6241
|
div = element("div");
|
6239
|
-
attr(div, "class", "embed svelte-
|
6242
|
+
attr(div, "class", "embed svelte-wocq4p");
|
6240
6243
|
attr(div, "style", /*_style*/ ctx[1]);
|
6241
6244
|
},
|
6242
6245
|
m(target, anchor) {
|
@@ -6279,7 +6282,7 @@ class EmbedElement extends SvelteComponent {
|
|
6279
6282
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6280
6283
|
|
6281
6284
|
function add_css$k(target) {
|
6282
|
-
append_styles(target, "svelte-
|
6285
|
+
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%}");
|
6283
6286
|
}
|
6284
6287
|
|
6285
6288
|
function create_fragment$l(ctx) {
|
@@ -6291,7 +6294,7 @@ function create_fragment$l(ctx) {
|
|
6291
6294
|
div1 = element("div");
|
6292
6295
|
div0 = element("div");
|
6293
6296
|
attr(div0, "class", "karte-player");
|
6294
|
-
attr(div1, "class", "embed svelte-
|
6297
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6295
6298
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6296
6299
|
},
|
6297
6300
|
m(target, anchor) {
|
@@ -6633,7 +6636,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6633
6636
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6634
6637
|
|
6635
6638
|
function add_css$j(target) {
|
6636
|
-
append_styles(target, "svelte-
|
6639
|
+
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%}");
|
6637
6640
|
}
|
6638
6641
|
|
6639
6642
|
function create_fragment$k(ctx) {
|
@@ -6645,7 +6648,7 @@ function create_fragment$k(ctx) {
|
|
6645
6648
|
div1 = element("div");
|
6646
6649
|
div0 = element("div");
|
6647
6650
|
attr(div0, "class", "karte-player");
|
6648
|
-
attr(div1, "class", "embed svelte-
|
6651
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6649
6652
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6650
6653
|
},
|
6651
6654
|
m(target, anchor) {
|
@@ -6829,7 +6832,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6829
6832
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6830
6833
|
|
6831
6834
|
function add_css$i(target) {
|
6832
|
-
append_styles(target, "svelte-
|
6835
|
+
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}");
|
6833
6836
|
}
|
6834
6837
|
|
6835
6838
|
function create_fragment$j(ctx) {
|
@@ -6842,12 +6845,12 @@ function create_fragment$j(ctx) {
|
|
6842
6845
|
c() {
|
6843
6846
|
div = element("div");
|
6844
6847
|
textarea = element("textarea");
|
6845
|
-
attr(textarea, "class", "textarea svelte-
|
6848
|
+
attr(textarea, "class", "textarea svelte-zxvkkc");
|
6846
6849
|
textarea.value = /*$value*/ ctx[4];
|
6847
6850
|
textarea.required = /*required*/ ctx[1];
|
6848
6851
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
6849
6852
|
attr(textarea, "style", /*style*/ ctx[3]);
|
6850
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6853
|
+
attr(div, "class", "textarea-wrapper svelte-zxvkkc");
|
6851
6854
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
6852
6855
|
},
|
6853
6856
|
m(target, anchor) {
|
@@ -6999,7 +7002,7 @@ class FormTextarea extends SvelteComponent {
|
|
6999
7002
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
7000
7003
|
|
7001
7004
|
function add_css$h(target) {
|
7002
|
-
append_styles(target, "svelte-
|
7005
|
+
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}");
|
7003
7006
|
}
|
7004
7007
|
|
7005
7008
|
function get_each_context$5(ctx, list, i) {
|
@@ -7033,14 +7036,14 @@ function create_each_block$5(ctx) {
|
|
7033
7036
|
t1 = text(t1_value);
|
7034
7037
|
t2 = space();
|
7035
7038
|
attr(input, "type", "radio");
|
7036
|
-
attr(input, "class", "radio-button-input svelte-
|
7039
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
7037
7040
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7038
7041
|
attr(input, "name", /*name*/ ctx[0]);
|
7039
7042
|
input.value = input_value_value = /*option*/ ctx[17];
|
7040
7043
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7041
|
-
attr(span, "class", "radio-button-text svelte-
|
7044
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
7042
7045
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7043
|
-
attr(label, "class", "radio-button svelte-
|
7046
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
7044
7047
|
},
|
7045
7048
|
m(target, anchor) {
|
7046
7049
|
insert(target, label, anchor);
|
@@ -7105,7 +7108,7 @@ function create_fragment$i(ctx) {
|
|
7105
7108
|
each_blocks[i].c();
|
7106
7109
|
}
|
7107
7110
|
|
7108
|
-
attr(div, "class", "radio-buttons svelte-
|
7111
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
7109
7112
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7110
7113
|
},
|
7111
7114
|
m(target, anchor) {
|
@@ -7274,7 +7277,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7274
7277
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7275
7278
|
|
7276
7279
|
function add_css$g(target) {
|
7277
|
-
append_styles(target, "svelte-
|
7280
|
+
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}");
|
7278
7281
|
}
|
7279
7282
|
|
7280
7283
|
function get_each_context$4(ctx, list, i) {
|
@@ -7408,10 +7411,10 @@ function create_fragment$h(ctx) {
|
|
7408
7411
|
|
7409
7412
|
t = space();
|
7410
7413
|
div0 = element("div");
|
7411
|
-
attr(select, "class", "select-select svelte-
|
7414
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7412
7415
|
attr(select, "style", /*style*/ ctx[3]);
|
7413
|
-
attr(div0, "class", "select-icon svelte-
|
7414
|
-
attr(div1, "class", "select svelte-
|
7416
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7417
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7415
7418
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7416
7419
|
},
|
7417
7420
|
m(target, anchor) {
|
@@ -7613,7 +7616,7 @@ class FormSelect extends SvelteComponent {
|
|
7613
7616
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7614
7617
|
|
7615
7618
|
function add_css$f(target) {
|
7616
|
-
append_styles(target, "svelte-
|
7619
|
+
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}");
|
7617
7620
|
}
|
7618
7621
|
|
7619
7622
|
function get_each_context$3(ctx, list, i) {
|
@@ -7652,19 +7655,19 @@ function create_each_block$3(ctx) {
|
|
7652
7655
|
span2 = element("span");
|
7653
7656
|
t2 = text(t2_value);
|
7654
7657
|
t3 = space();
|
7655
|
-
attr(input, "class", "check-box-input svelte-
|
7658
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7656
7659
|
attr(input, "type", "checkbox");
|
7657
7660
|
attr(input, "name", /*name*/ ctx[0]);
|
7658
7661
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7659
|
-
attr(span0, "class", "check-box-icon svelte-
|
7662
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
7660
7663
|
|
7661
7664
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7662
7665
|
? ' _checked'
|
7663
|
-
: ''}`) + " svelte-
|
7666
|
+
: ''}`) + " svelte-1p65cg8"));
|
7664
7667
|
|
7665
|
-
attr(span2, "class", "check-box-text svelte-
|
7668
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
7666
7669
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7667
|
-
attr(label, "class", "check-box svelte-
|
7670
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
7668
7671
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7669
7672
|
},
|
7670
7673
|
m(target, anchor) {
|
@@ -7696,7 +7699,7 @@ function create_each_block$3(ctx) {
|
|
7696
7699
|
|
7697
7700
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7698
7701
|
? ' _checked'
|
7699
|
-
: ''}`) + " svelte-
|
7702
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
7700
7703
|
attr(span1, "class", span1_class_value);
|
7701
7704
|
}
|
7702
7705
|
|
@@ -7735,7 +7738,7 @@ function create_fragment$g(ctx) {
|
|
7735
7738
|
each_blocks[i].c();
|
7736
7739
|
}
|
7737
7740
|
|
7738
|
-
attr(div, "class", "check-boxes svelte-
|
7741
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7739
7742
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7740
7743
|
},
|
7741
7744
|
m(target, anchor) {
|
@@ -7910,7 +7913,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7910
7913
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7911
7914
|
|
7912
7915
|
function add_css$e(target) {
|
7913
|
-
append_styles(target, "svelte-
|
7916
|
+
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}");
|
7914
7917
|
}
|
7915
7918
|
|
7916
7919
|
function get_each_context$2(ctx, list, i) {
|
@@ -7934,7 +7937,7 @@ function create_each_block$2(ctx) {
|
|
7934
7937
|
button = element("button");
|
7935
7938
|
t0 = text(t0_value);
|
7936
7939
|
t1 = space();
|
7937
|
-
attr(button, "class", "rating-button svelte-
|
7940
|
+
attr(button, "class", "rating-button svelte-1iqf36p");
|
7938
7941
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
7939
7942
|
},
|
7940
7943
|
m(target, anchor) {
|
@@ -7983,7 +7986,7 @@ function create_fragment$f(ctx) {
|
|
7983
7986
|
each_blocks[i].c();
|
7984
7987
|
}
|
7985
7988
|
|
7986
|
-
attr(div, "class", "rating-buttons svelte-
|
7989
|
+
attr(div, "class", "rating-buttons svelte-1iqf36p");
|
7987
7990
|
},
|
7988
7991
|
m(target, anchor) {
|
7989
7992
|
insert(target, div, anchor);
|
@@ -8127,7 +8130,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8127
8130
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8128
8131
|
|
8129
8132
|
function add_css$d(target) {
|
8130
|
-
append_styles(target, "svelte-
|
8133
|
+
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%)}");
|
8131
8134
|
}
|
8132
8135
|
|
8133
8136
|
function get_each_context$1(ctx, list, i) {
|
@@ -8152,9 +8155,9 @@ function create_each_block$1(ctx) {
|
|
8152
8155
|
img = element("img");
|
8153
8156
|
t = space();
|
8154
8157
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8155
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8158
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
8156
8159
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8157
|
-
attr(button, "class", "rating-button svelte-
|
8160
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
8158
8161
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8159
8162
|
},
|
8160
8163
|
m(target, anchor) {
|
@@ -8170,7 +8173,7 @@ function create_each_block$1(ctx) {
|
|
8170
8173
|
p(new_ctx, dirty) {
|
8171
8174
|
ctx = new_ctx;
|
8172
8175
|
|
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-
|
8176
|
+
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"))) {
|
8174
8177
|
attr(img, "class", img_class_value);
|
8175
8178
|
}
|
8176
8179
|
|
@@ -8203,7 +8206,7 @@ function create_fragment$e(ctx) {
|
|
8203
8206
|
each_blocks[i].c();
|
8204
8207
|
}
|
8205
8208
|
|
8206
|
-
attr(div, "class", "rating-buttons svelte-
|
8209
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
8207
8210
|
},
|
8208
8211
|
m(target, anchor) {
|
8209
8212
|
insert(target, div, anchor);
|
@@ -8311,7 +8314,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8311
8314
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8312
8315
|
|
8313
8316
|
function add_css$c(target) {
|
8314
|
-
append_styles(target, "svelte-
|
8317
|
+
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}");
|
8315
8318
|
}
|
8316
8319
|
|
8317
8320
|
function create_fragment$d(ctx) {
|
@@ -8325,13 +8328,13 @@ function create_fragment$d(ctx) {
|
|
8325
8328
|
c() {
|
8326
8329
|
div = element("div");
|
8327
8330
|
input = element("input");
|
8328
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8331
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
|
8329
8332
|
attr(input, "type", "text");
|
8330
8333
|
input.value = /*$value*/ ctx[2];
|
8331
8334
|
input.required = /*required*/ ctx[0];
|
8332
8335
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8333
8336
|
attr(input, "style", /*style*/ ctx[5]);
|
8334
|
-
attr(div, "class", "input-wrapper svelte-
|
8337
|
+
attr(div, "class", "input-wrapper svelte-h8fqwx");
|
8335
8338
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8336
8339
|
},
|
8337
8340
|
m(target, anchor) {
|
@@ -8344,7 +8347,7 @@ function create_fragment$d(ctx) {
|
|
8344
8347
|
}
|
8345
8348
|
},
|
8346
8349
|
p(ctx, [dirty]) {
|
8347
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8350
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
|
8348
8351
|
attr(input, "class", input_class_value);
|
8349
8352
|
}
|
8350
8353
|
|
@@ -8532,7 +8535,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8532
8535
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8533
8536
|
|
8534
8537
|
function add_css$b(target) {
|
8535
|
-
append_styles(target, "svelte-
|
8538
|
+
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}");
|
8536
8539
|
}
|
8537
8540
|
|
8538
8541
|
function create_fragment$c(ctx) {
|
@@ -8570,20 +8573,20 @@ function create_fragment$c(ctx) {
|
|
8570
8573
|
span1 = element("span");
|
8571
8574
|
t4 = text("いいえ");
|
8572
8575
|
attr(input0, "type", "radio");
|
8573
|
-
attr(input0, "class", "radio-button-input svelte-
|
8576
|
+
attr(input0, "class", "radio-button-input svelte-8zbmyo");
|
8574
8577
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
8575
8578
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
8576
|
-
attr(span0, "class", "radio-button-text svelte-
|
8579
|
+
attr(span0, "class", "radio-button-text svelte-8zbmyo");
|
8577
8580
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
8578
|
-
attr(label0, "class", "radio-button svelte-
|
8581
|
+
attr(label0, "class", "radio-button svelte-8zbmyo");
|
8579
8582
|
attr(input1, "type", "radio");
|
8580
|
-
attr(input1, "class", "radio-button-input svelte-
|
8583
|
+
attr(input1, "class", "radio-button-input svelte-8zbmyo");
|
8581
8584
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
8582
8585
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
8583
|
-
attr(span1, "class", "radio-button-text svelte-
|
8586
|
+
attr(span1, "class", "radio-button-text svelte-8zbmyo");
|
8584
8587
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
8585
|
-
attr(label1, "class", "radio-button svelte-
|
8586
|
-
attr(div, "class", "radio-buttons svelte-
|
8588
|
+
attr(label1, "class", "radio-button svelte-8zbmyo");
|
8589
|
+
attr(div, "class", "radio-buttons svelte-8zbmyo");
|
8587
8590
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
8588
8591
|
},
|
8589
8592
|
m(target, anchor) {
|
@@ -8751,7 +8754,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
8751
8754
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
8752
8755
|
|
8753
8756
|
function add_css$a(target) {
|
8754
|
-
append_styles(target, "svelte-
|
8757
|
+
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%}");
|
8755
8758
|
}
|
8756
8759
|
|
8757
8760
|
function get_each_context(ctx, list, i) {
|
@@ -8780,9 +8783,9 @@ function create_if_block_1(ctx) {
|
|
8780
8783
|
attr(svg, "viewBox", "0 0 10 16");
|
8781
8784
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8782
8785
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
8783
|
-
attr(button, "class", "move-button svelte-
|
8786
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8784
8787
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
8785
|
-
attr(div, "class", "prev-button-container svelte-
|
8788
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
8786
8789
|
},
|
8787
8790
|
m(target, anchor) {
|
8788
8791
|
insert(target, div, anchor);
|
@@ -8831,9 +8834,9 @@ function create_if_block$1(ctx) {
|
|
8831
8834
|
attr(svg, "viewBox", "0 0 10 16");
|
8832
8835
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8833
8836
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
8834
|
-
attr(button, "class", "move-button svelte-
|
8837
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8835
8838
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
8836
|
-
attr(div, "class", "next-button-container svelte-
|
8839
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
8837
8840
|
},
|
8838
8841
|
m(target, anchor) {
|
8839
8842
|
insert(target, div, anchor);
|
@@ -8881,9 +8884,9 @@ function create_each_block(ctx) {
|
|
8881
8884
|
button = element("button");
|
8882
8885
|
div = element("div");
|
8883
8886
|
t = space();
|
8884
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
8887
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
8885
8888
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
8886
|
-
attr(button, "class", "navigation-item svelte-
|
8889
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
8887
8890
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
8888
8891
|
},
|
8889
8892
|
m(target, anchor) {
|
@@ -8960,14 +8963,14 @@ function create_fragment$b(ctx) {
|
|
8960
8963
|
each_blocks[i].c();
|
8961
8964
|
}
|
8962
8965
|
|
8963
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8966
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
8964
8967
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
8965
|
-
attr(div1, "class", "container svelte-
|
8968
|
+
attr(div1, "class", "container svelte-ji1fh");
|
8966
8969
|
attr(div1, "style", /*_style*/ ctx[0]);
|
8967
|
-
attr(div2, "class", "navigation svelte-
|
8970
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
8968
8971
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
8969
8972
|
set_attributes(div3, div3_data);
|
8970
|
-
toggle_class(div3, "svelte-
|
8973
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8971
8974
|
},
|
8972
8975
|
m(target, anchor) {
|
8973
8976
|
insert(target, div3, anchor);
|
@@ -9009,7 +9012,7 @@ function create_fragment$b(ctx) {
|
|
9009
9012
|
}
|
9010
9013
|
}
|
9011
9014
|
|
9012
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9015
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
9013
9016
|
attr(div0, "class", div0_class_value);
|
9014
9017
|
}
|
9015
9018
|
|
@@ -9075,7 +9078,7 @@ function create_fragment$b(ctx) {
|
|
9075
9078
|
}
|
9076
9079
|
|
9077
9080
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9078
|
-
toggle_class(div3, "svelte-
|
9081
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9079
9082
|
},
|
9080
9083
|
i(local) {
|
9081
9084
|
if (current) return;
|
@@ -9587,7 +9590,7 @@ class Slide extends SvelteComponent {
|
|
9587
9590
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
9588
9591
|
|
9589
9592
|
function add_css$9(target) {
|
9590
|
-
append_styles(target, "svelte-
|
9593
|
+
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}");
|
9591
9594
|
}
|
9592
9595
|
|
9593
9596
|
function create_fragment$a(ctx) {
|
@@ -9602,9 +9605,9 @@ function create_fragment$a(ctx) {
|
|
9602
9605
|
div1 = element("div");
|
9603
9606
|
div0 = element("div");
|
9604
9607
|
if (default_slot) default_slot.c();
|
9605
|
-
attr(div0, "class", "item-inner svelte-
|
9608
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
9606
9609
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9607
|
-
attr(div1, "class", "item svelte-
|
9610
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
9608
9611
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
9609
9612
|
},
|
9610
9613
|
m(target, anchor) {
|
@@ -9730,7 +9733,7 @@ class SlideItem extends SvelteComponent {
|
|
9730
9733
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
9731
9734
|
|
9732
9735
|
function add_css$8(target) {
|
9733
|
-
append_styles(target, "svelte-
|
9736
|
+
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}");
|
9734
9737
|
}
|
9735
9738
|
|
9736
9739
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -9748,9 +9751,9 @@ function create_fragment$9(ctx) {
|
|
9748
9751
|
div1 = element("div");
|
9749
9752
|
div0 = element("div");
|
9750
9753
|
if (default_slot) default_slot.c();
|
9751
|
-
attr(div0, "class", "countdown-inner svelte-
|
9754
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
9752
9755
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9753
|
-
attr(div1, "class", "countdown svelte-
|
9756
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
9754
9757
|
},
|
9755
9758
|
m(target, anchor) {
|
9756
9759
|
insert(target, div1, anchor);
|
@@ -9884,7 +9887,7 @@ class Countdown extends SvelteComponent {
|
|
9884
9887
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
9885
9888
|
|
9886
9889
|
function add_css$7(target) {
|
9887
|
-
append_styles(target, "svelte-
|
9890
|
+
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}");
|
9888
9891
|
}
|
9889
9892
|
|
9890
9893
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -9954,7 +9957,7 @@ function create_fragment$8(ctx) {
|
|
9954
9957
|
c() {
|
9955
9958
|
div = element("div");
|
9956
9959
|
create_component(button.$$.fragment);
|
9957
|
-
attr(div, "class", "box svelte-
|
9960
|
+
attr(div, "class", "box svelte-1ccydfy");
|
9958
9961
|
},
|
9959
9962
|
m(target, anchor) {
|
9960
9963
|
insert(target, div, anchor);
|
@@ -10015,7 +10018,7 @@ class Box extends SvelteComponent {
|
|
10015
10018
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
10016
10019
|
|
10017
10020
|
function add_css$6(target) {
|
10018
|
-
append_styles(target, "svelte-
|
10021
|
+
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)}");
|
10019
10022
|
}
|
10020
10023
|
|
10021
10024
|
// (56:4) {#if svg}
|
@@ -10097,7 +10100,7 @@ function create_fragment$7(ctx) {
|
|
10097
10100
|
c() {
|
10098
10101
|
div = element("div");
|
10099
10102
|
create_component(button.$$.fragment);
|
10100
|
-
attr(div, "class", "icon svelte-
|
10103
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
10101
10104
|
},
|
10102
10105
|
m(target, anchor) {
|
10103
10106
|
insert(target, div, anchor);
|
@@ -10206,7 +10209,7 @@ class IconElement extends SvelteComponent {
|
|
10206
10209
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10207
10210
|
|
10208
10211
|
function add_css$5(target) {
|
10209
|
-
append_styles(target, "svelte-
|
10212
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10210
10213
|
}
|
10211
10214
|
|
10212
10215
|
function create_fragment$6(ctx) {
|
@@ -10232,7 +10235,7 @@ function create_fragment$6(ctx) {
|
|
10232
10235
|
c() {
|
10233
10236
|
div = element("div");
|
10234
10237
|
if (switch_instance) create_component(switch_instance.$$.fragment);
|
10235
|
-
attr(div, "class", "codeElement svelte-
|
10238
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
10236
10239
|
attr(div, "style", /*style*/ ctx[3]);
|
10237
10240
|
},
|
10238
10241
|
m(target, anchor) {
|
@@ -10321,7 +10324,7 @@ class CodeElement extends SvelteComponent {
|
|
10321
10324
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10322
10325
|
|
10323
10326
|
function add_css$4(target) {
|
10324
|
-
append_styles(target, "svelte-
|
10327
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
10325
10328
|
}
|
10326
10329
|
|
10327
10330
|
function create_fragment$5(ctx) {
|
@@ -10335,7 +10338,7 @@ function create_fragment$5(ctx) {
|
|
10335
10338
|
c() {
|
10336
10339
|
div = element("div");
|
10337
10340
|
if (default_slot) default_slot.c();
|
10338
|
-
attr(div, "class", "flex svelte-
|
10341
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
10339
10342
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10340
10343
|
},
|
10341
10344
|
m(target, anchor) {
|
@@ -10432,7 +10435,7 @@ class Flex extends SvelteComponent {
|
|
10432
10435
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
10433
10436
|
|
10434
10437
|
function add_css$3(target) {
|
10435
|
-
append_styles(target, "svelte-
|
10438
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
10436
10439
|
}
|
10437
10440
|
|
10438
10441
|
function create_fragment$4(ctx) {
|
@@ -10445,7 +10448,7 @@ function create_fragment$4(ctx) {
|
|
10445
10448
|
c() {
|
10446
10449
|
div = element("div");
|
10447
10450
|
if (default_slot) default_slot.c();
|
10448
|
-
attr(div, "class", "flex-item svelte-
|
10451
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
10449
10452
|
attr(div, "style", /*style*/ ctx[0]);
|
10450
10453
|
},
|
10451
10454
|
m(target, anchor) {
|
@@ -10853,7 +10856,7 @@ class GridModalState extends SvelteComponent {
|
|
10853
10856
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
10854
10857
|
|
10855
10858
|
function add_css$2(target) {
|
10856
|
-
append_styles(target, "svelte-
|
10859
|
+
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%}");
|
10857
10860
|
}
|
10858
10861
|
|
10859
10862
|
function create_fragment$2(ctx) {
|
@@ -10869,8 +10872,8 @@ function create_fragment$2(ctx) {
|
|
10869
10872
|
div1 = element("div");
|
10870
10873
|
div0 = element("div");
|
10871
10874
|
create_component(rendertext.$$.fragment);
|
10872
|
-
attr(div0, "class", "text-block-inner svelte-
|
10873
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10875
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
10876
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
10874
10877
|
attr(div1, "style", /*style*/ ctx[2]);
|
10875
10878
|
},
|
10876
10879
|
m(target, anchor) {
|
@@ -10884,7 +10887,7 @@ function create_fragment$2(ctx) {
|
|
10884
10887
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
10885
10888
|
rendertext.$set(rendertext_changes);
|
10886
10889
|
|
10887
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10890
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
10888
10891
|
attr(div1, "class", div1_class_value);
|
10889
10892
|
}
|
10890
10893
|
|
@@ -10962,7 +10965,7 @@ class TextBlock extends SvelteComponent {
|
|
10962
10965
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
10963
10966
|
|
10964
10967
|
function add_css$1(target) {
|
10965
|
-
append_styles(target, "svelte-
|
10968
|
+
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)}");
|
10966
10969
|
}
|
10967
10970
|
|
10968
10971
|
function create_fragment$1(ctx) {
|
@@ -10979,9 +10982,9 @@ function create_fragment$1(ctx) {
|
|
10979
10982
|
div = element("div");
|
10980
10983
|
button = element("button");
|
10981
10984
|
create_component(rendertext.$$.fragment);
|
10982
|
-
attr(button, "class", "text-button svelte-
|
10985
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
10983
10986
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
10984
|
-
attr(div, "class", "text-button-block svelte-
|
10987
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
10985
10988
|
attr(div, "style", /*_style*/ ctx[2]);
|
10986
10989
|
},
|
10987
10990
|
m(target, anchor) {
|
@@ -11087,7 +11090,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11087
11090
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11088
11091
|
|
11089
11092
|
function add_css(target) {
|
11090
|
-
append_styles(target, "svelte-
|
11093
|
+
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)}");
|
11091
11094
|
}
|
11092
11095
|
|
11093
11096
|
function create_fragment(ctx) {
|
@@ -11103,14 +11106,14 @@ function create_fragment(ctx) {
|
|
11103
11106
|
c() {
|
11104
11107
|
div = element("div");
|
11105
11108
|
img = element("img");
|
11106
|
-
attr(img, "class", "image svelte-
|
11109
|
+
attr(img, "class", "image svelte-1pdw891");
|
11107
11110
|
attr(img, "loading", "lazy");
|
11108
11111
|
attr(img, "width", "auto");
|
11109
11112
|
attr(img, "height", "auto");
|
11110
11113
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11111
11114
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11112
11115
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11113
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11116
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
11114
11117
|
attr(div, "style", /*_style*/ ctx[5]);
|
11115
11118
|
},
|
11116
11119
|
m(target, anchor) {
|
@@ -11135,7 +11138,7 @@ function create_fragment(ctx) {
|
|
11135
11138
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11136
11139
|
}
|
11137
11140
|
|
11138
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11141
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
11139
11142
|
attr(div, "class", div_class_value);
|
11140
11143
|
}
|
11141
11144
|
|