@plaidev/karte-action-sdk 1.1.231 → 1.1.232-28654876.dc7c8de8
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.js +224 -185
- package/dist/index.es.js +224 -185
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1264,7 +1264,7 @@ function doPresent({ direction, deltaRate }, downFn, upFn, condition = false) {
|
|
1264
1264
|
*/
|
1265
1265
|
function hideOnScroll(props, hide = NOOP, show = NOOP) {
|
1266
1266
|
const { hide_on_scroll, hide_on_scroll_rate, show_on_scroll_reenter } = props;
|
1267
|
-
return hide_on_scroll && hide_on_scroll_rate
|
1267
|
+
return hide_on_scroll && hide_on_scroll_rate != null
|
1268
1268
|
? onScroll(hide_on_scroll_rate / 100, ctx => doPresent(ctx, hide, show, show_on_scroll_reenter))
|
1269
1269
|
: null;
|
1270
1270
|
}
|
@@ -1283,7 +1283,7 @@ function hideOnScroll(props, hide = NOOP, show = NOOP) {
|
|
1283
1283
|
* @internal
|
1284
1284
|
*/
|
1285
1285
|
function hideOnTime(props, hide = NOOP) {
|
1286
|
-
return props.hide_on_time && props.hide_on_time_count
|
1286
|
+
return props.hide_on_time && props.hide_on_time_count != null
|
1287
1287
|
? onTime(props.hide_on_time_count * 1000, () => hide())
|
1288
1288
|
: null;
|
1289
1289
|
}
|
@@ -1305,7 +1305,7 @@ function hideOnTime(props, hide = NOOP) {
|
|
1305
1305
|
*/
|
1306
1306
|
function showOnScroll(props, show = NOOP, hide = NOOP) {
|
1307
1307
|
const { show_on_scroll, show_on_scroll_rate, hide_on_scroll_releave, show_on_scroll_reenter } = props;
|
1308
|
-
return show_on_scroll && show_on_scroll_rate
|
1308
|
+
return show_on_scroll && show_on_scroll_rate != null
|
1309
1309
|
? onScroll(show_on_scroll_rate / 100, ctx => {
|
1310
1310
|
doPresent(ctx, show, hide, hide_on_scroll_releave ?? true);
|
1311
1311
|
return show_on_scroll_reenter;
|
@@ -1327,7 +1327,7 @@ function showOnScroll(props, show = NOOP, hide = NOOP) {
|
|
1327
1327
|
* @internal
|
1328
1328
|
*/
|
1329
1329
|
function showOnTime(props, show = NOOP) {
|
1330
|
-
return props.show_on_time && props.show_on_time_count
|
1330
|
+
return props.show_on_time && props.show_on_time_count != null
|
1331
1331
|
? onTime(props.show_on_time_count * 1000, () => show())
|
1332
1332
|
: null;
|
1333
1333
|
}
|
@@ -3011,7 +3011,7 @@ class State extends SvelteComponent {
|
|
3011
3011
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
3012
3012
|
|
3013
3013
|
function add_css$w(target) {
|
3014
|
-
append_styles(target, "svelte-
|
3014
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
3015
3015
|
}
|
3016
3016
|
|
3017
3017
|
// (23:0) {#if $state === path}
|
@@ -3038,7 +3038,7 @@ function create_if_block$c(ctx) {
|
|
3038
3038
|
},
|
3039
3039
|
h() {
|
3040
3040
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3041
|
-
attr(div, "class", "state-item svelte-
|
3041
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
3042
3042
|
},
|
3043
3043
|
m(target, anchor) {
|
3044
3044
|
insert_hydration(target, div, anchor);
|
@@ -3305,7 +3305,7 @@ function customAnimation(node, { transforms, animationStyle, delay = 0, duration
|
|
3305
3305
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3306
3306
|
|
3307
3307
|
function add_css$v(target) {
|
3308
|
-
append_styles(target, "svelte-
|
3308
|
+
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}");
|
3309
3309
|
}
|
3310
3310
|
|
3311
3311
|
// (14:0) {#if backgroundOverlay}
|
@@ -3326,7 +3326,7 @@ function create_if_block$b(ctx) {
|
|
3326
3326
|
this.h();
|
3327
3327
|
},
|
3328
3328
|
h() {
|
3329
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3329
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"));
|
3330
3330
|
},
|
3331
3331
|
m(target, anchor) {
|
3332
3332
|
insert_hydration(target, div, anchor);
|
@@ -3337,7 +3337,7 @@ function create_if_block$b(ctx) {
|
|
3337
3337
|
}
|
3338
3338
|
},
|
3339
3339
|
p(ctx, dirty) {
|
3340
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3340
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-1d4fta"))) {
|
3341
3341
|
attr(div, "class", div_class_value);
|
3342
3342
|
}
|
3343
3343
|
},
|
@@ -3447,7 +3447,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3447
3447
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3448
3448
|
|
3449
3449
|
function add_css$u(target) {
|
3450
|
-
append_styles(target, "svelte-
|
3450
|
+
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}");
|
3451
3451
|
}
|
3452
3452
|
|
3453
3453
|
// (50:0) {:else}
|
@@ -3486,7 +3486,7 @@ function create_else_block$4(ctx) {
|
|
3486
3486
|
},
|
3487
3487
|
h() {
|
3488
3488
|
set_attributes(button, button_data);
|
3489
|
-
toggle_class(button, "svelte-
|
3489
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3490
3490
|
},
|
3491
3491
|
m(target, anchor) {
|
3492
3492
|
insert_hydration(target, button, anchor);
|
@@ -3525,7 +3525,7 @@ function create_else_block$4(ctx) {
|
|
3525
3525
|
dataAttrStopPropagation('click')
|
3526
3526
|
]));
|
3527
3527
|
|
3528
|
-
toggle_class(button, "svelte-
|
3528
|
+
toggle_class(button, "svelte-15k4deh", true);
|
3529
3529
|
},
|
3530
3530
|
i(local) {
|
3531
3531
|
if (current) return;
|
@@ -3566,7 +3566,7 @@ function create_if_block_2$1(ctx) {
|
|
3566
3566
|
this.h();
|
3567
3567
|
},
|
3568
3568
|
h() {
|
3569
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3569
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-15k4deh"));
|
3570
3570
|
attr(div, "style", /*style*/ ctx[1]);
|
3571
3571
|
},
|
3572
3572
|
m(target, anchor) {
|
@@ -3666,7 +3666,7 @@ function create_if_block_1$2(ctx) {
|
|
3666
3666
|
},
|
3667
3667
|
h() {
|
3668
3668
|
set_attributes(a, a_data);
|
3669
|
-
toggle_class(a, "svelte-
|
3669
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3670
3670
|
},
|
3671
3671
|
m(target, anchor) {
|
3672
3672
|
insert_hydration(target, a, anchor);
|
@@ -3708,7 +3708,7 @@ function create_if_block_1$2(ctx) {
|
|
3708
3708
|
dataAttrStopPropagation('click')
|
3709
3709
|
]));
|
3710
3710
|
|
3711
|
-
toggle_class(a, "svelte-
|
3711
|
+
toggle_class(a, "svelte-15k4deh", true);
|
3712
3712
|
},
|
3713
3713
|
i(local) {
|
3714
3714
|
if (current) return;
|
@@ -3749,7 +3749,7 @@ function create_if_block$a(ctx) {
|
|
3749
3749
|
this.h();
|
3750
3750
|
},
|
3751
3751
|
h() {
|
3752
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3752
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-15k4deh"));
|
3753
3753
|
attr(div, "style", /*style*/ ctx[1]);
|
3754
3754
|
},
|
3755
3755
|
m(target, anchor) {
|
@@ -3957,7 +3957,7 @@ let Button$1 = class Button extends SvelteComponent {
|
|
3957
3957
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3958
3958
|
|
3959
3959
|
function add_css$t(target) {
|
3960
|
-
append_styles(target, "svelte-
|
3960
|
+
append_styles(target, "svelte-1ijkyzl", ".modal.svelte-1ijkyzl{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1ijkyzl > .button{flex:auto;display:flex}.close.svelte-1ijkyzl{position:absolute;top:0;right:0}.close.svelte-1ijkyzl > .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-1ijkyzl > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1ijkyzl{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-1ijkyzl{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);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-1ijkyzl{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);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
|
3961
3961
|
}
|
3962
3962
|
|
3963
3963
|
// (277:0) {:else}
|
@@ -4132,7 +4132,7 @@ function create_if_block$9(ctx) {
|
|
4132
4132
|
this.h();
|
4133
4133
|
},
|
4134
4134
|
h() {
|
4135
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4135
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"));
|
4136
4136
|
attr(div, "role", "dialog");
|
4137
4137
|
attr(div, "aria-modal", "true");
|
4138
4138
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4156,7 +4156,7 @@ function create_if_block$9(ctx) {
|
|
4156
4156
|
|
4157
4157
|
button.$set(button_changes);
|
4158
4158
|
|
4159
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4159
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1ijkyzl"))) {
|
4160
4160
|
attr(div, "class", div_class_value);
|
4161
4161
|
}
|
4162
4162
|
},
|
@@ -4220,7 +4220,7 @@ function create_if_block_1$1(ctx) {
|
|
4220
4220
|
this.h();
|
4221
4221
|
},
|
4222
4222
|
h() {
|
4223
|
-
attr(div, "class", "close svelte-
|
4223
|
+
attr(div, "class", "close svelte-1ijkyzl");
|
4224
4224
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4225
4225
|
},
|
4226
4226
|
m(target, anchor) {
|
@@ -4345,7 +4345,7 @@ function create_default_slot$6(ctx) {
|
|
4345
4345
|
this.h();
|
4346
4346
|
},
|
4347
4347
|
h() {
|
4348
|
-
attr(div, "class", "modal-content svelte-
|
4348
|
+
attr(div, "class", "modal-content svelte-1ijkyzl");
|
4349
4349
|
attr(div, "style", /*_style*/ ctx[5]);
|
4350
4350
|
},
|
4351
4351
|
m(target, anchor) {
|
@@ -4982,7 +4982,7 @@ class Grid extends SvelteComponent {
|
|
4982
4982
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4983
4983
|
|
4984
4984
|
function add_css$s(target) {
|
4985
|
-
append_styles(target, "svelte-
|
4985
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4986
4986
|
}
|
4987
4987
|
|
4988
4988
|
function create_fragment$_(ctx) {
|
@@ -5016,8 +5016,8 @@ function create_fragment$_(ctx) {
|
|
5016
5016
|
this.h();
|
5017
5017
|
},
|
5018
5018
|
h() {
|
5019
|
-
attr(div0, "class", "grid-item-inner svelte-
|
5020
|
-
attr(div1, "class", "grid-item svelte-
|
5019
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
5020
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
5021
5021
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
5022
5022
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
5023
5023
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5339,7 +5339,7 @@ class RenderText extends SvelteComponent {
|
|
5339
5339
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5340
5340
|
|
5341
5341
|
function add_css$r(target) {
|
5342
|
-
append_styles(target, "svelte-
|
5342
|
+
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}");
|
5343
5343
|
}
|
5344
5344
|
|
5345
5345
|
// (94:2) {:else}
|
@@ -5369,8 +5369,8 @@ function create_else_block$1(ctx) {
|
|
5369
5369
|
this.h();
|
5370
5370
|
},
|
5371
5371
|
h() {
|
5372
|
-
attr(div0, "class", "text-element-inner svelte-
|
5373
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5372
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5373
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5374
5374
|
attr(div1, "style", /*style*/ ctx[5]);
|
5375
5375
|
},
|
5376
5376
|
m(target, anchor) {
|
@@ -5384,7 +5384,7 @@ function create_else_block$1(ctx) {
|
|
5384
5384
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5385
5385
|
rendertext.$set(rendertext_changes);
|
5386
5386
|
|
5387
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5387
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
5388
5388
|
attr(div1, "class", div1_class_value);
|
5389
5389
|
}
|
5390
5390
|
|
@@ -5459,12 +5459,12 @@ function create_if_block$7(ctx) {
|
|
5459
5459
|
this.h();
|
5460
5460
|
},
|
5461
5461
|
h() {
|
5462
|
-
attr(div0, "class", "text-element-inner svelte-
|
5462
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
5463
5463
|
attr(a, "href", '');
|
5464
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5464
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
5465
5465
|
attr(a, "style", /*style*/ ctx[5]);
|
5466
|
-
attr(div1, "class", "tooltip svelte-
|
5467
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5466
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
5467
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
5468
5468
|
},
|
5469
5469
|
m(target, anchor) {
|
5470
5470
|
insert_hydration(target, a, anchor);
|
@@ -5490,7 +5490,7 @@ function create_if_block$7(ctx) {
|
|
5490
5490
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5491
5491
|
rendertext.$set(rendertext_changes);
|
5492
5492
|
|
5493
|
-
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-
|
5493
|
+
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"))) {
|
5494
5494
|
attr(a, "class", a_class_value);
|
5495
5495
|
}
|
5496
5496
|
|
@@ -5552,7 +5552,7 @@ function create_fragment$Y(ctx) {
|
|
5552
5552
|
this.h();
|
5553
5553
|
},
|
5554
5554
|
h() {
|
5555
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5555
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
5556
5556
|
},
|
5557
5557
|
m(target, anchor) {
|
5558
5558
|
insert_hydration(target, div, anchor);
|
@@ -5718,7 +5718,7 @@ class TextElement extends SvelteComponent {
|
|
5718
5718
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5719
5719
|
|
5720
5720
|
function add_css$q(target) {
|
5721
|
-
append_styles(target, "svelte-
|
5721
|
+
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)}");
|
5722
5722
|
}
|
5723
5723
|
|
5724
5724
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5787,7 +5787,7 @@ function create_fragment$X(ctx) {
|
|
5787
5787
|
this.h();
|
5788
5788
|
},
|
5789
5789
|
h() {
|
5790
|
-
attr(div, "class", "text-button-element svelte-
|
5790
|
+
attr(div, "class", "text-button-element svelte-1vg84sc");
|
5791
5791
|
},
|
5792
5792
|
m(target, anchor) {
|
5793
5793
|
insert_hydration(target, div, anchor);
|
@@ -5879,7 +5879,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5879
5879
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5880
5880
|
|
5881
5881
|
function add_css$p(target) {
|
5882
|
-
append_styles(target, "svelte-
|
5882
|
+
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%}");
|
5883
5883
|
}
|
5884
5884
|
|
5885
5885
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5907,7 +5907,7 @@ function create_default_slot$4(ctx) {
|
|
5907
5907
|
this.h();
|
5908
5908
|
},
|
5909
5909
|
h() {
|
5910
|
-
attr(img, "class", "image svelte-
|
5910
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5911
5911
|
attr(img, "loading", "lazy");
|
5912
5912
|
attr(img, "width", "auto");
|
5913
5913
|
attr(img, "height", "auto");
|
@@ -5979,7 +5979,7 @@ function create_fragment$W(ctx) {
|
|
5979
5979
|
this.h();
|
5980
5980
|
},
|
5981
5981
|
h() {
|
5982
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5982
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5983
5983
|
},
|
5984
5984
|
m(target, anchor) {
|
5985
5985
|
insert_hydration(target, div, anchor);
|
@@ -5998,7 +5998,7 @@ function create_fragment$W(ctx) {
|
|
5998
5998
|
|
5999
5999
|
button.$set(button_changes);
|
6000
6000
|
|
6001
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
6001
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
6002
6002
|
attr(div, "class", div_class_value);
|
6003
6003
|
}
|
6004
6004
|
},
|
@@ -6070,7 +6070,7 @@ class ImageElement extends SvelteComponent {
|
|
6070
6070
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
6071
6071
|
|
6072
6072
|
function add_css$o(target) {
|
6073
|
-
append_styles(target, "svelte-
|
6073
|
+
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}");
|
6074
6074
|
}
|
6075
6075
|
|
6076
6076
|
function create_fragment$V(ctx) {
|
@@ -6093,7 +6093,7 @@ function create_fragment$V(ctx) {
|
|
6093
6093
|
this.h();
|
6094
6094
|
},
|
6095
6095
|
h() {
|
6096
|
-
attr(div, "class", "list svelte-
|
6096
|
+
attr(div, "class", "list svelte-aquv6z");
|
6097
6097
|
attr(div, "style", /*style*/ ctx[0]);
|
6098
6098
|
},
|
6099
6099
|
m(target, anchor) {
|
@@ -6227,7 +6227,7 @@ class List extends SvelteComponent {
|
|
6227
6227
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6228
6228
|
|
6229
6229
|
function add_css$n(target) {
|
6230
|
-
append_styles(target, "svelte-
|
6230
|
+
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}");
|
6231
6231
|
}
|
6232
6232
|
|
6233
6233
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6310,7 +6310,7 @@ function create_fragment$U(ctx) {
|
|
6310
6310
|
this.h();
|
6311
6311
|
},
|
6312
6312
|
h() {
|
6313
|
-
attr(div, "class", "list-item svelte-
|
6313
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
6314
6314
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6315
6315
|
},
|
6316
6316
|
m(target, anchor) {
|
@@ -6436,7 +6436,7 @@ class ListItem extends SvelteComponent {
|
|
6436
6436
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6437
6437
|
|
6438
6438
|
function add_css$m(target) {
|
6439
|
-
append_styles(target, "svelte-
|
6439
|
+
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}");
|
6440
6440
|
}
|
6441
6441
|
|
6442
6442
|
function create_fragment$T(ctx) {
|
@@ -6454,7 +6454,7 @@ function create_fragment$T(ctx) {
|
|
6454
6454
|
this.h();
|
6455
6455
|
},
|
6456
6456
|
h() {
|
6457
|
-
attr(div, "class", "embed svelte-
|
6457
|
+
attr(div, "class", "embed svelte-wocq4p");
|
6458
6458
|
attr(div, "style", /*_style*/ ctx[1]);
|
6459
6459
|
},
|
6460
6460
|
m(target, anchor) {
|
@@ -6497,7 +6497,7 @@ class EmbedElement extends SvelteComponent {
|
|
6497
6497
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6498
6498
|
|
6499
6499
|
function add_css$l(target) {
|
6500
|
-
append_styles(target, "svelte-
|
6500
|
+
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%}");
|
6501
6501
|
}
|
6502
6502
|
|
6503
6503
|
function create_fragment$S(ctx) {
|
@@ -6520,7 +6520,7 @@ function create_fragment$S(ctx) {
|
|
6520
6520
|
},
|
6521
6521
|
h() {
|
6522
6522
|
attr(div0, "class", "karte-player");
|
6523
|
-
attr(div1, "class", "embed svelte-
|
6523
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6524
6524
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6525
6525
|
},
|
6526
6526
|
m(target, anchor) {
|
@@ -6862,7 +6862,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6862
6862
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6863
6863
|
|
6864
6864
|
function add_css$k(target) {
|
6865
|
-
append_styles(target, "svelte-
|
6865
|
+
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%}");
|
6866
6866
|
}
|
6867
6867
|
|
6868
6868
|
function create_fragment$R(ctx) {
|
@@ -6885,7 +6885,7 @@ function create_fragment$R(ctx) {
|
|
6885
6885
|
},
|
6886
6886
|
h() {
|
6887
6887
|
attr(div0, "class", "karte-player");
|
6888
|
-
attr(div1, "class", "embed svelte-
|
6888
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6889
6889
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6890
6890
|
},
|
6891
6891
|
m(target, anchor) {
|
@@ -7069,7 +7069,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
7069
7069
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
7070
7070
|
|
7071
7071
|
function add_css$j(target) {
|
7072
|
-
append_styles(target, "svelte-
|
7072
|
+
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}");
|
7073
7073
|
}
|
7074
7074
|
|
7075
7075
|
function create_fragment$Q(ctx) {
|
@@ -7099,12 +7099,12 @@ function create_fragment$Q(ctx) {
|
|
7099
7099
|
this.h();
|
7100
7100
|
},
|
7101
7101
|
h() {
|
7102
|
-
attr(textarea, "class", "textarea svelte-
|
7102
|
+
attr(textarea, "class", "textarea svelte-zxvkkc");
|
7103
7103
|
textarea.value = /*$value*/ ctx[4];
|
7104
7104
|
textarea.required = /*required*/ ctx[1];
|
7105
7105
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
7106
7106
|
attr(textarea, "style", /*style*/ ctx[3]);
|
7107
|
-
attr(div, "class", "textarea-wrapper svelte-
|
7107
|
+
attr(div, "class", "textarea-wrapper svelte-zxvkkc");
|
7108
7108
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
7109
7109
|
},
|
7110
7110
|
m(target, anchor) {
|
@@ -7256,7 +7256,7 @@ class FormTextarea extends SvelteComponent {
|
|
7256
7256
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
7257
7257
|
|
7258
7258
|
function add_css$i(target) {
|
7259
|
-
append_styles(target, "svelte-
|
7259
|
+
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}");
|
7260
7260
|
}
|
7261
7261
|
|
7262
7262
|
function get_each_context$5(ctx, list, i) {
|
@@ -7313,14 +7313,14 @@ function create_each_block$5(ctx) {
|
|
7313
7313
|
},
|
7314
7314
|
h() {
|
7315
7315
|
attr(input, "type", "radio");
|
7316
|
-
attr(input, "class", "radio-button-input svelte-
|
7316
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
7317
7317
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7318
7318
|
attr(input, "name", /*name*/ ctx[0]);
|
7319
7319
|
input.value = input_value_value = /*option*/ ctx[17];
|
7320
7320
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7321
|
-
attr(span, "class", "radio-button-text svelte-
|
7321
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
7322
7322
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7323
|
-
attr(label, "class", "radio-button svelte-
|
7323
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
7324
7324
|
},
|
7325
7325
|
m(target, anchor) {
|
7326
7326
|
insert_hydration(target, label, anchor);
|
@@ -7399,7 +7399,7 @@ function create_fragment$P(ctx) {
|
|
7399
7399
|
this.h();
|
7400
7400
|
},
|
7401
7401
|
h() {
|
7402
|
-
attr(div, "class", "radio-buttons svelte-
|
7402
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
7403
7403
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7404
7404
|
},
|
7405
7405
|
m(target, anchor) {
|
@@ -7568,7 +7568,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7568
7568
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7569
7569
|
|
7570
7570
|
function add_css$h(target) {
|
7571
|
-
append_styles(target, "svelte-
|
7571
|
+
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}");
|
7572
7572
|
}
|
7573
7573
|
|
7574
7574
|
function get_each_context$4(ctx, list, i) {
|
@@ -7739,10 +7739,10 @@ function create_fragment$O(ctx) {
|
|
7739
7739
|
this.h();
|
7740
7740
|
},
|
7741
7741
|
h() {
|
7742
|
-
attr(select, "class", "select-select svelte-
|
7742
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7743
7743
|
attr(select, "style", /*style*/ ctx[3]);
|
7744
|
-
attr(div0, "class", "select-icon svelte-
|
7745
|
-
attr(div1, "class", "select svelte-
|
7744
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7745
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7746
7746
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7747
7747
|
},
|
7748
7748
|
m(target, anchor) {
|
@@ -7944,7 +7944,7 @@ class FormSelect extends SvelteComponent {
|
|
7944
7944
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7945
7945
|
|
7946
7946
|
function add_css$g(target) {
|
7947
|
-
append_styles(target, "svelte-
|
7947
|
+
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}");
|
7948
7948
|
}
|
7949
7949
|
|
7950
7950
|
function get_each_context$3(ctx, list, i) {
|
@@ -8006,19 +8006,19 @@ function create_each_block$3(ctx) {
|
|
8006
8006
|
this.h();
|
8007
8007
|
},
|
8008
8008
|
h() {
|
8009
|
-
attr(input, "class", "check-box-input svelte-
|
8009
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
8010
8010
|
attr(input, "type", "checkbox");
|
8011
8011
|
attr(input, "name", /*name*/ ctx[0]);
|
8012
8012
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
8013
|
-
attr(span0, "class", "check-box-icon svelte-
|
8013
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
8014
8014
|
|
8015
8015
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8016
8016
|
? ' _checked'
|
8017
|
-
: ''}`) + " svelte-
|
8017
|
+
: ''}`) + " svelte-1p65cg8"));
|
8018
8018
|
|
8019
|
-
attr(span2, "class", "check-box-text svelte-
|
8019
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
8020
8020
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
8021
|
-
attr(label, "class", "check-box svelte-
|
8021
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
8022
8022
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
8023
8023
|
},
|
8024
8024
|
m(target, anchor) {
|
@@ -8050,7 +8050,7 @@ function create_each_block$3(ctx) {
|
|
8050
8050
|
|
8051
8051
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8052
8052
|
? ' _checked'
|
8053
|
-
: ''}`) + " svelte-
|
8053
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
8054
8054
|
attr(span1, "class", span1_class_value);
|
8055
8055
|
}
|
8056
8056
|
|
@@ -8103,7 +8103,7 @@ function create_fragment$N(ctx) {
|
|
8103
8103
|
this.h();
|
8104
8104
|
},
|
8105
8105
|
h() {
|
8106
|
-
attr(div, "class", "check-boxes svelte-
|
8106
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
8107
8107
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
8108
8108
|
},
|
8109
8109
|
m(target, anchor) {
|
@@ -8278,7 +8278,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
8278
8278
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
8279
8279
|
|
8280
8280
|
function add_css$f(target) {
|
8281
|
-
append_styles(target, "svelte-
|
8281
|
+
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}");
|
8282
8282
|
}
|
8283
8283
|
|
8284
8284
|
function get_each_context$2(ctx, list, i) {
|
@@ -8313,7 +8313,7 @@ function create_each_block$2(ctx) {
|
|
8313
8313
|
this.h();
|
8314
8314
|
},
|
8315
8315
|
h() {
|
8316
|
-
attr(button, "class", "rating-button svelte-
|
8316
|
+
attr(button, "class", "rating-button svelte-1iqf36p");
|
8317
8317
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
8318
8318
|
},
|
8319
8319
|
m(target, anchor) {
|
@@ -8376,7 +8376,7 @@ function create_fragment$M(ctx) {
|
|
8376
8376
|
this.h();
|
8377
8377
|
},
|
8378
8378
|
h() {
|
8379
|
-
attr(div, "class", "rating-buttons svelte-
|
8379
|
+
attr(div, "class", "rating-buttons svelte-1iqf36p");
|
8380
8380
|
},
|
8381
8381
|
m(target, anchor) {
|
8382
8382
|
insert_hydration(target, div, anchor);
|
@@ -8520,7 +8520,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8520
8520
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8521
8521
|
|
8522
8522
|
function add_css$e(target) {
|
8523
|
-
append_styles(target, "svelte-
|
8523
|
+
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%)}");
|
8524
8524
|
}
|
8525
8525
|
|
8526
8526
|
function get_each_context$1(ctx, list, i) {
|
@@ -8556,9 +8556,9 @@ function create_each_block$1(ctx) {
|
|
8556
8556
|
},
|
8557
8557
|
h() {
|
8558
8558
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8559
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8559
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
8560
8560
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8561
|
-
attr(button, "class", "rating-button svelte-
|
8561
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
8562
8562
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8563
8563
|
},
|
8564
8564
|
m(target, anchor) {
|
@@ -8574,7 +8574,7 @@ function create_each_block$1(ctx) {
|
|
8574
8574
|
p(new_ctx, dirty) {
|
8575
8575
|
ctx = new_ctx;
|
8576
8576
|
|
8577
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8577
|
+
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"))) {
|
8578
8578
|
attr(img, "class", img_class_value);
|
8579
8579
|
}
|
8580
8580
|
|
@@ -8621,7 +8621,7 @@ function create_fragment$L(ctx) {
|
|
8621
8621
|
this.h();
|
8622
8622
|
},
|
8623
8623
|
h() {
|
8624
|
-
attr(div, "class", "rating-buttons svelte-
|
8624
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
8625
8625
|
},
|
8626
8626
|
m(target, anchor) {
|
8627
8627
|
insert_hydration(target, div, anchor);
|
@@ -8729,7 +8729,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8729
8729
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8730
8730
|
|
8731
8731
|
function add_css$d(target) {
|
8732
|
-
append_styles(target, "svelte-
|
8732
|
+
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}");
|
8733
8733
|
}
|
8734
8734
|
|
8735
8735
|
function create_fragment$K(ctx) {
|
@@ -8760,13 +8760,13 @@ function create_fragment$K(ctx) {
|
|
8760
8760
|
this.h();
|
8761
8761
|
},
|
8762
8762
|
h() {
|
8763
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8763
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"));
|
8764
8764
|
attr(input, "type", "text");
|
8765
8765
|
input.value = /*$value*/ ctx[2];
|
8766
8766
|
input.required = /*required*/ ctx[0];
|
8767
8767
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8768
8768
|
attr(input, "style", /*style*/ ctx[5]);
|
8769
|
-
attr(div, "class", "input-wrapper svelte-
|
8769
|
+
attr(div, "class", "input-wrapper svelte-h8fqwx");
|
8770
8770
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8771
8771
|
},
|
8772
8772
|
m(target, anchor) {
|
@@ -8779,7 +8779,7 @@ function create_fragment$K(ctx) {
|
|
8779
8779
|
}
|
8780
8780
|
},
|
8781
8781
|
p(ctx, [dirty]) {
|
8782
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8782
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-h8fqwx"))) {
|
8783
8783
|
attr(input, "class", input_class_value);
|
8784
8784
|
}
|
8785
8785
|
|
@@ -8967,7 +8967,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8967
8967
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8968
8968
|
|
8969
8969
|
function add_css$c(target) {
|
8970
|
-
append_styles(target, "svelte-
|
8970
|
+
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}");
|
8971
8971
|
}
|
8972
8972
|
|
8973
8973
|
function create_fragment$J(ctx) {
|
@@ -9033,20 +9033,20 @@ function create_fragment$J(ctx) {
|
|
9033
9033
|
},
|
9034
9034
|
h() {
|
9035
9035
|
attr(input0, "type", "radio");
|
9036
|
-
attr(input0, "class", "radio-button-input svelte-
|
9036
|
+
attr(input0, "class", "radio-button-input svelte-8zbmyo");
|
9037
9037
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
9038
9038
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
9039
|
-
attr(span0, "class", "radio-button-text svelte-
|
9039
|
+
attr(span0, "class", "radio-button-text svelte-8zbmyo");
|
9040
9040
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9041
|
-
attr(label0, "class", "radio-button svelte-
|
9041
|
+
attr(label0, "class", "radio-button svelte-8zbmyo");
|
9042
9042
|
attr(input1, "type", "radio");
|
9043
|
-
attr(input1, "class", "radio-button-input svelte-
|
9043
|
+
attr(input1, "class", "radio-button-input svelte-8zbmyo");
|
9044
9044
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
9045
9045
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
9046
|
-
attr(span1, "class", "radio-button-text svelte-
|
9046
|
+
attr(span1, "class", "radio-button-text svelte-8zbmyo");
|
9047
9047
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9048
|
-
attr(label1, "class", "radio-button svelte-
|
9049
|
-
attr(div, "class", "radio-buttons svelte-
|
9048
|
+
attr(label1, "class", "radio-button svelte-8zbmyo");
|
9049
|
+
attr(div, "class", "radio-buttons svelte-8zbmyo");
|
9050
9050
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
9051
9051
|
},
|
9052
9052
|
m(target, anchor) {
|
@@ -9214,7 +9214,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
9214
9214
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
9215
9215
|
|
9216
9216
|
function add_css$b(target) {
|
9217
|
-
append_styles(target, "svelte-
|
9217
|
+
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%}");
|
9218
9218
|
}
|
9219
9219
|
|
9220
9220
|
function get_each_context(ctx, list, i) {
|
@@ -9260,9 +9260,9 @@ function create_if_block_1(ctx) {
|
|
9260
9260
|
attr(svg, "viewBox", "0 0 10 16");
|
9261
9261
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9262
9262
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
9263
|
-
attr(button, "class", "move-button svelte-
|
9263
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9264
9264
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
9265
|
-
attr(div, "class", "prev-button-container svelte-
|
9265
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
9266
9266
|
},
|
9267
9267
|
m(target, anchor) {
|
9268
9268
|
insert_hydration(target, div, anchor);
|
@@ -9328,9 +9328,9 @@ function create_if_block$5(ctx) {
|
|
9328
9328
|
attr(svg, "viewBox", "0 0 10 16");
|
9329
9329
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9330
9330
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
9331
|
-
attr(button, "class", "move-button svelte-
|
9331
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
9332
9332
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
9333
|
-
attr(div, "class", "next-button-container svelte-
|
9333
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
9334
9334
|
},
|
9335
9335
|
m(target, anchor) {
|
9336
9336
|
insert_hydration(target, div, anchor);
|
@@ -9390,9 +9390,9 @@ function create_each_block(ctx) {
|
|
9390
9390
|
this.h();
|
9391
9391
|
},
|
9392
9392
|
h() {
|
9393
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
9393
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
9394
9394
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
9395
|
-
attr(button, "class", "navigation-item svelte-
|
9395
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
9396
9396
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
9397
9397
|
},
|
9398
9398
|
m(target, anchor) {
|
@@ -9498,14 +9498,14 @@ function create_fragment$I(ctx) {
|
|
9498
9498
|
this.h();
|
9499
9499
|
},
|
9500
9500
|
h() {
|
9501
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9501
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
9502
9502
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
9503
|
-
attr(div1, "class", "container svelte-
|
9503
|
+
attr(div1, "class", "container svelte-ji1fh");
|
9504
9504
|
attr(div1, "style", /*_style*/ ctx[0]);
|
9505
|
-
attr(div2, "class", "navigation svelte-
|
9505
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
9506
9506
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
9507
9507
|
set_attributes(div3, div3_data);
|
9508
|
-
toggle_class(div3, "svelte-
|
9508
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9509
9509
|
},
|
9510
9510
|
m(target, anchor) {
|
9511
9511
|
insert_hydration(target, div3, anchor);
|
@@ -9547,7 +9547,7 @@ function create_fragment$I(ctx) {
|
|
9547
9547
|
}
|
9548
9548
|
}
|
9549
9549
|
|
9550
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9550
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
9551
9551
|
attr(div0, "class", div0_class_value);
|
9552
9552
|
}
|
9553
9553
|
|
@@ -9613,7 +9613,7 @@ function create_fragment$I(ctx) {
|
|
9613
9613
|
}
|
9614
9614
|
|
9615
9615
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9616
|
-
toggle_class(div3, "svelte-
|
9616
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
9617
9617
|
},
|
9618
9618
|
i(local) {
|
9619
9619
|
if (current) return;
|
@@ -10125,7 +10125,7 @@ class Slide extends SvelteComponent {
|
|
10125
10125
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
10126
10126
|
|
10127
10127
|
function add_css$a(target) {
|
10128
|
-
append_styles(target, "svelte-
|
10128
|
+
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}");
|
10129
10129
|
}
|
10130
10130
|
|
10131
10131
|
function create_fragment$H(ctx) {
|
@@ -10153,9 +10153,9 @@ function create_fragment$H(ctx) {
|
|
10153
10153
|
this.h();
|
10154
10154
|
},
|
10155
10155
|
h() {
|
10156
|
-
attr(div0, "class", "item-inner svelte-
|
10156
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
10157
10157
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10158
|
-
attr(div1, "class", "item svelte-
|
10158
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
10159
10159
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
10160
10160
|
},
|
10161
10161
|
m(target, anchor) {
|
@@ -10281,7 +10281,7 @@ class SlideItem extends SvelteComponent {
|
|
10281
10281
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
10282
10282
|
|
10283
10283
|
function add_css$9(target) {
|
10284
|
-
append_styles(target, "svelte-
|
10284
|
+
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}");
|
10285
10285
|
}
|
10286
10286
|
|
10287
10287
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -10312,9 +10312,9 @@ function create_fragment$G(ctx) {
|
|
10312
10312
|
this.h();
|
10313
10313
|
},
|
10314
10314
|
h() {
|
10315
|
-
attr(div0, "class", "countdown-inner svelte-
|
10315
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
10316
10316
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10317
|
-
attr(div1, "class", "countdown svelte-
|
10317
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
10318
10318
|
},
|
10319
10319
|
m(target, anchor) {
|
10320
10320
|
insert_hydration(target, div1, anchor);
|
@@ -10444,7 +10444,7 @@ class Countdown extends SvelteComponent {
|
|
10444
10444
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
10445
10445
|
|
10446
10446
|
function add_css$8(target) {
|
10447
|
-
append_styles(target, "svelte-
|
10447
|
+
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}");
|
10448
10448
|
}
|
10449
10449
|
|
10450
10450
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -10527,7 +10527,7 @@ function create_fragment$F(ctx) {
|
|
10527
10527
|
this.h();
|
10528
10528
|
},
|
10529
10529
|
h() {
|
10530
|
-
attr(div, "class", "box svelte-
|
10530
|
+
attr(div, "class", "box svelte-1ccydfy");
|
10531
10531
|
},
|
10532
10532
|
m(target, anchor) {
|
10533
10533
|
insert_hydration(target, div, anchor);
|
@@ -10588,7 +10588,7 @@ class Box extends SvelteComponent {
|
|
10588
10588
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
10589
10589
|
|
10590
10590
|
function add_css$7(target) {
|
10591
|
-
append_styles(target, "svelte-
|
10591
|
+
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)}");
|
10592
10592
|
}
|
10593
10593
|
|
10594
10594
|
// (56:4) {#if svg}
|
@@ -10692,7 +10692,7 @@ function create_fragment$E(ctx) {
|
|
10692
10692
|
this.h();
|
10693
10693
|
},
|
10694
10694
|
h() {
|
10695
|
-
attr(div, "class", "icon svelte-
|
10695
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
10696
10696
|
},
|
10697
10697
|
m(target, anchor) {
|
10698
10698
|
insert_hydration(target, div, anchor);
|
@@ -10801,7 +10801,7 @@ class IconElement extends SvelteComponent {
|
|
10801
10801
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10802
10802
|
|
10803
10803
|
function add_css$6(target) {
|
10804
|
-
append_styles(target, "svelte-
|
10804
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10805
10805
|
}
|
10806
10806
|
|
10807
10807
|
function create_fragment$D(ctx) {
|
@@ -10837,7 +10837,7 @@ function create_fragment$D(ctx) {
|
|
10837
10837
|
this.h();
|
10838
10838
|
},
|
10839
10839
|
h() {
|
10840
|
-
attr(div, "class", "codeElement svelte-
|
10840
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
10841
10841
|
attr(div, "style", /*style*/ ctx[3]);
|
10842
10842
|
},
|
10843
10843
|
m(target, anchor) {
|
@@ -10926,7 +10926,7 @@ class CodeElement extends SvelteComponent {
|
|
10926
10926
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10927
10927
|
|
10928
10928
|
function add_css$5(target) {
|
10929
|
-
append_styles(target, "svelte-
|
10929
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
10930
10930
|
}
|
10931
10931
|
|
10932
10932
|
function create_fragment$C(ctx) {
|
@@ -10950,7 +10950,7 @@ function create_fragment$C(ctx) {
|
|
10950
10950
|
this.h();
|
10951
10951
|
},
|
10952
10952
|
h() {
|
10953
|
-
attr(div, "class", "flex svelte-
|
10953
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
10954
10954
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10955
10955
|
},
|
10956
10956
|
m(target, anchor) {
|
@@ -11047,7 +11047,7 @@ class Flex extends SvelteComponent {
|
|
11047
11047
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
11048
11048
|
|
11049
11049
|
function add_css$4(target) {
|
11050
|
-
append_styles(target, "svelte-
|
11050
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
11051
11051
|
}
|
11052
11052
|
|
11053
11053
|
function create_fragment$B(ctx) {
|
@@ -11070,7 +11070,7 @@ function create_fragment$B(ctx) {
|
|
11070
11070
|
this.h();
|
11071
11071
|
},
|
11072
11072
|
h() {
|
11073
|
-
attr(div, "class", "flex-item svelte-
|
11073
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
11074
11074
|
attr(div, "style", /*style*/ ctx[0]);
|
11075
11075
|
},
|
11076
11076
|
m(target, anchor) {
|
@@ -11490,7 +11490,7 @@ class GridModalState extends SvelteComponent {
|
|
11490
11490
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
11491
11491
|
|
11492
11492
|
function add_css$3(target) {
|
11493
|
-
append_styles(target, "svelte-
|
11493
|
+
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%}");
|
11494
11494
|
}
|
11495
11495
|
|
11496
11496
|
function create_fragment$z(ctx) {
|
@@ -11519,8 +11519,8 @@ function create_fragment$z(ctx) {
|
|
11519
11519
|
this.h();
|
11520
11520
|
},
|
11521
11521
|
h() {
|
11522
|
-
attr(div0, "class", "text-block-inner svelte-
|
11523
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11522
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
11523
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
11524
11524
|
attr(div1, "style", /*style*/ ctx[2]);
|
11525
11525
|
},
|
11526
11526
|
m(target, anchor) {
|
@@ -11534,7 +11534,7 @@ function create_fragment$z(ctx) {
|
|
11534
11534
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
11535
11535
|
rendertext.$set(rendertext_changes);
|
11536
11536
|
|
11537
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11537
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
11538
11538
|
attr(div1, "class", div1_class_value);
|
11539
11539
|
}
|
11540
11540
|
|
@@ -11612,7 +11612,7 @@ class TextBlock extends SvelteComponent {
|
|
11612
11612
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
11613
11613
|
|
11614
11614
|
function add_css$2(target) {
|
11615
|
-
append_styles(target, "svelte-
|
11615
|
+
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)}");
|
11616
11616
|
}
|
11617
11617
|
|
11618
11618
|
function create_fragment$y(ctx) {
|
@@ -11642,9 +11642,9 @@ function create_fragment$y(ctx) {
|
|
11642
11642
|
this.h();
|
11643
11643
|
},
|
11644
11644
|
h() {
|
11645
|
-
attr(button, "class", "text-button svelte-
|
11645
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
11646
11646
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
11647
|
-
attr(div, "class", "text-button-block svelte-
|
11647
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
11648
11648
|
attr(div, "style", /*_style*/ ctx[2]);
|
11649
11649
|
},
|
11650
11650
|
m(target, anchor) {
|
@@ -11750,7 +11750,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11750
11750
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11751
11751
|
|
11752
11752
|
function add_css$1(target) {
|
11753
|
-
append_styles(target, "svelte-
|
11753
|
+
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)}");
|
11754
11754
|
}
|
11755
11755
|
|
11756
11756
|
function create_fragment$x(ctx) {
|
@@ -11786,14 +11786,14 @@ function create_fragment$x(ctx) {
|
|
11786
11786
|
this.h();
|
11787
11787
|
},
|
11788
11788
|
h() {
|
11789
|
-
attr(img, "class", "image svelte-
|
11789
|
+
attr(img, "class", "image svelte-1pdw891");
|
11790
11790
|
attr(img, "loading", "lazy");
|
11791
11791
|
attr(img, "width", "auto");
|
11792
11792
|
attr(img, "height", "auto");
|
11793
11793
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11794
11794
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11795
11795
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11796
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11796
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
11797
11797
|
attr(div, "style", /*_style*/ ctx[5]);
|
11798
11798
|
},
|
11799
11799
|
m(target, anchor) {
|
@@ -11818,7 +11818,7 @@ function create_fragment$x(ctx) {
|
|
11818
11818
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11819
11819
|
}
|
11820
11820
|
|
11821
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11821
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
11822
11822
|
attr(div, "class", div_class_value);
|
11823
11823
|
}
|
11824
11824
|
|
@@ -13622,6 +13622,67 @@ const objToStyle = (obj) => {
|
|
13622
13622
|
return styles.join(' ');
|
13623
13623
|
};
|
13624
13624
|
|
13625
|
+
const toCssPosition = (p) => {
|
13626
|
+
return {
|
13627
|
+
position: p?.position ?? 'static',
|
13628
|
+
top: p?.top,
|
13629
|
+
left: p?.left,
|
13630
|
+
bottom: p?.bottom,
|
13631
|
+
right: p?.right,
|
13632
|
+
};
|
13633
|
+
};
|
13634
|
+
const toCssCommon = (p) => {
|
13635
|
+
return {
|
13636
|
+
...toCssPosition(p),
|
13637
|
+
};
|
13638
|
+
};
|
13639
|
+
const toCssBorder = (p) => {
|
13640
|
+
const borderWidth = p?.borderTopWidth ?? p?.borderRightWidth ?? p?.borderLeftWidth ?? p?.borderBottomWidth ?? null;
|
13641
|
+
if (borderWidth === null)
|
13642
|
+
return {};
|
13643
|
+
return {
|
13644
|
+
borderColor: p?.borderColor,
|
13645
|
+
borderStyle: 'solid',
|
13646
|
+
borderTopWidth: p?.borderTopWidth,
|
13647
|
+
borderLeftWidth: p?.borderLeftWidth,
|
13648
|
+
borderRightWidth: p?.borderRightWidth,
|
13649
|
+
borderBottomWidth: p?.borderBottomWidth,
|
13650
|
+
};
|
13651
|
+
};
|
13652
|
+
const toCssPadding = (p) => {
|
13653
|
+
return {
|
13654
|
+
paddingTop: p?.paddingTop,
|
13655
|
+
paddingLeft: p?.paddingLeft,
|
13656
|
+
paddingRight: p?.paddingRight,
|
13657
|
+
paddingBottom: p?.paddingBottom,
|
13658
|
+
};
|
13659
|
+
};
|
13660
|
+
const toCssBackgroundImage = (p) => {
|
13661
|
+
const url = p?.backgroundImageUrl;
|
13662
|
+
return {
|
13663
|
+
backgroundImage: url ? `url(${url})` : undefined,
|
13664
|
+
backgroundSize: url ? 'cover' : undefined,
|
13665
|
+
};
|
13666
|
+
};
|
13667
|
+
const toCssBackgroundColor = (p) => {
|
13668
|
+
return {
|
13669
|
+
backgroundColor: p?.backgroundColor,
|
13670
|
+
};
|
13671
|
+
};
|
13672
|
+
const toCssRadius = (p) => {
|
13673
|
+
return {
|
13674
|
+
borderTopLeftRadius: p?.borderTopLeftRadius,
|
13675
|
+
borderTopRightRadius: p?.borderTopRightRadius,
|
13676
|
+
borderBottomLeftRadius: p?.borderBottomLeftRadius,
|
13677
|
+
borderBottomRightRadius: p?.borderBottomRightRadius,
|
13678
|
+
};
|
13679
|
+
};
|
13680
|
+
const toCssShadow = (p) => {
|
13681
|
+
return {
|
13682
|
+
boxShadow: p?.shadow,
|
13683
|
+
};
|
13684
|
+
};
|
13685
|
+
|
13625
13686
|
/* src/components-v2/icon/Icon.svelte generated by Svelte v3.53.1 */
|
13626
13687
|
|
13627
13688
|
function create_if_block$3(ctx) {
|
@@ -13801,7 +13862,8 @@ function instance$6($$self, $$props, $$invalidate) {
|
|
13801
13862
|
overflow: 'hidden',
|
13802
13863
|
width: 'auto',
|
13803
13864
|
minWidth: props.size,
|
13804
|
-
height: props.size
|
13865
|
+
height: props.size,
|
13866
|
+
...toCssCommon(props)
|
13805
13867
|
}));
|
13806
13868
|
}
|
13807
13869
|
|
@@ -13823,7 +13885,7 @@ class Icon extends SvelteComponent {
|
|
13823
13885
|
/* src/components-v2/button/Button.svelte generated by Svelte v3.53.1 */
|
13824
13886
|
|
13825
13887
|
function add_css(target) {
|
13826
|
-
append_styles(target, "svelte-
|
13888
|
+
append_styles(target, "svelte-i9kun1", ".v2-button.svelte-i9kun1{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-i9kun1{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
13827
13889
|
}
|
13828
13890
|
|
13829
13891
|
// (128:2) {#if (props.isIcon && props.iconVariant)}
|
@@ -13858,7 +13920,7 @@ function create_if_block$2(ctx) {
|
|
13858
13920
|
this.h();
|
13859
13921
|
},
|
13860
13922
|
h() {
|
13861
|
-
attr(div, "class", "v2-button-icon svelte-
|
13923
|
+
attr(div, "class", "v2-button-icon svelte-i9kun1");
|
13862
13924
|
},
|
13863
13925
|
m(target, anchor) {
|
13864
13926
|
insert_hydration(target, div, anchor);
|
@@ -13933,7 +13995,7 @@ function create_fragment$5(ctx) {
|
|
13933
13995
|
h() {
|
13934
13996
|
attr(button, "data-layer-id", /*layerId*/ ctx[0]);
|
13935
13997
|
attr(button, "style", button_style_value = [/*style*/ ctx[3], /*overrideStyle*/ ctx[2]].join(' '));
|
13936
|
-
attr(button, "class", "v2-button svelte-
|
13998
|
+
attr(button, "class", "v2-button svelte-i9kun1");
|
13937
13999
|
},
|
13938
14000
|
m(target, anchor) {
|
13939
14001
|
insert_hydration(target, button, anchor);
|
@@ -14108,15 +14170,13 @@ function instance$5($$self, $$props, $$invalidate) {
|
|
14108
14170
|
$$self.$$.update = () => {
|
14109
14171
|
if ($$self.$$.dirty & /*props*/ 2) {
|
14110
14172
|
$$invalidate(3, style = objToStyle({
|
14111
|
-
|
14112
|
-
|
14113
|
-
|
14114
|
-
|
14115
|
-
|
14116
|
-
|
14117
|
-
|
14118
|
-
transition: 'background-color 0.12s, border-color 0.12s, color 0.12s'
|
14119
|
-
},
|
14173
|
+
display: 'inline-flex',
|
14174
|
+
gap: '0.65em',
|
14175
|
+
alignItems: 'center',
|
14176
|
+
justifyContent: 'center',
|
14177
|
+
outline: 0,
|
14178
|
+
border: 0,
|
14179
|
+
transition: 'background-color 0.12s, border-color 0.12s, color 0.12s',
|
14120
14180
|
width: props.width,
|
14121
14181
|
...VARIANTS.size[props.size ?? 'medium'],
|
14122
14182
|
...VARIANTS.color[props.color ?? 'default'],
|
@@ -14124,7 +14184,8 @@ function instance$5($$self, $$props, $$invalidate) {
|
|
14124
14184
|
...VARIANTS.round[props.round ?? 'default'],
|
14125
14185
|
...props.iconAngle
|
14126
14186
|
? { flexDirection: props.iconAngle }
|
14127
|
-
: {}
|
14187
|
+
: {},
|
14188
|
+
...toCssCommon(props)
|
14128
14189
|
}));
|
14129
14190
|
}
|
14130
14191
|
};
|
@@ -14165,23 +14226,6 @@ class Button extends SvelteComponent {
|
|
14165
14226
|
}
|
14166
14227
|
}
|
14167
14228
|
|
14168
|
-
const toCssBorder = (p) => {
|
14169
|
-
return {
|
14170
|
-
borderStyle: p?.style,
|
14171
|
-
borderColor: p?.color,
|
14172
|
-
borderWidth: p ? `${p.size}px` : undefined,
|
14173
|
-
};
|
14174
|
-
};
|
14175
|
-
const toCssPosition = (p) => {
|
14176
|
-
return {
|
14177
|
-
position: p?.position ?? 'static',
|
14178
|
-
top: p?.top,
|
14179
|
-
left: p?.left,
|
14180
|
-
bottom: p?.bottom,
|
14181
|
-
right: p?.right,
|
14182
|
-
};
|
14183
|
-
};
|
14184
|
-
|
14185
14229
|
/* src/components-v2/layout/Layout.svelte generated by Svelte v3.53.1 */
|
14186
14230
|
|
14187
14231
|
function create_fragment$4(ctx) {
|
@@ -14283,20 +14327,14 @@ function instance$4($$self, $$props, $$invalidate) {
|
|
14283
14327
|
justifyContent: props.justify,
|
14284
14328
|
rowGap: props.rowGap,
|
14285
14329
|
columnGap: props.columnGap,
|
14286
|
-
backgroundColor: props.backgroundColor,
|
14287
|
-
boxShadow: props.shadow,
|
14288
|
-
paddingTop: props.paddingTop,
|
14289
|
-
paddingLeft: props.paddingLeft,
|
14290
|
-
paddingRight: props.paddingRight,
|
14291
|
-
paddingBottom: props.paddingBottom,
|
14292
|
-
borderRadius: props.borderRadius,
|
14293
14330
|
width: props.width,
|
14294
|
-
...
|
14295
|
-
...
|
14296
|
-
...props.backgroundImage
|
14297
|
-
|
14298
|
-
|
14299
|
-
|
14331
|
+
...toCssShadow(props),
|
14332
|
+
...toCssRadius(props),
|
14333
|
+
...toCssBackgroundImage(props.backgroundImage),
|
14334
|
+
...toCssBackgroundColor(props),
|
14335
|
+
...toCssCommon(props),
|
14336
|
+
...toCssPadding(props),
|
14337
|
+
...toCssBorder(props)
|
14300
14338
|
}));
|
14301
14339
|
}
|
14302
14340
|
};
|
@@ -14357,7 +14395,7 @@ function instance$3($$self, $$props, $$invalidate) {
|
|
14357
14395
|
let escapedHTML;
|
14358
14396
|
let style;
|
14359
14397
|
let { layerId } = $$props;
|
14360
|
-
let { props = {} } = $$props;
|
14398
|
+
let { props = { content: '' } } = $$props;
|
14361
14399
|
|
14362
14400
|
$$self.$$set = $$props => {
|
14363
14401
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
@@ -14375,16 +14413,15 @@ function instance$3($$self, $$props, $$invalidate) {
|
|
14375
14413
|
position: props?.position ?? 'static',
|
14376
14414
|
fontWeight: props.fontWeight,
|
14377
14415
|
fontSize: props.fontSize,
|
14416
|
+
color: props.color,
|
14378
14417
|
textAlign: props.align,
|
14379
14418
|
wordBreak: 'break-all',
|
14380
|
-
backgroundColor: props.backgroundColor,
|
14381
|
-
paddingTop: props.paddingTop,
|
14382
|
-
paddingLeft: props.paddingLeft,
|
14383
|
-
paddingRight: props.paddingRight,
|
14384
|
-
paddingBottom: props.paddingBottom,
|
14385
|
-
borderRadius: props.borderRadius,
|
14386
14419
|
width: props.width,
|
14387
|
-
...
|
14420
|
+
...toCssRadius(props),
|
14421
|
+
...toCssBackgroundColor(props),
|
14422
|
+
...toCssCommon(props),
|
14423
|
+
...toCssPosition(props),
|
14424
|
+
...toCssBorder(props)
|
14388
14425
|
}));
|
14389
14426
|
}
|
14390
14427
|
};
|
@@ -14532,7 +14569,8 @@ function instance$2($$self, $$props, $$invalidate) {
|
|
14532
14569
|
width: `${size}px`,
|
14533
14570
|
height: `${size}px`,
|
14534
14571
|
...VARIANTS.shape[props.shape ?? 'square'],
|
14535
|
-
...props.bordered && { border: `1px solid #dbdbdb` }
|
14572
|
+
...props.bordered && { border: `1px solid #dbdbdb` },
|
14573
|
+
...toCssCommon(props)
|
14536
14574
|
}));
|
14537
14575
|
}
|
14538
14576
|
};
|
@@ -14683,7 +14721,8 @@ function instance$1($$self, $$props, $$invalidate) {
|
|
14683
14721
|
alignItems: 'center',
|
14684
14722
|
justifyContent: 'center',
|
14685
14723
|
overflow: 'hidden',
|
14686
|
-
wordBreak: 'break-all'
|
14724
|
+
wordBreak: 'break-all',
|
14725
|
+
...toCssCommon(props)
|
14687
14726
|
}));
|
14688
14727
|
}
|
14689
14728
|
|
@@ -14805,7 +14844,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
14805
14844
|
width: `${size}px`,
|
14806
14845
|
height: `${size}px`,
|
14807
14846
|
...props.bordered && { border: '1px solid #666' },
|
14808
|
-
...
|
14847
|
+
...toCssCommon(props)
|
14809
14848
|
}));
|
14810
14849
|
}
|
14811
14850
|
};
|