@plaidev/karte-action-sdk 1.1.197 → 1.1.198-28170852.9d9fb983
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hydrate/index.es.d.ts +3 -1
- package/dist/hydrate/index.es.js +124 -115
- package/dist/index.es.d.ts +3 -1
- package/dist/index.es.js +124 -116
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1346,10 +1346,8 @@ const loadActionTableQuery = async (config, api_key, endpoint) => {
|
|
1346
1346
|
/** @internal */
|
1347
1347
|
const loadActionTable = async (config, api_key, endpoint) => {
|
1348
1348
|
console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
|
1349
|
-
console.log("load action table", config);
|
1350
1349
|
const results = config.map(c => c.preview_value)
|
1351
1350
|
;
|
1352
|
-
console.log("results", results);
|
1353
1351
|
return config.reduce((acc, c, i) => {
|
1354
1352
|
const value = results[i] ?? c.query.default_value;
|
1355
1353
|
if (value) {
|
@@ -1370,6 +1368,17 @@ async function setupActionTable(localVariablesQuery, apiKey) {
|
|
1370
1368
|
success,
|
1371
1369
|
};
|
1372
1370
|
}
|
1371
|
+
/** @internal */
|
1372
|
+
function initActionTable(localVariablesQuery) {
|
1373
|
+
const initValues = {
|
1374
|
+
// default values
|
1375
|
+
action_table: [],
|
1376
|
+
};
|
1377
|
+
localVariablesQuery?.forEach((query) => {
|
1378
|
+
initValues[query.name] = [];
|
1379
|
+
});
|
1380
|
+
setVariables(initValues);
|
1381
|
+
}
|
1373
1382
|
|
1374
1383
|
/**
|
1375
1384
|
* モーダル(ポップアップ)に関連するコードの管理
|
@@ -1563,7 +1572,6 @@ function createModal(App, options = {
|
|
1563
1572
|
context: { api_key: '' },
|
1564
1573
|
}) {
|
1565
1574
|
let app = null;
|
1566
|
-
console.log("start modal");
|
1567
1575
|
const data = {
|
1568
1576
|
...options.props,
|
1569
1577
|
...options.variables,
|
@@ -1669,6 +1677,7 @@ function createModal(App, options = {
|
|
1669
1677
|
// ここからメインの処理
|
1670
1678
|
initialize({ send: options.send, initialState: data.initial_state });
|
1671
1679
|
// ActionTable APIへの非同期リクエスト
|
1680
|
+
initActionTable(options.localVariablesQuery);
|
1672
1681
|
let actionTablePromise = null;
|
1673
1682
|
if (options.localVariablesQuery && data.api_key) {
|
1674
1683
|
actionTablePromise = setupActionTable(options.localVariablesQuery, data.api_key);
|
@@ -2553,7 +2562,7 @@ class State extends SvelteComponent {
|
|
2553
2562
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
2554
2563
|
|
2555
2564
|
function add_css$t(target) {
|
2556
|
-
append_styles(target, "svelte-
|
2565
|
+
append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
|
2557
2566
|
}
|
2558
2567
|
|
2559
2568
|
// (23:0) {#if $state === path}
|
@@ -2580,7 +2589,7 @@ function create_if_block$8(ctx) {
|
|
2580
2589
|
},
|
2581
2590
|
h() {
|
2582
2591
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
2583
|
-
attr(div, "class", "state-item svelte-
|
2592
|
+
attr(div, "class", "state-item svelte-2qb6dm");
|
2584
2593
|
},
|
2585
2594
|
m(target, anchor) {
|
2586
2595
|
insert_hydration(target, div, anchor);
|
@@ -2939,7 +2948,7 @@ function customAnimation(node, { transform, animationStyle, delay = 0, duration
|
|
2939
2948
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
2940
2949
|
|
2941
2950
|
function add_css$s(target) {
|
2942
|
-
append_styles(target, "svelte-
|
2951
|
+
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}");
|
2943
2952
|
}
|
2944
2953
|
|
2945
2954
|
// (9:0) {#if backgroundOverlay}
|
@@ -2959,7 +2968,7 @@ function create_if_block$7(ctx) {
|
|
2959
2968
|
this.h();
|
2960
2969
|
},
|
2961
2970
|
h() {
|
2962
|
-
attr(div, "class", "background svelte-
|
2971
|
+
attr(div, "class", "background svelte-1d4fta");
|
2963
2972
|
},
|
2964
2973
|
m(target, anchor) {
|
2965
2974
|
insert_hydration(target, div, anchor);
|
@@ -3074,7 +3083,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3074
3083
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3075
3084
|
|
3076
3085
|
function add_css$r(target) {
|
3077
|
-
append_styles(target, "svelte-
|
3086
|
+
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}");
|
3078
3087
|
}
|
3079
3088
|
|
3080
3089
|
// (50:0) {:else}
|
@@ -3113,7 +3122,7 @@ function create_else_block$3(ctx) {
|
|
3113
3122
|
},
|
3114
3123
|
h() {
|
3115
3124
|
set_attributes(button, button_data);
|
3116
|
-
toggle_class(button, "svelte-
|
3125
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3117
3126
|
},
|
3118
3127
|
m(target, anchor) {
|
3119
3128
|
insert_hydration(target, button, anchor);
|
@@ -3152,7 +3161,7 @@ function create_else_block$3(ctx) {
|
|
3152
3161
|
dataAttrStopPropagation('click')
|
3153
3162
|
]));
|
3154
3163
|
|
3155
|
-
toggle_class(button, "svelte-
|
3164
|
+
toggle_class(button, "svelte-1tg0tf", true);
|
3156
3165
|
},
|
3157
3166
|
i(local) {
|
3158
3167
|
if (current) return;
|
@@ -3193,7 +3202,7 @@ function create_if_block_2(ctx) {
|
|
3193
3202
|
this.h();
|
3194
3203
|
},
|
3195
3204
|
h() {
|
3196
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3205
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1tg0tf"));
|
3197
3206
|
attr(div, "style", /*style*/ ctx[1]);
|
3198
3207
|
},
|
3199
3208
|
m(target, anchor) {
|
@@ -3293,7 +3302,7 @@ function create_if_block_1$2(ctx) {
|
|
3293
3302
|
},
|
3294
3303
|
h() {
|
3295
3304
|
set_attributes(a, a_data);
|
3296
|
-
toggle_class(a, "svelte-
|
3305
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3297
3306
|
},
|
3298
3307
|
m(target, anchor) {
|
3299
3308
|
insert_hydration(target, a, anchor);
|
@@ -3335,7 +3344,7 @@ function create_if_block_1$2(ctx) {
|
|
3335
3344
|
dataAttrStopPropagation('click')
|
3336
3345
|
]));
|
3337
3346
|
|
3338
|
-
toggle_class(a, "svelte-
|
3347
|
+
toggle_class(a, "svelte-1tg0tf", true);
|
3339
3348
|
},
|
3340
3349
|
i(local) {
|
3341
3350
|
if (current) return;
|
@@ -3376,7 +3385,7 @@ function create_if_block$6(ctx) {
|
|
3376
3385
|
this.h();
|
3377
3386
|
},
|
3378
3387
|
h() {
|
3379
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3388
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1tg0tf"));
|
3380
3389
|
attr(div, "style", /*style*/ ctx[1]);
|
3381
3390
|
},
|
3382
3391
|
m(target, anchor) {
|
@@ -3584,7 +3593,7 @@ class Button extends SvelteComponent {
|
|
3584
3593
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3585
3594
|
|
3586
3595
|
function add_css$q(target) {
|
3587
|
-
append_styles(target, "svelte-
|
3596
|
+
append_styles(target, "svelte-yvwr7u", ".modal.svelte-yvwr7u{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-yvwr7u > .button{flex:auto;display:flex}.close.svelte-yvwr7u{position:absolute;top:0;right:0}.close.svelte-yvwr7u > .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-yvwr7u > .button:hover{transform:rotate(90deg)}.modal-content.svelte-yvwr7u{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
3588
3597
|
}
|
3589
3598
|
|
3590
3599
|
// (145:0) {#if visible}
|
@@ -3625,7 +3634,7 @@ function create_if_block$5(ctx) {
|
|
3625
3634
|
this.h();
|
3626
3635
|
},
|
3627
3636
|
h() {
|
3628
|
-
attr(div, "class", "modal svelte-
|
3637
|
+
attr(div, "class", "modal svelte-yvwr7u");
|
3629
3638
|
attr(div, "role", "dialog");
|
3630
3639
|
attr(div, "aria-modal", "true");
|
3631
3640
|
attr(div, "style", div_style_value = "" + /*pos*/ ctx[16] + " " + /*marginStyle*/ ctx[14] + " " + ElasticityStyle[/*overwriteElasticity*/ ctx[17]] + "");
|
@@ -3713,7 +3722,7 @@ function create_if_block_1$1(ctx) {
|
|
3713
3722
|
this.h();
|
3714
3723
|
},
|
3715
3724
|
h() {
|
3716
|
-
attr(div, "class", "close svelte-
|
3725
|
+
attr(div, "class", "close svelte-yvwr7u");
|
3717
3726
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[20] + 1);
|
3718
3727
|
},
|
3719
3728
|
m(target, anchor) {
|
@@ -3838,7 +3847,7 @@ function create_default_slot$6(ctx) {
|
|
3838
3847
|
this.h();
|
3839
3848
|
},
|
3840
3849
|
h() {
|
3841
|
-
attr(div, "class", "modal-content svelte-
|
3850
|
+
attr(div, "class", "modal-content svelte-yvwr7u");
|
3842
3851
|
attr(div, "style", /*_style*/ ctx[4]);
|
3843
3852
|
},
|
3844
3853
|
m(target, anchor) {
|
@@ -4348,7 +4357,7 @@ class Grid extends SvelteComponent {
|
|
4348
4357
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4349
4358
|
|
4350
4359
|
function add_css$p(target) {
|
4351
|
-
append_styles(target, "svelte-
|
4360
|
+
append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
|
4352
4361
|
}
|
4353
4362
|
|
4354
4363
|
function create_fragment$r(ctx) {
|
@@ -4382,8 +4391,8 @@ function create_fragment$r(ctx) {
|
|
4382
4391
|
this.h();
|
4383
4392
|
},
|
4384
4393
|
h() {
|
4385
|
-
attr(div0, "class", "grid-item-inner svelte-
|
4386
|
-
attr(div1, "class", "grid-item svelte-
|
4394
|
+
attr(div0, "class", "grid-item-inner svelte-n7kdl3");
|
4395
|
+
attr(div1, "class", "grid-item svelte-n7kdl3");
|
4387
4396
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
4388
4397
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
4389
4398
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -4705,7 +4714,7 @@ class RenderText extends SvelteComponent {
|
|
4705
4714
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
4706
4715
|
|
4707
4716
|
function add_css$o(target) {
|
4708
|
-
append_styles(target, "svelte-
|
4717
|
+
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}");
|
4709
4718
|
}
|
4710
4719
|
|
4711
4720
|
// (93:2) {:else}
|
@@ -4735,8 +4744,8 @@ function create_else_block$1(ctx) {
|
|
4735
4744
|
this.h();
|
4736
4745
|
},
|
4737
4746
|
h() {
|
4738
|
-
attr(div0, "class", "text-element-inner svelte-
|
4739
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4747
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4748
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4740
4749
|
attr(div1, "style", /*style*/ ctx[5]);
|
4741
4750
|
},
|
4742
4751
|
m(target, anchor) {
|
@@ -4750,7 +4759,7 @@ function create_else_block$1(ctx) {
|
|
4750
4759
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4751
4760
|
rendertext.$set(rendertext_changes);
|
4752
4761
|
|
4753
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4762
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"))) {
|
4754
4763
|
attr(div1, "class", div1_class_value);
|
4755
4764
|
}
|
4756
4765
|
|
@@ -4825,12 +4834,12 @@ function create_if_block$3(ctx) {
|
|
4825
4834
|
this.h();
|
4826
4835
|
},
|
4827
4836
|
h() {
|
4828
|
-
attr(div0, "class", "text-element-inner svelte-
|
4837
|
+
attr(div0, "class", "text-element-inner svelte-9ixs0b");
|
4829
4838
|
attr(a, "href", '');
|
4830
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
4839
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-9ixs0b"));
|
4831
4840
|
attr(a, "style", /*style*/ ctx[5]);
|
4832
|
-
attr(div1, "class", "tooltip svelte-
|
4833
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
4841
|
+
attr(div1, "class", "tooltip svelte-9ixs0b");
|
4842
|
+
attr(div2, "class", "tooltip tooltip-error svelte-9ixs0b");
|
4834
4843
|
},
|
4835
4844
|
m(target, anchor) {
|
4836
4845
|
insert_hydration(target, a, anchor);
|
@@ -4856,7 +4865,7 @@ function create_if_block$3(ctx) {
|
|
4856
4865
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
4857
4866
|
rendertext.$set(rendertext_changes);
|
4858
4867
|
|
4859
|
-
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-
|
4868
|
+
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"))) {
|
4860
4869
|
attr(a, "class", a_class_value);
|
4861
4870
|
}
|
4862
4871
|
|
@@ -4918,7 +4927,7 @@ function create_fragment$p(ctx) {
|
|
4918
4927
|
this.h();
|
4919
4928
|
},
|
4920
4929
|
h() {
|
4921
|
-
attr(div, "class", "text-element-wrapper svelte-
|
4930
|
+
attr(div, "class", "text-element-wrapper svelte-9ixs0b");
|
4922
4931
|
},
|
4923
4932
|
m(target, anchor) {
|
4924
4933
|
insert_hydration(target, div, anchor);
|
@@ -5083,7 +5092,7 @@ class TextElement extends SvelteComponent {
|
|
5083
5092
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5084
5093
|
|
5085
5094
|
function add_css$n(target) {
|
5086
|
-
append_styles(target, "svelte-
|
5095
|
+
append_styles(target, "svelte-3hgcnq", ".text-button-element.svelte-3hgcnq{width:100%;height:100%}.text-button-element.svelte-3hgcnq > .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:#000000;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-3hgcnq > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-3hgcnq > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-3hgcnq > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
5087
5096
|
}
|
5088
5097
|
|
5089
5098
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5152,7 +5161,7 @@ function create_fragment$o(ctx) {
|
|
5152
5161
|
this.h();
|
5153
5162
|
},
|
5154
5163
|
h() {
|
5155
|
-
attr(div, "class", "text-button-element svelte-
|
5164
|
+
attr(div, "class", "text-button-element svelte-3hgcnq");
|
5156
5165
|
},
|
5157
5166
|
m(target, anchor) {
|
5158
5167
|
insert_hydration(target, div, anchor);
|
@@ -5244,7 +5253,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5244
5253
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5245
5254
|
|
5246
5255
|
function add_css$m(target) {
|
5247
|
-
append_styles(target, "svelte-
|
5256
|
+
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%}");
|
5248
5257
|
}
|
5249
5258
|
|
5250
5259
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5272,7 +5281,7 @@ function create_default_slot$4(ctx) {
|
|
5272
5281
|
this.h();
|
5273
5282
|
},
|
5274
5283
|
h() {
|
5275
|
-
attr(img, "class", "image svelte-
|
5284
|
+
attr(img, "class", "image svelte-t6tu0e");
|
5276
5285
|
attr(img, "loading", "lazy");
|
5277
5286
|
attr(img, "width", "auto");
|
5278
5287
|
attr(img, "height", "auto");
|
@@ -5332,7 +5341,7 @@ function create_fragment$n(ctx) {
|
|
5332
5341
|
this.h();
|
5333
5342
|
},
|
5334
5343
|
h() {
|
5335
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5344
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e");
|
5336
5345
|
},
|
5337
5346
|
m(target, anchor) {
|
5338
5347
|
insert_hydration(target, div, anchor);
|
@@ -5351,7 +5360,7 @@ function create_fragment$n(ctx) {
|
|
5351
5360
|
|
5352
5361
|
button.$set(button_changes);
|
5353
5362
|
|
5354
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5363
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-t6tu0e")) {
|
5355
5364
|
attr(div, "class", div_class_value);
|
5356
5365
|
}
|
5357
5366
|
},
|
@@ -5423,7 +5432,7 @@ class ImageElement extends SvelteComponent {
|
|
5423
5432
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
5424
5433
|
|
5425
5434
|
function add_css$l(target) {
|
5426
|
-
append_styles(target, "svelte-
|
5435
|
+
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}");
|
5427
5436
|
}
|
5428
5437
|
|
5429
5438
|
function create_fragment$m(ctx) {
|
@@ -5446,7 +5455,7 @@ function create_fragment$m(ctx) {
|
|
5446
5455
|
this.h();
|
5447
5456
|
},
|
5448
5457
|
h() {
|
5449
|
-
attr(div, "class", "list svelte-
|
5458
|
+
attr(div, "class", "list svelte-aquv6z");
|
5450
5459
|
attr(div, "style", /*style*/ ctx[0]);
|
5451
5460
|
},
|
5452
5461
|
m(target, anchor) {
|
@@ -5580,7 +5589,7 @@ class List extends SvelteComponent {
|
|
5580
5589
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
5581
5590
|
|
5582
5591
|
function add_css$k(target) {
|
5583
|
-
append_styles(target, "svelte-
|
5592
|
+
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}");
|
5584
5593
|
}
|
5585
5594
|
|
5586
5595
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -5663,7 +5672,7 @@ function create_fragment$l(ctx) {
|
|
5663
5672
|
this.h();
|
5664
5673
|
},
|
5665
5674
|
h() {
|
5666
|
-
attr(div, "class", "list-item svelte-
|
5675
|
+
attr(div, "class", "list-item svelte-9n97pe");
|
5667
5676
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
5668
5677
|
},
|
5669
5678
|
m(target, anchor) {
|
@@ -5789,7 +5798,7 @@ class ListItem extends SvelteComponent {
|
|
5789
5798
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
5790
5799
|
|
5791
5800
|
function add_css$j(target) {
|
5792
|
-
append_styles(target, "svelte-
|
5801
|
+
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}");
|
5793
5802
|
}
|
5794
5803
|
|
5795
5804
|
function create_fragment$k(ctx) {
|
@@ -5807,7 +5816,7 @@ function create_fragment$k(ctx) {
|
|
5807
5816
|
this.h();
|
5808
5817
|
},
|
5809
5818
|
h() {
|
5810
|
-
attr(div, "class", "embed svelte-
|
5819
|
+
attr(div, "class", "embed svelte-wocq4p");
|
5811
5820
|
attr(div, "style", /*_style*/ ctx[1]);
|
5812
5821
|
},
|
5813
5822
|
m(target, anchor) {
|
@@ -5850,7 +5859,7 @@ class EmbedElement extends SvelteComponent {
|
|
5850
5859
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
5851
5860
|
|
5852
5861
|
function add_css$i(target) {
|
5853
|
-
append_styles(target, "svelte-
|
5862
|
+
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%}");
|
5854
5863
|
}
|
5855
5864
|
|
5856
5865
|
function create_fragment$j(ctx) {
|
@@ -5873,7 +5882,7 @@ function create_fragment$j(ctx) {
|
|
5873
5882
|
},
|
5874
5883
|
h() {
|
5875
5884
|
attr(div0, "class", "karte-player");
|
5876
|
-
attr(div1, "class", "embed svelte-
|
5885
|
+
attr(div1, "class", "embed svelte-vikz49");
|
5877
5886
|
attr(div1, "style", /*_style*/ ctx[0]);
|
5878
5887
|
},
|
5879
5888
|
m(target, anchor) {
|
@@ -6215,7 +6224,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6215
6224
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6216
6225
|
|
6217
6226
|
function add_css$h(target) {
|
6218
|
-
append_styles(target, "svelte-
|
6227
|
+
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%}");
|
6219
6228
|
}
|
6220
6229
|
|
6221
6230
|
function create_fragment$i(ctx) {
|
@@ -6238,7 +6247,7 @@ function create_fragment$i(ctx) {
|
|
6238
6247
|
},
|
6239
6248
|
h() {
|
6240
6249
|
attr(div0, "class", "karte-player");
|
6241
|
-
attr(div1, "class", "embed svelte-
|
6250
|
+
attr(div1, "class", "embed svelte-vikz49");
|
6242
6251
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6243
6252
|
},
|
6244
6253
|
m(target, anchor) {
|
@@ -6422,7 +6431,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
6422
6431
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
6423
6432
|
|
6424
6433
|
function add_css$g(target) {
|
6425
|
-
append_styles(target, "svelte-
|
6434
|
+
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}");
|
6426
6435
|
}
|
6427
6436
|
|
6428
6437
|
function create_fragment$h(ctx) {
|
@@ -6452,12 +6461,12 @@ function create_fragment$h(ctx) {
|
|
6452
6461
|
this.h();
|
6453
6462
|
},
|
6454
6463
|
h() {
|
6455
|
-
attr(textarea, "class", "textarea svelte-
|
6464
|
+
attr(textarea, "class", "textarea svelte-kyay3k");
|
6456
6465
|
textarea.value = /*$value*/ ctx[3];
|
6457
6466
|
textarea.required = /*required*/ ctx[0];
|
6458
6467
|
attr(textarea, "rows", /*rows*/ ctx[1]);
|
6459
6468
|
attr(textarea, "placeholder", /*placeholder*/ ctx[2]);
|
6460
|
-
attr(div, "class", "textarea-wrapper svelte-
|
6469
|
+
attr(div, "class", "textarea-wrapper svelte-kyay3k");
|
6461
6470
|
},
|
6462
6471
|
m(target, anchor) {
|
6463
6472
|
insert_hydration(target, div, anchor);
|
@@ -6553,7 +6562,7 @@ class FormTextarea extends SvelteComponent {
|
|
6553
6562
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
6554
6563
|
|
6555
6564
|
function add_css$f(target) {
|
6556
|
-
append_styles(target, "svelte-
|
6565
|
+
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}");
|
6557
6566
|
}
|
6558
6567
|
|
6559
6568
|
function get_each_context$5(ctx, list, i) {
|
@@ -6609,14 +6618,14 @@ function create_each_block$5(ctx) {
|
|
6609
6618
|
},
|
6610
6619
|
h() {
|
6611
6620
|
attr(input, "type", "radio");
|
6612
|
-
attr(input, "class", "radio-button-input svelte-
|
6621
|
+
attr(input, "class", "radio-button-input svelte-17s08g");
|
6613
6622
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
6614
6623
|
attr(input, "name", /*name*/ ctx[0]);
|
6615
6624
|
input.value = input_value_value = /*option*/ ctx[16];
|
6616
6625
|
input.checked = input_checked_value = /*option*/ ctx[16] === /*_value*/ ctx[3];
|
6617
|
-
attr(span, "class", "radio-button-text svelte-
|
6626
|
+
attr(span, "class", "radio-button-text svelte-17s08g");
|
6618
6627
|
attr(span, "style", /*_textStyle*/ ctx[2]);
|
6619
|
-
attr(label, "class", "radio-button svelte-
|
6628
|
+
attr(label, "class", "radio-button svelte-17s08g");
|
6620
6629
|
},
|
6621
6630
|
m(target, anchor) {
|
6622
6631
|
insert_hydration(target, label, anchor);
|
@@ -6695,7 +6704,7 @@ function create_fragment$g(ctx) {
|
|
6695
6704
|
this.h();
|
6696
6705
|
},
|
6697
6706
|
h() {
|
6698
|
-
attr(div, "class", "radio-buttons svelte-
|
6707
|
+
attr(div, "class", "radio-buttons svelte-17s08g");
|
6699
6708
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
6700
6709
|
},
|
6701
6710
|
m(target, anchor) {
|
@@ -6862,7 +6871,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
6862
6871
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
6863
6872
|
|
6864
6873
|
function add_css$e(target) {
|
6865
|
-
append_styles(target, "svelte-
|
6874
|
+
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}");
|
6866
6875
|
}
|
6867
6876
|
|
6868
6877
|
function get_each_context$4(ctx, list, i) {
|
@@ -7033,10 +7042,10 @@ function create_fragment$f(ctx) {
|
|
7033
7042
|
this.h();
|
7034
7043
|
},
|
7035
7044
|
h() {
|
7036
|
-
attr(select, "class", "select-select svelte-
|
7045
|
+
attr(select, "class", "select-select svelte-t9ynyj");
|
7037
7046
|
attr(select, "style", /*style*/ ctx[3]);
|
7038
|
-
attr(div0, "class", "select-icon svelte-
|
7039
|
-
attr(div1, "class", "select svelte-
|
7047
|
+
attr(div0, "class", "select-icon svelte-t9ynyj");
|
7048
|
+
attr(div1, "class", "select svelte-t9ynyj");
|
7040
7049
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7041
7050
|
},
|
7042
7051
|
m(target, anchor) {
|
@@ -7238,7 +7247,7 @@ class FormSelect extends SvelteComponent {
|
|
7238
7247
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7239
7248
|
|
7240
7249
|
function add_css$d(target) {
|
7241
|
-
append_styles(target, "svelte-
|
7250
|
+
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}");
|
7242
7251
|
}
|
7243
7252
|
|
7244
7253
|
function get_each_context$3(ctx, list, i) {
|
@@ -7300,19 +7309,19 @@ function create_each_block$3(ctx) {
|
|
7300
7309
|
this.h();
|
7301
7310
|
},
|
7302
7311
|
h() {
|
7303
|
-
attr(input, "class", "check-box-input svelte-
|
7312
|
+
attr(input, "class", "check-box-input svelte-1p65cg8");
|
7304
7313
|
attr(input, "type", "checkbox");
|
7305
7314
|
attr(input, "name", /*name*/ ctx[0]);
|
7306
7315
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
7307
|
-
attr(span0, "class", "check-box-icon svelte-
|
7316
|
+
attr(span0, "class", "check-box-icon svelte-1p65cg8");
|
7308
7317
|
|
7309
7318
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7310
7319
|
? ' _checked'
|
7311
|
-
: ''}`) + " svelte-
|
7320
|
+
: ''}`) + " svelte-1p65cg8"));
|
7312
7321
|
|
7313
|
-
attr(span2, "class", "check-box-text svelte-
|
7322
|
+
attr(span2, "class", "check-box-text svelte-1p65cg8");
|
7314
7323
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7315
|
-
attr(label, "class", "check-box svelte-
|
7324
|
+
attr(label, "class", "check-box svelte-1p65cg8");
|
7316
7325
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
7317
7326
|
},
|
7318
7327
|
m(target, anchor) {
|
@@ -7344,7 +7353,7 @@ function create_each_block$3(ctx) {
|
|
7344
7353
|
|
7345
7354
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
7346
7355
|
? ' _checked'
|
7347
|
-
: ''}`) + " svelte-
|
7356
|
+
: ''}`) + " svelte-1p65cg8"))) {
|
7348
7357
|
attr(span1, "class", span1_class_value);
|
7349
7358
|
}
|
7350
7359
|
|
@@ -7397,7 +7406,7 @@ function create_fragment$e(ctx) {
|
|
7397
7406
|
this.h();
|
7398
7407
|
},
|
7399
7408
|
h() {
|
7400
|
-
attr(div, "class", "check-boxes svelte-
|
7409
|
+
attr(div, "class", "check-boxes svelte-1p65cg8");
|
7401
7410
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7402
7411
|
},
|
7403
7412
|
m(target, anchor) {
|
@@ -7572,7 +7581,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
7572
7581
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
7573
7582
|
|
7574
7583
|
function add_css$c(target) {
|
7575
|
-
append_styles(target, "svelte-
|
7584
|
+
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}");
|
7576
7585
|
}
|
7577
7586
|
|
7578
7587
|
function get_each_context$2(ctx, list, i) {
|
@@ -7607,7 +7616,7 @@ function create_each_block$2(ctx) {
|
|
7607
7616
|
this.h();
|
7608
7617
|
},
|
7609
7618
|
h() {
|
7610
|
-
attr(button, "class", "rating-button svelte-
|
7619
|
+
attr(button, "class", "rating-button svelte-zy2va9");
|
7611
7620
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[4](/*i*/ ctx[12] === /*_value*/ ctx[1]));
|
7612
7621
|
},
|
7613
7622
|
m(target, anchor) {
|
@@ -7670,7 +7679,7 @@ function create_fragment$d(ctx) {
|
|
7670
7679
|
this.h();
|
7671
7680
|
},
|
7672
7681
|
h() {
|
7673
|
-
attr(div, "class", "rating-buttons svelte-
|
7682
|
+
attr(div, "class", "rating-buttons svelte-zy2va9");
|
7674
7683
|
},
|
7675
7684
|
m(target, anchor) {
|
7676
7685
|
insert_hydration(target, div, anchor);
|
@@ -7807,7 +7816,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
7807
7816
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
7808
7817
|
|
7809
7818
|
function add_css$b(target) {
|
7810
|
-
append_styles(target, "svelte-
|
7819
|
+
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%)}");
|
7811
7820
|
}
|
7812
7821
|
|
7813
7822
|
function get_each_context$1(ctx, list, i) {
|
@@ -7843,9 +7852,9 @@ function create_each_block$1(ctx) {
|
|
7843
7852
|
},
|
7844
7853
|
h() {
|
7845
7854
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
7846
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7855
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-tbunko"));
|
7847
7856
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
7848
|
-
attr(button, "class", "rating-button svelte-
|
7857
|
+
attr(button, "class", "rating-button svelte-tbunko");
|
7849
7858
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
7850
7859
|
},
|
7851
7860
|
m(target, anchor) {
|
@@ -7861,7 +7870,7 @@ function create_each_block$1(ctx) {
|
|
7861
7870
|
p(new_ctx, dirty) {
|
7862
7871
|
ctx = new_ctx;
|
7863
7872
|
|
7864
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
7873
|
+
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"))) {
|
7865
7874
|
attr(img, "class", img_class_value);
|
7866
7875
|
}
|
7867
7876
|
|
@@ -7908,7 +7917,7 @@ function create_fragment$c(ctx) {
|
|
7908
7917
|
this.h();
|
7909
7918
|
},
|
7910
7919
|
h() {
|
7911
|
-
attr(div, "class", "rating-buttons svelte-
|
7920
|
+
attr(div, "class", "rating-buttons svelte-tbunko");
|
7912
7921
|
},
|
7913
7922
|
m(target, anchor) {
|
7914
7923
|
insert_hydration(target, div, anchor);
|
@@ -8016,7 +8025,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8016
8025
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
8017
8026
|
|
8018
8027
|
function add_css$a(target) {
|
8019
|
-
append_styles(target, "svelte-
|
8028
|
+
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%}");
|
8020
8029
|
}
|
8021
8030
|
|
8022
8031
|
function get_each_context(ctx, list, i) {
|
@@ -8062,9 +8071,9 @@ function create_if_block_1(ctx) {
|
|
8062
8071
|
attr(svg, "viewBox", "0 0 10 16");
|
8063
8072
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8064
8073
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
8065
|
-
attr(button, "class", "move-button svelte-
|
8074
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8066
8075
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
8067
|
-
attr(div, "class", "prev-button-container svelte-
|
8076
|
+
attr(div, "class", "prev-button-container svelte-ji1fh");
|
8068
8077
|
},
|
8069
8078
|
m(target, anchor) {
|
8070
8079
|
insert_hydration(target, div, anchor);
|
@@ -8130,9 +8139,9 @@ function create_if_block$1(ctx) {
|
|
8130
8139
|
attr(svg, "viewBox", "0 0 10 16");
|
8131
8140
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
8132
8141
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
8133
|
-
attr(button, "class", "move-button svelte-
|
8142
|
+
attr(button, "class", "move-button svelte-ji1fh");
|
8134
8143
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
8135
|
-
attr(div, "class", "next-button-container svelte-
|
8144
|
+
attr(div, "class", "next-button-container svelte-ji1fh");
|
8136
8145
|
},
|
8137
8146
|
m(target, anchor) {
|
8138
8147
|
insert_hydration(target, div, anchor);
|
@@ -8192,9 +8201,9 @@ function create_each_block(ctx) {
|
|
8192
8201
|
this.h();
|
8193
8202
|
},
|
8194
8203
|
h() {
|
8195
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
8204
|
+
attr(div, "class", "navigation-item-inner circle svelte-ji1fh");
|
8196
8205
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
8197
|
-
attr(button, "class", "navigation-item svelte-
|
8206
|
+
attr(button, "class", "navigation-item svelte-ji1fh");
|
8198
8207
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
8199
8208
|
},
|
8200
8209
|
m(target, anchor) {
|
@@ -8300,14 +8309,14 @@ function create_fragment$b(ctx) {
|
|
8300
8309
|
this.h();
|
8301
8310
|
},
|
8302
8311
|
h() {
|
8303
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8312
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"));
|
8304
8313
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
8305
|
-
attr(div1, "class", "container svelte-
|
8314
|
+
attr(div1, "class", "container svelte-ji1fh");
|
8306
8315
|
attr(div1, "style", /*_style*/ ctx[0]);
|
8307
|
-
attr(div2, "class", "navigation svelte-
|
8316
|
+
attr(div2, "class", "navigation svelte-ji1fh");
|
8308
8317
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
8309
8318
|
set_attributes(div3, div3_data);
|
8310
|
-
toggle_class(div3, "svelte-
|
8319
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8311
8320
|
},
|
8312
8321
|
m(target, anchor) {
|
8313
8322
|
insert_hydration(target, div3, anchor);
|
@@ -8349,7 +8358,7 @@ function create_fragment$b(ctx) {
|
|
8349
8358
|
}
|
8350
8359
|
}
|
8351
8360
|
|
8352
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
8361
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-ji1fh"))) {
|
8353
8362
|
attr(div0, "class", div0_class_value);
|
8354
8363
|
}
|
8355
8364
|
|
@@ -8415,7 +8424,7 @@ function create_fragment$b(ctx) {
|
|
8415
8424
|
}
|
8416
8425
|
|
8417
8426
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
8418
|
-
toggle_class(div3, "svelte-
|
8427
|
+
toggle_class(div3, "svelte-ji1fh", true);
|
8419
8428
|
},
|
8420
8429
|
i(local) {
|
8421
8430
|
if (current) return;
|
@@ -8927,7 +8936,7 @@ class Slide extends SvelteComponent {
|
|
8927
8936
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
8928
8937
|
|
8929
8938
|
function add_css$9(target) {
|
8930
|
-
append_styles(target, "svelte-
|
8939
|
+
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}");
|
8931
8940
|
}
|
8932
8941
|
|
8933
8942
|
function create_fragment$a(ctx) {
|
@@ -8955,9 +8964,9 @@ function create_fragment$a(ctx) {
|
|
8955
8964
|
this.h();
|
8956
8965
|
},
|
8957
8966
|
h() {
|
8958
|
-
attr(div0, "class", "item-inner svelte-
|
8967
|
+
attr(div0, "class", "item-inner svelte-9ygf1w");
|
8959
8968
|
attr(div0, "style", /*_style*/ ctx[0]);
|
8960
|
-
attr(div1, "class", "item svelte-
|
8969
|
+
attr(div1, "class", "item svelte-9ygf1w");
|
8961
8970
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
8962
8971
|
},
|
8963
8972
|
m(target, anchor) {
|
@@ -9083,7 +9092,7 @@ class SlideItem extends SvelteComponent {
|
|
9083
9092
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
9084
9093
|
|
9085
9094
|
function add_css$8(target) {
|
9086
|
-
append_styles(target, "svelte-
|
9095
|
+
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}");
|
9087
9096
|
}
|
9088
9097
|
|
9089
9098
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -9114,9 +9123,9 @@ function create_fragment$9(ctx) {
|
|
9114
9123
|
this.h();
|
9115
9124
|
},
|
9116
9125
|
h() {
|
9117
|
-
attr(div0, "class", "countdown-inner svelte-
|
9126
|
+
attr(div0, "class", "countdown-inner svelte-rroxiz");
|
9118
9127
|
attr(div0, "style", /*_style*/ ctx[0]);
|
9119
|
-
attr(div1, "class", "countdown svelte-
|
9128
|
+
attr(div1, "class", "countdown svelte-rroxiz");
|
9120
9129
|
},
|
9121
9130
|
m(target, anchor) {
|
9122
9131
|
insert_hydration(target, div1, anchor);
|
@@ -9246,7 +9255,7 @@ class Countdown extends SvelteComponent {
|
|
9246
9255
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
9247
9256
|
|
9248
9257
|
function add_css$7(target) {
|
9249
|
-
append_styles(target, "svelte-
|
9258
|
+
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}");
|
9250
9259
|
}
|
9251
9260
|
|
9252
9261
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -9329,7 +9338,7 @@ function create_fragment$8(ctx) {
|
|
9329
9338
|
this.h();
|
9330
9339
|
},
|
9331
9340
|
h() {
|
9332
|
-
attr(div, "class", "box svelte-
|
9341
|
+
attr(div, "class", "box svelte-1ccydfy");
|
9333
9342
|
},
|
9334
9343
|
m(target, anchor) {
|
9335
9344
|
insert_hydration(target, div, anchor);
|
@@ -9390,7 +9399,7 @@ class Box extends SvelteComponent {
|
|
9390
9399
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
9391
9400
|
|
9392
9401
|
function add_css$6(target) {
|
9393
|
-
append_styles(target, "svelte-
|
9402
|
+
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)}");
|
9394
9403
|
}
|
9395
9404
|
|
9396
9405
|
// (56:4) {#if svg}
|
@@ -9494,7 +9503,7 @@ function create_fragment$7(ctx) {
|
|
9494
9503
|
this.h();
|
9495
9504
|
},
|
9496
9505
|
h() {
|
9497
|
-
attr(div, "class", "icon svelte-
|
9506
|
+
attr(div, "class", "icon svelte-1mkvcuo");
|
9498
9507
|
},
|
9499
9508
|
m(target, anchor) {
|
9500
9509
|
insert_hydration(target, div, anchor);
|
@@ -9603,7 +9612,7 @@ class IconElement extends SvelteComponent {
|
|
9603
9612
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
9604
9613
|
|
9605
9614
|
function add_css$5(target) {
|
9606
|
-
append_styles(target, "svelte-
|
9615
|
+
append_styles(target, "svelte-ymsb9l", ".codeElement.svelte-ymsb9l{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
9607
9616
|
}
|
9608
9617
|
|
9609
9618
|
function create_fragment$6(ctx) {
|
@@ -9639,7 +9648,7 @@ function create_fragment$6(ctx) {
|
|
9639
9648
|
this.h();
|
9640
9649
|
},
|
9641
9650
|
h() {
|
9642
|
-
attr(div, "class", "codeElement svelte-
|
9651
|
+
attr(div, "class", "codeElement svelte-ymsb9l");
|
9643
9652
|
attr(div, "style", /*style*/ ctx[3]);
|
9644
9653
|
},
|
9645
9654
|
m(target, anchor) {
|
@@ -9728,7 +9737,7 @@ class CodeElement extends SvelteComponent {
|
|
9728
9737
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
9729
9738
|
|
9730
9739
|
function add_css$4(target) {
|
9731
|
-
append_styles(target, "svelte-
|
9740
|
+
append_styles(target, "svelte-1e71ejc", ".flex.svelte-1e71ejc{display:flex}");
|
9732
9741
|
}
|
9733
9742
|
|
9734
9743
|
function create_fragment$5(ctx) {
|
@@ -9752,7 +9761,7 @@ function create_fragment$5(ctx) {
|
|
9752
9761
|
this.h();
|
9753
9762
|
},
|
9754
9763
|
h() {
|
9755
|
-
attr(div, "class", "flex svelte-
|
9764
|
+
attr(div, "class", "flex svelte-1e71ejc");
|
9756
9765
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
9757
9766
|
},
|
9758
9767
|
m(target, anchor) {
|
@@ -9849,7 +9858,7 @@ class Flex extends SvelteComponent {
|
|
9849
9858
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
9850
9859
|
|
9851
9860
|
function add_css$3(target) {
|
9852
|
-
append_styles(target, "svelte-
|
9861
|
+
append_styles(target, "svelte-1p0bk1x", ".flex-item.svelte-1p0bk1x{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
9853
9862
|
}
|
9854
9863
|
|
9855
9864
|
function create_fragment$4(ctx) {
|
@@ -9872,7 +9881,7 @@ function create_fragment$4(ctx) {
|
|
9872
9881
|
this.h();
|
9873
9882
|
},
|
9874
9883
|
h() {
|
9875
|
-
attr(div, "class", "flex-item svelte-
|
9884
|
+
attr(div, "class", "flex-item svelte-1p0bk1x");
|
9876
9885
|
attr(div, "style", /*style*/ ctx[0]);
|
9877
9886
|
},
|
9878
9887
|
m(target, anchor) {
|
@@ -10292,7 +10301,7 @@ class GridModalState extends SvelteComponent {
|
|
10292
10301
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
10293
10302
|
|
10294
10303
|
function add_css$2(target) {
|
10295
|
-
append_styles(target, "svelte-
|
10304
|
+
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%}");
|
10296
10305
|
}
|
10297
10306
|
|
10298
10307
|
function create_fragment$2(ctx) {
|
@@ -10321,8 +10330,8 @@ function create_fragment$2(ctx) {
|
|
10321
10330
|
this.h();
|
10322
10331
|
},
|
10323
10332
|
h() {
|
10324
|
-
attr(div0, "class", "text-block-inner svelte-
|
10325
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10333
|
+
attr(div0, "class", "text-block-inner svelte-15pej1m");
|
10334
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"));
|
10326
10335
|
attr(div1, "style", /*style*/ ctx[2]);
|
10327
10336
|
},
|
10328
10337
|
m(target, anchor) {
|
@@ -10336,7 +10345,7 @@ function create_fragment$2(ctx) {
|
|
10336
10345
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
10337
10346
|
rendertext.$set(rendertext_changes);
|
10338
10347
|
|
10339
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
10348
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-15pej1m"))) {
|
10340
10349
|
attr(div1, "class", div1_class_value);
|
10341
10350
|
}
|
10342
10351
|
|
@@ -10414,7 +10423,7 @@ class TextBlock extends SvelteComponent {
|
|
10414
10423
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
10415
10424
|
|
10416
10425
|
function add_css$1(target) {
|
10417
|
-
append_styles(target, "svelte-
|
10426
|
+
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)}");
|
10418
10427
|
}
|
10419
10428
|
|
10420
10429
|
function create_fragment$1(ctx) {
|
@@ -10444,9 +10453,9 @@ function create_fragment$1(ctx) {
|
|
10444
10453
|
this.h();
|
10445
10454
|
},
|
10446
10455
|
h() {
|
10447
|
-
attr(button, "class", "text-button svelte-
|
10456
|
+
attr(button, "class", "text-button svelte-ff0k6r");
|
10448
10457
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
10449
|
-
attr(div, "class", "text-button-block svelte-
|
10458
|
+
attr(div, "class", "text-button-block svelte-ff0k6r");
|
10450
10459
|
attr(div, "style", /*_style*/ ctx[2]);
|
10451
10460
|
},
|
10452
10461
|
m(target, anchor) {
|
@@ -10552,7 +10561,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
10552
10561
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
10553
10562
|
|
10554
10563
|
function add_css(target) {
|
10555
|
-
append_styles(target, "svelte-
|
10564
|
+
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)}");
|
10556
10565
|
}
|
10557
10566
|
|
10558
10567
|
function create_fragment(ctx) {
|
@@ -10588,14 +10597,14 @@ function create_fragment(ctx) {
|
|
10588
10597
|
this.h();
|
10589
10598
|
},
|
10590
10599
|
h() {
|
10591
|
-
attr(img, "class", "image svelte-
|
10600
|
+
attr(img, "class", "image svelte-1pdw891");
|
10592
10601
|
attr(img, "loading", "lazy");
|
10593
10602
|
attr(img, "width", "auto");
|
10594
10603
|
attr(img, "height", "auto");
|
10595
10604
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
10596
10605
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
10597
10606
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10598
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10607
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"));
|
10599
10608
|
attr(div, "style", /*_style*/ ctx[5]);
|
10600
10609
|
},
|
10601
10610
|
m(target, anchor) {
|
@@ -10620,7 +10629,7 @@ function create_fragment(ctx) {
|
|
10620
10629
|
attr(img, "alt", /*alt*/ ctx[1]);
|
10621
10630
|
}
|
10622
10631
|
|
10623
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
10632
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1pdw891"))) {
|
10624
10633
|
attr(div, "class", div_class_value);
|
10625
10634
|
}
|
10626
10635
|
|