@plaidev/karte-action-sdk 1.1.156-28011566.cc9ca327 → 1.1.157-28011607.f788fa7c

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.
@@ -1,8 +1,7 @@
1
1
  import 'svelte/easing';
2
2
  import { writable, get } from 'svelte/store';
3
- import { setContext, getContext, createEventDispatcher, onMount, onDestroy as onDestroy$1 } from 'svelte';
4
- export { onMount } from 'svelte';
5
- import { SvelteComponent, init, safe_not_equal, append_styles, create_slot, create_component, space, claim_component, claim_space, mount_component, insert_hydration, update_slot_base, get_all_dirty_from_scope, get_slot_changes, transition_in, transition_out, destroy_component, detach, empty, group_outros, check_outros, component_subscribe, element, claim_element, children, attr, noop, listen, null_to_empty, is_function, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, claim_svg_element, append_hydration, destroy_each, text, claim_text, set_data, src_url_equal, HtmlTagHydration, claim_html_tag } from 'svelte/internal';
3
+ import { onMount as onMount$1, onDestroy as onDestroy$1, beforeUpdate as beforeUpdate$1, afterUpdate as afterUpdate$1, tick as tick$1, setContext, getContext, createEventDispatcher } from 'svelte';
4
+ import { SvelteComponent, init, safe_not_equal, append_styles, create_slot, create_component, space, claim_component, claim_space, mount_component, insert_hydration, update_slot_base, get_all_dirty_from_scope, get_slot_changes, transition_in, transition_out, destroy_component, detach, empty, group_outros, check_outros, component_subscribe, element, claim_element, children, attr, noop, listen, null_to_empty, is_function, add_render_callback, create_in_transition, binding_callbacks, set_style, svg_element, claim_svg_element, append_hydration, destroy_each, text, claim_text, set_data, src_url_equal, HtmlTagHydration, claim_html_tag, construct_svelte_component } from 'svelte/internal';
6
5
 
7
6
  /** @internal */
8
7
  const PropTypes = [
@@ -1074,6 +1073,15 @@ async function loadGlobalStyle(href) {
1074
1073
  link.addEventListener('error', () => reject(link));
1075
1074
  });
1076
1075
  }
1076
+ // @internal
1077
+ function getCssVariables(data) {
1078
+ return Object.entries(data)
1079
+ .filter(([key, value]) => {
1080
+ return ['string', 'number'].includes(typeof value) && key.startsWith('--');
1081
+ })
1082
+ .map(([key, value]) => `${key}:${value}`)
1083
+ .join(';');
1084
+ }
1077
1085
 
1078
1086
  /**
1079
1087
  * アクションのログの記録の管理
@@ -2251,22 +2259,63 @@ var widget = /*#__PURE__*/Object.freeze({
2251
2259
  storage: storage
2252
2260
  });
2253
2261
 
2262
+ /**
2263
+ * エレメントをマウントしたときに実行される関数の登録
2264
+ *
2265
+ * @param fn - マウントしたときに実行される関数
2266
+ */
2267
+ const onMount = onMount$1;
2268
+ /**
2269
+ * エレメントを破棄したときに実行される関数の登録
2270
+ *
2271
+ * @param fn - マウントしたときに実行される関数
2272
+ */
2273
+ const onDestory = onDestroy$1;
2274
+ /**
2275
+ * エレメントを更新する前に実行される関数の登録
2276
+ *
2277
+ * @param fn - マウントしたときに実行される関数
2278
+ */
2279
+ const beforeUpdate = beforeUpdate$1;
2280
+ /**
2281
+ * エレメントを更新した後に実行される関数の登録
2282
+ *
2283
+ * @param fn - マウントしたときに実行される関数
2284
+ */
2285
+ const afterUpdate = afterUpdate$1;
2286
+ /**
2287
+ * エレメントのライフサイクルを進める
2288
+ *
2289
+ * @returns Promise<void>
2290
+ */
2291
+ const tick = tick$1;
2292
+ // @internal
2293
+ const LAYOUT_COMPONENT_NAMES = [
2294
+ 'BreakPoint',
2295
+ 'BreakPointItem',
2296
+ 'Grid',
2297
+ 'GridItem',
2298
+ 'Modal',
2299
+ 'State',
2300
+ 'StateItem',
2301
+ ];
2302
+
2254
2303
  /* src/components/Normalize.svelte generated by Svelte v3.53.1 */
2255
2304
 
2256
- function add_css$t(target) {
2305
+ function add_css$u(target) {
2257
2306
  append_styles(target, "svelte-tr4qnr", "@import 'https://esm.sh/normalize.css';");
2258
2307
  }
2259
2308
 
2260
2309
  class Normalize extends SvelteComponent {
2261
2310
  constructor(options) {
2262
2311
  super();
2263
- init(this, options, null, null, safe_not_equal, {}, add_css$t);
2312
+ init(this, options, null, null, safe_not_equal, {}, add_css$u);
2264
2313
  }
2265
2314
  }
2266
2315
 
2267
2316
  /* src/components/State.svelte generated by Svelte v3.53.1 */
2268
2317
 
2269
- function create_fragment$w(ctx) {
2318
+ function create_fragment$x(ctx) {
2270
2319
  let normalize;
2271
2320
  let t;
2272
2321
  let current;
@@ -2330,7 +2379,7 @@ function create_fragment$w(ctx) {
2330
2379
  };
2331
2380
  }
2332
2381
 
2333
- function instance$w($$self, $$props, $$invalidate) {
2382
+ function instance$x($$self, $$props, $$invalidate) {
2334
2383
  let { $$slots: slots = {}, $$scope } = $$props;
2335
2384
 
2336
2385
  $$self.$$set = $$props => {
@@ -2343,13 +2392,13 @@ function instance$w($$self, $$props, $$invalidate) {
2343
2392
  class State extends SvelteComponent {
2344
2393
  constructor(options) {
2345
2394
  super();
2346
- init(this, options, instance$w, create_fragment$w, safe_not_equal, {});
2395
+ init(this, options, instance$x, create_fragment$x, safe_not_equal, {});
2347
2396
  }
2348
2397
  }
2349
2398
 
2350
2399
  /* src/components/StateItem.svelte generated by Svelte v3.53.1 */
2351
2400
 
2352
- function add_css$s(target) {
2401
+ function add_css$t(target) {
2353
2402
  append_styles(target, "svelte-2qb6dm", ".state-item.svelte-2qb6dm{position:absolute;display:none}");
2354
2403
  }
2355
2404
 
@@ -2426,7 +2475,7 @@ function create_if_block$8(ctx) {
2426
2475
  };
2427
2476
  }
2428
2477
 
2429
- function create_fragment$v(ctx) {
2478
+ function create_fragment$w(ctx) {
2430
2479
  let if_block_anchor;
2431
2480
  let current;
2432
2481
  let if_block = /*$state*/ ctx[1] === /*path*/ ctx[0] && create_if_block$8(ctx);
@@ -2491,7 +2540,7 @@ function getStateItemContext() {
2491
2540
  return getContext(STATE_ITEM_CONTEXT_KEY);
2492
2541
  }
2493
2542
 
2494
- function instance$v($$self, $$props, $$invalidate) {
2543
+ function instance$w($$self, $$props, $$invalidate) {
2495
2544
  let $state;
2496
2545
  component_subscribe($$self, state, $$value => $$invalidate(1, $state = $$value));
2497
2546
  let { $$slots: slots = {}, $$scope } = $$props;
@@ -2517,13 +2566,13 @@ function instance$v($$self, $$props, $$invalidate) {
2517
2566
  class StateItem extends SvelteComponent {
2518
2567
  constructor(options) {
2519
2568
  super();
2520
- init(this, options, instance$v, create_fragment$v, safe_not_equal, { path: 0 }, add_css$s);
2569
+ init(this, options, instance$w, create_fragment$w, safe_not_equal, { path: 0 }, add_css$t);
2521
2570
  }
2522
2571
  }
2523
2572
 
2524
2573
  /* src/components/BackgroundOverray.svelte generated by Svelte v3.53.1 */
2525
2574
 
2526
- function add_css$r(target) {
2575
+ function add_css$s(target) {
2527
2576
  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}");
2528
2577
  }
2529
2578
 
@@ -2563,7 +2612,7 @@ function create_if_block$7(ctx) {
2563
2612
  };
2564
2613
  }
2565
2614
 
2566
- function create_fragment$u(ctx) {
2615
+ function create_fragment$v(ctx) {
2567
2616
  let if_block_anchor;
2568
2617
  let if_block = /*backgroundOverray*/ ctx[0] && create_if_block$7(ctx);
2569
2618
 
@@ -2603,7 +2652,7 @@ function create_fragment$u(ctx) {
2603
2652
  };
2604
2653
  }
2605
2654
 
2606
- function instance$u($$self, $$props, $$invalidate) {
2655
+ function instance$v($$self, $$props, $$invalidate) {
2607
2656
  let { backgroundOverray = false } = $$props;
2608
2657
  const dispatch = createEventDispatcher();
2609
2658
  const click_handler = () => dispatch('click');
@@ -2618,13 +2667,13 @@ function instance$u($$self, $$props, $$invalidate) {
2618
2667
  class BackgroundOverray extends SvelteComponent {
2619
2668
  constructor(options) {
2620
2669
  super();
2621
- init(this, options, instance$u, create_fragment$u, safe_not_equal, { backgroundOverray: 0 }, add_css$r);
2670
+ init(this, options, instance$v, create_fragment$v, safe_not_equal, { backgroundOverray: 0 }, add_css$s);
2622
2671
  }
2623
2672
  }
2624
2673
 
2625
2674
  /* src/components/Button.svelte generated by Svelte v3.53.1 */
2626
2675
 
2627
- function add_css$q(target) {
2676
+ function add_css$r(target) {
2628
2677
  append_styles(target, "svelte-1kj05ao", ".button.svelte-1kj05ao{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0;cursor:initial}.button.svelte-1kj05ao:link,.button.svelte-1kj05ao:visited,.button.svelte-1kj05ao:active,.button.svelte-1kj05ao:hover{color:inherit}");
2629
2678
  }
2630
2679
 
@@ -2931,7 +2980,7 @@ function create_if_block$6(ctx) {
2931
2980
  };
2932
2981
  }
2933
2982
 
2934
- function create_fragment$t(ctx) {
2983
+ function create_fragment$u(ctx) {
2935
2984
  let current_block_type_index;
2936
2985
  let if_block;
2937
2986
  let if_block_anchor;
@@ -3008,7 +3057,7 @@ function create_fragment$t(ctx) {
3008
3057
 
3009
3058
  const BUTTON_CLASS = 'button';
3010
3059
 
3011
- function instance$t($$self, $$props, $$invalidate) {
3060
+ function instance$u($$self, $$props, $$invalidate) {
3012
3061
  let disabled;
3013
3062
  let $valuesAreValid;
3014
3063
  let { $$slots: slots = {}, $$scope } = $$props;
@@ -3074,8 +3123,8 @@ class Button extends SvelteComponent {
3074
3123
  init(
3075
3124
  this,
3076
3125
  options,
3077
- instance$t,
3078
- create_fragment$t,
3126
+ instance$u,
3127
+ create_fragment$u,
3079
3128
  safe_not_equal,
3080
3129
  {
3081
3130
  onClick: 0,
@@ -3083,14 +3132,14 @@ class Button extends SvelteComponent {
3083
3132
  eventValue: 6,
3084
3133
  style: 1
3085
3134
  },
3086
- add_css$q
3135
+ add_css$r
3087
3136
  );
3088
3137
  }
3089
3138
  }
3090
3139
 
3091
3140
  /* src/components/Modal.svelte generated by Svelte v3.53.1 */
3092
3141
 
3093
- function add_css$p(target) {
3142
+ function add_css$q(target) {
3094
3143
  append_styles(target, "svelte-67dbus", ".modal.svelte-67dbus{position:fixed;box-sizing:border-box;z-index:2147483647}.close.svelte-67dbus{position:absolute;top:0;right:0}.close.svelte-67dbus > .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-67dbus > .button:hover{transform:rotate(90deg)}.modal-content.svelte-67dbus{display:flex;justify-content:center;align-items:center}");
3095
3144
  }
3096
3145
 
@@ -3422,7 +3471,7 @@ function create_default_slot$6(ctx) {
3422
3471
  };
3423
3472
  }
3424
3473
 
3425
- function create_fragment$s(ctx) {
3474
+ function create_fragment$t(ctx) {
3426
3475
  let backgroundoverray;
3427
3476
  let t;
3428
3477
  let if_block_anchor;
@@ -3521,7 +3570,7 @@ function create_fragment$s(ctx) {
3521
3570
  };
3522
3571
  }
3523
3572
 
3524
- function instance$s($$self, $$props, $$invalidate) {
3573
+ function instance$t($$self, $$props, $$invalidate) {
3525
3574
  let close;
3526
3575
  let closable;
3527
3576
  let backgroundClick;
@@ -3552,7 +3601,7 @@ function instance$s($$self, $$props, $$invalidate) {
3552
3601
  let backgroundClickFunction = DefaultModalPlacement.backgroundClick;
3553
3602
  let modal;
3554
3603
 
3555
- onMount(() => {
3604
+ onMount$1(() => {
3556
3605
  $$invalidate(12, visible = true);
3557
3606
  });
3558
3607
 
@@ -3704,8 +3753,8 @@ class Modal extends SvelteComponent {
3704
3753
  init(
3705
3754
  this,
3706
3755
  options,
3707
- instance$s,
3708
- create_fragment$s,
3756
+ instance$t,
3757
+ create_fragment$t,
3709
3758
  safe_not_equal,
3710
3759
  {
3711
3760
  onClick: 0,
@@ -3721,14 +3770,14 @@ class Modal extends SvelteComponent {
3721
3770
  closeButtonColor: 8,
3722
3771
  _closeStyle: 9
3723
3772
  },
3724
- add_css$p
3773
+ add_css$q
3725
3774
  );
3726
3775
  }
3727
3776
  }
3728
3777
 
3729
3778
  /* src/components/Grid.svelte generated by Svelte v3.53.1 */
3730
3779
 
3731
- function create_fragment$r(ctx) {
3780
+ function create_fragment$s(ctx) {
3732
3781
  let div;
3733
3782
  let current;
3734
3783
  const default_slot_template = /*#slots*/ ctx[8].default;
@@ -3796,7 +3845,7 @@ function create_fragment$r(ctx) {
3796
3845
  };
3797
3846
  }
3798
3847
 
3799
- function instance$r($$self, $$props, $$invalidate) {
3848
+ function instance$s($$self, $$props, $$invalidate) {
3800
3849
  let _style;
3801
3850
  let { $$slots: slots = {}, $$scope } = $$props;
3802
3851
  let { width = '512px' } = $$props;
@@ -3841,7 +3890,7 @@ class Grid extends SvelteComponent {
3841
3890
  constructor(options) {
3842
3891
  super();
3843
3892
 
3844
- init(this, options, instance$r, create_fragment$r, safe_not_equal, {
3893
+ init(this, options, instance$s, create_fragment$s, safe_not_equal, {
3845
3894
  width: 1,
3846
3895
  height: 2,
3847
3896
  rows: 3,
@@ -3854,11 +3903,11 @@ class Grid extends SvelteComponent {
3854
3903
 
3855
3904
  /* src/components/GridItem.svelte generated by Svelte v3.53.1 */
3856
3905
 
3857
- function add_css$o(target) {
3906
+ function add_css$p(target) {
3858
3907
  append_styles(target, "svelte-n7kdl3", ".grid-item.svelte-n7kdl3{word-break:break-all;position:relative}.grid-item-inner.svelte-n7kdl3{position:absolute;inset:0}");
3859
3908
  }
3860
3909
 
3861
- function create_fragment$q(ctx) {
3910
+ function create_fragment$r(ctx) {
3862
3911
  let div1;
3863
3912
  let div0;
3864
3913
  let current;
@@ -3943,7 +3992,7 @@ function create_fragment$q(ctx) {
3943
3992
  };
3944
3993
  }
3945
3994
 
3946
- function instance$q($$self, $$props, $$invalidate) {
3995
+ function instance$r($$self, $$props, $$invalidate) {
3947
3996
  let _style;
3948
3997
  let { $$slots: slots = {}, $$scope } = $$props;
3949
3998
  let { x1 } = $$props;
@@ -3954,7 +4003,7 @@ function instance$q($$self, $$props, $$invalidate) {
3954
4003
  let { background = 'transparent' } = $$props;
3955
4004
  let { id } = $$props;
3956
4005
 
3957
- onMount(() => {
4006
+ onMount$1(() => {
3958
4007
  setMaximumZindex(z);
3959
4008
  });
3960
4009
 
@@ -3991,8 +4040,8 @@ class GridItem extends SvelteComponent {
3991
4040
  init(
3992
4041
  this,
3993
4042
  options,
3994
- instance$q,
3995
- create_fragment$q,
4043
+ instance$r,
4044
+ create_fragment$r,
3996
4045
  safe_not_equal,
3997
4046
  {
3998
4047
  x1: 2,
@@ -4003,7 +4052,7 @@ class GridItem extends SvelteComponent {
4003
4052
  background: 7,
4004
4053
  id: 0
4005
4054
  },
4006
- add_css$o
4055
+ add_css$p
4007
4056
  );
4008
4057
  }
4009
4058
  }
@@ -4109,7 +4158,7 @@ function create_each_block$6(ctx) {
4109
4158
  };
4110
4159
  }
4111
4160
 
4112
- function create_fragment$p(ctx) {
4161
+ function create_fragment$q(ctx) {
4113
4162
  let each_1_anchor;
4114
4163
  let each_value = /*items*/ ctx[0];
4115
4164
  let each_blocks = [];
@@ -4175,7 +4224,7 @@ function create_fragment$p(ctx) {
4175
4224
 
4176
4225
  const regexp = /(\r?\n)/;
4177
4226
 
4178
- function instance$p($$self, $$props, $$invalidate) {
4227
+ function instance$q($$self, $$props, $$invalidate) {
4179
4228
  let items;
4180
4229
  let { text = 'サンプルSample' } = $$props;
4181
4230
 
@@ -4195,13 +4244,13 @@ function instance$p($$self, $$props, $$invalidate) {
4195
4244
  class RenderText extends SvelteComponent {
4196
4245
  constructor(options) {
4197
4246
  super();
4198
- init(this, options, instance$p, create_fragment$p, safe_not_equal, { text: 1 });
4247
+ init(this, options, instance$q, create_fragment$q, safe_not_equal, { text: 1 });
4199
4248
  }
4200
4249
  }
4201
4250
 
4202
4251
  /* src/components/TextElement.svelte generated by Svelte v3.53.1 */
4203
4252
 
4204
- function add_css$n(target) {
4253
+ function add_css$o(target) {
4205
4254
  append_styles(target, "svelte-13cs3g2", ".text-element-wrapper.svelte-13cs3g2.svelte-13cs3g2{position:relative;height:100%}.text-element.svelte-13cs3g2.svelte-13cs3g2{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:auto}.text-element-inner.svelte-13cs3g2.svelte-13cs3g2{width:100%;height:auto}.text-direction-vertical.svelte-13cs3g2.svelte-13cs3g2{writing-mode:vertical-rl}.text-direction-vertical.svelte-13cs3g2 .text-element-inner.svelte-13cs3g2{width:auto;height:100%}.tooltip.svelte-13cs3g2.svelte-13cs3g2{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-13cs3g2.svelte-13cs3g2:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-13cs3g2.svelte-13cs3g2{display:block}.tooltip-error.svelte-13cs3g2.svelte-13cs3g2{background-color:#c00}.tooltip-error.svelte-13cs3g2.svelte-13cs3g2:before{border-bottom:7px solid #c00}");
4206
4255
  }
4207
4256
 
@@ -4258,7 +4307,7 @@ function create_if_block$3(ctx) {
4258
4307
  };
4259
4308
  }
4260
4309
 
4261
- function create_fragment$o(ctx) {
4310
+ function create_fragment$p(ctx) {
4262
4311
  let div2;
4263
4312
  let link;
4264
4313
  let link_href_value;
@@ -4376,7 +4425,7 @@ function create_fragment$o(ctx) {
4376
4425
  };
4377
4426
  }
4378
4427
 
4379
- function instance$o($$self, $$props, $$invalidate) {
4428
+ function instance$p($$self, $$props, $$invalidate) {
4380
4429
  let style;
4381
4430
  let { text = 'サンプルSample' } = $$props;
4382
4431
  let { enableCopy = false } = $$props;
@@ -4456,8 +4505,8 @@ class TextElement extends SvelteComponent {
4456
4505
  init(
4457
4506
  this,
4458
4507
  options,
4459
- instance$o,
4460
- create_fragment$o,
4508
+ instance$p,
4509
+ create_fragment$p,
4461
4510
  safe_not_equal,
4462
4511
  {
4463
4512
  text: 0,
@@ -4466,14 +4515,14 @@ class TextElement extends SvelteComponent {
4466
4515
  textDirection: 2,
4467
4516
  _style: 8
4468
4517
  },
4469
- add_css$n
4518
+ add_css$o
4470
4519
  );
4471
4520
  }
4472
4521
  }
4473
4522
 
4474
4523
  /* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
4475
4524
 
4476
- function add_css$m(target) {
4525
+ function add_css$n(target) {
4477
4526
  append_styles(target, "svelte-wb7ek", ".text-button-element.svelte-wb7ek{width:100%;height:100%}.text-button-element.svelte-wb7ek > .button{display:flex;justify-content:center;align-items:center;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden}.text-button-element.svelte-wb7ek > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-wb7ek > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-wb7ek > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
4478
4527
  }
4479
4528
 
@@ -4514,7 +4563,7 @@ function create_default_slot$5(ctx) {
4514
4563
  };
4515
4564
  }
4516
4565
 
4517
- function create_fragment$n(ctx) {
4566
+ function create_fragment$o(ctx) {
4518
4567
  let div;
4519
4568
  let link;
4520
4569
  let link_href_value;
@@ -4593,7 +4642,7 @@ function create_fragment$n(ctx) {
4593
4642
  };
4594
4643
  }
4595
4644
 
4596
- function instance$n($$self, $$props, $$invalidate) {
4645
+ function instance$o($$self, $$props, $$invalidate) {
4597
4646
  let style;
4598
4647
  let { text = 'ボタンラベル' } = $$props;
4599
4648
  let { onClick = { operation: 'none', args: [] } } = $$props;
@@ -4625,8 +4674,8 @@ class TextButtonElement extends SvelteComponent {
4625
4674
  init(
4626
4675
  this,
4627
4676
  options,
4628
- instance$n,
4629
- create_fragment$n,
4677
+ instance$o,
4678
+ create_fragment$o,
4630
4679
  safe_not_equal,
4631
4680
  {
4632
4681
  text: 0,
@@ -4635,14 +4684,14 @@ class TextButtonElement extends SvelteComponent {
4635
4684
  _buttonStyle: 4,
4636
4685
  _style: 5
4637
4686
  },
4638
- add_css$m
4687
+ add_css$n
4639
4688
  );
4640
4689
  }
4641
4690
  }
4642
4691
 
4643
4692
  /* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
4644
4693
 
4645
- function add_css$l(target) {
4694
+ function add_css$m(target) {
4646
4695
  append_styles(target, "svelte-1kn2sk0", ".image-element.svelte-1kn2sk0{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1kn2sk0 > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.image-element.svelte-1kn2sk0 > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1kn2sk0 > .button:not(._disabled):hover,.image-element.transport.svelte-1kn2sk0 > .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-1kn2sk0{width:100%;height:100%}");
4647
4696
  }
4648
4697
 
@@ -4700,7 +4749,7 @@ function create_default_slot$4(ctx) {
4700
4749
  };
4701
4750
  }
4702
4751
 
4703
- function create_fragment$m(ctx) {
4752
+ function create_fragment$n(ctx) {
4704
4753
  let div;
4705
4754
  let button;
4706
4755
  let div_class_value;
@@ -4769,7 +4818,7 @@ function create_fragment$m(ctx) {
4769
4818
  };
4770
4819
  }
4771
4820
 
4772
- function instance$m($$self, $$props, $$invalidate) {
4821
+ function instance$n($$self, $$props, $$invalidate) {
4773
4822
  let { src = 'https://admin.karte.io/action-editor2/public/images/no_image_en.svg' } = $$props;
4774
4823
  let { alt = 'No Image' } = $$props;
4775
4824
  let { transport = false } = $$props;
@@ -4798,8 +4847,8 @@ class ImageElement extends SvelteComponent {
4798
4847
  init(
4799
4848
  this,
4800
4849
  options,
4801
- instance$m,
4802
- create_fragment$m,
4850
+ instance$n,
4851
+ create_fragment$n,
4803
4852
  safe_not_equal,
4804
4853
  {
4805
4854
  src: 0,
@@ -4810,18 +4859,18 @@ class ImageElement extends SvelteComponent {
4810
4859
  _imageStyle: 5,
4811
4860
  _style: 6
4812
4861
  },
4813
- add_css$l
4862
+ add_css$m
4814
4863
  );
4815
4864
  }
4816
4865
  }
4817
4866
 
4818
4867
  /* src/components/List.svelte generated by Svelte v3.53.1 */
4819
4868
 
4820
- function add_css$k(target) {
4869
+ function add_css$l(target) {
4821
4870
  append_styles(target, "svelte-dfqtyx", ".list.svelte-dfqtyx{display:flex;width:100%;height:100%;overflow:hidden}");
4822
4871
  }
4823
4872
 
4824
- function create_fragment$l(ctx) {
4873
+ function create_fragment$m(ctx) {
4825
4874
  let div;
4826
4875
  let current;
4827
4876
  const default_slot_template = /*#slots*/ ctx[6].default;
@@ -4891,7 +4940,7 @@ function create_fragment$l(ctx) {
4891
4940
 
4892
4941
  const LIST_CONTEXT_KEY = Symbol();
4893
4942
 
4894
- function instance$l($$self, $$props, $$invalidate) {
4943
+ function instance$m($$self, $$props, $$invalidate) {
4895
4944
  let style;
4896
4945
  let { $$slots: slots = {}, $$scope } = $$props;
4897
4946
  let { direction = 'vertical' } = $$props;
@@ -4914,7 +4963,7 @@ function instance$l($$self, $$props, $$invalidate) {
4914
4963
  }
4915
4964
  });
4916
4965
 
4917
- onMount(async () => {
4966
+ onMount$1(async () => {
4918
4967
  items.forEach((item, index) => {
4919
4968
  item.onMount({ index, length: items.length });
4920
4969
  });
@@ -4958,8 +5007,8 @@ class List extends SvelteComponent {
4958
5007
  init(
4959
5008
  this,
4960
5009
  options,
4961
- instance$l,
4962
- create_fragment$l,
5010
+ instance$m,
5011
+ create_fragment$m,
4963
5012
  safe_not_equal,
4964
5013
  {
4965
5014
  direction: 1,
@@ -4967,14 +5016,14 @@ class List extends SvelteComponent {
4967
5016
  background: 3,
4968
5017
  _style: 4
4969
5018
  },
4970
- add_css$k
5019
+ add_css$l
4971
5020
  );
4972
5021
  }
4973
5022
  }
4974
5023
 
4975
5024
  /* src/components/ListItem.svelte generated by Svelte v3.53.1 */
4976
5025
 
4977
- function add_css$j(target) {
5026
+ function add_css$k(target) {
4978
5027
  append_styles(target, "svelte-1ocqru1", ".list-item.svelte-1ocqru1{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-1ocqru1 > .button{position:absolute;inset:0}");
4979
5028
  }
4980
5029
 
@@ -5029,7 +5078,7 @@ function create_default_slot$3(ctx) {
5029
5078
  };
5030
5079
  }
5031
5080
 
5032
- function create_fragment$k(ctx) {
5081
+ function create_fragment$l(ctx) {
5033
5082
  let div;
5034
5083
  let button;
5035
5084
  let current;
@@ -5098,7 +5147,7 @@ function create_fragment$k(ctx) {
5098
5147
  };
5099
5148
  }
5100
5149
 
5101
- function instance$k($$self, $$props, $$invalidate) {
5150
+ function instance$l($$self, $$props, $$invalidate) {
5102
5151
  let listItemStyle;
5103
5152
  let { $$slots: slots = {}, $$scope } = $$props;
5104
5153
  const { separator, background, direction, registerItem, unregisterItem } = getContext(LIST_CONTEXT_KEY);
@@ -5177,17 +5226,17 @@ function instance$k($$self, $$props, $$invalidate) {
5177
5226
  class ListItem extends SvelteComponent {
5178
5227
  constructor(options) {
5179
5228
  super();
5180
- init(this, options, instance$k, create_fragment$k, safe_not_equal, { onClick: 0, clickEventName: 1, _style: 2 }, add_css$j);
5229
+ init(this, options, instance$l, create_fragment$l, safe_not_equal, { onClick: 0, clickEventName: 1, _style: 2 }, add_css$k);
5181
5230
  }
5182
5231
  }
5183
5232
 
5184
5233
  /* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
5185
5234
 
5186
- function add_css$i(target) {
5235
+ function add_css$j(target) {
5187
5236
  append_styles(target, "svelte-1wusvum", ".embed.svelte-1wusvum{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-1wusvum iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
5188
5237
  }
5189
5238
 
5190
- function create_fragment$j(ctx) {
5239
+ function create_fragment$k(ctx) {
5191
5240
  let div;
5192
5241
 
5193
5242
  return {
@@ -5223,7 +5272,7 @@ function create_fragment$j(ctx) {
5223
5272
  };
5224
5273
  }
5225
5274
 
5226
- function instance$j($$self, $$props, $$invalidate) {
5275
+ function instance$k($$self, $$props, $$invalidate) {
5227
5276
  let { code } = $$props;
5228
5277
  let { _style = '' } = $$props;
5229
5278
 
@@ -5238,17 +5287,17 @@ function instance$j($$self, $$props, $$invalidate) {
5238
5287
  class EmbedElement extends SvelteComponent {
5239
5288
  constructor(options) {
5240
5289
  super();
5241
- init(this, options, instance$j, create_fragment$j, safe_not_equal, { code: 0, _style: 1 }, add_css$i);
5290
+ init(this, options, instance$k, create_fragment$k, safe_not_equal, { code: 0, _style: 1 }, add_css$j);
5242
5291
  }
5243
5292
  }
5244
5293
 
5245
5294
  /* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
5246
5295
 
5247
- function add_css$h(target) {
5296
+ function add_css$i(target) {
5248
5297
  append_styles(target, "svelte-17rkg8u", ".embed.svelte-17rkg8u{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-17rkg8u iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
5249
5298
  }
5250
5299
 
5251
- function create_fragment$i(ctx) {
5300
+ function create_fragment$j(ctx) {
5252
5301
  let div1;
5253
5302
  let div0;
5254
5303
 
@@ -5290,7 +5339,7 @@ function create_fragment$i(ctx) {
5290
5339
  };
5291
5340
  }
5292
5341
 
5293
- function instance$i($$self, $$props, $$invalidate) {
5342
+ function instance$j($$self, $$props, $$invalidate) {
5294
5343
  let $system;
5295
5344
  component_subscribe($$self, system, $$value => $$invalidate(12, $system = $$value));
5296
5345
  let { videoId = "sSgN-L4DU0c" } = $$props;
@@ -5415,7 +5464,7 @@ function instance$i($$self, $$props, $$invalidate) {
5415
5464
  });
5416
5465
  }
5417
5466
 
5418
- onMount(() => {
5467
+ onMount$1(() => {
5419
5468
  setTimeout(
5420
5469
  () => {
5421
5470
  // @ts-ignore
@@ -5469,8 +5518,8 @@ class MovieYouTubeElement extends SvelteComponent {
5469
5518
  init(
5470
5519
  this,
5471
5520
  options,
5472
- instance$i,
5473
- create_fragment$i,
5521
+ instance$j,
5522
+ create_fragment$j,
5474
5523
  safe_not_equal,
5475
5524
  {
5476
5525
  videoId: 2,
@@ -5480,18 +5529,18 @@ class MovieYouTubeElement extends SvelteComponent {
5480
5529
  mute: 6,
5481
5530
  _style: 0
5482
5531
  },
5483
- add_css$h
5532
+ add_css$i
5484
5533
  );
5485
5534
  }
5486
5535
  }
5487
5536
 
5488
5537
  /* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
5489
5538
 
5490
- function add_css$g(target) {
5539
+ function add_css$h(target) {
5491
5540
  append_styles(target, "svelte-17rkg8u", ".embed.svelte-17rkg8u{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-17rkg8u iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
5492
5541
  }
5493
5542
 
5494
- function create_fragment$h(ctx) {
5543
+ function create_fragment$i(ctx) {
5495
5544
  let div1;
5496
5545
  let div0;
5497
5546
 
@@ -5533,7 +5582,7 @@ function create_fragment$h(ctx) {
5533
5582
  };
5534
5583
  }
5535
5584
 
5536
- function instance$h($$self, $$props, $$invalidate) {
5585
+ function instance$i($$self, $$props, $$invalidate) {
5537
5586
  let $system;
5538
5587
  component_subscribe($$self, system, $$value => $$invalidate(12, $system = $$value));
5539
5588
  let { videoId = "201239468" } = $$props;
@@ -5628,7 +5677,7 @@ function instance$h($$self, $$props, $$invalidate) {
5628
5677
  onPlayerReady();
5629
5678
  }
5630
5679
 
5631
- onMount(() => {
5680
+ onMount$1(() => {
5632
5681
  setTimeout(
5633
5682
  () => {
5634
5683
  // @ts-ignore
@@ -5676,8 +5725,8 @@ class MovieVimeoElement extends SvelteComponent {
5676
5725
  init(
5677
5726
  this,
5678
5727
  options,
5679
- instance$h,
5680
- create_fragment$h,
5728
+ instance$i,
5729
+ create_fragment$i,
5681
5730
  safe_not_equal,
5682
5731
  {
5683
5732
  videoId: 2,
@@ -5687,18 +5736,18 @@ class MovieVimeoElement extends SvelteComponent {
5687
5736
  mute: 6,
5688
5737
  _style: 0
5689
5738
  },
5690
- add_css$g
5739
+ add_css$h
5691
5740
  );
5692
5741
  }
5693
5742
  }
5694
5743
 
5695
5744
  /* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
5696
5745
 
5697
- function add_css$f(target) {
5746
+ function add_css$g(target) {
5698
5747
  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}");
5699
5748
  }
5700
5749
 
5701
- function create_fragment$g(ctx) {
5750
+ function create_fragment$h(ctx) {
5702
5751
  let div;
5703
5752
  let textarea;
5704
5753
  let mounted;
@@ -5768,7 +5817,7 @@ function create_fragment$g(ctx) {
5768
5817
  };
5769
5818
  }
5770
5819
 
5771
- function instance$g($$self, $$props, $$invalidate) {
5820
+ function instance$h($$self, $$props, $$invalidate) {
5772
5821
  let $value;
5773
5822
  let { name = '' } = $$props;
5774
5823
  let { required = true } = $$props;
@@ -5809,8 +5858,8 @@ class FormTextarea extends SvelteComponent {
5809
5858
  init(
5810
5859
  this,
5811
5860
  options,
5812
- instance$g,
5813
- create_fragment$g,
5861
+ instance$h,
5862
+ create_fragment$h,
5814
5863
  safe_not_equal,
5815
5864
  {
5816
5865
  name: 6,
@@ -5818,14 +5867,14 @@ class FormTextarea extends SvelteComponent {
5818
5867
  rows: 1,
5819
5868
  placeholder: 2
5820
5869
  },
5821
- add_css$f
5870
+ add_css$g
5822
5871
  );
5823
5872
  }
5824
5873
  }
5825
5874
 
5826
5875
  /* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
5827
5876
 
5828
- function add_css$e(target) {
5877
+ function add_css$f(target) {
5829
5878
  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}");
5830
5879
  }
5831
5880
 
@@ -5937,7 +5986,7 @@ function create_each_block$5(ctx) {
5937
5986
  };
5938
5987
  }
5939
5988
 
5940
- function create_fragment$f(ctx) {
5989
+ function create_fragment$g(ctx) {
5941
5990
  let div;
5942
5991
  let link;
5943
5992
  let link_href_value;
@@ -6030,7 +6079,7 @@ function create_fragment$f(ctx) {
6030
6079
  };
6031
6080
  }
6032
6081
 
6033
- function instance$f($$self, $$props, $$invalidate) {
6082
+ function instance$g($$self, $$props, $$invalidate) {
6034
6083
  let _options;
6035
6084
  let buttonStyle;
6036
6085
  let _value;
@@ -6121,8 +6170,8 @@ class FormRadioButtons extends SvelteComponent {
6121
6170
  init(
6122
6171
  this,
6123
6172
  options,
6124
- instance$f,
6125
- create_fragment$f,
6173
+ instance$g,
6174
+ create_fragment$g,
6126
6175
  safe_not_equal,
6127
6176
  {
6128
6177
  name: 0,
@@ -6134,14 +6183,14 @@ class FormRadioButtons extends SvelteComponent {
6134
6183
  buttonColor: 11,
6135
6184
  buttonColorActive: 12
6136
6185
  },
6137
- add_css$e
6186
+ add_css$f
6138
6187
  );
6139
6188
  }
6140
6189
  }
6141
6190
 
6142
6191
  /* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
6143
6192
 
6144
- function add_css$d(target) {
6193
+ function add_css$e(target) {
6145
6194
  append_styles(target, "svelte-1n4ag74", ".select.svelte-1n4ag74{width:100%;height:100%}.select-select.svelte-1n4ag74{position:relative;appearance:none;width:100%;height:100%}.select-select.svelte-1n4ag74:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-1n4ag74{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
6146
6195
  }
6147
6196
 
@@ -6268,7 +6317,7 @@ function create_each_block$4(ctx) {
6268
6317
  };
6269
6318
  }
6270
6319
 
6271
- function create_fragment$e(ctx) {
6320
+ function create_fragment$f(ctx) {
6272
6321
  let div1;
6273
6322
  let link;
6274
6323
  let link_href_value;
@@ -6393,7 +6442,7 @@ function create_fragment$e(ctx) {
6393
6442
  };
6394
6443
  }
6395
6444
 
6396
- function instance$e($$self, $$props, $$invalidate) {
6445
+ function instance$f($$self, $$props, $$invalidate) {
6397
6446
  let _options;
6398
6447
  let style;
6399
6448
  let styleVariables;
@@ -6502,8 +6551,8 @@ class FormSelect extends SvelteComponent {
6502
6551
  init(
6503
6552
  this,
6504
6553
  options,
6505
- instance$e,
6506
- create_fragment$e,
6554
+ instance$f,
6555
+ create_fragment$f,
6507
6556
  safe_not_equal,
6508
6557
  {
6509
6558
  name: 7,
@@ -6517,14 +6566,14 @@ class FormSelect extends SvelteComponent {
6517
6566
  iconColor: 14,
6518
6567
  iconSize: 15
6519
6568
  },
6520
- add_css$d
6569
+ add_css$e
6521
6570
  );
6522
6571
  }
6523
6572
  }
6524
6573
 
6525
6574
  /* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
6526
6575
 
6527
- function add_css$c(target) {
6576
+ function add_css$d(target) {
6528
6577
  append_styles(target, "svelte-o1ztcf", ".check-boxes.svelte-o1ztcf.svelte-o1ztcf{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.check-box.svelte-o1ztcf.svelte-o1ztcf{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-o1ztcf.svelte-o1ztcf{width:0;height:0;margin:0}.check-box-check.svelte-o1ztcf.svelte-o1ztcf{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-o1ztcf.svelte-o1ztcf{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-o1ztcf.svelte-o1ztcf: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-o1ztcf.svelte-o1ztcf{background-color:var(--color-main-active)}.check-box-check._checked.svelte-o1ztcf .check-box-icon.svelte-o1ztcf:after{border-color:var(--color-sub-active)}.check-box-text.svelte-o1ztcf.svelte-o1ztcf{margin-left:0.5em}");
6529
6578
  }
6530
6579
 
@@ -6652,7 +6701,7 @@ function create_each_block$3(ctx) {
6652
6701
  };
6653
6702
  }
6654
6703
 
6655
- function create_fragment$d(ctx) {
6704
+ function create_fragment$e(ctx) {
6656
6705
  let div;
6657
6706
  let link;
6658
6707
  let link_href_value;
@@ -6745,7 +6794,7 @@ function create_fragment$d(ctx) {
6745
6794
  };
6746
6795
  }
6747
6796
 
6748
- function instance$d($$self, $$props, $$invalidate) {
6797
+ function instance$e($$self, $$props, $$invalidate) {
6749
6798
  let _options;
6750
6799
  let styleVariables;
6751
6800
  let isCheckedArray;
@@ -6842,8 +6891,8 @@ class FormCheckBoxes extends SvelteComponent {
6842
6891
  init(
6843
6892
  this,
6844
6893
  options,
6845
- instance$d,
6846
- create_fragment$d,
6894
+ instance$e,
6895
+ create_fragment$e,
6847
6896
  safe_not_equal,
6848
6897
  {
6849
6898
  name: 0,
@@ -6855,14 +6904,14 @@ class FormCheckBoxes extends SvelteComponent {
6855
6904
  buttonColor: 11,
6856
6905
  buttonColorActive: 12
6857
6906
  },
6858
- add_css$c
6907
+ add_css$d
6859
6908
  );
6860
6909
  }
6861
6910
  }
6862
6911
 
6863
6912
  /* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
6864
6913
 
6865
- function add_css$b(target) {
6914
+ function add_css$c(target) {
6866
6915
  append_styles(target, "svelte-176k37j", ".rating-buttons.svelte-176k37j{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-176k37j{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s}");
6867
6916
  }
6868
6917
 
@@ -6930,7 +6979,7 @@ function create_each_block$2(ctx) {
6930
6979
  };
6931
6980
  }
6932
6981
 
6933
- function create_fragment$c(ctx) {
6982
+ function create_fragment$d(ctx) {
6934
6983
  let div;
6935
6984
  let link;
6936
6985
  let t;
@@ -7015,7 +7064,7 @@ function create_fragment$c(ctx) {
7015
7064
 
7016
7065
  const func$1 = i => i + 1;
7017
7066
 
7018
- function instance$c($$self, $$props, $$invalidate) {
7067
+ function instance$d($$self, $$props, $$invalidate) {
7019
7068
  let _value;
7020
7069
  let $value;
7021
7070
  let { name = '' } = $$props;
@@ -7082,8 +7131,8 @@ class FormRatingButtonsNumber extends SvelteComponent {
7082
7131
  init(
7083
7132
  this,
7084
7133
  options,
7085
- instance$c,
7086
- create_fragment$c,
7134
+ instance$d,
7135
+ create_fragment$d,
7087
7136
  safe_not_equal,
7088
7137
  {
7089
7138
  name: 5,
@@ -7092,14 +7141,14 @@ class FormRatingButtonsNumber extends SvelteComponent {
7092
7141
  buttonStyle: 7,
7093
7142
  buttonActiveStyle: 8
7094
7143
  },
7095
- add_css$b
7144
+ add_css$c
7096
7145
  );
7097
7146
  }
7098
7147
  }
7099
7148
 
7100
7149
  /* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
7101
7150
 
7102
- function add_css$a(target) {
7151
+ function add_css$b(target) {
7103
7152
  append_styles(target, "svelte-12ew9od", ".rating-buttons.svelte-12ew9od{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-12ew9od{cursor:pointer;user-select:none;-webkit-user-drag:none}.rating-button.svelte-12ew9od:not(._active){filter:grayscale(100%)}");
7104
7153
  }
7105
7154
 
@@ -7165,7 +7214,7 @@ function create_each_block$1(ctx) {
7165
7214
  };
7166
7215
  }
7167
7216
 
7168
- function create_fragment$b(ctx) {
7217
+ function create_fragment$c(ctx) {
7169
7218
  let div;
7170
7219
  let each_value = [...Array(count).keys()].reverse().map(func);
7171
7220
  let each_blocks = [];
@@ -7241,7 +7290,7 @@ function create_fragment$b(ctx) {
7241
7290
  const count = 5;
7242
7291
  const func = i => i + 1;
7243
7292
 
7244
- function instance$b($$self, $$props, $$invalidate) {
7293
+ function instance$c($$self, $$props, $$invalidate) {
7245
7294
  let _value;
7246
7295
  let buttonStyle;
7247
7296
  let $value;
@@ -7297,13 +7346,13 @@ function instance$b($$self, $$props, $$invalidate) {
7297
7346
  class FormRatingButtonsFace extends SvelteComponent {
7298
7347
  constructor(options) {
7299
7348
  super();
7300
- init(this, options, instance$b, create_fragment$b, safe_not_equal, { name: 5, required: 6, size: 7 }, add_css$a);
7349
+ init(this, options, instance$c, create_fragment$c, safe_not_equal, { name: 5, required: 6, size: 7 }, add_css$b);
7301
7350
  }
7302
7351
  }
7303
7352
 
7304
7353
  /* src/components/Slide.svelte generated by Svelte v3.53.1 */
7305
7354
 
7306
- function add_css$9(target) {
7355
+ function add_css$a(target) {
7307
7356
  append_styles(target, "svelte-1wlcw5a", ".root.svelte-1wlcw5a{width:100%;height:100%;position:relative}.container.svelte-1wlcw5a{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box}.slide.svelte-1wlcw5a{height:100%;position:absolute;display:flex}.transition.svelte-1wlcw5a{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-1wlcw5a{height:100%;flex:none}.prev-button.svelte-1wlcw5a,.next-button.svelte-1wlcw5a{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button.svelte-1wlcw5a{left:0}.next-button.svelte-1wlcw5a{right:0}.button-container.svelte-1wlcw5a{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box}.navigation.svelte-1wlcw5a{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-1wlcw5a{flex-shrink:0;cursor:pointer}.navigation-item-inner.circle.svelte-1wlcw5a{border-radius:51%}");
7308
7357
  }
7309
7358
 
@@ -7514,7 +7563,7 @@ function create_each_block(ctx) {
7514
7563
  };
7515
7564
  }
7516
7565
 
7517
- function create_fragment$a(ctx) {
7566
+ function create_fragment$b(ctx) {
7518
7567
  let div3;
7519
7568
  let div1;
7520
7569
  let div0;
@@ -7727,7 +7776,7 @@ function calcPositionIndex(shift, index, length) {
7727
7776
  }
7728
7777
  }
7729
7778
 
7730
- function instance$a($$self, $$props, $$invalidate) {
7779
+ function instance$b($$self, $$props, $$invalidate) {
7731
7780
  let slideStyle;
7732
7781
  let slideClass;
7733
7782
  let _loop;
@@ -7957,7 +8006,7 @@ function instance$a($$self, $$props, $$invalidate) {
7957
8006
  fixSlidePosition();
7958
8007
  }
7959
8008
 
7960
- onMount(async () => {
8009
+ onMount$1(async () => {
7961
8010
  containerWidth = containerElement.clientWidth;
7962
8011
 
7963
8012
  items.forEach(item => {
@@ -8164,8 +8213,8 @@ class Slide extends SvelteComponent {
8164
8213
  init(
8165
8214
  this,
8166
8215
  options,
8167
- instance$a,
8168
- create_fragment$a,
8216
+ instance$b,
8217
+ create_fragment$b,
8169
8218
  safe_not_equal,
8170
8219
  {
8171
8220
  loop: 18,
@@ -8179,7 +8228,7 @@ class Slide extends SvelteComponent {
8179
8228
  navigationButton: 25,
8180
8229
  navigationEdgePosition: 26
8181
8230
  },
8182
- add_css$9,
8231
+ add_css$a,
8183
8232
  [-1, -1]
8184
8233
  );
8185
8234
  }
@@ -8187,11 +8236,11 @@ class Slide extends SvelteComponent {
8187
8236
 
8188
8237
  /* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
8189
8238
 
8190
- function add_css$8(target) {
8239
+ function add_css$9(target) {
8191
8240
  append_styles(target, "svelte-xzo1un", ".item.svelte-xzo1un{height:100%;flex:none;position:relative}.item.svelte-xzo1un img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-xzo1un{position:absolute;inset:0}");
8192
8241
  }
8193
8242
 
8194
- function create_fragment$9(ctx) {
8243
+ function create_fragment$a(ctx) {
8195
8244
  let div1;
8196
8245
  let div0;
8197
8246
  let current;
@@ -8271,7 +8320,7 @@ function create_fragment$9(ctx) {
8271
8320
  };
8272
8321
  }
8273
8322
 
8274
- function instance$9($$self, $$props, $$invalidate) {
8323
+ function instance$a($$self, $$props, $$invalidate) {
8275
8324
  let itemStyle;
8276
8325
  let { $$slots: slots = {}, $$scope } = $$props;
8277
8326
  const { registerItem, unregisterItem } = getContext('SLIDE');
@@ -8337,20 +8386,20 @@ function instance$9($$self, $$props, $$invalidate) {
8337
8386
  class SlideItem extends SvelteComponent {
8338
8387
  constructor(options) {
8339
8388
  super();
8340
- init(this, options, instance$9, create_fragment$9, safe_not_equal, { _style: 0 }, add_css$8);
8389
+ init(this, options, instance$a, create_fragment$a, safe_not_equal, { _style: 0 }, add_css$9);
8341
8390
  }
8342
8391
  }
8343
8392
 
8344
8393
  /* src/components/Countdown.svelte generated by Svelte v3.53.1 */
8345
8394
 
8346
- function add_css$7(target) {
8395
+ function add_css$8(target) {
8347
8396
  append_styles(target, "svelte-qx7l0c", ".countdown.svelte-qx7l0c{position:relative;width:100%;height:100%}.countdown-inner.svelte-qx7l0c{position:absolute;inset:0}");
8348
8397
  }
8349
8398
 
8350
8399
  const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
8351
8400
  const get_default_slot_context = ctx => ({ countdown: /*countdown*/ ctx[1] });
8352
8401
 
8353
- function create_fragment$8(ctx) {
8402
+ function create_fragment$9(ctx) {
8354
8403
  let div1;
8355
8404
  let div0;
8356
8405
  let current;
@@ -8443,7 +8492,7 @@ function formatTimeDiff(ms) {
8443
8492
  };
8444
8493
  }
8445
8494
 
8446
- function instance$8($$self, $$props, $$invalidate) {
8495
+ function instance$9($$self, $$props, $$invalidate) {
8447
8496
  let countdown;
8448
8497
  let { $$slots: slots = {}, $$scope } = $$props;
8449
8498
  let { timeLimit = '2023/12/31 23:59:59' } = $$props;
@@ -8461,7 +8510,7 @@ function instance$8($$self, $$props, $$invalidate) {
8461
8510
  }
8462
8511
  }
8463
8512
 
8464
- onMount(() => {
8513
+ onMount$1(() => {
8465
8514
  const timerId = setInterval(
8466
8515
  () => {
8467
8516
  onEachSecond();
@@ -8500,13 +8549,13 @@ function instance$8($$self, $$props, $$invalidate) {
8500
8549
  class Countdown extends SvelteComponent {
8501
8550
  constructor(options) {
8502
8551
  super();
8503
- init(this, options, instance$8, create_fragment$8, safe_not_equal, { timeLimit: 2, stateOnEnd: 3, _style: 0 }, add_css$7);
8552
+ init(this, options, instance$9, create_fragment$9, safe_not_equal, { timeLimit: 2, stateOnEnd: 3, _style: 0 }, add_css$8);
8504
8553
  }
8505
8554
  }
8506
8555
 
8507
8556
  /* src/components/Box.svelte generated by Svelte v3.53.1 */
8508
8557
 
8509
- function add_css$6(target) {
8558
+ function add_css$7(target) {
8510
8559
  append_styles(target, "svelte-1d6pgu1", ".box.svelte-1d6pgu1{position:relative;width:100%;height:100%}.box.svelte-1d6pgu1 > .button{position:absolute;inset:0}");
8511
8560
  }
8512
8561
 
@@ -8561,7 +8610,7 @@ function create_default_slot$2(ctx) {
8561
8610
  };
8562
8611
  }
8563
8612
 
8564
- function create_fragment$7(ctx) {
8613
+ function create_fragment$8(ctx) {
8565
8614
  let div;
8566
8615
  let button;
8567
8616
  let current;
@@ -8625,7 +8674,7 @@ function create_fragment$7(ctx) {
8625
8674
  };
8626
8675
  }
8627
8676
 
8628
- function instance$7($$self, $$props, $$invalidate) {
8677
+ function instance$8($$self, $$props, $$invalidate) {
8629
8678
  let { $$slots: slots = {}, $$scope } = $$props;
8630
8679
  let { onClick = { operation: 'none', args: [] } } = $$props;
8631
8680
  let { eventName = '' } = $$props;
@@ -8644,13 +8693,13 @@ function instance$7($$self, $$props, $$invalidate) {
8644
8693
  class Box extends SvelteComponent {
8645
8694
  constructor(options) {
8646
8695
  super();
8647
- init(this, options, instance$7, create_fragment$7, safe_not_equal, { onClick: 0, eventName: 1, _style: 2 }, add_css$6);
8696
+ init(this, options, instance$8, create_fragment$8, safe_not_equal, { onClick: 0, eventName: 1, _style: 2 }, add_css$7);
8648
8697
  }
8649
8698
  }
8650
8699
 
8651
8700
  /* src/components/IconElement.svelte generated by Svelte v3.53.1 */
8652
8701
 
8653
- function add_css$5(target) {
8702
+ function add_css$6(target) {
8654
8703
  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)}");
8655
8704
  }
8656
8705
 
@@ -8726,7 +8775,7 @@ function create_default_slot$1(ctx) {
8726
8775
  };
8727
8776
  }
8728
8777
 
8729
- function create_fragment$6(ctx) {
8778
+ function create_fragment$7(ctx) {
8730
8779
  let div;
8731
8780
  let button;
8732
8781
  let current;
@@ -8797,7 +8846,7 @@ function parseData(dataUrl) {
8797
8846
  return decodeURIComponent(data).replaceAll('\'', '"');
8798
8847
  }
8799
8848
 
8800
- function instance$6($$self, $$props, $$invalidate) {
8849
+ function instance$7($$self, $$props, $$invalidate) {
8801
8850
  let svg;
8802
8851
  let styleVariables;
8803
8852
  let style;
@@ -8845,8 +8894,8 @@ class IconElement extends SvelteComponent {
8845
8894
  init(
8846
8895
  this,
8847
8896
  options,
8848
- instance$6,
8849
- create_fragment$6,
8897
+ instance$7,
8898
+ create_fragment$7,
8850
8899
  safe_not_equal,
8851
8900
  {
8852
8901
  icon: 4,
@@ -8856,11 +8905,130 @@ class IconElement extends SvelteComponent {
8856
8905
  color: 6,
8857
8906
  _style: 7
8858
8907
  },
8859
- add_css$5
8908
+ add_css$6
8860
8909
  );
8861
8910
  }
8862
8911
  }
8863
8912
 
8913
+ /* src/components/CustomElement.svelte generated by Svelte v3.53.1 */
8914
+
8915
+ function add_css$5(target) {
8916
+ append_styles(target, "svelte-wps40", ".customElement.svelte-wps40{box-sizing:border-box;margin:0px;padding:0px}");
8917
+ }
8918
+
8919
+ function create_fragment$6(ctx) {
8920
+ let div;
8921
+ let switch_instance;
8922
+ let current;
8923
+ var switch_value = /*component*/ ctx[1];
8924
+
8925
+ function switch_props(ctx) {
8926
+ return {
8927
+ props: {
8928
+ name: /*name*/ ctx[0],
8929
+ data: /*data*/ ctx[2]
8930
+ }
8931
+ };
8932
+ }
8933
+
8934
+ if (switch_value) {
8935
+ switch_instance = construct_svelte_component(switch_value, switch_props(ctx));
8936
+ }
8937
+
8938
+ return {
8939
+ c() {
8940
+ div = element("div");
8941
+ if (switch_instance) create_component(switch_instance.$$.fragment);
8942
+ this.h();
8943
+ },
8944
+ l(nodes) {
8945
+ div = claim_element(nodes, "DIV", { class: true, style: true });
8946
+ var div_nodes = children(div);
8947
+ if (switch_instance) claim_component(switch_instance.$$.fragment, div_nodes);
8948
+ div_nodes.forEach(detach);
8949
+ this.h();
8950
+ },
8951
+ h() {
8952
+ attr(div, "class", "customElement svelte-wps40");
8953
+ attr(div, "style", /*style*/ ctx[3]);
8954
+ },
8955
+ m(target, anchor) {
8956
+ insert_hydration(target, div, anchor);
8957
+ if (switch_instance) mount_component(switch_instance, div, null);
8958
+ current = true;
8959
+ },
8960
+ p(ctx, [dirty]) {
8961
+ const switch_instance_changes = {};
8962
+ if (dirty & /*name*/ 1) switch_instance_changes.name = /*name*/ ctx[0];
8963
+ if (dirty & /*data*/ 4) switch_instance_changes.data = /*data*/ ctx[2];
8964
+
8965
+ if (switch_value !== (switch_value = /*component*/ ctx[1])) {
8966
+ if (switch_instance) {
8967
+ group_outros();
8968
+ const old_component = switch_instance;
8969
+
8970
+ transition_out(old_component.$$.fragment, 1, 0, () => {
8971
+ destroy_component(old_component, 1);
8972
+ });
8973
+
8974
+ check_outros();
8975
+ }
8976
+
8977
+ if (switch_value) {
8978
+ switch_instance = construct_svelte_component(switch_value, switch_props(ctx));
8979
+ create_component(switch_instance.$$.fragment);
8980
+ transition_in(switch_instance.$$.fragment, 1);
8981
+ mount_component(switch_instance, div, null);
8982
+ } else {
8983
+ switch_instance = null;
8984
+ }
8985
+ } else if (switch_value) {
8986
+ switch_instance.$set(switch_instance_changes);
8987
+ }
8988
+
8989
+ if (!current || dirty & /*style*/ 8) {
8990
+ attr(div, "style", /*style*/ ctx[3]);
8991
+ }
8992
+ },
8993
+ i(local) {
8994
+ if (current) return;
8995
+ if (switch_instance) transition_in(switch_instance.$$.fragment, local);
8996
+ current = true;
8997
+ },
8998
+ o(local) {
8999
+ if (switch_instance) transition_out(switch_instance.$$.fragment, local);
9000
+ current = false;
9001
+ },
9002
+ d(detaching) {
9003
+ if (detaching) detach(div);
9004
+ if (switch_instance) destroy_component(switch_instance);
9005
+ }
9006
+ };
9007
+ }
9008
+
9009
+ function instance$6($$self, $$props, $$invalidate) {
9010
+ let { name } = $$props;
9011
+ let { component } = $$props;
9012
+ let { data } = $$props;
9013
+ let { style } = $$props;
9014
+
9015
+ $$self.$$set = $$props => {
9016
+ if ('name' in $$props) $$invalidate(0, name = $$props.name);
9017
+ if ('component' in $$props) $$invalidate(1, component = $$props.component);
9018
+ if ('data' in $$props) $$invalidate(2, data = $$props.data);
9019
+ if ('style' in $$props) $$invalidate(3, style = $$props.style);
9020
+ };
9021
+
9022
+ return [name, component, data, style];
9023
+ }
9024
+
9025
+ class CustomElement extends SvelteComponent {
9026
+ constructor(options) {
9027
+ super();
9028
+ init(this, options, instance$6, create_fragment$6, safe_not_equal, { name: 0, component: 1, data: 2, style: 3 }, add_css$5);
9029
+ }
9030
+ }
9031
+
8864
9032
  /* src/components/Flex.svelte generated by Svelte v3.53.1 */
8865
9033
 
8866
9034
  function add_css$4(target) {
@@ -9842,4 +10010,4 @@ class ImageBlock extends SvelteComponent {
9842
10010
  }
9843
10011
  }
9844
10012
 
9845
- export { ACTION_HOOK_LABEL, Alignments, AnimationStyles, BackgroundSizes, Box, ClipPaths, Countdown, Cursors, DefaultEdgePosition, DefaultFormButtonColor, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement, Flex, FlexDirections, FlexItem, Fonts, FormCheckBoxes, FormRadioButtons, FormRatingButtonsFace, FormRatingButtonsNumber, FormSelect, FormTextarea, Grid, GridItem, GridModalState, IconElement, ImageBlock, ImageElement, Justifies, KARTE_MODAL_ROOT, LengthUnits, List, ListBackgroundTypes, ListDirections, ListItem, ListSeparatorTypes, MediaQueries, Modal, ModalPositions, MovieVimeoElement, MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, Repeats, Slide, SlideItem, State, StateItem, TextBlock, TextButtonBlock, TextButtonElement, TextDirections, TextElement, WritingModes, applyCss, applyGlobalCss, close, closeAction, collection$1 as collection, create, createApp, createFog, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, formData, getActionRoot, getEventHandlers, getEvents, getLogs, getState$1 as getState, getStates, getSystem, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestroy, onScroll, onShow, onTime, resetEventHandlers, resetVariables, setEventHandlers, setSetting, setState$1 as setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, variables, widget };
10013
+ export { ACTION_HOOK_LABEL, Alignments, AnimationStyles, BackgroundSizes, Box, ClipPaths, Countdown, Cursors, CustomElement, DefaultEdgePosition, DefaultFormButtonColor, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement, Flex, FlexDirections, FlexItem, Fonts, FormCheckBoxes, FormRadioButtons, FormRatingButtonsFace, FormRatingButtonsNumber, FormSelect, FormTextarea, Grid, GridItem, GridModalState, IconElement, ImageBlock, ImageElement, Justifies, KARTE_MODAL_ROOT, LAYOUT_COMPONENT_NAMES, LengthUnits, List, ListBackgroundTypes, ListDirections, ListItem, ListSeparatorTypes, MediaQueries, Modal, ModalPositions, MovieVimeoElement, MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, Repeats, Slide, SlideItem, State, StateItem, TextBlock, TextButtonBlock, TextButtonElement, TextDirections, TextElement, WritingModes, afterUpdate, applyCss, applyGlobalCss, beforeUpdate, close, closeAction, collection$1 as collection, create, createApp, createFog, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, formData, getActionRoot, getCssVariables, getEventHandlers, getEvents, getLogs, getState$1 as getState, getStates, getSystem, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestory, onDestroy, onMount, onScroll, onShow, onTime, resetEventHandlers, resetVariables, setEventHandlers, setSetting, setState$1 as setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, tick, variables, widget };