@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.
- package/dist/hydrate/index.es.d.ts +13 -5
- package/dist/hydrate/index.es.js +135 -97
- package/dist/index.es.d.ts +13 -5
- package/dist/index.es.js +135 -97
- package/dist/svelte5/hydrate/index.es.d.ts +13 -5
- package/dist/svelte5/hydrate/index.es.js +144 -110
- package/dist/svelte5/index.es.d.ts +13 -5
- package/dist/svelte5/index.es.js +144 -110
- package/dist/svelte5/index.front2.es.js +144 -109
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -15414,13 +15414,34 @@ const ICON_SIZE_STYLES = {
|
|
15414
15414
|
},
|
15415
15415
|
};
|
15416
15416
|
|
15417
|
+
const IMAGE_ROUND_STYLES = {
|
15418
|
+
square: {
|
15419
|
+
borderTopLeftRadius: 0,
|
15420
|
+
borderTopRightRadius: 0,
|
15421
|
+
borderBottomLeftRadius: 0,
|
15422
|
+
borderBottomRightRadius: 0,
|
15423
|
+
},
|
15424
|
+
rounded: {
|
15425
|
+
borderTopLeftRadius: '0.4em',
|
15426
|
+
borderTopRightRadius: '0.4em',
|
15427
|
+
borderBottomLeftRadius: '0.4em',
|
15428
|
+
borderBottomRightRadius: '0.4em',
|
15429
|
+
},
|
15430
|
+
circle: {
|
15431
|
+
borderTopLeftRadius: '0.8em',
|
15432
|
+
borderTopRightRadius: '0.8em',
|
15433
|
+
borderBottomLeftRadius: '0.8em',
|
15434
|
+
borderBottomRightRadius: '0.8em',
|
15435
|
+
},
|
15436
|
+
};
|
15437
|
+
|
15417
15438
|
/* src/components-flex/image/Image.svelte generated by Svelte v3.53.1 */
|
15418
15439
|
|
15419
15440
|
function add_css$h(target) {
|
15420
15441
|
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}");
|
15421
15442
|
}
|
15422
15443
|
|
15423
|
-
// (
|
15444
|
+
// (24:0) <svelte:element this={element} {...attributes} class="image" {style} data-layer-id={layerId} on:click={handleClick} >
|
15424
15445
|
function create_dynamic_element$5(ctx) {
|
15425
15446
|
let svelte_element;
|
15426
15447
|
let img;
|
@@ -15549,15 +15570,6 @@ function instance$l($$self, $$props, $$invalidate) {
|
|
15549
15570
|
let { layerId = '' } = $$props;
|
15550
15571
|
useInjectCustomizeCss(props);
|
15551
15572
|
const { attributes, element, handleClick } = useClickable(props);
|
15552
|
-
|
15553
|
-
const VARIANTS = {
|
15554
|
-
shape: {
|
15555
|
-
circle: { borderRadius: '0.8em' },
|
15556
|
-
square: { borderRadius: 'none' },
|
15557
|
-
rounded: { borderRadius: '0.4em' }
|
15558
|
-
}
|
15559
|
-
};
|
15560
|
-
|
15561
15573
|
const aspectVariantStyles = ASPECT_VARIANT[props.aspectVariant]?.getProps();
|
15562
15574
|
|
15563
15575
|
$$self.$$set = $$props => {
|
@@ -15568,8 +15580,11 @@ function instance$l($$self, $$props, $$invalidate) {
|
|
15568
15580
|
$$self.$$.update = () => {
|
15569
15581
|
if ($$self.$$.dirty & /*props*/ 1) {
|
15570
15582
|
$$invalidate(2, style = objToStyle({
|
15571
|
-
...
|
15583
|
+
...props.borderTopLeftRadius
|
15584
|
+
? toCssRadius(props)
|
15585
|
+
: IMAGE_ROUND_STYLES[props.shape ?? 'square'],
|
15572
15586
|
width: props.width ?? '100%',
|
15587
|
+
height: props.height ?? 'auto',
|
15573
15588
|
aspectRatio: props.aspect ?? aspectVariantStyles?.aspect,
|
15574
15589
|
...toCssCommon(props),
|
15575
15590
|
...toCssBorder(props)
|
@@ -15588,9 +15603,9 @@ class Image extends SvelteComponent {
|
|
15588
15603
|
}
|
15589
15604
|
|
15590
15605
|
const IMAGE_ROUND_SHAPE = {
|
15591
|
-
circle: '
|
15606
|
+
circle: 'ラウンド / ミディアム',
|
15607
|
+
rounded: 'ラウンド / スモール',
|
15592
15608
|
square: 'スクエア',
|
15593
|
-
rounded: 'ラウンド',
|
15594
15609
|
};
|
15595
15610
|
const IMAGE_ASPECT_VARIANTS = {
|
15596
15611
|
'1/1': '1 : 1',
|
@@ -15823,7 +15838,7 @@ function get_each_context$1(ctx, list, i) {
|
|
15823
15838
|
return child_ctx;
|
15824
15839
|
}
|
15825
15840
|
|
15826
|
-
// (
|
15841
|
+
// (174:4) {#each indicators ?? [] as indicator, i}
|
15827
15842
|
function create_each_block$1(ctx) {
|
15828
15843
|
let button;
|
15829
15844
|
let i_1;
|
@@ -16093,8 +16108,6 @@ function instance$j($$self, $$props, $$invalidate) {
|
|
16093
16108
|
};
|
16094
16109
|
|
16095
16110
|
const handleClick = e => {
|
16096
|
-
console.log('handleClick', isDragging);
|
16097
|
-
|
16098
16111
|
if (isDragging) {
|
16099
16112
|
e.preventDefault();
|
16100
16113
|
e.stopPropagation();
|
@@ -16119,6 +16132,7 @@ function instance$j($$self, $$props, $$invalidate) {
|
|
16119
16132
|
$$invalidate(13, movedX = null);
|
16120
16133
|
document.removeEventListener('touchmove', handleTouchmove);
|
16121
16134
|
document.removeEventListener('touchend', handleTouchend);
|
16135
|
+
document.removeEventListener('click', handleClick);
|
16122
16136
|
};
|
16123
16137
|
|
16124
16138
|
const handleTouchstart = e => {
|
@@ -16138,8 +16152,6 @@ function instance$j($$self, $$props, $$invalidate) {
|
|
16138
16152
|
};
|
16139
16153
|
|
16140
16154
|
const handleMouseup = e => {
|
16141
|
-
console.log('handleMouseup');
|
16142
|
-
|
16143
16155
|
if (movedX >= 32) {
|
16144
16156
|
toNext();
|
16145
16157
|
} else if (movedX <= -32) {
|
@@ -17267,7 +17279,7 @@ function add_css$9(target) {
|
|
17267
17279
|
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}}");
|
17268
17280
|
}
|
17269
17281
|
|
17270
|
-
// (
|
17282
|
+
// (237:0) {:else}
|
17271
17283
|
function create_else_block(ctx) {
|
17272
17284
|
let backgroundoverlay;
|
17273
17285
|
let current;
|
@@ -17279,7 +17291,7 @@ function create_else_block(ctx) {
|
|
17279
17291
|
});
|
17280
17292
|
|
17281
17293
|
backgroundoverlay.$on("click", function () {
|
17282
|
-
if (is_function(/*backgroundClick*/ ctx[
|
17294
|
+
if (is_function(/*backgroundClick*/ ctx[13])) /*backgroundClick*/ ctx[13].apply(this, arguments);
|
17283
17295
|
});
|
17284
17296
|
|
17285
17297
|
return {
|
@@ -17311,7 +17323,7 @@ function create_else_block(ctx) {
|
|
17311
17323
|
};
|
17312
17324
|
}
|
17313
17325
|
|
17314
|
-
// (
|
17326
|
+
// (226:24)
|
17315
17327
|
function create_if_block_2(ctx) {
|
17316
17328
|
let backgroundoverlay0;
|
17317
17329
|
let t;
|
@@ -17326,7 +17338,7 @@ function create_if_block_2(ctx) {
|
|
17326
17338
|
});
|
17327
17339
|
|
17328
17340
|
backgroundoverlay0.$on("click", function () {
|
17329
|
-
if (is_function(/*backgroundClickPC*/ ctx[
|
17341
|
+
if (is_function(/*backgroundClickPC*/ ctx[12])) /*backgroundClickPC*/ ctx[12].apply(this, arguments);
|
17330
17342
|
});
|
17331
17343
|
|
17332
17344
|
backgroundoverlay1 = new BackgroundOverlay({
|
@@ -17337,7 +17349,7 @@ function create_if_block_2(ctx) {
|
|
17337
17349
|
});
|
17338
17350
|
|
17339
17351
|
backgroundoverlay1.$on("click", function () {
|
17340
|
-
if (is_function(/*backgroundClickSP*/ ctx[
|
17352
|
+
if (is_function(/*backgroundClickSP*/ ctx[11])) /*backgroundClickSP*/ ctx[11].apply(this, arguments);
|
17341
17353
|
});
|
17342
17354
|
|
17343
17355
|
return {
|
@@ -17380,7 +17392,7 @@ function create_if_block_2(ctx) {
|
|
17380
17392
|
};
|
17381
17393
|
}
|
17382
17394
|
|
17383
|
-
// (
|
17395
|
+
// (224:0) {#if isPreview()}
|
17384
17396
|
function create_if_block_1$1(ctx) {
|
17385
17397
|
return {
|
17386
17398
|
c: noop,
|
@@ -17392,14 +17404,15 @@ function create_if_block_1$1(ctx) {
|
|
17392
17404
|
};
|
17393
17405
|
}
|
17394
17406
|
|
17395
|
-
// (
|
17407
|
+
// (240:0) {#if visible}
|
17396
17408
|
function create_if_block$3(ctx) {
|
17397
17409
|
let div;
|
17398
17410
|
let div_class_value;
|
17411
|
+
let div_style_value;
|
17399
17412
|
let div_intro;
|
17400
17413
|
let current;
|
17401
|
-
const default_slot_template = /*#slots*/ ctx[
|
17402
|
-
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[
|
17414
|
+
const default_slot_template = /*#slots*/ ctx[26].default;
|
17415
|
+
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[25], null);
|
17403
17416
|
|
17404
17417
|
return {
|
17405
17418
|
c() {
|
@@ -17409,7 +17422,7 @@ function create_if_block$3(ctx) {
|
|
17409
17422
|
attr(div, "role", "dialog");
|
17410
17423
|
attr(div, "aria-modal", "true");
|
17411
17424
|
attr(div, "data-layer-id", /*layerId*/ ctx[2]);
|
17412
|
-
attr(div, "style", Array.from(/*modalStyles*/ ctx[
|
17425
|
+
attr(div, "style", div_style_value = [Array.from(/*modalStyles*/ ctx[14]).join(';'), /*style*/ ctx[9]].join(' '));
|
17413
17426
|
},
|
17414
17427
|
m(target, anchor) {
|
17415
17428
|
insert(target, div, anchor);
|
@@ -17418,22 +17431,22 @@ function create_if_block$3(ctx) {
|
|
17418
17431
|
default_slot.m(div, null);
|
17419
17432
|
}
|
17420
17433
|
|
17421
|
-
/*div_binding*/ ctx[
|
17434
|
+
/*div_binding*/ ctx[27](div);
|
17422
17435
|
current = true;
|
17423
17436
|
},
|
17424
17437
|
p(new_ctx, dirty) {
|
17425
17438
|
ctx = new_ctx;
|
17426
17439
|
|
17427
17440
|
if (default_slot) {
|
17428
|
-
if (default_slot.p && (!current || dirty & /*$$scope*/
|
17441
|
+
if (default_slot.p && (!current || dirty & /*$$scope*/ 33554432)) {
|
17429
17442
|
update_slot_base(
|
17430
17443
|
default_slot,
|
17431
17444
|
default_slot_template,
|
17432
17445
|
ctx,
|
17433
|
-
/*$$scope*/ ctx[
|
17446
|
+
/*$$scope*/ ctx[25],
|
17434
17447
|
!current
|
17435
|
-
? get_all_dirty_from_scope(/*$$scope*/ ctx[
|
17436
|
-
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[
|
17448
|
+
? get_all_dirty_from_scope(/*$$scope*/ ctx[25])
|
17449
|
+
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[25], dirty, null),
|
17437
17450
|
null
|
17438
17451
|
);
|
17439
17452
|
}
|
@@ -17446,6 +17459,10 @@ function create_if_block$3(ctx) {
|
|
17446
17459
|
if (!current || dirty & /*layerId*/ 4) {
|
17447
17460
|
attr(div, "data-layer-id", /*layerId*/ ctx[2]);
|
17448
17461
|
}
|
17462
|
+
|
17463
|
+
if (!current || dirty & /*style*/ 512 && div_style_value !== (div_style_value = [Array.from(/*modalStyles*/ ctx[14]).join(';'), /*style*/ ctx[9]].join(' '))) {
|
17464
|
+
attr(div, "style", div_style_value);
|
17465
|
+
}
|
17449
17466
|
},
|
17450
17467
|
i(local) {
|
17451
17468
|
if (current) return;
|
@@ -17471,7 +17488,7 @@ function create_if_block$3(ctx) {
|
|
17471
17488
|
d(detaching) {
|
17472
17489
|
if (detaching) detach(div);
|
17473
17490
|
if (default_slot) default_slot.d(detaching);
|
17474
|
-
/*div_binding*/ ctx[
|
17491
|
+
/*div_binding*/ ctx[27](null);
|
17475
17492
|
}
|
17476
17493
|
};
|
17477
17494
|
}
|
@@ -17515,7 +17532,7 @@ function create_fragment$d(ctx) {
|
|
17515
17532
|
|
17516
17533
|
if (!mounted) {
|
17517
17534
|
dispose = listen(window, "keydown", function () {
|
17518
|
-
if (is_function(/*handle_keydown*/ ctx[
|
17535
|
+
if (is_function(/*handle_keydown*/ ctx[10])) /*handle_keydown*/ ctx[10].apply(this, arguments);
|
17519
17536
|
});
|
17520
17537
|
|
17521
17538
|
mounted = true;
|
@@ -17601,12 +17618,14 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17601
17618
|
let backgroundClickSP;
|
17602
17619
|
let handle_keydown;
|
17603
17620
|
let visible;
|
17621
|
+
let style;
|
17604
17622
|
let { $$slots: slots = {}, $$scope } = $$props;
|
17605
17623
|
let { useBreakPoint = false } = $$props;
|
17606
17624
|
let { placement } = $$props;
|
17607
17625
|
let { breakPoint } = $$props;
|
17608
17626
|
let { elasticity } = $$props;
|
17609
17627
|
let { animation = 'none' } = $$props;
|
17628
|
+
let { props = {} } = $$props;
|
17610
17629
|
let { closeEventName = '' } = $$props;
|
17611
17630
|
let { closeEventValue = null } = $$props;
|
17612
17631
|
let { layerId = '' } = $$props;
|
@@ -17643,19 +17662,20 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17643
17662
|
|
17644
17663
|
$$self.$$set = $$props => {
|
17645
17664
|
if ('useBreakPoint' in $$props) $$invalidate(0, useBreakPoint = $$props.useBreakPoint);
|
17646
|
-
if ('placement' in $$props) $$invalidate(
|
17647
|
-
if ('breakPoint' in $$props) $$invalidate(
|
17648
|
-
if ('elasticity' in $$props) $$invalidate(
|
17665
|
+
if ('placement' in $$props) $$invalidate(15, placement = $$props.placement);
|
17666
|
+
if ('breakPoint' in $$props) $$invalidate(16, breakPoint = $$props.breakPoint);
|
17667
|
+
if ('elasticity' in $$props) $$invalidate(17, elasticity = $$props.elasticity);
|
17649
17668
|
if ('animation' in $$props) $$invalidate(1, animation = $$props.animation);
|
17650
|
-
if ('
|
17651
|
-
if ('
|
17669
|
+
if ('props' in $$props) $$invalidate(18, props = $$props.props);
|
17670
|
+
if ('closeEventName' in $$props) $$invalidate(19, closeEventName = $$props.closeEventName);
|
17671
|
+
if ('closeEventValue' in $$props) $$invalidate(20, closeEventValue = $$props.closeEventValue);
|
17652
17672
|
if ('layerId' in $$props) $$invalidate(2, layerId = $$props.layerId);
|
17653
|
-
if ('$$scope' in $$props) $$invalidate(
|
17673
|
+
if ('$$scope' in $$props) $$invalidate(25, $$scope = $$props.$$scope);
|
17654
17674
|
};
|
17655
17675
|
|
17656
17676
|
$$self.$$.update = () => {
|
17657
|
-
if ($$self.$$.dirty & /*closeEventName, closeEventValue*/
|
17658
|
-
$$invalidate(
|
17677
|
+
if ($$self.$$.dirty & /*closeEventName, closeEventValue*/ 1572864) {
|
17678
|
+
$$invalidate(24, close = () => {
|
17659
17679
|
const onClose = { operation: 'closeApp', args: ['button'] };
|
17660
17680
|
|
17661
17681
|
if (closeEventName) {
|
@@ -17666,7 +17686,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17666
17686
|
});
|
17667
17687
|
}
|
17668
17688
|
|
17669
|
-
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/
|
17689
|
+
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
|
17670
17690
|
{
|
17671
17691
|
if (isExistBackgroundOverlayValue) {
|
17672
17692
|
$$invalidate(4, backgroundOverlay = placement.backgroundOverlay);
|
@@ -17681,30 +17701,30 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17681
17701
|
}
|
17682
17702
|
}
|
17683
17703
|
|
17684
|
-
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/
|
17704
|
+
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
|
17685
17705
|
{
|
17686
17706
|
if (placement && placement.backgroundClick) {
|
17687
|
-
$$invalidate(
|
17707
|
+
$$invalidate(21, backgroundClickFunction = placement.backgroundClick);
|
17688
17708
|
}
|
17689
17709
|
|
17690
17710
|
if (useBreakPoint) {
|
17691
17711
|
const pc = breakPoint?.PC?.placement?.backgroundClick;
|
17692
17712
|
|
17693
17713
|
if (pc) {
|
17694
|
-
$$invalidate(
|
17714
|
+
$$invalidate(22, backgroundClickFunctionPC = pc);
|
17695
17715
|
}
|
17696
17716
|
|
17697
17717
|
const sp = breakPoint?.SP?.placement?.backgroundClick;
|
17698
17718
|
|
17699
17719
|
if (sp) {
|
17700
|
-
$$invalidate(
|
17720
|
+
$$invalidate(23, backgroundClickFunctionSP = sp);
|
17701
17721
|
}
|
17702
17722
|
}
|
17703
17723
|
}
|
17704
17724
|
}
|
17705
17725
|
|
17706
|
-
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunction*/
|
17707
|
-
$$invalidate(
|
17726
|
+
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunction*/ 3670016) {
|
17727
|
+
$$invalidate(13, backgroundClick = () => {
|
17708
17728
|
if (closeEventName) {
|
17709
17729
|
send_event(closeEventName, closeEventValue);
|
17710
17730
|
}
|
@@ -17713,8 +17733,8 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17713
17733
|
});
|
17714
17734
|
}
|
17715
17735
|
|
17716
|
-
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/
|
17717
|
-
$$invalidate(
|
17736
|
+
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionPC*/ 5767168) {
|
17737
|
+
$$invalidate(12, backgroundClickPC = () => {
|
17718
17738
|
if (closeEventName) {
|
17719
17739
|
send_event(closeEventName, closeEventValue);
|
17720
17740
|
}
|
@@ -17723,8 +17743,8 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17723
17743
|
});
|
17724
17744
|
}
|
17725
17745
|
|
17726
|
-
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/
|
17727
|
-
$$invalidate(
|
17746
|
+
if ($$self.$$.dirty & /*closeEventName, closeEventValue, backgroundClickFunctionSP*/ 9961472) {
|
17747
|
+
$$invalidate(11, backgroundClickSP = () => {
|
17728
17748
|
if (closeEventName) {
|
17729
17749
|
send_event(closeEventName, closeEventValue);
|
17730
17750
|
}
|
@@ -17733,7 +17753,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17733
17753
|
});
|
17734
17754
|
}
|
17735
17755
|
|
17736
|
-
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint, transforms*/
|
17756
|
+
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint, transforms*/ 98313) {
|
17737
17757
|
// 表示位置のスタイルとアニメーションの動きを設定
|
17738
17758
|
{
|
17739
17759
|
// 表示位置のスタイルの設定
|
@@ -17781,7 +17801,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17781
17801
|
}
|
17782
17802
|
}
|
17783
17803
|
|
17784
|
-
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/
|
17804
|
+
if ($$self.$$.dirty & /*placement, useBreakPoint, breakPoint*/ 98305) {
|
17785
17805
|
// 表示位置の調整のスタイルを設定
|
17786
17806
|
{
|
17787
17807
|
let margin = DefaultModalPlacement.margin;
|
@@ -17813,7 +17833,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17813
17833
|
}
|
17814
17834
|
}
|
17815
17835
|
|
17816
|
-
if ($$self.$$.dirty & /*elasticity, useBreakPoint, breakPoint*/
|
17836
|
+
if ($$self.$$.dirty & /*elasticity, useBreakPoint, breakPoint*/ 196609) {
|
17817
17837
|
// 拡大方法のスタイルを設定
|
17818
17838
|
{
|
17819
17839
|
let elasticStyle = ElasticityStyle[elasticity];
|
@@ -17839,8 +17859,20 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17839
17859
|
}
|
17840
17860
|
}
|
17841
17861
|
|
17842
|
-
if ($$self.$$.dirty & /*close*/
|
17843
|
-
$$invalidate(
|
17862
|
+
if ($$self.$$.dirty & /*close*/ 16777216) {
|
17863
|
+
$$invalidate(10, handle_keydown = handleKeydown({ Escape: close }));
|
17864
|
+
}
|
17865
|
+
|
17866
|
+
if ($$self.$$.dirty & /*props*/ 262144) {
|
17867
|
+
$$invalidate(9, style = objToStyle({
|
17868
|
+
width: props.width,
|
17869
|
+
...toCssOverflow(props),
|
17870
|
+
...toCssShadow(props),
|
17871
|
+
...toCssRadius(props),
|
17872
|
+
...toCssBackgroundImage(props),
|
17873
|
+
...toCssBackgroundColor(props),
|
17874
|
+
...toCssBorder(props)
|
17875
|
+
}));
|
17844
17876
|
}
|
17845
17877
|
};
|
17846
17878
|
|
@@ -17859,6 +17891,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17859
17891
|
backgroundOverlaySP,
|
17860
17892
|
modal,
|
17861
17893
|
visible,
|
17894
|
+
style,
|
17862
17895
|
handle_keydown,
|
17863
17896
|
backgroundClickSP,
|
17864
17897
|
backgroundClickPC,
|
@@ -17867,6 +17900,7 @@ function instance$d($$self, $$props, $$invalidate) {
|
|
17867
17900
|
placement,
|
17868
17901
|
breakPoint,
|
17869
17902
|
elasticity,
|
17903
|
+
props,
|
17870
17904
|
closeEventName,
|
17871
17905
|
closeEventValue,
|
17872
17906
|
backgroundClickFunction,
|
@@ -17891,12 +17925,13 @@ class Modal extends SvelteComponent {
|
|
17891
17925
|
safe_not_equal,
|
17892
17926
|
{
|
17893
17927
|
useBreakPoint: 0,
|
17894
|
-
placement:
|
17895
|
-
breakPoint:
|
17896
|
-
elasticity:
|
17928
|
+
placement: 15,
|
17929
|
+
breakPoint: 16,
|
17930
|
+
elasticity: 17,
|
17897
17931
|
animation: 1,
|
17898
|
-
|
17899
|
-
|
17932
|
+
props: 18,
|
17933
|
+
closeEventName: 19,
|
17934
|
+
closeEventValue: 20,
|
17900
17935
|
layerId: 2
|
17901
17936
|
},
|
17902
17937
|
add_css$9
|
@@ -18005,8 +18040,8 @@ function add_css$7(target) {
|
|
18005
18040
|
function create_fragment$b(ctx) {
|
18006
18041
|
let ul;
|
18007
18042
|
let current;
|
18008
|
-
const default_slot_template = /*#slots*/ ctx[
|
18009
|
-
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[
|
18043
|
+
const default_slot_template = /*#slots*/ ctx[6].default;
|
18044
|
+
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[5], null);
|
18010
18045
|
|
18011
18046
|
return {
|
18012
18047
|
c() {
|
@@ -18027,15 +18062,15 @@ function create_fragment$b(ctx) {
|
|
18027
18062
|
},
|
18028
18063
|
p(ctx, [dirty]) {
|
18029
18064
|
if (default_slot) {
|
18030
|
-
if (default_slot.p && (!current || dirty & /*$$scope*/
|
18065
|
+
if (default_slot.p && (!current || dirty & /*$$scope*/ 32)) {
|
18031
18066
|
update_slot_base(
|
18032
18067
|
default_slot,
|
18033
18068
|
default_slot_template,
|
18034
18069
|
ctx,
|
18035
|
-
/*$$scope*/ ctx[
|
18070
|
+
/*$$scope*/ ctx[5],
|
18036
18071
|
!current
|
18037
|
-
? get_all_dirty_from_scope(/*$$scope*/ ctx[
|
18038
|
-
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[
|
18072
|
+
? get_all_dirty_from_scope(/*$$scope*/ ctx[5])
|
18073
|
+
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[5], dirty, null),
|
18039
18074
|
null
|
18040
18075
|
);
|
18041
18076
|
}
|
@@ -18067,11 +18102,16 @@ function create_fragment$b(ctx) {
|
|
18067
18102
|
|
18068
18103
|
function instance$b($$self, $$props, $$invalidate) {
|
18069
18104
|
let variables;
|
18105
|
+
let actionTableData;
|
18070
18106
|
let style;
|
18071
18107
|
let { $$slots: slots = {}, $$scope } = $$props;
|
18072
18108
|
let { layerId } = $$props;
|
18073
18109
|
let { props } = $$props;
|
18074
18110
|
useInjectCustomizeCss(props);
|
18111
|
+
const vars = getVariables();
|
18112
|
+
console.log(vars);
|
18113
|
+
console.log(props.actionTableKey);
|
18114
|
+
console.log(vars[props.actionTableKey]);
|
18075
18115
|
|
18076
18116
|
setContext(LIST_ITEM_CONTEXT_KEY, {
|
18077
18117
|
paddingTop: props.itemPaddingTop,
|
@@ -18088,7 +18128,7 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
18088
18128
|
$$self.$$set = $$props => {
|
18089
18129
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
18090
18130
|
if ('props' in $$props) $$invalidate(2, props = $$props.props);
|
18091
|
-
if ('$$scope' in $$props) $$invalidate(
|
18131
|
+
if ('$$scope' in $$props) $$invalidate(5, $$scope = $$props.$$scope);
|
18092
18132
|
};
|
18093
18133
|
|
18094
18134
|
$$self.$$.update = () => {
|
@@ -18104,6 +18144,12 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
18104
18144
|
});
|
18105
18145
|
}
|
18106
18146
|
|
18147
|
+
if ($$self.$$.dirty & /*props*/ 4) {
|
18148
|
+
$$invalidate(4, actionTableData = vars[props.actionTableKey]);
|
18149
|
+
}
|
18150
|
+
|
18151
|
+
if ($$self.$$.dirty & /*actionTableData*/ 16) ;
|
18152
|
+
|
18107
18153
|
if ($$self.$$.dirty & /*props, variables*/ 12) {
|
18108
18154
|
$$invalidate(1, style = objToStyle({
|
18109
18155
|
width: props.width ?? '100%',
|
@@ -18112,7 +18158,7 @@ function instance$b($$self, $$props, $$invalidate) {
|
|
18112
18158
|
}
|
18113
18159
|
};
|
18114
18160
|
|
18115
|
-
return [layerId, style, props, variables, $$scope, slots];
|
18161
|
+
return [layerId, style, props, variables, actionTableData, $$scope, slots];
|
18116
18162
|
}
|
18117
18163
|
|
18118
18164
|
class List extends SvelteComponent {
|
@@ -18128,14 +18174,14 @@ function add_css$6(target) {
|
|
18128
18174
|
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)}");
|
18129
18175
|
}
|
18130
18176
|
|
18131
|
-
// (
|
18177
|
+
// (30:2) <svelte:element {...attributes} this={element} class="list-item-inner" style={innerStyle} on:click={handleClick} >
|
18132
18178
|
function create_dynamic_element$1(ctx) {
|
18133
18179
|
let svelte_element;
|
18134
18180
|
let current;
|
18135
18181
|
let mounted;
|
18136
18182
|
let dispose;
|
18137
|
-
const default_slot_template = /*#slots*/ ctx[
|
18138
|
-
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[
|
18183
|
+
const default_slot_template = /*#slots*/ ctx[10].default;
|
18184
|
+
const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[9], null);
|
18139
18185
|
|
18140
18186
|
let svelte_element_levels = [
|
18141
18187
|
/*attributes*/ ctx[3],
|
@@ -18178,15 +18224,15 @@ function create_dynamic_element$1(ctx) {
|
|
18178
18224
|
},
|
18179
18225
|
p(ctx, dirty) {
|
18180
18226
|
if (default_slot) {
|
18181
|
-
if (default_slot.p && (!current || dirty & /*$$scope*/
|
18227
|
+
if (default_slot.p && (!current || dirty & /*$$scope*/ 512)) {
|
18182
18228
|
update_slot_base(
|
18183
18229
|
default_slot,
|
18184
18230
|
default_slot_template,
|
18185
18231
|
ctx,
|
18186
|
-
/*$$scope*/ ctx[
|
18232
|
+
/*$$scope*/ ctx[9],
|
18187
18233
|
!current
|
18188
|
-
? get_all_dirty_from_scope(/*$$scope*/ ctx[
|
18189
|
-
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[
|
18234
|
+
? get_all_dirty_from_scope(/*$$scope*/ ctx[9])
|
18235
|
+
: get_slot_changes(default_slot_template, /*$$scope*/ ctx[9], dirty, null),
|
18190
18236
|
null
|
18191
18237
|
);
|
18192
18238
|
}
|
@@ -18295,6 +18341,7 @@ function instance$a($$self, $$props, $$invalidate) {
|
|
18295
18341
|
let { $$slots: slots = {}, $$scope } = $$props;
|
18296
18342
|
let { layerId } = $$props;
|
18297
18343
|
let { props } = $$props;
|
18344
|
+
let { item } = $$props;
|
18298
18345
|
useInjectCustomizeCss(props);
|
18299
18346
|
const { attributes, element, handleClick } = useClickable(props);
|
18300
18347
|
const context = getContext(LIST_ITEM_CONTEXT_KEY) || {};
|
@@ -18302,16 +18349,17 @@ function instance$a($$self, $$props, $$invalidate) {
|
|
18302
18349
|
$$self.$$set = $$props => {
|
18303
18350
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
18304
18351
|
if ('props' in $$props) $$invalidate(6, props = $$props.props);
|
18305
|
-
if ('
|
18352
|
+
if ('item' in $$props) $$invalidate(7, item = $$props.item);
|
18353
|
+
if ('$$scope' in $$props) $$invalidate(9, $$scope = $$props.$$scope);
|
18306
18354
|
};
|
18307
18355
|
|
18308
18356
|
$$self.$$.update = () => {
|
18309
|
-
if ($$self.$$.dirty & /*variables*/
|
18357
|
+
if ($$self.$$.dirty & /*variables*/ 256) {
|
18310
18358
|
$$invalidate(2, style = objToStyle(variables));
|
18311
18359
|
}
|
18312
18360
|
};
|
18313
18361
|
|
18314
|
-
$$invalidate(
|
18362
|
+
$$invalidate(8, variables = {
|
18315
18363
|
...context.borderTopWidth
|
18316
18364
|
? {
|
18317
18365
|
'--list-item-border-width': context.borderTopWidth ?? '0',
|
@@ -18337,6 +18385,7 @@ function instance$a($$self, $$props, $$invalidate) {
|
|
18337
18385
|
element,
|
18338
18386
|
handleClick,
|
18339
18387
|
props,
|
18388
|
+
item,
|
18340
18389
|
variables,
|
18341
18390
|
$$scope,
|
18342
18391
|
slots
|
@@ -18346,7 +18395,7 @@ function instance$a($$self, $$props, $$invalidate) {
|
|
18346
18395
|
class ListItem extends SvelteComponent {
|
18347
18396
|
constructor(options) {
|
18348
18397
|
super();
|
18349
|
-
init(this, options, instance$a, create_fragment$a, safe_not_equal, { layerId: 0, props: 6 }, add_css$6);
|
18398
|
+
init(this, options, instance$a, create_fragment$a, safe_not_equal, { layerId: 0, props: 6, item: 7 }, add_css$6);
|
18350
18399
|
}
|
18351
18400
|
}
|
18352
18401
|
|
@@ -18506,7 +18555,7 @@ function add_css$4(target) {
|
|
18506
18555
|
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)}");
|
18507
18556
|
}
|
18508
18557
|
|
18509
|
-
// (
|
18558
|
+
// (28:2) <svelte:element {...attributes} this={element} class="multi-column-item-inner" on:click={handleClick} >
|
18510
18559
|
function create_dynamic_element(ctx) {
|
18511
18560
|
let svelte_element;
|
18512
18561
|
let current;
|
@@ -18665,7 +18714,6 @@ function instance$8($$self, $$props, $$invalidate) {
|
|
18665
18714
|
useInjectCustomizeCss(props);
|
18666
18715
|
const { attributes, element, handleClick } = useClickable(props);
|
18667
18716
|
const context = getContext(MULTI_COLUMN_ITEM_CONTEXT_KEY) || {};
|
18668
|
-
console.log(context);
|
18669
18717
|
|
18670
18718
|
$$self.$$set = $$props => {
|
18671
18719
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
@@ -18983,12 +19031,6 @@ function instance$6($$self, $$props, $$invalidate) {
|
|
18983
19031
|
let timeLimit = props.timeLimit ? new Date(props.timeLimit) : new Date();
|
18984
19032
|
|
18985
19033
|
function onEachSecond() {
|
18986
|
-
console.log({
|
18987
|
-
timeLimit: timeLimit.getTime(),
|
18988
|
-
now: new Date().getTime(),
|
18989
|
-
calced: calcRemainingTime(timeLimit.getTime())
|
18990
|
-
});
|
18991
|
-
|
18992
19034
|
const _remainingTime = calcRemainingTime(timeLimit.getTime());
|
18993
19035
|
|
18994
19036
|
if (_remainingTime > 0) {
|
@@ -19000,8 +19042,6 @@ function instance$6($$self, $$props, $$invalidate) {
|
|
19000
19042
|
execOnClickOperation(props.onEnd);
|
19001
19043
|
}
|
19002
19044
|
}
|
19003
|
-
|
19004
|
-
console.log(remainingTime);
|
19005
19045
|
}
|
19006
19046
|
|
19007
19047
|
onMount$1(() => {
|
@@ -19166,9 +19206,7 @@ function instance$5($$self, $$props, $$invalidate) {
|
|
19166
19206
|
let { layerId = '' } = $$props;
|
19167
19207
|
let countdownStore = getContext('countdownStore');
|
19168
19208
|
component_subscribe($$self, countdownStore, value => $$invalidate(5, $countdownStore = value));
|
19169
|
-
console.log(countdownStore);
|
19170
19209
|
let { style } = useText(props);
|
19171
|
-
console.log(value);
|
19172
19210
|
|
19173
19211
|
$$self.$$set = $$props => {
|
19174
19212
|
if ('props' in $$props) $$invalidate(4, props = $$props.props);
|
@@ -19312,7 +19350,6 @@ function instance$4($$self, $$props, $$invalidate) {
|
|
19312
19350
|
const handleClick = e => {
|
19313
19351
|
e.preventDefault();
|
19314
19352
|
const targetText = props.content ?? buttonElement?.innerText ?? '';
|
19315
|
-
console.log(targetText);
|
19316
19353
|
navigator.clipboard.writeText(targetText);
|
19317
19354
|
send_event('_click_copy', { text: targetText });
|
19318
19355
|
|
@@ -19820,6 +19857,7 @@ var sdk = /*#__PURE__*/Object.freeze({
|
|
19820
19857
|
ICON_VARIANTS: ICON_VARIANTS,
|
19821
19858
|
IMAGE_ASPECT_VARIANTS: IMAGE_ASPECT_VARIANTS,
|
19822
19859
|
IMAGE_ROUND_SHAPE: IMAGE_ROUND_SHAPE,
|
19860
|
+
IMAGE_ROUND_STYLES: IMAGE_ROUND_STYLES,
|
19823
19861
|
Justifies: Justifies,
|
19824
19862
|
KARTE_MODAL_ROOT: KARTE_MODAL_ROOT,
|
19825
19863
|
LAYER_TEXT_SIZE: LAYER_TEXT_SIZE,
|
@@ -20291,4 +20329,4 @@ class ThumbnailPreview extends SvelteComponent {
|
|
20291
20329
|
}
|
20292
20330
|
}
|
20293
20331
|
|
20294
|
-
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 };
|
20332
|
+
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 };
|