@plaidev/karte-action-sdk 1.1.191 → 1.1.192-28160997.274ad860
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 +5 -0
- package/dist/hydrate/index.es.js +128 -118
- package/dist/index.es.d.ts +5 -0
- package/dist/index.es.js +131 -123
- package/package.json +2 -2
package/dist/hydrate/index.es.js
CHANGED
@@ -349,6 +349,11 @@ const OnClickOperationOptions = [
|
|
349
349
|
type: 'BooleanKeyword',
|
350
350
|
default: true,
|
351
351
|
},
|
352
|
+
{
|
353
|
+
name: 'decode',
|
354
|
+
type: 'BooleanKeyword',
|
355
|
+
default: false,
|
356
|
+
},
|
352
357
|
],
|
353
358
|
},
|
354
359
|
{
|
@@ -2544,7 +2549,7 @@ class State extends SvelteComponent {
|
|
2544
2549
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2545
2550
|
|
2546
2551
|
function add_css$t(target) {
|
2547
|
-
append_styles(target, "svelte-
|
2552
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2548
2553
|
}
|
2549
2554
|
|
2550
2555
|
// (23:0) {#if $state === path}
|
@@ -2571,7 +2576,7 @@ function create_if_block$8(ctx) {
|
|
2571
2576
|
},
|
2572
2577
|
h() {
|
2573
2578
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
2574
|
-
attr(div, "class", "state-item svelte-
|
2579
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
2575
2580
|
},
|
2576
2581
|
m(target, anchor) {
|
2577
2582
|
insert_hydration(target, div, anchor);
|
@@ -2824,23 +2829,24 @@ const moveTo = (to) => () => {
|
|
2824
2829
|
_moveTo(to);
|
2825
2830
|
};
|
2826
2831
|
/** @internal */
|
2827
|
-
const linkTo = (to, targetBlank = true) => () => {
|
2832
|
+
const linkTo = (to, targetBlank = true, decode = false) => () => {
|
2833
|
+
const decodedTo = decode ? decodeURI(to) : to;
|
2828
2834
|
const { target } = getActionRunnerContext() ?? {};
|
2829
2835
|
async function sleep(ms) {
|
2830
2836
|
return new Promise(resolve => setTimeout(resolve, ms));
|
2831
2837
|
}
|
2832
2838
|
async function _send() {
|
2833
|
-
send_event('message_click', { url:
|
2839
|
+
send_event('message_click', { url: decodedTo, state: getState$1() });
|
2834
2840
|
// # edge.js の retransmitter が送るのを待つ
|
2835
2841
|
await sleep(450);
|
2836
2842
|
}
|
2837
2843
|
const isRequiredWindowOpen = target === 'native' ? false : targetBlank;
|
2838
2844
|
if (isRequiredWindowOpen) {
|
2839
|
-
window.open(
|
2845
|
+
window.open(decodedTo);
|
2840
2846
|
}
|
2841
2847
|
Promise.race([_send(), sleep(650)]).then(() => {
|
2842
2848
|
if (!isRequiredWindowOpen) {
|
2843
|
-
location.href =
|
2849
|
+
location.href = decodedTo;
|
2844
2850
|
}
|
2845
2851
|
});
|
2846
2852
|
};
|
@@ -2929,7 +2935,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
2929
2935
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
2930
2936
|
|
2931
2937
|
function add_css$s(target) {
|
2932
|
-
append_styles(target, "svelte-
|
2938
|
+
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}");
|
2933
2939
|
}
|
2934
2940
|
|
2935
2941
|
// (9:0) {#if backgroundOverlay}
|
@@ -2949,7 +2955,7 @@ function create_if_block$7(ctx) {
|
|
2949
2955
|
this.h();
|
2950
2956
|
},
|
2951
2957
|
h() {
|
2952
|
-
attr(div, "class", "background svelte-
|
2958
|
+
attr(div, "class", "background svelte-1d4fta");
|
2953
2959
|
},
|
2954
2960
|
m(target, anchor) {
|
2955
2961
|
insert_hydration(target, div, anchor);
|
@@ -3064,7 +3070,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3064
3070
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3065
3071
|
|
3066
3072
|
function add_css$r(target) {
|
3067
|
-
append_styles(target, "svelte-
|
3073
|
+
append_styles(target, "svelte-1tg0tf", ".button.svelte-1tg0tf{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1tg0tf:link,.button.svelte-1tg0tf:visited,.button.svelte-1tg0tf:active,.button.svelte-1tg0tf:hover{color:inherit}");
|
3068
3074
|
}
|
3069
3075
|
|
3070
3076
|
// (50:0) {:else}
|
@@ -3103,7 +3109,7 @@ function create_else_block$3(ctx) {
|
|
3103
3109
|
},
|
3104
3110
|
h() {
|
3105
3111
|
set_attributes(button, button_data);
|
3106
|
-
toggle_class(button, "svelte-
|
3112
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3107
3113
|
},
|
3108
3114
|
m(target, anchor) {
|
3109
3115
|
insert_hydration(target, button, anchor);
|
@@ -3142,7 +3148,7 @@ function create_else_block$3(ctx) {
|
|
3142
3148
|
dataAttrStopPropagation('click')
|
3143
3149
|
]));
|
3144
3150
|
|
3145
|
-
toggle_class(button, "svelte-
|
3151
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3146
3152
|
},
|
3147
3153
|
i(local) {
|
3148
3154
|
if (current) return;
|
@@ -3183,7 +3189,7 @@ function create_if_block_2(ctx) {
|
|
3183
3189
|
this.h();
|
3184
3190
|
},
|
3185
3191
|
h() {
|
3186
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3192
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
|
3187
3193
|
attr(div, "style", /*style*/ ctx[1]);
|
3188
3194
|
},
|
3189
3195
|
m(target, anchor) {
|
@@ -3246,7 +3252,9 @@ function create_if_block_1$2(ctx) {
|
|
3246
3252
|
{ class: BUTTON_CLASS },
|
3247
3253
|
{ style: /*style*/ ctx[1] },
|
3248
3254
|
{
|
3249
|
-
href: a_href_value = /*onClick*/ ctx[0].args[
|
3255
|
+
href: a_href_value = /*onClick*/ ctx[0].args[2]
|
3256
|
+
? decodeURI(/*onClick*/ ctx[0].args[0])
|
3257
|
+
: /*onClick*/ ctx[0].args[0]
|
3250
3258
|
},
|
3251
3259
|
{
|
3252
3260
|
target: a_target_value = /*onClick*/ ctx[0].args[1] === true ? '_blank' : null
|
@@ -3281,7 +3289,7 @@ function create_if_block_1$2(ctx) {
|
|
3281
3289
|
},
|
3282
3290
|
h() {
|
3283
3291
|
set_attributes(a, a_data);
|
3284
|
-
toggle_class(a, "svelte-
|
3292
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3285
3293
|
},
|
3286
3294
|
m(target, anchor) {
|
3287
3295
|
insert_hydration(target, a, anchor);
|
@@ -3316,12 +3324,14 @@ function create_if_block_1$2(ctx) {
|
|
3316
3324
|
set_attributes(a, a_data = get_spread_update(a_levels, [
|
3317
3325
|
{ class: BUTTON_CLASS },
|
3318
3326
|
(!current || dirty & /*style*/ 2) && { style: /*style*/ ctx[1] },
|
3319
|
-
(!current || dirty & /*onClick*/ 1 && a_href_value !== (a_href_value = /*onClick*/ ctx[0].args[
|
3327
|
+
(!current || dirty & /*onClick*/ 1 && a_href_value !== (a_href_value = /*onClick*/ ctx[0].args[2]
|
3328
|
+
? decodeURI(/*onClick*/ ctx[0].args[0])
|
3329
|
+
: /*onClick*/ ctx[0].args[0])) && { href: a_href_value },
|
3320
3330
|
(!current || dirty & /*onClick*/ 1 && a_target_value !== (a_target_value = /*onClick*/ ctx[0].args[1] === true ? '_blank' : null)) && { target: a_target_value },
|
3321
3331
|
dataAttrStopPropagation('click')
|
3322
3332
|
]));
|
3323
3333
|
|
3324
|
-
toggle_class(a, "svelte-
|
3334
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3325
3335
|
},
|
3326
3336
|
i(local) {
|
3327
3337
|
if (current) return;
|
@@ -3362,7 +3372,7 @@ function create_if_block$6(ctx) {
|
|
3362
3372
|
this.h();
|
3363
3373
|
},
|
3364
3374
|
h() {
|
3365
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3375
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
|
3366
3376
|
attr(div, "style", /*style*/ ctx[1]);
|
3367
3377
|
},
|
3368
3378
|
m(target, anchor) {
|
@@ -3570,7 +3580,7 @@ class Button extends SvelteComponent {
|
|
3570
3580
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3571
3581
|
|
3572
3582
|
function add_css$q(target) {
|
3573
|
-
append_styles(target, "svelte-
|
3583
|
+
append_styles(target, "svelte-1invh97", ".modal.svelte-1invh97{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1invh97 > .button{flex:auto;display:flex}.close.svelte-1invh97{position:absolute;top:0;right:0}.close.svelte-1invh97 > .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-1invh97 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1invh97{flex:auto;display:flex;justify-content:center;align-items:center}");
|
3574
3584
|
}
|
3575
3585
|
|
3576
3586
|
// (145:0) {#if visible}
|
@@ -3611,7 +3621,7 @@ function create_if_block$5(ctx) {
|
|
3611
3621
|
this.h();
|
3612
3622
|
},
|
3613
3623
|
h() {
|
3614
|
-
attr(div, "class", "modal svelte-
|
3624
|
+
attr(div, "class", "modal svelte-1invh97");
|
3615
3625
|
attr(div, "role", "dialog");
|
3616
3626
|
attr(div, "aria-modal", "true");
|
3617
3627
|
attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
|
@@ -3699,7 +3709,7 @@ function create_if_block_1$1(ctx) {
|
|
3699
3709
|
this.h();
|
3700
3710
|
},
|
3701
3711
|
h() {
|
3702
|
-
attr(div, "class", "close svelte-
|
3712
|
+
attr(div, "class", "close svelte-1invh97");
|
3703
3713
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
|
3704
3714
|
},
|
3705
3715
|
m(target, anchor) {
|
@@ -3824,7 +3834,7 @@ function create_default_slot$6(ctx) {
|
|
3824
3834
|
this.h();
|
3825
3835
|
},
|
3826
3836
|
h() {
|
3827
|
-
attr(div, "class", "modal-content svelte-
|
3837
|
+
attr(div, "class", "modal-content svelte-1invh97");
|
3828
3838
|
attr(div, "style", /*_style*/ ctx[4]);
|
3829
3839
|
},
|
3830
3840
|
m(target, anchor) {
|
@@ -4334,7 +4344,7 @@ class Grid extends SvelteComponent {
|
|
4334
4344
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4335
4345
|
|
4336
4346
|
function add_css$p(target) {
|
4337
|
-
append_styles(target, "svelte-
|
4347
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4338
4348
|
}
|
4339
4349
|
|
4340
4350
|
function create_fragment$r(ctx) {
|
@@ -4368,8 +4378,8 @@ function create_fragment$r(ctx) {
|
|
4368
4378
|
this.h();
|
4369
4379
|
},
|
4370
4380
|
h() {
|
4371
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4372
|
-
attr(div1, "class", "grid-item svelte-
|
4381
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4382
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4373
4383
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4374
4384
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4375
4385
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -4691,7 +4701,7 @@ class RenderText extends SvelteComponent {
|
|
4691
4701
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
4692
4702
|
|
4693
4703
|
function add_css$o(target) {
|
4694
|
-
append_styles(target, "svelte-
|
4704
|
+
append_styles(target, "svelte-13kv866", ".text-element-wrapper.svelte-13kv866.svelte-13kv866{position:relative;height:100%}.text-element.svelte-13kv866.svelte-13kv866{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}.text-link-element.svelte-13kv866.svelte-13kv866{text-decoration:none;color:inherit}.text-element-inner.svelte-13kv866.svelte-13kv866{width:100%;height:auto}.text-direction-vertical.svelte-13kv866.svelte-13kv866{writing-mode:vertical-rl}.text-direction-vertical.svelte-13kv866 .text-element-inner.svelte-13kv866{width:auto;height:100%}.tooltip.svelte-13kv866.svelte-13kv866{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-13kv866.svelte-13kv866:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-13kv866.svelte-13kv866{display:block}.tooltip-error.svelte-13kv866.svelte-13kv866{background-color:#c00}.tooltip-error.svelte-13kv866.svelte-13kv866:before{border-bottom:7px solid #c00}");
|
4695
4705
|
}
|
4696
4706
|
|
4697
4707
|
// (86:2) {:else}
|
@@ -4721,8 +4731,8 @@ function create_else_block$1(ctx) {
|
|
4721
4731
|
this.h();
|
4722
4732
|
},
|
4723
4733
|
h() {
|
4724
|
-
attr(div0, "class", "text-element-inner svelte-
|
4725
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4734
|
+
attr(div0, "class", "text-element-inner svelte-13kv866");
|
4735
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-13kv866"));
|
4726
4736
|
attr(div1, "style", /*style*/ ctx[5]);
|
4727
4737
|
},
|
4728
4738
|
m(target, anchor) {
|
@@ -4736,7 +4746,7 @@ function create_else_block$1(ctx) {
|
|
4736
4746
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4737
4747
|
rendertext.$set(rendertext_changes);
|
4738
4748
|
|
4739
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4749
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-13kv866"))) {
|
4740
4750
|
attr(div1, "class", div1_class_value);
|
4741
4751
|
}
|
4742
4752
|
|
@@ -4811,12 +4821,12 @@ function create_if_block$3(ctx) {
|
|
4811
4821
|
this.h();
|
4812
4822
|
},
|
4813
4823
|
h() {
|
4814
|
-
attr(div0, "class", "text-element-inner svelte-
|
4824
|
+
attr(div0, "class", "text-element-inner svelte-13kv866");
|
4815
4825
|
attr(a, "href", '');
|
4816
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4826
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-13kv866"));
|
4817
4827
|
attr(a, "style", /*style*/ ctx[5]);
|
4818
|
-
attr(div1, "class", "tooltip svelte-
|
4819
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
4828
|
+
attr(div1, "class", "tooltip svelte-13kv866");
|
4829
|
+
attr(div2, "class", "tooltip tooltip-error svelte-13kv866");
|
4820
4830
|
},
|
4821
4831
|
m(target, anchor) {
|
4822
4832
|
insert_hydration(target, a, anchor);
|
@@ -4842,7 +4852,7 @@ function create_if_block$3(ctx) {
|
|
4842
4852
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4843
4853
|
rendertext.$set(rendertext_changes);
|
4844
4854
|
|
4845
|
-
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-
|
4855
|
+
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-13kv866"))) {
|
4846
4856
|
attr(a, "class", a_class_value);
|
4847
4857
|
}
|
4848
4858
|
|
@@ -4904,7 +4914,7 @@ function create_fragment$p(ctx) {
|
|
4904
4914
|
this.h();
|
4905
4915
|
},
|
4906
4916
|
h() {
|
4907
|
-
attr(div, "class", "text-element-wrapper svelte-
|
4917
|
+
attr(div, "class", "text-element-wrapper svelte-13kv866");
|
4908
4918
|
},
|
4909
4919
|
m(target, anchor) {
|
4910
4920
|
insert_hydration(target, div, anchor);
|
@@ -5069,7 +5079,7 @@ class TextElement extends SvelteComponent {
|
|
5069
5079
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5070
5080
|
|
5071
5081
|
function add_css$n(target) {
|
5072
|
-
append_styles(target, "svelte-
|
5082
|
+
append_styles(target, "svelte-wb7ek", ".text-button-element.svelte-wb7ek{width:100%;height:100%}.text-button-element.svelte-wb7ek > .button{display:flex;justify-content:center;align-items:center;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden}.text-button-element.svelte-wb7ek > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-wb7ek > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-wb7ek > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
5073
5083
|
}
|
5074
5084
|
|
5075
5085
|
// (46:2) <Button onClick={onClick} {style} {eventName}>
|
@@ -5138,7 +5148,7 @@ function create_fragment$o(ctx) {
|
|
5138
5148
|
this.h();
|
5139
5149
|
},
|
5140
5150
|
h() {
|
5141
|
-
attr(div, "class", "text-button-element svelte-
|
5151
|
+
attr(div, "class", "text-button-element svelte-wb7ek");
|
5142
5152
|
},
|
5143
5153
|
m(target, anchor) {
|
5144
5154
|
insert_hydration(target, div, anchor);
|
@@ -5230,7 +5240,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5230
5240
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5231
5241
|
|
5232
5242
|
function add_css$m(target) {
|
5233
|
-
append_styles(target, "svelte-
|
5243
|
+
append_styles(target, "svelte-1v4alzq", ".image-element.svelte-1v4alzq{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1v4alzq > .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}.image-element.svelte-1v4alzq > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1v4alzq > .button:not(._disabled):hover,.image-element.transport.svelte-1v4alzq > .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-1v4alzq{width:100%;height:100%}");
|
5234
5244
|
}
|
5235
5245
|
|
5236
5246
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5258,7 +5268,7 @@ function create_default_slot$4(ctx) {
|
|
5258
5268
|
this.h();
|
5259
5269
|
},
|
5260
5270
|
h() {
|
5261
|
-
attr(img, "class", "image svelte-
|
5271
|
+
attr(img, "class", "image svelte-1v4alzq");
|
5262
5272
|
attr(img, "loading", "lazy");
|
5263
5273
|
attr(img, "width", "auto");
|
5264
5274
|
attr(img, "height", "auto");
|
@@ -5318,7 +5328,7 @@ function create_fragment$n(ctx) {
|
|
5318
5328
|
this.h();
|
5319
5329
|
},
|
5320
5330
|
h() {
|
5321
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5331
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1v4alzq");
|
5322
5332
|
},
|
5323
5333
|
m(target, anchor) {
|
5324
5334
|
insert_hydration(target, div, anchor);
|
@@ -5337,7 +5347,7 @@ function create_fragment$n(ctx) {
|
|
5337
5347
|
|
5338
5348
|
button.$set(button_changes);
|
5339
5349
|
|
5340
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5350
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1v4alzq")) {
|
5341
5351
|
attr(div, "class", div_class_value);
|
5342
5352
|
}
|
5343
5353
|
},
|
@@ -5409,7 +5419,7 @@ class ImageElement extends SvelteComponent {
|
|
5409
5419
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5410
5420
|
|
5411
5421
|
function add_css$l(target) {
|
5412
|
-
append_styles(target, "svelte-
|
5422
|
+
append_styles(target, "svelte-1gh1zvv", ".list.svelte-1gh1zvv{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
|
5413
5423
|
}
|
5414
5424
|
|
5415
5425
|
function create_fragment$m(ctx) {
|
@@ -5432,7 +5442,7 @@ function create_fragment$m(ctx) {
|
|
5432
5442
|
this.h();
|
5433
5443
|
},
|
5434
5444
|
h() {
|
5435
|
-
attr(div, "class", "list svelte-
|
5445
|
+
attr(div, "class", "list svelte-1gh1zvv");
|
5436
5446
|
attr(div, "style", /*style*/ ctx[0]);
|
5437
5447
|
},
|
5438
5448
|
m(target, anchor) {
|
@@ -5566,7 +5576,7 @@ class List extends SvelteComponent {
|
|
5566
5576
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
5567
5577
|
|
5568
5578
|
function add_css$k(target) {
|
5569
|
-
append_styles(target, "svelte-
|
5579
|
+
append_styles(target, "svelte-pd7cyv", ".list-item.svelte-pd7cyv{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-pd7cyv > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000}");
|
5570
5580
|
}
|
5571
5581
|
|
5572
5582
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -5649,7 +5659,7 @@ function create_fragment$l(ctx) {
|
|
5649
5659
|
this.h();
|
5650
5660
|
},
|
5651
5661
|
h() {
|
5652
|
-
attr(div, "class", "list-item svelte-
|
5662
|
+
attr(div, "class", "list-item svelte-pd7cyv");
|
5653
5663
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
5654
5664
|
},
|
5655
5665
|
m(target, anchor) {
|
@@ -5775,7 +5785,7 @@ class ListItem extends SvelteComponent {
|
|
5775
5785
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
5776
5786
|
|
5777
5787
|
function add_css$j(target) {
|
5778
|
-
append_styles(target, "svelte-
|
5788
|
+
append_styles(target, "svelte-g5f8hw", ".embed.svelte-g5f8hw{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-g5f8hw iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000}");
|
5779
5789
|
}
|
5780
5790
|
|
5781
5791
|
function create_fragment$k(ctx) {
|
@@ -5793,7 +5803,7 @@ function create_fragment$k(ctx) {
|
|
5793
5803
|
this.h();
|
5794
5804
|
},
|
5795
5805
|
h() {
|
5796
|
-
attr(div, "class", "embed svelte-
|
5806
|
+
attr(div, "class", "embed svelte-g5f8hw");
|
5797
5807
|
attr(div, "style", /*_style*/ ctx[1]);
|
5798
5808
|
},
|
5799
5809
|
m(target, anchor) {
|
@@ -5836,7 +5846,7 @@ class EmbedElement extends SvelteComponent {
|
|
5836
5846
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
5837
5847
|
|
5838
5848
|
function add_css$i(target) {
|
5839
|
-
append_styles(target, "svelte-
|
5849
|
+
append_styles(target, "svelte-1gvn5zq", ".embed.svelte-1gvn5zq{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}.embed.svelte-1gvn5zq iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
5840
5850
|
}
|
5841
5851
|
|
5842
5852
|
function create_fragment$j(ctx) {
|
@@ -5859,7 +5869,7 @@ function create_fragment$j(ctx) {
|
|
5859
5869
|
},
|
5860
5870
|
h() {
|
5861
5871
|
attr(div0, "class", "karte-player");
|
5862
|
-
attr(div1, "class", "embed svelte-
|
5872
|
+
attr(div1, "class", "embed svelte-1gvn5zq");
|
5863
5873
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5864
5874
|
},
|
5865
5875
|
m(target, anchor) {
|
@@ -6201,7 +6211,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6201
6211
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6202
6212
|
|
6203
6213
|
function add_css$h(target) {
|
6204
|
-
append_styles(target, "svelte-
|
6214
|
+
append_styles(target, "svelte-1gvn5zq", ".embed.svelte-1gvn5zq{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}.embed.svelte-1gvn5zq iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
6205
6215
|
}
|
6206
6216
|
|
6207
6217
|
function create_fragment$i(ctx) {
|
@@ -6224,7 +6234,7 @@ function create_fragment$i(ctx) {
|
|
6224
6234
|
},
|
6225
6235
|
h() {
|
6226
6236
|
attr(div0, "class", "karte-player");
|
6227
|
-
attr(div1, "class", "embed svelte-
|
6237
|
+
attr(div1, "class", "embed svelte-1gvn5zq");
|
6228
6238
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6229
6239
|
},
|
6230
6240
|
m(target, anchor) {
|
@@ -6408,7 +6418,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6408
6418
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6409
6419
|
|
6410
6420
|
function add_css$g(target) {
|
6411
|
-
append_styles(target, "svelte-
|
6421
|
+
append_styles(target, "svelte-kyay3k", ".textarea-wrapper.svelte-kyay3k{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-kyay3k{width:100%;resize:none}");
|
6412
6422
|
}
|
6413
6423
|
|
6414
6424
|
function create_fragment$h(ctx) {
|
@@ -6438,12 +6448,12 @@ function create_fragment$h(ctx) {
|
|
6438
6448
|
this.h();
|
6439
6449
|
},
|
6440
6450
|
h() {
|
6441
|
-
attr(textarea, "class", "textarea svelte-
|
6451
|
+
attr(textarea, "class", "textarea svelte-kyay3k");
|
6442
6452
|
textarea.value = /*$value*/ ctx[3];
|
6443
6453
|
textarea.required = /*required*/ ctx[0];
|
6444
6454
|
attr(textarea, "rows", /*rows*/ ctx[1]);
|
6445
6455
|
attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
|
6446
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6456
|
+
attr(div, "class", "textarea-wrapper svelte-kyay3k");
|
6447
6457
|
},
|
6448
6458
|
m(target, anchor) {
|
6449
6459
|
insert_hydration(target, div, anchor);
|
@@ -6539,7 +6549,7 @@ class FormTextarea extends SvelteComponent {
|
|
6539
6549
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6540
6550
|
|
6541
6551
|
function add_css$f(target) {
|
6542
|
-
append_styles(target, "svelte-
|
6552
|
+
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}");
|
6543
6553
|
}
|
6544
6554
|
|
6545
6555
|
function get_each_context$5(ctx, list, i) {
|
@@ -6595,14 +6605,14 @@ function create_each_block$5(ctx) {
|
|
6595
6605
|
},
|
6596
6606
|
h() {
|
6597
6607
|
attr(input, "type", "radio");
|
6598
|
-
attr(input, "class", "radio-button-input svelte-
|
6608
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
6599
6609
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
6600
6610
|
attr(input, "name", /*name*/ ctx[0]);
|
6601
6611
|
input.value = input_value_value = /*option*/ ctx[16];
|
6602
6612
|
input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
|
6603
|
-
attr(span, "class", "radio-button-text svelte-
|
6613
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
6604
6614
|
attr(span, "style", /*_textStyle*/ ctx[2]);
|
6605
|
-
attr(label, "class", "radio-button svelte-
|
6615
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
6606
6616
|
},
|
6607
6617
|
m(target, anchor) {
|
6608
6618
|
insert_hydration(target, label, anchor);
|
@@ -6681,7 +6691,7 @@ function create_fragment$g(ctx) {
|
|
6681
6691
|
this.h();
|
6682
6692
|
},
|
6683
6693
|
h() {
|
6684
|
-
attr(div, "class", "radio-buttons svelte-
|
6694
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
6685
6695
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
6686
6696
|
},
|
6687
6697
|
m(target, anchor) {
|
@@ -6848,7 +6858,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
6848
6858
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
6849
6859
|
|
6850
6860
|
function add_css$e(target) {
|
6851
|
-
append_styles(target, "svelte-
|
6861
|
+
append_styles(target, "svelte-1n4ag74", ".select.svelte-1n4ag74{width:100%;height:100%}.select-select.svelte-1n4ag74{position:relative;appearance:none;width:100%;height:100%}.select-select.svelte-1n4ag74: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-1n4ag74{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}");
|
6852
6862
|
}
|
6853
6863
|
|
6854
6864
|
function get_each_context$4(ctx, list, i) {
|
@@ -7019,10 +7029,10 @@ function create_fragment$f(ctx) {
|
|
7019
7029
|
this.h();
|
7020
7030
|
},
|
7021
7031
|
h() {
|
7022
|
-
attr(select, "class", "select-select svelte-
|
7032
|
+
attr(select, "class", "select-select svelte-1n4ag74");
|
7023
7033
|
attr(select, "style", /*style*/ ctx[3]);
|
7024
|
-
attr(div0, "class", "select-icon svelte-
|
7025
|
-
attr(div1, "class", "select svelte-
|
7034
|
+
attr(div0, "class", "select-icon svelte-1n4ag74");
|
7035
|
+
attr(div1, "class", "select svelte-1n4ag74");
|
7026
7036
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7027
7037
|
},
|
7028
7038
|
m(target, anchor) {
|
@@ -7224,7 +7234,7 @@ class FormSelect extends SvelteComponent {
|
|
7224
7234
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7225
7235
|
|
7226
7236
|
function add_css$d(target) {
|
7227
|
-
append_styles(target, "svelte-
|
7237
|
+
append_styles(target, "svelte-p15pvn", ".check-boxes.svelte-p15pvn.svelte-p15pvn{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.check-box.svelte-p15pvn.svelte-p15pvn{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-p15pvn.svelte-p15pvn{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-p15pvn.svelte-p15pvn{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-p15pvn.svelte-p15pvn{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-p15pvn.svelte-p15pvn: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-p15pvn.svelte-p15pvn{background-color:var(--color-main-active)}.check-box-check._checked.svelte-p15pvn .check-box-icon.svelte-p15pvn:after{border-color:var(--color-sub-active)}.check-box-text.svelte-p15pvn.svelte-p15pvn{margin-left:0.5em}");
|
7228
7238
|
}
|
7229
7239
|
|
7230
7240
|
function get_each_context$3(ctx, list, i) {
|
@@ -7285,19 +7295,19 @@ function create_each_block$3(ctx) {
|
|
7285
7295
|
this.h();
|
7286
7296
|
},
|
7287
7297
|
h() {
|
7288
|
-
attr(input, "class", "check-box-input svelte-
|
7298
|
+
attr(input, "class", "check-box-input svelte-p15pvn");
|
7289
7299
|
attr(input, "type", "checkbox");
|
7290
7300
|
attr(input, "name", /*name*/ ctx[0]);
|
7291
7301
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7292
|
-
attr(span0, "class", "check-box-icon svelte-
|
7302
|
+
attr(span0, "class", "check-box-icon svelte-p15pvn");
|
7293
7303
|
|
7294
7304
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7295
7305
|
? ' _checked'
|
7296
|
-
: ''}`) + " svelte-
|
7306
|
+
: ''}`) + " svelte-p15pvn"));
|
7297
7307
|
|
7298
|
-
attr(span2, "class", "check-box-text svelte-
|
7308
|
+
attr(span2, "class", "check-box-text svelte-p15pvn");
|
7299
7309
|
attr(span2, "style", /*_textStyle*/ ctx[2]);
|
7300
|
-
attr(label, "class", "check-box svelte-
|
7310
|
+
attr(label, "class", "check-box svelte-p15pvn");
|
7301
7311
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7302
7312
|
},
|
7303
7313
|
m(target, anchor) {
|
@@ -7329,7 +7339,7 @@ function create_each_block$3(ctx) {
|
|
7329
7339
|
|
7330
7340
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7331
7341
|
? ' _checked'
|
7332
|
-
: ''}`) + " svelte-
|
7342
|
+
: ''}`) + " svelte-p15pvn"))) {
|
7333
7343
|
attr(span1, "class", span1_class_value);
|
7334
7344
|
}
|
7335
7345
|
|
@@ -7382,7 +7392,7 @@ function create_fragment$e(ctx) {
|
|
7382
7392
|
this.h();
|
7383
7393
|
},
|
7384
7394
|
h() {
|
7385
|
-
attr(div, "class", "check-boxes svelte-
|
7395
|
+
attr(div, "class", "check-boxes svelte-p15pvn");
|
7386
7396
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7387
7397
|
},
|
7388
7398
|
m(target, anchor) {
|
@@ -7556,7 +7566,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7556
7566
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7557
7567
|
|
7558
7568
|
function add_css$c(target) {
|
7559
|
-
append_styles(target, "svelte-
|
7569
|
+
append_styles(target, "svelte-zy2va9", ".rating-buttons.svelte-zy2va9{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-zy2va9{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
|
7560
7570
|
}
|
7561
7571
|
|
7562
7572
|
function get_each_context$2(ctx, list, i) {
|
@@ -7591,7 +7601,7 @@ function create_each_block$2(ctx) {
|
|
7591
7601
|
this.h();
|
7592
7602
|
},
|
7593
7603
|
h() {
|
7594
|
-
attr(button, "class", "rating-button svelte-
|
7604
|
+
attr(button, "class", "rating-button svelte-zy2va9");
|
7595
7605
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
|
7596
7606
|
},
|
7597
7607
|
m(target, anchor) {
|
@@ -7654,7 +7664,7 @@ function create_fragment$d(ctx) {
|
|
7654
7664
|
this.h();
|
7655
7665
|
},
|
7656
7666
|
h() {
|
7657
|
-
attr(div, "class", "rating-buttons svelte-
|
7667
|
+
attr(div, "class", "rating-buttons svelte-zy2va9");
|
7658
7668
|
},
|
7659
7669
|
m(target, anchor) {
|
7660
7670
|
insert_hydration(target, div, anchor);
|
@@ -7791,7 +7801,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
7791
7801
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
7792
7802
|
|
7793
7803
|
function add_css$b(target) {
|
7794
|
-
append_styles(target, "svelte-
|
7804
|
+
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%)}");
|
7795
7805
|
}
|
7796
7806
|
|
7797
7807
|
function get_each_context$1(ctx, list, i) {
|
@@ -7827,9 +7837,9 @@ function create_each_block$1(ctx) {
|
|
7827
7837
|
},
|
7828
7838
|
h() {
|
7829
7839
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
7830
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7840
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
7831
7841
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
7832
|
-
attr(button, "class", "rating-button svelte-
|
7842
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
7833
7843
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
7834
7844
|
},
|
7835
7845
|
m(target, anchor) {
|
@@ -7845,7 +7855,7 @@ function create_each_block$1(ctx) {
|
|
7845
7855
|
p(new_ctx, dirty) {
|
7846
7856
|
ctx = new_ctx;
|
7847
7857
|
|
7848
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7858
|
+
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"))) {
|
7849
7859
|
attr(img, "class", img_class_value);
|
7850
7860
|
}
|
7851
7861
|
|
@@ -7892,7 +7902,7 @@ function create_fragment$c(ctx) {
|
|
7892
7902
|
this.h();
|
7893
7903
|
},
|
7894
7904
|
h() {
|
7895
|
-
attr(div, "class", "rating-buttons svelte-
|
7905
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
7896
7906
|
},
|
7897
7907
|
m(target, anchor) {
|
7898
7908
|
insert_hydration(target, div, anchor);
|
@@ -8000,7 +8010,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8000
8010
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
8001
8011
|
|
8002
8012
|
function add_css$a(target) {
|
8003
|
-
append_styles(target, "svelte-
|
8013
|
+
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%}");
|
8004
8014
|
}
|
8005
8015
|
|
8006
8016
|
function get_each_context(ctx, list, i) {
|
@@ -8046,9 +8056,9 @@ function create_if_block_1(ctx) {
|
|
8046
8056
|
attr(svg, "viewBox", "0 0 10 16");
|
8047
8057
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8048
8058
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
8049
|
-
attr(button, "class", "move-button svelte-
|
8059
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8050
8060
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
8051
|
-
attr(div, "class", "prev-button-container svelte-
|
8061
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
8052
8062
|
},
|
8053
8063
|
m(target, anchor) {
|
8054
8064
|
insert_hydration(target, div, anchor);
|
@@ -8114,9 +8124,9 @@ function create_if_block$1(ctx) {
|
|
8114
8124
|
attr(svg, "viewBox", "0 0 10 16");
|
8115
8125
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8116
8126
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
8117
|
-
attr(button, "class", "move-button svelte-
|
8127
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8118
8128
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
8119
|
-
attr(div, "class", "next-button-container svelte-
|
8129
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
8120
8130
|
},
|
8121
8131
|
m(target, anchor) {
|
8122
8132
|
insert_hydration(target, div, anchor);
|
@@ -8176,9 +8186,9 @@ function create_each_block(ctx) {
|
|
8176
8186
|
this.h();
|
8177
8187
|
},
|
8178
8188
|
h() {
|
8179
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
8189
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
8180
8190
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
8181
|
-
attr(button, "class", "navigation-item svelte-
|
8191
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
8182
8192
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
8183
8193
|
},
|
8184
8194
|
m(target, anchor) {
|
@@ -8284,14 +8294,14 @@ function create_fragment$b(ctx) {
|
|
8284
8294
|
this.h();
|
8285
8295
|
},
|
8286
8296
|
h() {
|
8287
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8297
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
8288
8298
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
8289
|
-
attr(div1, "class", "container svelte-
|
8299
|
+
attr(div1, "class", "container svelte-ji1fh");
|
8290
8300
|
attr(div1, "style", /*_style*/ ctx[0]);
|
8291
|
-
attr(div2, "class", "navigation svelte-
|
8301
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
8292
8302
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
8293
8303
|
set_attributes(div3, div3_data);
|
8294
|
-
toggle_class(div3, "svelte-
|
8304
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8295
8305
|
},
|
8296
8306
|
m(target, anchor) {
|
8297
8307
|
insert_hydration(target, div3, anchor);
|
@@ -8333,7 +8343,7 @@ function create_fragment$b(ctx) {
|
|
8333
8343
|
}
|
8334
8344
|
}
|
8335
8345
|
|
8336
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8346
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
8337
8347
|
attr(div0, "class", div0_class_value);
|
8338
8348
|
}
|
8339
8349
|
|
@@ -8399,7 +8409,7 @@ function create_fragment$b(ctx) {
|
|
8399
8409
|
}
|
8400
8410
|
|
8401
8411
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
8402
|
-
toggle_class(div3, "svelte-
|
8412
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8403
8413
|
},
|
8404
8414
|
i(local) {
|
8405
8415
|
if (current) return;
|
@@ -8911,7 +8921,7 @@ class Slide extends SvelteComponent {
|
|
8911
8921
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
8912
8922
|
|
8913
8923
|
function add_css$9(target) {
|
8914
|
-
append_styles(target, "svelte-
|
8924
|
+
append_styles(target, "svelte-1fqq17x", ".item.svelte-1fqq17x{height:100%;flex:none;position:relative}.item.svelte-1fqq17x img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-1fqq17x{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000}");
|
8915
8925
|
}
|
8916
8926
|
|
8917
8927
|
function create_fragment$a(ctx) {
|
@@ -8939,9 +8949,9 @@ function create_fragment$a(ctx) {
|
|
8939
8949
|
this.h();
|
8940
8950
|
},
|
8941
8951
|
h() {
|
8942
|
-
attr(div0, "class", "item-inner svelte-
|
8952
|
+
attr(div0, "class", "item-inner svelte-1fqq17x");
|
8943
8953
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8944
|
-
attr(div1, "class", "item svelte-
|
8954
|
+
attr(div1, "class", "item svelte-1fqq17x");
|
8945
8955
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
8946
8956
|
},
|
8947
8957
|
m(target, anchor) {
|
@@ -9067,7 +9077,7 @@ class SlideItem extends SvelteComponent {
|
|
9067
9077
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
9068
9078
|
|
9069
9079
|
function add_css$8(target) {
|
9070
|
-
append_styles(target, "svelte-
|
9080
|
+
append_styles(target, "svelte-192lor2", ".countdown.svelte-192lor2{position:relative;width:100%;height:100%}.countdown-inner.svelte-192lor2{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000}");
|
9071
9081
|
}
|
9072
9082
|
|
9073
9083
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -9098,9 +9108,9 @@ function create_fragment$9(ctx) {
|
|
9098
9108
|
this.h();
|
9099
9109
|
},
|
9100
9110
|
h() {
|
9101
|
-
attr(div0, "class", "countdown-inner svelte-
|
9111
|
+
attr(div0, "class", "countdown-inner svelte-192lor2");
|
9102
9112
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9103
|
-
attr(div1, "class", "countdown svelte-
|
9113
|
+
attr(div1, "class", "countdown svelte-192lor2");
|
9104
9114
|
},
|
9105
9115
|
m(target, anchor) {
|
9106
9116
|
insert_hydration(target, div1, anchor);
|
@@ -9230,7 +9240,7 @@ class Countdown extends SvelteComponent {
|
|
9230
9240
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
9231
9241
|
|
9232
9242
|
function add_css$7(target) {
|
9233
|
-
append_styles(target, "svelte-
|
9243
|
+
append_styles(target, "svelte-6g6etj", ".box.svelte-6g6etj{position:relative;width:100%;height:100%}.box.svelte-6g6etj > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000}");
|
9234
9244
|
}
|
9235
9245
|
|
9236
9246
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -9313,7 +9323,7 @@ function create_fragment$8(ctx) {
|
|
9313
9323
|
this.h();
|
9314
9324
|
},
|
9315
9325
|
h() {
|
9316
|
-
attr(div, "class", "box svelte-
|
9326
|
+
attr(div, "class", "box svelte-6g6etj");
|
9317
9327
|
},
|
9318
9328
|
m(target, anchor) {
|
9319
9329
|
insert_hydration(target, div, anchor);
|
@@ -9374,7 +9384,7 @@ class Box extends SvelteComponent {
|
|
9374
9384
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
9375
9385
|
|
9376
9386
|
function add_css$6(target) {
|
9377
|
-
append_styles(target, "svelte-
|
9387
|
+
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)}");
|
9378
9388
|
}
|
9379
9389
|
|
9380
9390
|
// (56:4) {#if svg}
|
@@ -9478,7 +9488,7 @@ function create_fragment$7(ctx) {
|
|
9478
9488
|
this.h();
|
9479
9489
|
},
|
9480
9490
|
h() {
|
9481
|
-
attr(div, "class", "icon svelte-
|
9491
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
9482
9492
|
},
|
9483
9493
|
m(target, anchor) {
|
9484
9494
|
insert_hydration(target, div, anchor);
|
@@ -9587,7 +9597,7 @@ class IconElement extends SvelteComponent {
|
|
9587
9597
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
9588
9598
|
|
9589
9599
|
function add_css$5(target) {
|
9590
|
-
append_styles(target, "svelte-
|
9600
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
9591
9601
|
}
|
9592
9602
|
|
9593
9603
|
function create_fragment$6(ctx) {
|
@@ -9623,7 +9633,7 @@ function create_fragment$6(ctx) {
|
|
9623
9633
|
this.h();
|
9624
9634
|
},
|
9625
9635
|
h() {
|
9626
|
-
attr(div, "class", "codeElement svelte-
|
9636
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
9627
9637
|
attr(div, "style", /*style*/ ctx[3]);
|
9628
9638
|
},
|
9629
9639
|
m(target, anchor) {
|
@@ -9712,7 +9722,7 @@ class CodeElement extends SvelteComponent {
|
|
9712
9722
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
9713
9723
|
|
9714
9724
|
function add_css$4(target) {
|
9715
|
-
append_styles(target, "svelte-
|
9725
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
9716
9726
|
}
|
9717
9727
|
|
9718
9728
|
function create_fragment$5(ctx) {
|
@@ -9736,7 +9746,7 @@ function create_fragment$5(ctx) {
|
|
9736
9746
|
this.h();
|
9737
9747
|
},
|
9738
9748
|
h() {
|
9739
|
-
attr(div, "class", "flex svelte-
|
9749
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
9740
9750
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
9741
9751
|
},
|
9742
9752
|
m(target, anchor) {
|
@@ -9833,7 +9843,7 @@ class Flex extends SvelteComponent {
|
|
9833
9843
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
9834
9844
|
|
9835
9845
|
function add_css$3(target) {
|
9836
|
-
append_styles(target, "svelte-
|
9846
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
9837
9847
|
}
|
9838
9848
|
|
9839
9849
|
function create_fragment$4(ctx) {
|
@@ -9856,7 +9866,7 @@ function create_fragment$4(ctx) {
|
|
9856
9866
|
this.h();
|
9857
9867
|
},
|
9858
9868
|
h() {
|
9859
|
-
attr(div, "class", "flex-item svelte-
|
9869
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
9860
9870
|
attr(div, "style", /*style*/ ctx[0]);
|
9861
9871
|
},
|
9862
9872
|
m(target, anchor) {
|
@@ -10276,7 +10286,7 @@ class GridModalState extends SvelteComponent {
|
|
10276
10286
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
10277
10287
|
|
10278
10288
|
function add_css$2(target) {
|
10279
|
-
append_styles(target, "svelte-
|
10289
|
+
append_styles(target, "svelte-11rpuv5", ".text-block.svelte-11rpuv5.svelte-11rpuv5{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:auto}.text-block-inner.svelte-11rpuv5.svelte-11rpuv5{width:100%;height:auto}.text-direction-vertical.svelte-11rpuv5.svelte-11rpuv5{writing-mode:vertical-rl}.text-direction-vertical.svelte-11rpuv5 .text-block-inner.svelte-11rpuv5{width:auto;height:100%}");
|
10280
10290
|
}
|
10281
10291
|
|
10282
10292
|
function create_fragment$2(ctx) {
|
@@ -10305,8 +10315,8 @@ function create_fragment$2(ctx) {
|
|
10305
10315
|
this.h();
|
10306
10316
|
},
|
10307
10317
|
h() {
|
10308
|
-
attr(div0, "class", "text-block-inner svelte-
|
10309
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10318
|
+
attr(div0, "class", "text-block-inner svelte-11rpuv5");
|
10319
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-11rpuv5"));
|
10310
10320
|
attr(div1, "style", /*style*/ ctx[2]);
|
10311
10321
|
},
|
10312
10322
|
m(target, anchor) {
|
@@ -10320,7 +10330,7 @@ function create_fragment$2(ctx) {
|
|
10320
10330
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
10321
10331
|
rendertext.$set(rendertext_changes);
|
10322
10332
|
|
10323
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10333
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-11rpuv5"))) {
|
10324
10334
|
attr(div1, "class", div1_class_value);
|
10325
10335
|
}
|
10326
10336
|
|
@@ -10398,7 +10408,7 @@ class TextBlock extends SvelteComponent {
|
|
10398
10408
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
10399
10409
|
|
10400
10410
|
function add_css$1(target) {
|
10401
|
-
append_styles(target, "svelte-
|
10411
|
+
append_styles(target, "svelte-1t5i3za", ".text-button-block.svelte-1t5i3za{width:100%;height:100%}.text-button.svelte-1t5i3za{display:flex;justify-content:center;align-items:center;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s}.text-button.svelte-1t5i3za:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-1t5i3za:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
10402
10412
|
}
|
10403
10413
|
|
10404
10414
|
function create_fragment$1(ctx) {
|
@@ -10428,9 +10438,9 @@ function create_fragment$1(ctx) {
|
|
10428
10438
|
this.h();
|
10429
10439
|
},
|
10430
10440
|
h() {
|
10431
|
-
attr(button, "class", "text-button svelte-
|
10441
|
+
attr(button, "class", "text-button svelte-1t5i3za");
|
10432
10442
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
10433
|
-
attr(div, "class", "text-button-block svelte-
|
10443
|
+
attr(div, "class", "text-button-block svelte-1t5i3za");
|
10434
10444
|
attr(div, "style", /*_style*/ ctx[2]);
|
10435
10445
|
},
|
10436
10446
|
m(target, anchor) {
|
@@ -10536,7 +10546,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
10536
10546
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
10537
10547
|
|
10538
10548
|
function add_css(target) {
|
10539
|
-
append_styles(target, "svelte-
|
10549
|
+
append_styles(target, "svelte-1um32br", ".image-block.svelte-1um32br{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}.image.svelte-1um32br{width:100%;height:100%}.transport.svelte-1um32br:hover,.transport.svelte-1um32br:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
|
10540
10550
|
}
|
10541
10551
|
|
10542
10552
|
function create_fragment(ctx) {
|
@@ -10572,14 +10582,14 @@ function create_fragment(ctx) {
|
|
10572
10582
|
this.h();
|
10573
10583
|
},
|
10574
10584
|
h() {
|
10575
|
-
attr(img, "class", "image svelte-
|
10585
|
+
attr(img, "class", "image svelte-1um32br");
|
10576
10586
|
attr(img, "loading", "lazy");
|
10577
10587
|
attr(img, "width", "auto");
|
10578
10588
|
attr(img, "height", "auto");
|
10579
10589
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
10580
10590
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
10581
10591
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10582
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10592
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1um32br"));
|
10583
10593
|
attr(div, "style", /*_style*/ ctx[5]);
|
10584
10594
|
},
|
10585
10595
|
m(target, anchor) {
|
@@ -10604,7 +10614,7 @@ function create_fragment(ctx) {
|
|
10604
10614
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10605
10615
|
}
|
10606
10616
|
|
10607
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10617
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1um32br"))) {
|
10608
10618
|
attr(div, "class", div_class_value);
|
10609
10619
|
}
|
10610
10620
|
|