@plaidev/karte-action-sdk 1.1.264-29046374.a006e69f → 1.1.264-29052187.465265af

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.
@@ -16620,13 +16620,34 @@ const ICON_SIZE_STYLES = {
16620
16620
  },
16621
16621
  };
16622
16622
 
16623
+ const IMAGE_ROUND_STYLES = {
16624
+ square: {
16625
+ borderTopLeftRadius: 0,
16626
+ borderTopRightRadius: 0,
16627
+ borderBottomLeftRadius: 0,
16628
+ borderBottomRightRadius: 0,
16629
+ },
16630
+ rounded: {
16631
+ borderTopLeftRadius: '0.4em',
16632
+ borderTopRightRadius: '0.4em',
16633
+ borderBottomLeftRadius: '0.4em',
16634
+ borderBottomRightRadius: '0.4em',
16635
+ },
16636
+ circle: {
16637
+ borderTopLeftRadius: '0.8em',
16638
+ borderTopRightRadius: '0.8em',
16639
+ borderBottomLeftRadius: '0.8em',
16640
+ borderBottomRightRadius: '0.8em',
16641
+ },
16642
+ };
16643
+
16623
16644
  /* src/components-flex/image/Image.svelte generated by Svelte v3.53.1 */
16624
16645
 
16625
16646
  function add_css$h(target) {
16626
16647
  append_styles(target, "svelte-gzaieg", ".image.svelte-gzaieg{max-width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;flex-shrink:0}.image-img.svelte-gzaieg{vertical-align:top;width:100%;height:100%;object-fit:cover;user-select:none;-webkit-user-drag:none}");
16627
16648
  }
16628
16649
 
16629
- // (33:0) <svelte:element this={element} {...attributes} class="image" {style} data-layer-id={layerId} on:click={handleClick} >
16650
+ // (24:0) <svelte:element this={element} {...attributes} class="image" {style} data-layer-id={layerId} on:click={handleClick} >
16630
16651
  function create_dynamic_element$5(ctx) {
16631
16652
  let svelte_element;
16632
16653
  let img;
@@ -16774,15 +16795,6 @@ function instance$l($$self, $$props, $$invalidate) {
16774
16795
  let { layerId = '' } = $$props;
16775
16796
  useInjectCustomizeCss(props);
16776
16797
  const { attributes, element, handleClick } = useClickable(props);
16777
-
16778
- const VARIANTS = {
16779
- shape: {
16780
- circle: { borderRadius: '0.8em' },
16781
- square: { borderRadius: 'none' },
16782
- rounded: { borderRadius: '0.4em' }
16783
- }
16784
- };
16785
-
16786
16798
  const aspectVariantStyles = ASPECT_VARIANT[props.aspectVariant]?.getProps();
16787
16799
 
16788
16800
  $$self.$$set = $$props => {
@@ -16793,8 +16805,11 @@ function instance$l($$self, $$props, $$invalidate) {
16793
16805
  $$self.$$.update = () => {
16794
16806
  if ($$self.$$.dirty & /*props*/ 1) {
16795
16807
  $$invalidate(2, style = objToStyle({
16796
- ...VARIANTS.shape[props.shape ?? 'square'],
16808
+ ...props.borderTopLeftRadius
16809
+ ? toCssRadius(props)
16810
+ : IMAGE_ROUND_STYLES[props.shape ?? 'square'],
16797
16811
  width: props.width ?? '100%',
16812
+ height: props.height ?? 'auto',
16798
16813
  aspectRatio: props.aspect ?? aspectVariantStyles?.aspect,
16799
16814
  ...toCssCommon(props),
16800
16815
  ...toCssBorder(props)
@@ -16813,9 +16828,9 @@ class Image extends SvelteComponent {
16813
16828
  }
16814
16829
 
16815
16830
  const IMAGE_ROUND_SHAPE = {
16816
- circle: 'サークル',
16831
+ circle: 'ラウンド / ミディアム',
16832
+ rounded: 'ラウンド / スモール',
16817
16833
  square: 'スクエア',
16818
- rounded: 'ラウンド',
16819
16834
  };
16820
16835
  const IMAGE_ASPECT_VARIANTS = {
16821
16836
  '1/1': '1 : 1',
@@ -17066,7 +17081,7 @@ function get_each_context$1(ctx, list, i) {
17066
17081
  return child_ctx;
17067
17082
  }
17068
17083
 
17069
- // (175:4) {#each indicators ?? [] as indicator, i}
17084
+ // (174:4) {#each indicators ?? [] as indicator, i}
17070
17085
  function create_each_block$1(ctx) {
17071
17086
  let button;
17072
17087
  let i_1;
@@ -17374,8 +17389,6 @@ function instance$j($$self, $$props, $$invalidate) {
17374
17389
  };
17375
17390
 
17376
17391
  const handleClick = e => {
17377
- console.log('handleClick', isDragging);
17378
-
17379
17392
  if (isDragging) {
17380
17393
  e.preventDefault();
17381
17394
  e.stopPropagation();
@@ -17400,6 +17413,7 @@ function instance$j($$self, $$props, $$invalidate) {
17400
17413
  $$invalidate(13, movedX = null);
17401
17414
  document.removeEventListener('touchmove', handleTouchmove);
17402
17415
  document.removeEventListener('touchend', handleTouchend);
17416
+ document.removeEventListener('click', handleClick);
17403
17417
  };
17404
17418
 
17405
17419
  const handleTouchstart = e => {
@@ -17419,8 +17433,6 @@ function instance$j($$self, $$props, $$invalidate) {
17419
17433
  };
17420
17434
 
17421
17435
  const handleMouseup = e => {
17422
- console.log('handleMouseup');
17423
-
17424
17436
  if (movedX >= 32) {
17425
17437
  toNext();
17426
17438
  } else if (movedX <= -32) {
@@ -18632,7 +18644,7 @@ function add_css$9(target) {
18632
18644
  append_styles(target, "svelte-45ue06", "*{box-sizing:border-box}.modal.svelte-45ue06{position:fixed;z-index:2147483647;display:flex}.modal.svelte-45ue06 > .button{flex:auto;display:flex}@media screen and (min-width: 641px){.modal-bp.svelte-45ue06{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-45ue06{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
18633
18645
  }
18634
18646
 
18635
- // (225:0) {:else}
18647
+ // (237:0) {:else}
18636
18648
  function create_else_block(ctx) {
18637
18649
  let backgroundoverlay;
18638
18650
  let current;
@@ -18644,7 +18656,7 @@ function create_else_block(ctx) {
18644
18656
  });
18645
18657
 
18646
18658
  backgroundoverlay.$on("click", function () {
18647
- if (is_function(/*backgroundClick*/ ctx[12])) /*backgroundClick*/ ctx[12].apply(this, arguments);
18659
+ if (is_function(/*backgroundClick*/ ctx[13])) /*backgroundClick*/ ctx[13].apply(this, arguments);
18648
18660
  });
18649
18661
 
18650
18662
  return {
@@ -18679,7 +18691,7 @@ function create_else_block(ctx) {
18679
18691
  };
18680
18692
  }
18681
18693
 
18682
- // (214:24)
18694
+ // (226:24)
18683
18695
  function create_if_block_2(ctx) {
18684
18696
  let backgroundoverlay0;
18685
18697
  let t;
@@ -18694,7 +18706,7 @@ function create_if_block_2(ctx) {
18694
18706
  });
18695
18707
 
18696
18708
  backgroundoverlay0.$on("click", function () {
18697
- if (is_function(/*backgroundClickPC*/ ctx[11])) /*backgroundClickPC*/ ctx[11].apply(this, arguments);
18709
+ if (is_function(/*backgroundClickPC*/ ctx[12])) /*backgroundClickPC*/ ctx[12].apply(this, arguments);
18698
18710
  });
18699
18711
 
18700
18712
  backgroundoverlay1 = new BackgroundOverlay({
@@ -18705,7 +18717,7 @@ function create_if_block_2(ctx) {
18705
18717
  });
18706
18718
 
18707
18719
  backgroundoverlay1.$on("click", function () {
18708
- if (is_function(/*backgroundClickSP*/ ctx[10])) /*backgroundClickSP*/ ctx[10].apply(this, arguments);
18720
+ if (is_function(/*backgroundClickSP*/ ctx[11])) /*backgroundClickSP*/ ctx[11].apply(this, arguments);
18709
18721
  });
18710
18722
 
18711
18723
  return {
@@ -18753,7 +18765,7 @@ function create_if_block_2(ctx) {
18753
18765
  };
18754
18766
  }
18755
18767
 
18756
- // (212:0) {#if isPreview()}
18768
+ // (224:0) {#if isPreview()}
18757
18769
  function create_if_block_1$1(ctx) {
18758
18770
  return {
18759
18771
  c: noop,
@@ -18766,14 +18778,15 @@ function create_if_block_1$1(ctx) {
18766
18778
  };
18767
18779
  }
18768
18780
 
18769
- // (228:0) {#if visible}
18781
+ // (240:0) {#if visible}
18770
18782
  function create_if_block$3(ctx) {
18771
18783
  let div;
18772
18784
  let div_class_value;
18785
+ let div_style_value;
18773
18786
  let div_intro;
18774
18787
  let current;
18775
- const default_slot_template = /*#slots*/ ctx[24].default;
18776
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[23], null);
18788
+ const default_slot_template = /*#slots*/ ctx[26].default;
18789
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[25], null);
18777
18790
 
18778
18791
  return {
18779
18792
  c() {
@@ -18800,7 +18813,7 @@ function create_if_block$3(ctx) {
18800
18813
  attr(div, "role", "dialog");
18801
18814
  attr(div, "aria-modal", "true");
18802
18815
  attr(div, "data-layer-id", /*layerId*/ ctx[2]);
18803
- attr(div, "style", Array.from(/*modalStyles*/ ctx[13]).join(';'));
18816
+ attr(div, "style", div_style_value = [Array.from(/*modalStyles*/ ctx[14]).join(';'), /*style*/ ctx[9]].join(' '));
18804
18817
  },
18805
18818
  m(target, anchor) {
18806
18819
  insert_hydration(target, div, anchor);
@@ -18809,22 +18822,22 @@ function create_if_block$3(ctx) {
18809
18822
  default_slot.m(div, null);
18810
18823
  }
18811
18824
 
18812
- /*div_binding*/ ctx[25](div);
18825
+ /*div_binding*/ ctx[27](div);
18813
18826
  current = true;
18814
18827
  },
18815
18828
  p(new_ctx, dirty) {
18816
18829
  ctx = new_ctx;
18817
18830
 
18818
18831
  if (default_slot) {
18819
- if (default_slot.p && (!current || dirty & /*$$scope*/ 8388608)) {
18832
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 33554432)) {
18820
18833
  update_slot_base(
18821
18834
  default_slot,
18822
18835
  default_slot_template,
18823
18836
  ctx,
18824
- /*$$scope*/ ctx[23],
18837
+ /*$$scope*/ ctx[25],
18825
18838
  !current
18826
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[23])
18827
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[23], dirty, null),
18839
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[25])
18840
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[25], dirty, null),
18828
18841
  null
18829
18842
  );
18830
18843
  }
@@ -18837,6 +18850,10 @@ function create_if_block$3(ctx) {
18837
18850
  if (!current || dirty & /*layerId*/ 4) {
18838
18851
  attr(div, "data-layer-id", /*layerId*/ ctx[2]);
18839
18852
  }
18853
+
18854
+ if (!current || dirty & /*style*/ 512 && div_style_value !== (div_style_value = [Array.from(/*modalStyles*/ ctx[14]).join(';'), /*style*/ ctx[9]].join(' '))) {
18855
+ attr(div, "style", div_style_value);
18856
+ }
18840
18857
  },
18841
18858
  i(local) {
18842
18859
  if (current) return;
@@ -18862,7 +18879,7 @@ function create_if_block$3(ctx) {
18862
18879
  d(detaching) {
18863
18880
  if (detaching) detach(div);
18864
18881
  if (default_slot) default_slot.d(detaching);
18865
- /*div_binding*/ ctx[25](null);
18882
+ /*div_binding*/ ctx[27](null);
18866
18883
  }
18867
18884
  };
18868
18885
  }
@@ -18912,7 +18929,7 @@ function create_fragment$d(ctx) {
18912
18929
 
18913
18930
  if (!mounted) {
18914
18931
  dispose = listen(window, "keydown", function () {
18915
- if (is_function(/*handle_keydown*/ ctx[9])) /*handle_keydown*/ ctx[9].apply(this, arguments);
18932
+ if (is_function(/*handle_keydown*/ ctx[10])) /*handle_keydown*/ ctx[10].apply(this, arguments);
18916
18933
  });
18917
18934
 
18918
18935
  mounted = true;
@@ -18998,12 +19015,14 @@ function instance$d($$self, $$props, $$invalidate) {
18998
19015
  let backgroundClickSP;
18999
19016
  let handle_keydown;
19000
19017
  let visible;
19018
+ let style;
19001
19019
  let { $$slots: slots = {}, $$scope } = $$props;
19002
19020
  let { useBreakPoint = false } = $$props;
19003
19021
  let { placement } = $$props;
19004
19022
  let { breakPoint } = $$props;
19005
19023
  let { elasticity } = $$props;
19006
19024
  let { animation = 'none' } = $$props;
19025
+ let { props = {} } = $$props;
19007
19026
  let { closeEventName = '' } = $$props;
19008
19027
  let { closeEventValue = null } = $$props;
19009
19028
  let { layerId = '' } = $$props;
@@ -19040,19 +19059,20 @@ function instance$d($$self, $$props, $$invalidate) {
19040
19059
 
19041
19060
  $$self.$$set = $$props => {
19042
19061
  if ('useBreakPoint' in $$props) $$invalidate(0, useBreakPoint = $$props.useBreakPoint);
19043
- if ('placement' in $$props) $$invalidate(14, placement = $$props.placement);
19044
- if ('breakPoint' in $$props) $$invalidate(15, breakPoint = $$props.breakPoint);
19045
- if ('elasticity' in $$props) $$invalidate(16, elasticity = $$props.elasticity);
19062
+ if ('placement' in $$props) $$invalidate(15, placement = $$props.placement);
19063
+ if ('breakPoint' in $$props) $$invalidate(16, breakPoint = $$props.breakPoint);
19064
+ if ('elasticity' in $$props) $$invalidate(17, elasticity = $$props.elasticity);
19046
19065
  if ('animation' in $$props) $$invalidate(1, animation = $$props.animation);
19047
- if ('closeEventName' in $$props) $$invalidate(17, closeEventName = $$props.closeEventName);
19048
- if ('closeEventValue' in $$props) $$invalidate(18, closeEventValue = $$props.closeEventValue);
19066
+ if ('props' in $$props) $$invalidate(18, props = $$props.props);
19067
+ if ('closeEventName' in $$props) $$invalidate(19, closeEventName = $$props.closeEventName);
19068
+ if ('closeEventValue' in $$props) $$invalidate(20, closeEventValue = $$props.closeEventValue);
19049
19069
  if ('layerId' in $$props) $$invalidate(2, layerId = $$props.layerId);
19050
- if ('$$scope' in $$props) $$invalidate(23, $$scope = $$props.$$scope);
19070
+ if ('$$scope' in $$props) $$invalidate(25, $$scope = $$props.$$scope);
19051
19071
  };
19052
19072
 
19053
19073
  $$self.$$.update = () => {
19054
- if ($$self.$$.dirty & /*closeEventName, closeEventValue*/ 393216) {
19055
- $$invalidate(22, close = () => {
19074
+ if ($$self.$$.dirty & /*closeEventName, closeEventValue*/ 1572864) {
19075
+ $$invalidate(24, close = () => {
19056
19076
  const onClose = { operation: 'closeApp', args: ['button'] };
19057
19077
 
19058
19078
  if (closeEventName) {
@@ -19063,7 +19083,7 @@ function instance$d($$self, $$props, $$invalidate) {
19063
19083
  });
19064
19084
  }
19065
19085
 
19066
- if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 49153) {
19086
+ if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
19067
19087
  {
19068
19088
 
19069
19089
  if (useBreakPoint) {
@@ -19075,30 +19095,30 @@ function instance$d($$self, $$props, $$invalidate) {
19075
19095
  }
19076
19096
  }
19077
19097
 
19078
- if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 49153) {
19098
+ if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
19079
19099
  {
19080
19100
  if (placement && placement.backgroundClick) {
19081
- $$invalidate(19, backgroundClickFunction = placement.backgroundClick);
19101
+ $$invalidate(21, backgroundClickFunction = placement.backgroundClick);
19082
19102
  }
19083
19103
 
19084
19104
  if (useBreakPoint) {
19085
19105
  const pc = breakPoint?.PC?.placement?.backgroundClick;
19086
19106
 
19087
19107
  if (pc) {
19088
- $$invalidate(20, backgroundClickFunctionPC = pc);
19108
+ $$invalidate(22, backgroundClickFunctionPC = pc);
19089
19109
  }
19090
19110
 
19091
19111
  const sp = breakPoint?.SP?.placement?.backgroundClick;
19092
19112
 
19093
19113
  if (sp) {
19094
- $$invalidate(21, backgroundClickFunctionSP = sp);
19114
+ $$invalidate(23, backgroundClickFunctionSP = sp);
19095
19115
  }
19096
19116
  }
19097
19117
  }
19098
19118
  }
19099
19119
 
19100
- if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunction*/ 917504) {
19101
- $$invalidate(12, backgroundClick = () => {
19120
+ if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunction*/ 3670016) {
19121
+ $$invalidate(13, backgroundClick = () => {
19102
19122
  if (closeEventName) {
19103
19123
  send_event(closeEventName, closeEventValue);
19104
19124
  }
@@ -19107,8 +19127,8 @@ function instance$d($$self, $$props, $$invalidate) {
19107
19127
  });
19108
19128
  }
19109
19129
 
19110
- if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 1441792) {
19111
- $$invalidate(11, backgroundClickPC = () => {
19130
+ if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 5767168) {
19131
+ $$invalidate(12, backgroundClickPC = () => {
19112
19132
  if (closeEventName) {
19113
19133
  send_event(closeEventName, closeEventValue);
19114
19134
  }
@@ -19117,8 +19137,8 @@ function instance$d($$self, $$props, $$invalidate) {
19117
19137
  });
19118
19138
  }
19119
19139
 
19120
- if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 2490368) {
19121
- $$invalidate(10, backgroundClickSP = () => {
19140
+ if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 9961472) {
19141
+ $$invalidate(11, backgroundClickSP = () => {
19122
19142
  if (closeEventName) {
19123
19143
  send_event(closeEventName, closeEventValue);
19124
19144
  }
@@ -19127,7 +19147,7 @@ function instance$d($$self, $$props, $$invalidate) {
19127
19147
  });
19128
19148
  }
19129
19149
 
19130
- if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint, transforms*/ 49161) {
19150
+ if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint, transforms*/ 98313) {
19131
19151
  // 表示位置のスタイルとアニメーションの動きを設定
19132
19152
  {
19133
19153
  // 表示位置のスタイルの設定
@@ -19161,7 +19181,7 @@ function instance$d($$self, $$props, $$invalidate) {
19161
19181
  }
19162
19182
  }
19163
19183
 
19164
- if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 49153) {
19184
+ if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
19165
19185
  // 表示位置の調整のスタイルを設定
19166
19186
  {
19167
19187
  let margin = DefaultModalPlacement.margin;
@@ -19185,7 +19205,7 @@ function instance$d($$self, $$props, $$invalidate) {
19185
19205
  }
19186
19206
  }
19187
19207
 
19188
- if ($$self.$$.dirty & /*elasticity, useBreakPoint, breakPoint*/ 98305) {
19208
+ if ($$self.$$.dirty & /*elasticity, useBreakPoint, breakPoint*/ 196609) {
19189
19209
  // 拡大方法のスタイルを設定
19190
19210
  {
19191
19211
  let elasticStyle = ElasticityStyle['none' ];
@@ -19207,8 +19227,20 @@ function instance$d($$self, $$props, $$invalidate) {
19207
19227
  }
19208
19228
  }
19209
19229
 
19210
- if ($$self.$$.dirty & /*close*/ 4194304) {
19211
- $$invalidate(9, handle_keydown = handleKeydown({ Escape: close }));
19230
+ if ($$self.$$.dirty & /*close*/ 16777216) {
19231
+ $$invalidate(10, handle_keydown = handleKeydown({ Escape: close }));
19232
+ }
19233
+
19234
+ if ($$self.$$.dirty & /*props*/ 262144) {
19235
+ $$invalidate(9, style = objToStyle({
19236
+ width: props.width,
19237
+ ...toCssOverflow(props),
19238
+ ...toCssShadow(props),
19239
+ ...toCssRadius(props),
19240
+ ...toCssBackgroundImage(props),
19241
+ ...toCssBackgroundColor(props),
19242
+ ...toCssBorder(props)
19243
+ }));
19212
19244
  }
19213
19245
  };
19214
19246
 
@@ -19227,6 +19259,7 @@ function instance$d($$self, $$props, $$invalidate) {
19227
19259
  backgroundOverlaySP,
19228
19260
  modal,
19229
19261
  visible,
19262
+ style,
19230
19263
  handle_keydown,
19231
19264
  backgroundClickSP,
19232
19265
  backgroundClickPC,
@@ -19235,6 +19268,7 @@ function instance$d($$self, $$props, $$invalidate) {
19235
19268
  placement,
19236
19269
  breakPoint,
19237
19270
  elasticity,
19271
+ props,
19238
19272
  closeEventName,
19239
19273
  closeEventValue,
19240
19274
  backgroundClickFunction,
@@ -19259,12 +19293,13 @@ class Modal extends SvelteComponent {
19259
19293
  safe_not_equal,
19260
19294
  {
19261
19295
  useBreakPoint: 0,
19262
- placement: 14,
19263
- breakPoint: 15,
19264
- elasticity: 16,
19296
+ placement: 15,
19297
+ breakPoint: 16,
19298
+ elasticity: 17,
19265
19299
  animation: 1,
19266
- closeEventName: 17,
19267
- closeEventValue: 18,
19300
+ props: 18,
19301
+ closeEventName: 19,
19302
+ closeEventValue: 20,
19268
19303
  layerId: 2
19269
19304
  },
19270
19305
  add_css$9
@@ -19382,8 +19417,8 @@ function add_css$7(target) {
19382
19417
  function create_fragment$b(ctx) {
19383
19418
  let ul;
19384
19419
  let current;
19385
- const default_slot_template = /*#slots*/ ctx[5].default;
19386
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null);
19420
+ const default_slot_template = /*#slots*/ ctx[6].default;
19421
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[5], null);
19387
19422
 
19388
19423
  return {
19389
19424
  c() {
@@ -19419,15 +19454,15 @@ function create_fragment$b(ctx) {
19419
19454
  },
19420
19455
  p(ctx, [dirty]) {
19421
19456
  if (default_slot) {
19422
- if (default_slot.p && (!current || dirty & /*$$scope*/ 16)) {
19457
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 32)) {
19423
19458
  update_slot_base(
19424
19459
  default_slot,
19425
19460
  default_slot_template,
19426
19461
  ctx,
19427
- /*$$scope*/ ctx[4],
19462
+ /*$$scope*/ ctx[5],
19428
19463
  !current
19429
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[4])
19430
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[4], dirty, null),
19464
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[5])
19465
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[5], dirty, null),
19431
19466
  null
19432
19467
  );
19433
19468
  }
@@ -19459,11 +19494,16 @@ function create_fragment$b(ctx) {
19459
19494
 
19460
19495
  function instance$b($$self, $$props, $$invalidate) {
19461
19496
  let variables;
19497
+ let actionTableData;
19462
19498
  let style;
19463
19499
  let { $$slots: slots = {}, $$scope } = $$props;
19464
19500
  let { layerId } = $$props;
19465
19501
  let { props } = $$props;
19466
19502
  useInjectCustomizeCss(props);
19503
+ const vars = getVariables();
19504
+ console.log(vars);
19505
+ console.log(props.actionTableKey);
19506
+ console.log(vars[props.actionTableKey]);
19467
19507
 
19468
19508
  setContext(LIST_ITEM_CONTEXT_KEY, {
19469
19509
  paddingTop: props.itemPaddingTop,
@@ -19480,7 +19520,7 @@ function instance$b($$self, $$props, $$invalidate) {
19480
19520
  $$self.$$set = $$props => {
19481
19521
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
19482
19522
  if ('props' in $$props) $$invalidate(2, props = $$props.props);
19483
- if ('$$scope' in $$props) $$invalidate(4, $$scope = $$props.$$scope);
19523
+ if ('$$scope' in $$props) $$invalidate(5, $$scope = $$props.$$scope);
19484
19524
  };
19485
19525
 
19486
19526
  $$self.$$.update = () => {
@@ -19496,6 +19536,12 @@ function instance$b($$self, $$props, $$invalidate) {
19496
19536
  });
19497
19537
  }
19498
19538
 
19539
+ if ($$self.$$.dirty & /*props*/ 4) {
19540
+ $$invalidate(4, actionTableData = vars[props.actionTableKey]);
19541
+ }
19542
+
19543
+ if ($$self.$$.dirty & /*actionTableData*/ 16) ;
19544
+
19499
19545
  if ($$self.$$.dirty & /*props, variables*/ 12) {
19500
19546
  $$invalidate(1, style = objToStyle({
19501
19547
  width: props.width ?? '100%',
@@ -19504,7 +19550,7 @@ function instance$b($$self, $$props, $$invalidate) {
19504
19550
  }
19505
19551
  };
19506
19552
 
19507
- return [layerId, style, props, variables, $$scope, slots];
19553
+ return [layerId, style, props, variables, actionTableData, $$scope, slots];
19508
19554
  }
19509
19555
 
19510
19556
  class List extends SvelteComponent {
@@ -19520,14 +19566,14 @@ function add_css$6(target) {
19520
19566
  append_styles(target, "svelte-1223veg", ".list-item.svelte-1223veg{margin:0;padding:0}.list-item-inner.svelte-1223veg{display:flex;align-items:center;width:100%;text-decoration:none;color:inherit}.list-item-inner.svelte-1223veg:hover{opacity:0.8}.list-item.svelte-1223veg:not(:first-child){border-top-width:var(--list-item-border-width);border-top-style:var(--list-item-border-style);border-top-color:var(--list-item-border-color)}");
19521
19567
  }
19522
19568
 
19523
- // (29:2) <svelte:element {...attributes} this={element} class="list-item-inner" style={innerStyle} on:click={handleClick} >
19569
+ // (30:2) <svelte:element {...attributes} this={element} class="list-item-inner" style={innerStyle} on:click={handleClick} >
19524
19570
  function create_dynamic_element$1(ctx) {
19525
19571
  let svelte_element;
19526
19572
  let current;
19527
19573
  let mounted;
19528
19574
  let dispose;
19529
- const default_slot_template = /*#slots*/ ctx[9].default;
19530
- const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[8], null);
19575
+ const default_slot_template = /*#slots*/ ctx[10].default;
19576
+ const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[9], null);
19531
19577
 
19532
19578
  let svelte_element_levels = [
19533
19579
  /*attributes*/ ctx[3],
@@ -19579,15 +19625,15 @@ function create_dynamic_element$1(ctx) {
19579
19625
  },
19580
19626
  p(ctx, dirty) {
19581
19627
  if (default_slot) {
19582
- if (default_slot.p && (!current || dirty & /*$$scope*/ 256)) {
19628
+ if (default_slot.p && (!current || dirty & /*$$scope*/ 512)) {
19583
19629
  update_slot_base(
19584
19630
  default_slot,
19585
19631
  default_slot_template,
19586
19632
  ctx,
19587
- /*$$scope*/ ctx[8],
19633
+ /*$$scope*/ ctx[9],
19588
19634
  !current
19589
- ? get_all_dirty_from_scope(/*$$scope*/ ctx[8])
19590
- : get_slot_changes(default_slot_template, /*$$scope*/ ctx[8], dirty, null),
19635
+ ? get_all_dirty_from_scope(/*$$scope*/ ctx[9])
19636
+ : get_slot_changes(default_slot_template, /*$$scope*/ ctx[9], dirty, null),
19591
19637
  null
19592
19638
  );
19593
19639
  }
@@ -19711,6 +19757,7 @@ function instance$a($$self, $$props, $$invalidate) {
19711
19757
  let { $$slots: slots = {}, $$scope } = $$props;
19712
19758
  let { layerId } = $$props;
19713
19759
  let { props } = $$props;
19760
+ let { item } = $$props;
19714
19761
  useInjectCustomizeCss(props);
19715
19762
  const { attributes, element, handleClick } = useClickable(props);
19716
19763
  const context = getContext(LIST_ITEM_CONTEXT_KEY) || {};
@@ -19718,16 +19765,17 @@ function instance$a($$self, $$props, $$invalidate) {
19718
19765
  $$self.$$set = $$props => {
19719
19766
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
19720
19767
  if ('props' in $$props) $$invalidate(6, props = $$props.props);
19721
- if ('$$scope' in $$props) $$invalidate(8, $$scope = $$props.$$scope);
19768
+ if ('item' in $$props) $$invalidate(7, item = $$props.item);
19769
+ if ('$$scope' in $$props) $$invalidate(9, $$scope = $$props.$$scope);
19722
19770
  };
19723
19771
 
19724
19772
  $$self.$$.update = () => {
19725
- if ($$self.$$.dirty & /*variables*/ 128) {
19773
+ if ($$self.$$.dirty & /*variables*/ 256) {
19726
19774
  $$invalidate(2, style = objToStyle(variables));
19727
19775
  }
19728
19776
  };
19729
19777
 
19730
- $$invalidate(7, variables = {
19778
+ $$invalidate(8, variables = {
19731
19779
  ...context.borderTopWidth
19732
19780
  ? {
19733
19781
  '--list-item-border-width': context.borderTopWidth ?? '0',
@@ -19753,6 +19801,7 @@ function instance$a($$self, $$props, $$invalidate) {
19753
19801
  element,
19754
19802
  handleClick,
19755
19803
  props,
19804
+ item,
19756
19805
  variables,
19757
19806
  $$scope,
19758
19807
  slots
@@ -19762,7 +19811,7 @@ function instance$a($$self, $$props, $$invalidate) {
19762
19811
  class ListItem extends SvelteComponent {
19763
19812
  constructor(options) {
19764
19813
  super();
19765
- init(this, options, instance$a, create_fragment$a, safe_not_equal, { layerId: 0, props: 6 }, add_css$6);
19814
+ init(this, options, instance$a, create_fragment$a, safe_not_equal, { layerId: 0, props: 6, item: 7 }, add_css$6);
19766
19815
  }
19767
19816
  }
19768
19817
 
@@ -19937,7 +19986,7 @@ function add_css$4(target) {
19937
19986
  append_styles(target, "svelte-1blzs1a", ".multi-column-item.svelte-1blzs1a{margin:0;width:100%;padding-top:0;padding-bottom:0;padding-left:var(--multi-column-item-padding);padding-right:var(--multi-column-item-padding)}.multi-column-item-inner.svelte-1blzs1a{display:flex;flex-direction:column;align-items:center;gap:var(--multi-column-item-gap);width:100%;text-decoration:none;color:inherit;padding-top:var(--multi-column-item-padding-top);padding-left:var(--multi-column-item-padding-left);padding-right:var(--multi-column-item-padding-right);padding-bottom:var(--multi-column-item-padding-bottom)}.multi-column-item-inner.svelte-1blzs1a:hover{opacity:0.8}.multi-column-item.svelte-1blzs1a:not(:first-child){border-left-width:var(--multi-column-item-border-width);border-left-style:var(--multi-column-item-border-style);border-left-color:var(--multi-column-item-border-color)}");
19938
19987
  }
19939
19988
 
19940
- // (29:2) <svelte:element {...attributes} this={element} class="multi-column-item-inner" on:click={handleClick} >
19989
+ // (28:2) <svelte:element {...attributes} this={element} class="multi-column-item-inner" on:click={handleClick} >
19941
19990
  function create_dynamic_element(ctx) {
19942
19991
  let svelte_element;
19943
19992
  let current;
@@ -20120,7 +20169,6 @@ function instance$8($$self, $$props, $$invalidate) {
20120
20169
  useInjectCustomizeCss(props);
20121
20170
  const { attributes, element, handleClick } = useClickable(props);
20122
20171
  const context = getContext(MULTI_COLUMN_ITEM_CONTEXT_KEY) || {};
20123
- console.log(context);
20124
20172
 
20125
20173
  $$self.$$set = $$props => {
20126
20174
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
@@ -20464,12 +20512,6 @@ function instance$6($$self, $$props, $$invalidate) {
20464
20512
  let timeLimit = props.timeLimit ? new Date(props.timeLimit) : new Date();
20465
20513
 
20466
20514
  function onEachSecond() {
20467
- console.log({
20468
- timeLimit: timeLimit.getTime(),
20469
- now: new Date().getTime(),
20470
- calced: calcRemainingTime(timeLimit.getTime())
20471
- });
20472
-
20473
20515
  const _remainingTime = calcRemainingTime(timeLimit.getTime());
20474
20516
 
20475
20517
  if (_remainingTime > 0) {
@@ -20481,8 +20523,6 @@ function instance$6($$self, $$props, $$invalidate) {
20481
20523
  execOnClickOperation(props.onEnd);
20482
20524
  }
20483
20525
  }
20484
-
20485
- console.log(remainingTime);
20486
20526
  }
20487
20527
 
20488
20528
  onMount$1(() => {
@@ -20662,9 +20702,7 @@ function instance$5($$self, $$props, $$invalidate) {
20662
20702
  let { layerId = '' } = $$props;
20663
20703
  let countdownStore = getContext('countdownStore');
20664
20704
  component_subscribe($$self, countdownStore, value => $$invalidate(5, $countdownStore = value));
20665
- console.log(countdownStore);
20666
20705
  let { style } = useText(props);
20667
- console.log(value);
20668
20706
 
20669
20707
  $$self.$$set = $$props => {
20670
20708
  if ('props' in $$props) $$invalidate(4, props = $$props.props);
@@ -20826,7 +20864,6 @@ function instance$4($$self, $$props, $$invalidate) {
20826
20864
  const handleClick = e => {
20827
20865
  e.preventDefault();
20828
20866
  const targetText = props.content ?? buttonElement?.innerText ?? '';
20829
- console.log(targetText);
20830
20867
  navigator.clipboard.writeText(targetText);
20831
20868
  send_event('_click_copy', { text: targetText });
20832
20869
 
@@ -21367,6 +21404,7 @@ var sdk = /*#__PURE__*/Object.freeze({
21367
21404
  ICON_VARIANTS: ICON_VARIANTS,
21368
21405
  IMAGE_ASPECT_VARIANTS: IMAGE_ASPECT_VARIANTS,
21369
21406
  IMAGE_ROUND_SHAPE: IMAGE_ROUND_SHAPE,
21407
+ IMAGE_ROUND_STYLES: IMAGE_ROUND_STYLES,
21370
21408
  Justifies: Justifies,
21371
21409
  KARTE_MODAL_ROOT: KARTE_MODAL_ROOT,
21372
21410
  LAYER_TEXT_SIZE: LAYER_TEXT_SIZE,
@@ -21860,4 +21898,4 @@ class ThumbnailPreview extends SvelteComponent {
21860
21898
  }
21861
21899
  }
21862
21900
 
21863
- export { ACTION_HOOK_LABEL, ASPECT_VARIANT, ASPECT_VARIANTS, AVATAR_SHAPE, AVATAR_SIZE, AVATAR_SIZE_STYLES, Alignments, AnimationStyles, BUTTON_ICON_ANGLE, BUTTON_LINK_TARGET, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_ROUND, BUTTON_ROUND_STYLES, BUTTON_SIZE, BUTTON_SIZE_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME, BUTTON_THEME, BUTTON_VARIANT, BUTTON_WRAP_STYLES, BackgroundSizes, Box, CLOSE_BUTTON_LABEL_PLACEMENT, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, ClipPaths, CodeElement, Countdown, Cursors, DefaultEdgePosition, DefaultElasticity, DefaultFormButtonColor, DefaultFormIdentifyBooleanField, DefaultFormIdentifyTextField, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalBreakPoint, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement, FONT_FAMILY_VARIANT, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, Flex, Avatar as FlexAvatar, Button as FlexButton, ButtonOutlined as FlexButtonOutlined, ButtonText as FlexButtonText, ClipCopy as FlexClipCopy, CloseButton as FlexCloseButton, Code as FlexCode, CountDown as FlexCountDown, CountDownValue as FlexCountDownValue, FlexDirections, Icon as FlexIcon, Image as FlexImage, FlexItem, Layout as FlexLayout, List as FlexList, ListItem as FlexListItem, Modal as FlexModal, MultiColumn as FlexMultiColumn, MultiColumnItem as FlexMultiColumnItem, RichText as FlexRichText, Slider as FlexSlider, SliderItem as FlexSliderItem, Text as FlexText, TextLink as FlexTextLink, Youtube as FlexYoutube, Fonts, FormCheckBoxes, FormIdentifyBooleanFields, FormIdentifyChoices, FormIdentifyInput, FormIdentifyTextFieldPlaceholders, FormIdentifyTextFieldValidations, FormIdentifyTextFields, FormRadioButtons, FormRatingButtonsFace, FormRatingButtonsNumber, FormSelect, FormTextarea, Grid, GridItem, GridModalState, ICON_SIZE, ICON_SIZE_STYLES, ICON_VARIANTS, IMAGE_ASPECT_VARIANTS, IMAGE_ROUND_SHAPE, IconElement, ImageBlock, ImageElement, Justifies, KARTE_MODAL_ROOT, LAYER_TEXT_SIZE, LAYOUT_ALIGN, LAYOUT_COMPONENT_NAMES, LAYOUT_DIRECTION, LAYOUT_DISPLAY_TYPE, LAYOUT_JUSTIFY, LIST_ITEM_CONTEXT_KEY, LengthUnits, List$1 as List, ListBackgroundTypes, ListDirections, ListItem$1 as ListItem, ListSeparatorTypes, MULTI_COLUMN_ITEM_CONTEXT_KEY, MediaQueries, Modal$1 as Modal, ModalPositions, MovieVimeoElement, MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, ROUND_STYLES, ROUND_VARIANT, Repeats, SHADOW_VARIANT, SHADOW_VARIANTS, SYSTEM_FONT, Slide, SlideItem, State$1 as State, StateItem$1 as StateItem, TEXT_LINK_SIZE, TEXT_LINK_SIZE_STYLES, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TEXT_STYLE, TEXT_THEME, TEXT_VARIANTS, TextBlock, TextButtonBlock, TextButtonElement, TextDirections, TextElement, ThumbnailPreview, WritingModes, addChoiceAnswer, addFreeAnswer, afterUpdate, applyCss, applyGlobalCss, avatarPropsDefault, beforeUpdate, buttonOutlinedPropsDefault, buttonPropsDefault, close, closeAction, collection$1 as collection, create, createApp, createFog, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, formData, getActionRoot, getAnsweredQuestion, getAnsweredQuestionIds, getBrandKit, getButtonOutlinedThemeStyles, getButtonTextThemeStyles, getButtonThemeStyles, getCssVariables, getEventHandlers, getEvents, getLogs, getState$1 as getState, getStates, getSystem, getTextLinkThemeStyles, getTextThemeStyles, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestory, onDestroy, onMount, onScroll, onShow, onTime, removeAnswer, resetEventHandlers, resetVariables, sendAnswer, sendAnswers, setEventHandlers, setSetting, setState$1 as setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, tick, useBrandKit, variables, widget };
21901
+ export { ACTION_HOOK_LABEL, ASPECT_VARIANT, ASPECT_VARIANTS, AVATAR_SHAPE, AVATAR_SIZE, AVATAR_SIZE_STYLES, Alignments, AnimationStyles, BUTTON_ICON_ANGLE, BUTTON_LINK_TARGET, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_ROUND, BUTTON_ROUND_STYLES, BUTTON_SIZE, BUTTON_SIZE_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME, BUTTON_THEME, BUTTON_VARIANT, BUTTON_WRAP_STYLES, BackgroundSizes, Box, CLOSE_BUTTON_LABEL_PLACEMENT, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, ClipPaths, CodeElement, Countdown, Cursors, DefaultEdgePosition, DefaultElasticity, DefaultFormButtonColor, DefaultFormIdentifyBooleanField, DefaultFormIdentifyTextField, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalBreakPoint, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement, FONT_FAMILY_VARIANT, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, Flex, Avatar as FlexAvatar, Button as FlexButton, ButtonOutlined as FlexButtonOutlined, ButtonText as FlexButtonText, ClipCopy as FlexClipCopy, CloseButton as FlexCloseButton, Code as FlexCode, CountDown as FlexCountDown, CountDownValue as FlexCountDownValue, FlexDirections, Icon as FlexIcon, Image as FlexImage, FlexItem, Layout as FlexLayout, List as FlexList, ListItem as FlexListItem, Modal as FlexModal, MultiColumn as FlexMultiColumn, MultiColumnItem as FlexMultiColumnItem, RichText as FlexRichText, Slider as FlexSlider, SliderItem as FlexSliderItem, Text as FlexText, TextLink as FlexTextLink, Youtube as FlexYoutube, Fonts, FormCheckBoxes, FormIdentifyBooleanFields, FormIdentifyChoices, FormIdentifyInput, FormIdentifyTextFieldPlaceholders, FormIdentifyTextFieldValidations, FormIdentifyTextFields, FormRadioButtons, FormRatingButtonsFace, FormRatingButtonsNumber, FormSelect, FormTextarea, Grid, GridItem, GridModalState, ICON_SIZE, ICON_SIZE_STYLES, ICON_VARIANTS, IMAGE_ASPECT_VARIANTS, IMAGE_ROUND_SHAPE, IMAGE_ROUND_STYLES, IconElement, ImageBlock, ImageElement, Justifies, KARTE_MODAL_ROOT, LAYER_TEXT_SIZE, LAYOUT_ALIGN, LAYOUT_COMPONENT_NAMES, LAYOUT_DIRECTION, LAYOUT_DISPLAY_TYPE, LAYOUT_JUSTIFY, LIST_ITEM_CONTEXT_KEY, LengthUnits, List$1 as List, ListBackgroundTypes, ListDirections, ListItem$1 as ListItem, ListSeparatorTypes, MULTI_COLUMN_ITEM_CONTEXT_KEY, MediaQueries, Modal$1 as Modal, ModalPositions, MovieVimeoElement, MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, ROUND_STYLES, ROUND_VARIANT, Repeats, SHADOW_VARIANT, SHADOW_VARIANTS, SYSTEM_FONT, Slide, SlideItem, State$1 as State, StateItem$1 as StateItem, TEXT_LINK_SIZE, TEXT_LINK_SIZE_STYLES, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TEXT_STYLE, TEXT_THEME, TEXT_VARIANTS, TextBlock, TextButtonBlock, TextButtonElement, TextDirections, TextElement, ThumbnailPreview, WritingModes, addChoiceAnswer, addFreeAnswer, afterUpdate, applyCss, applyGlobalCss, avatarPropsDefault, beforeUpdate, buttonOutlinedPropsDefault, buttonPropsDefault, close, closeAction, collection$1 as collection, create, createApp, createFog, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, formData, getActionRoot, getAnsweredQuestion, getAnsweredQuestionIds, getBrandKit, getButtonOutlinedThemeStyles, getButtonTextThemeStyles, getButtonThemeStyles, getCssVariables, getEventHandlers, getEvents, getLogs, getState$1 as getState, getStates, getSystem, getTextLinkThemeStyles, getTextThemeStyles, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestory, onDestroy, onMount, onScroll, onShow, onTime, removeAnswer, resetEventHandlers, resetVariables, sendAnswer, sendAnswers, setEventHandlers, setSetting, setState$1 as setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, tick, useBrandKit, variables, widget };