@plaidev/karte-action-sdk 1.1.262-29008967.165cd23d → 1.1.262-29016950.d6ccaa08

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.
@@ -2347,7 +2347,7 @@ declare const afterUpdate: typeof afterUpdateSvelte;
2347
2347
  declare const tick: typeof tickSvelte;
2348
2348
  // @internal
2349
2349
  declare const LAYOUT_COMPONENT_NAMES: string[];
2350
- type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Properties>;
2350
+ type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Props | Properties>;
2351
2351
  declare const ROUND_VARIANT: {
2352
2352
  readonly extra_small: "XSmall (2px)";
2353
2353
  readonly small: "Small (4px)";
@@ -2357,20 +2357,28 @@ declare const ROUND_VARIANT: {
2357
2357
  readonly fulled: "Full (100%)";
2358
2358
  };
2359
2359
  declare const BUTTON_SIZE: {
2360
- readonly extra_small: "XSmall";
2361
- readonly small: "Small";
2362
- readonly medium: "Medium";
2363
- readonly large: "Large";
2364
- readonly extra_large: "XLarge";
2360
+ readonly extra_small: "\u30A8\u30AF\u30B9\u30C8\u30E9 \u30B9\u30E2\u30FC\u30EB";
2361
+ readonly small: "\u30B9\u30E2\u30FC\u30EB";
2362
+ readonly medium: "\u30DF\u30C7\u30A3\u30A2\u30E0";
2363
+ readonly large: "\u30E9\u30FC\u30B8";
2364
+ readonly extra_large: "\u30A8\u30AF\u30B9\u30C8\u30E9 \u30E9\u30FC\u30B8";
2365
2365
  };
2366
2366
  declare const BUTTON_THEME: {
2367
- readonly default: "Default";
2368
- readonly general: "General";
2369
- readonly success: "Success";
2370
- readonly warning: "Warning";
2371
- readonly danger: "Dander";
2372
- readonly info: "Info";
2373
- readonly white: "White";
2367
+ readonly default: "\u30CE\u30FC\u30DE\u30EB / \u30D6\u30E9\u30F3\u30C9";
2368
+ readonly general: "\u30CE\u30FC\u30DE\u30EB / \u30B8\u30A7\u30CD\u30E9\u30EB";
2369
+ readonly danger: "\u30CE\u30FC\u30DE\u30EB / \u30A2\u30E9\u30FC\u30C8";
2370
+ readonly white: "\u30CE\u30FC\u30DE\u30EB / \u30DB\u30EF\u30A4\u30C8";
2371
+ readonly default_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30D6\u30E9\u30F3\u30C9";
2372
+ readonly general_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30B8\u30A7\u30CD\u30E9\u30EB";
2373
+ readonly danger_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30A2\u30E9\u30FC\u30C8";
2374
+ readonly default_text: "\u30C6\u30AD\u30B9\u30C8 / \u30D6\u30E9\u30F3\u30C9";
2375
+ readonly general_text: "\u30C6\u30AD\u30B9\u30C8 / \u30B8\u30A7\u30CD\u30E9\u30EB";
2376
+ readonly danger_text: "\u30C6\u30AD\u30B9\u30C8 / \u30A2\u30E9\u30FC\u30C8";
2377
+ };
2378
+ declare const BUTTON_VARIANT: {
2379
+ readonly normal: "\u30CE\u30FC\u30DE\u30EB";
2380
+ readonly outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3";
2381
+ readonly text: "\u30C6\u30AD\u30B9\u30C8";
2374
2382
  };
2375
2383
  declare const BUTTON_ROUND: {
2376
2384
  readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
@@ -2385,7 +2393,7 @@ declare const BUTTON_ICON_ANGLE: {
2385
2393
  readonly row: "\u5DE6\u5074";
2386
2394
  readonly "row-reverse": "\u53F3\u5074";
2387
2395
  };
2388
- type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & BorderProps & {
2396
+ type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & RadiusProps & BorderProps & {
2389
2397
  label?: string;
2390
2398
  // size
2391
2399
  size?: keyof typeof BUTTON_SIZE | string;
@@ -2395,8 +2403,10 @@ type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & With
2395
2403
  fontSize?: Properties["fontSize"];
2396
2404
  // theme
2397
2405
  theme?: keyof typeof BUTTON_THEME | string;
2406
+ variant?: keyof typeof BUTTON_VARIANT | string;
2398
2407
  color?: Properties["color"];
2399
2408
  backgroundColor?: Properties["backgroundColor"];
2409
+ borderColor?: Properties["borderColor"];
2400
2410
  // others
2401
2411
  fontWeight?: Properties["fontWeight"];
2402
2412
  round?: keyof typeof BUTTON_ROUND;
@@ -2424,32 +2434,65 @@ type VariantStyles<Props extends object = object> = Props & {
2424
2434
  hover?: Props;
2425
2435
  active?: Props;
2426
2436
  };
2427
- type VariantDefinition<Props extends object = object, Meta extends object = undefined> = {
2437
+ type VariantDefinition<Props extends object = object, Meta extends object = object> = {
2428
2438
  name: string;
2429
2439
  description?: string;
2430
2440
  getProps: (brandKit?: BrandKit) => VariantStyles<Props>;
2431
2441
  meta?: Meta;
2432
2442
  };
2433
- type VariantDefinitionGroup<Props extends object = object> = Record<string, VariantDefinition<Props>>;
2443
+ type VariantDefinitionGroup<Props extends object = object, Meta extends object = object> = Record<string, VariantDefinition<Props, Meta>>;
2434
2444
  // ================================
2435
2445
  // Aspect
2436
2446
  // ================================
2437
- declare const ASPECT_VARIANT: VariantDefinitionGroup<Omit<AspectProps, "aspectVariant">>;
2447
+ declare const ASPECT_VARIANT: VariantDefinitionGroup<Omit<AspectProps, "aspectVariant">, object>;
2438
2448
  type AspectVariantCode = keyof typeof ASPECT_VARIANT;
2439
- declare const ASPECT_VARIANTS: (VariantDefinition<Omit<AspectProps, "aspectVariant">, undefined> & {
2449
+ declare const ASPECT_VARIANTS: (VariantDefinition<Omit<AspectProps, "aspectVariant">, object> & {
2440
2450
  code: string;
2441
2451
  })[];
2442
- declare const FONT_FAMILY_VARIANT: VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">>;
2452
+ // ================================
2453
+ // FontFamily
2454
+ // ================================
2455
+ type FontVariantMeta = {
2456
+ lang: "ja" | "en";
2457
+ type: "kaku" | "maru" | "min";
2458
+ };
2459
+ declare const FONT_FAMILY_VARIANT: VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta>;
2443
2460
  type FontFamilyVariantCode = keyof typeof FONT_FAMILY_VARIANT;
2444
- declare const FONT_FAMILY_VARIANTS: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, undefined> & {
2461
+ declare const FONT_FAMILY_VARIANTS: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta> & {
2445
2462
  code: string;
2446
2463
  })[];
2464
+ declare const FONT_FAMILY_VARIANT_GROUPS: readonly [
2465
+ {
2466
+ readonly label: "\u65E5\u672C\u8A9E / \u89D2\u30B4\u30B7\u30C3\u30AF";
2467
+ readonly variants: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta> & {
2468
+ code: string;
2469
+ })[];
2470
+ },
2471
+ {
2472
+ readonly label: "\u65E5\u672C\u8A9E / \u4E38\u30B4\u30B7\u30C3\u30AF";
2473
+ readonly variants: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta> & {
2474
+ code: string;
2475
+ })[];
2476
+ },
2477
+ {
2478
+ readonly label: "\u65E5\u672C\u8A9E / \u660E\u671D";
2479
+ readonly variants: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta> & {
2480
+ code: string;
2481
+ })[];
2482
+ },
2483
+ {
2484
+ readonly label: "\u82F1\u8A9E";
2485
+ readonly variants: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta> & {
2486
+ code: string;
2487
+ })[];
2488
+ }
2489
+ ];
2447
2490
  // ================================
2448
2491
  // Shadow
2449
2492
  // ================================
2450
- declare const SHADOW_VARIANT: VariantDefinitionGroup<Omit<ShadowProps, "shadowVariant">>;
2493
+ declare const SHADOW_VARIANT: VariantDefinitionGroup<Omit<ShadowProps, "shadowVariant">, object>;
2451
2494
  type ShadowVariantCode = keyof typeof SHADOW_VARIANT;
2452
- declare const SHADOW_VARIANTS: (VariantDefinition<Omit<ShadowProps, "shadowVariant">, undefined> & {
2495
+ declare const SHADOW_VARIANTS: (VariantDefinition<Omit<ShadowProps, "shadowVariant">, object> & {
2453
2496
  code: string;
2454
2497
  })[];
2455
2498
  type PositionPlaceProps = {
@@ -2554,38 +2597,32 @@ type AvatarProps = CommonProps & ClickableProps & BorderProps & {
2554
2597
  };
2555
2598
  declare const avatarPropsDefault: AvatarProps;
2556
2599
  declare const AVATAR_SIZE_STYLES: PropStyles<AvatarProps, "size">;
2557
- declare const getButtonThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2558
- default: {
2559
- backgroundColor: string;
2560
- color: "#FFFFFF";
2561
- };
2562
- general: {
2563
- backgroundColor: "#e8e8e8";
2564
- color: "rgba(0, 16, 14, 0.7)";
2565
- };
2566
- success: {
2567
- backgroundColor: string;
2568
- color: "#ffffff";
2569
- };
2570
- warning: {
2571
- backgroundColor: string;
2572
- color: "#ffffff";
2573
- };
2574
- danger: {
2575
- backgroundColor: string;
2576
- color: "#FFFFFF";
2577
- };
2578
- info: {
2579
- backgroundColor: string;
2580
- color: "#FFFFFF";
2581
- };
2582
- white: {
2583
- backgroundColor: "#FFFFFF";
2584
- color: string;
2585
- };
2586
- };
2600
+ declare const getButtonThemeStyles: (customBrandKit?: Partial<BrandKit>) => Record<string, Partial<MetaProps & {
2601
+ top?: import("csstype").Property.Top<0 | (string & {})>;
2602
+ left?: import("csstype").Property.Left<0 | (string & {})>;
2603
+ right?: import("csstype").Property.Right<0 | (string & {})>;
2604
+ bottom?: import("csstype").Property.Bottom<0 | (string & {})>;
2605
+ transform?: import("csstype").Property.Transform;
2606
+ } & {
2607
+ position?: import("csstype").Property.Position;
2608
+ } & CustomizeCssProps & BrandStyleProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & RadiusProps & BorderProps & {
2609
+ label?: string;
2610
+ size?: string;
2611
+ height?: import("csstype").Property.Height<0 | (string & {})>;
2612
+ paddingLeft?: import("csstype").Property.PaddingLeft<0 | (string & {})>;
2613
+ paddingRight?: import("csstype").Property.PaddingRight<0 | (string & {})>;
2614
+ fontSize?: import("csstype").Property.FontSize<0 | (string & {})>;
2615
+ theme?: string;
2616
+ variant?: string;
2617
+ color?: import("csstype").Property.Color;
2618
+ backgroundColor?: import("csstype").Property.BackgroundColor;
2619
+ borderColor?: import("csstype").Property.BorderColor;
2620
+ fontWeight?: import("csstype").Property.FontWeight;
2621
+ round?: "none" | "default" | "fulled";
2622
+ width?: import("csstype").Property.Width<0 | (string & {})>;
2623
+ wrap?: "wrap" | "nowrap";
2624
+ } & import("csstype").Properties<0 | (string & {}), string & {}>>>;
2587
2625
  declare const BUTTON_SIZE_STYLES: PropStyles<ButtonProps, "size">;
2588
- declare const BUTTON_THEME_STYLES: () => PropStyles<ButtonProps, "theme">;
2589
2626
  declare const BUTTON_ROUND_STYLES: PropStyles<ButtonProps, "round">;
2590
2627
  declare const BUTTON_WRAP_STYLES: PropStyles<ButtonProps, "wrap">;
2591
2628
  type ButtonOutlinedProps = CommonProps & ClickableProps & ShadowProps & WithIconProps & LinkProps & BorderProps & {
@@ -2613,37 +2650,37 @@ declare const getButtonOutlinedThemeStyles: (customBrandKit?: Partial<BrandKit>)
2613
2650
  default: {
2614
2651
  color: string;
2615
2652
  borderColor: string;
2616
- backgroundColor: "#FFFFFF";
2653
+ backgroundColor: string;
2617
2654
  };
2618
2655
  general: {
2619
2656
  color: string;
2620
2657
  borderColor: string;
2621
- backgroundColor: "#FFFFFF";
2658
+ backgroundColor: string;
2622
2659
  };
2623
2660
  success: {
2624
2661
  color: string;
2625
2662
  borderColor: string;
2626
- backgroundColor: "#FFFFFF";
2663
+ backgroundColor: string;
2627
2664
  };
2628
2665
  warning: {
2629
2666
  color: string;
2630
2667
  borderColor: string;
2631
- backgroundColor: "#FFFFFF";
2668
+ backgroundColor: string;
2632
2669
  };
2633
2670
  danger: {
2634
2671
  color: string;
2635
2672
  borderColor: string;
2636
- backgroundColor: "#FFFFFF";
2673
+ backgroundColor: string;
2637
2674
  };
2638
2675
  info: {
2639
2676
  color: string;
2640
2677
  borderColor: string;
2641
- backgroundColor: "#FFFFFF";
2678
+ backgroundColor: string;
2642
2679
  };
2643
2680
  white: {
2644
- color: "#FFFFFF";
2645
- borderColor: "#FFFFFF";
2646
- backgroundColor: "#000000";
2681
+ color: string;
2682
+ borderColor: string;
2683
+ backgroundColor: string;
2647
2684
  };
2648
2685
  };
2649
2686
  declare const BUTTON_OUTLINED_ROUND_STYLES: PropStyles<ButtonOutlinedProps, "round">;
@@ -2684,35 +2721,35 @@ type ButtonTextProps = CommonProps & ClickableProps & LinkProps & WithIconProps
2684
2721
  declare const BUTTON_TEXT_SIZE_STYLES: PropStyles<ButtonTextProps, "size">;
2685
2722
  declare const getButtonTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2686
2723
  default: {
2687
- backgroundColor: "#f3f4f6";
2724
+ backgroundColor: string;
2688
2725
  color: string;
2689
2726
  };
2690
2727
  link: {
2691
- backgroundColor: "#f3f4f6";
2728
+ backgroundColor: string;
2692
2729
  color: string;
2693
2730
  };
2694
2731
  general: {
2695
- backgroundColor: "#f3f4f6";
2732
+ backgroundColor: string;
2696
2733
  color: string;
2697
2734
  };
2698
2735
  success: {
2699
- backgroundColor: "#f3f4f6";
2736
+ backgroundColor: string;
2700
2737
  color: string;
2701
2738
  };
2702
2739
  warning: {
2703
- backgroundColor: "#f3f4f6";
2740
+ backgroundColor: string;
2704
2741
  color: string;
2705
2742
  };
2706
2743
  danger: {
2707
- backgroundColor: "#f3f4f6";
2744
+ backgroundColor: string;
2708
2745
  color: string;
2709
2746
  };
2710
2747
  info: {
2711
- backgroundColor: "#f3f4f6";
2748
+ backgroundColor: string;
2712
2749
  color: string;
2713
2750
  };
2714
2751
  white: {
2715
- backgroundColor: "#f3f4f6";
2752
+ backgroundColor: string;
2716
2753
  color: string;
2717
2754
  };
2718
2755
  };
@@ -2886,26 +2923,23 @@ type SliderProps = CommonProps & {
2886
2923
  };
2887
2924
  type SliderItemProps = CommonProps & ClickableProps;
2888
2925
  declare const LAYER_TEXT_SIZE: {
2889
- readonly extra_small: "ExtraSmall";
2890
- readonly small: "Small";
2891
- readonly medium: "Medium";
2892
- readonly large: "Large";
2893
- readonly extra_large: "ExtraLarge";
2894
- readonly heading_extra_small: "HeadingExtraSmall";
2895
- readonly heading_small: "HeadingSmall";
2896
- readonly heading_medium: "HeadingMedium";
2897
- readonly heading_large: "HeadingLarge";
2898
- readonly heading_extra_large: "HeadingExtraLarge";
2926
+ readonly small: "\u672C\u6587 / \u30B9\u30E2\u30FC\u30EB";
2927
+ readonly medium: "\u672C\u6587 / \u30DF\u30C7\u30A3\u30A2\u30E0";
2928
+ readonly large: "\u672C\u6587 / \u30E9\u30FC\u30B8";
2929
+ readonly heading_extra_small: "\u898B\u51FA\u3057 / \u30B9\u30E2\u30FC\u30EB";
2930
+ readonly heading_small: "\u898B\u51FA\u3057 / \u30DF\u30C7\u30A3\u30A2\u30E0";
2931
+ readonly heading_medium: "\u898B\u51FA\u3057 / \u30E9\u30FC\u30B8";
2932
+ readonly heading_large: "\u898B\u51FA\u3057 / \u30A8\u30AF\u30B9\u30C8\u30E9\u30E9\u30FC\u30B8";
2899
2933
  };
2900
2934
  declare const TEXT_THEME: {
2901
- readonly default: "Default";
2902
- readonly gray: "Gray";
2903
- readonly brand: "Brand";
2904
- readonly success: "Success";
2905
- readonly warning: "Warning";
2906
- readonly danger: "Danger";
2907
- readonly info: "Info";
2908
- readonly white: "White";
2935
+ readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2936
+ readonly gray: "\u30B0\u30EC\u30FC";
2937
+ readonly brand: "\u30D6\u30E9\u30F3\u30C9";
2938
+ readonly success: "\u30B5\u30AF\u30BB\u30B9";
2939
+ readonly warning: "\u30EF\u30FC\u30CB\u30F3\u30B0";
2940
+ readonly danger: "\u30A2\u30E9\u30FC\u30C8";
2941
+ readonly info: "\u30A4\u30F3\u30D5\u30A9";
2942
+ readonly white: "\u30DB\u30EF\u30A4\u30C8";
2909
2943
  };
2910
2944
  declare const TEXT_STYLE: {
2911
2945
  readonly normal: "normal";
@@ -2951,11 +2985,6 @@ declare const getTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2951
2985
  };
2952
2986
  declare const TEXT_VARIANTS: {
2953
2987
  size: {
2954
- extra_small: {
2955
- fontSize: string;
2956
- lineHeight: number;
2957
- fontWeight: string;
2958
- };
2959
2988
  small: {
2960
2989
  fontSize: string;
2961
2990
  lineHeight: number;
@@ -2971,11 +3000,6 @@ declare const TEXT_VARIANTS: {
2971
3000
  lineHeight: number;
2972
3001
  fontWeight: string;
2973
3002
  };
2974
- extra_large: {
2975
- fontSize: string;
2976
- lineHeight: number;
2977
- fontWeight: string;
2978
- };
2979
3003
  heading_extra_small: {
2980
3004
  fontSize: string;
2981
3005
  lineHeight: number;
@@ -2996,11 +3020,6 @@ declare const TEXT_VARIANTS: {
2996
3020
  lineHeight: number;
2997
3021
  fontWeight: string;
2998
3022
  };
2999
- heading_extra_large: {
3000
- fontSize: string;
3001
- lineHeight: number;
3002
- fontWeight: string;
3003
- };
3004
3023
  };
3005
3024
  };
3006
3025
  declare const TEXT_LINK_SIZE: {
@@ -3127,13 +3146,32 @@ type YoutubeProps = CommonProps & BorderProps & {
3127
3146
  shape?: keyof typeof IMAGE_ROUND_SHAPE;
3128
3147
  width?: Properties["width"];
3129
3148
  };
3149
+ type CountDownProps = CommonProps & {
3150
+ timeLimit?: string;
3151
+ onEnd?: OnClickOperation;
3152
+ };
3153
+ type CountDownValueType = "day" | "hour" | "minute" | "second";
3154
+ type CountDownValueProps = LayerTextProps & {
3155
+ type: CountDownValueType;
3156
+ };
3157
+ type CountDownValues = {
3158
+ day: string;
3159
+ hour: string;
3160
+ min: string;
3161
+ sec: string;
3162
+ };
3163
+ type ClipboardProps = CommonProps & {
3164
+ content?: string;
3165
+ copiedEventName?: string;
3166
+ noneTooltip?: boolean;
3167
+ };
3130
3168
  type CodeProps = CommonProps & {
3131
3169
  rawHtml?: string;
3132
3170
  rawCss?: string;
3133
3171
  rawScript?: string;
3134
3172
  };
3135
3173
  declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
3136
- export { ACTION_HOOK_LABEL, KARTE_MODAL_ROOT, create, destroyAction, onCreate, onDestroy, showModal, destroy, initialize, finalize, loadGlobalScript, loadGlobalStyle, applyGlobalCss, getState, setState, getStates, isOpened, getVariables, setVariables, resetVariables, getEventHandlers, setEventHandlers, resetEventHandlers, getSystem, setSetting, eventHandlers, variables, formData, state, onScroll, onTime, getLogs, getEvents, logger, listenLogger, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, DefaultElasticity, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, RegExpProp, Image, LengthUnits, LengthUnit, Length, Color, FontWeight, SYSTEM_FONT, Fonts, Font, Justifies, Justify, Alignments, Alignment, FlexDirections, FlexDirection, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, BoxShadow, Style, TransitState, WritingModes, WritingMode, DateTime, Icon, ListSeparatorTypes, EdgePosition, DefaultEdgePosition, ListSeparatorNone, ListSeparatorBorder, ListSeparatorGap, ListSeparator, DefaultListSeparatorNone, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparator, ListBackgroundTypes, ListBackgroundNone, ListBackgroundStripe, ListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListBackground, ListDirections, ListDirection, ListContext, SlideButtonIcon, SlideButtonText, SlideButton, DefaultSlideButton, SlideButtonPosition, SlideNavigationButton, DefaultSlideNavigationButton, FormInputName, FormButtonColor, DefaultFormButtonColor, ModalStyle, ModalBreakPoint, DefaultModalBreakPoint, FormIdentifyTextFields, FormIdentifyTextField, FormIdentifyTextFieldValidations, FormIdentifyTextFieldPlaceholders, DefaultFormIdentifyTextField, FormIdentifyBooleanFields, FormIdentifyBooleanField, DefaultFormIdentifyBooleanField, showAction, closeAction, loadStyle, applyCss, onShow, onClose, onChangeState, getActionRoot, getCssVariables, show, close, ensureModalRoot, createApp, createFog, collection, loadActionTableRow, loadActionTableRows, loadActionTableQuery, loadActionTable, addChoiceAnswer, addFreeAnswer, removeAnswer, getAnsweredQuestion, getAnsweredQuestionIds, sendAnswer, sendAnswers, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES, PropStyles, ROUND_VARIANT, PositionProps, MetaProps, CustomizeCssProps, BrandStyleProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, WithIconProps, LinkProps, AspectProps, FontFamilyProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, avatarPropsDefault, AVATAR_SIZE_STYLES, BUTTON_SIZE, BUTTON_THEME, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, getButtonThemeStyles, BUTTON_SIZE_STYLES, BUTTON_THEME_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, getButtonOutlinedThemeStyles, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, getButtonTextThemeStyles, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ICON_SIZE_STYLES, IMAGE_ROUND_SHAPE, IMAGE_ASPECT_VARIANTS, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, SliderItemProps, LAYER_TEXT_SIZE, TEXT_THEME, TEXT_STYLE, LayerTextProps, getTextThemeStyles, TEXT_VARIANTS, TEXT_LINK_SIZE, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TextLinkProps, TEXT_LINK_SIZE_STYLES, getTextLinkThemeStyles, ListProps, ListItemProps, LIST_ITEM_CONTEXT_KEY, ListItemContext, MultiColumnProps, MultiColumnItemProps, MULTI_COLUMN_ITEM_CONTEXT_KEY, MultiColumnItemContext, YoutubeProps, CodeProps, BrandKit, getBrandKit, useBrandKit, ROUND_STYLES, VariantStyles, VariantDefinition, VariantDefinitionGroup, ASPECT_VARIANT, AspectVariantCode, ASPECT_VARIANTS, FONT_FAMILY_VARIANT, FontFamilyVariantCode, FONT_FAMILY_VARIANTS, SHADOW_VARIANT, ShadowVariantCode, SHADOW_VARIANTS };
3174
+ export { ACTION_HOOK_LABEL, KARTE_MODAL_ROOT, create, destroyAction, onCreate, onDestroy, showModal, destroy, initialize, finalize, loadGlobalScript, loadGlobalStyle, applyGlobalCss, getState, setState, getStates, isOpened, getVariables, setVariables, resetVariables, getEventHandlers, setEventHandlers, resetEventHandlers, getSystem, setSetting, eventHandlers, variables, formData, state, onScroll, onTime, getLogs, getEvents, logger, listenLogger, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, DefaultElasticity, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, RegExpProp, Image, LengthUnits, LengthUnit, Length, Color, FontWeight, SYSTEM_FONT, Fonts, Font, Justifies, Justify, Alignments, Alignment, FlexDirections, FlexDirection, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, BoxShadow, Style, TransitState, WritingModes, WritingMode, DateTime, Icon, ListSeparatorTypes, EdgePosition, DefaultEdgePosition, ListSeparatorNone, ListSeparatorBorder, ListSeparatorGap, ListSeparator, DefaultListSeparatorNone, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparator, ListBackgroundTypes, ListBackgroundNone, ListBackgroundStripe, ListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListBackground, ListDirections, ListDirection, ListContext, SlideButtonIcon, SlideButtonText, SlideButton, DefaultSlideButton, SlideButtonPosition, SlideNavigationButton, DefaultSlideNavigationButton, FormInputName, FormButtonColor, DefaultFormButtonColor, ModalStyle, ModalBreakPoint, DefaultModalBreakPoint, FormIdentifyTextFields, FormIdentifyTextField, FormIdentifyTextFieldValidations, FormIdentifyTextFieldPlaceholders, DefaultFormIdentifyTextField, FormIdentifyBooleanFields, FormIdentifyBooleanField, DefaultFormIdentifyBooleanField, showAction, closeAction, loadStyle, applyCss, onShow, onClose, onChangeState, getActionRoot, getCssVariables, show, close, ensureModalRoot, createApp, createFog, collection, loadActionTableRow, loadActionTableRows, loadActionTableQuery, loadActionTable, addChoiceAnswer, addFreeAnswer, removeAnswer, getAnsweredQuestion, getAnsweredQuestionIds, sendAnswer, sendAnswers, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES, PropStyles, ROUND_VARIANT, PositionProps, MetaProps, CustomizeCssProps, BrandStyleProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, WithIconProps, LinkProps, AspectProps, FontFamilyProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, avatarPropsDefault, AVATAR_SIZE_STYLES, BUTTON_SIZE, BUTTON_THEME, BUTTON_VARIANT, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, getButtonThemeStyles, BUTTON_SIZE_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, getButtonOutlinedThemeStyles, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, getButtonTextThemeStyles, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ICON_SIZE_STYLES, IMAGE_ROUND_SHAPE, IMAGE_ASPECT_VARIANTS, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, SliderItemProps, LAYER_TEXT_SIZE, TEXT_THEME, TEXT_STYLE, LayerTextProps, getTextThemeStyles, TEXT_VARIANTS, TEXT_LINK_SIZE, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TextLinkProps, TEXT_LINK_SIZE_STYLES, getTextLinkThemeStyles, ListProps, ListItemProps, LIST_ITEM_CONTEXT_KEY, ListItemContext, MultiColumnProps, MultiColumnItemProps, MULTI_COLUMN_ITEM_CONTEXT_KEY, MultiColumnItemContext, YoutubeProps, CountDownProps, CountDownValueType, CountDownValueProps, CountDownValues, ClipboardProps, CodeProps, BrandKit, getBrandKit, useBrandKit, ROUND_STYLES, VariantStyles, VariantDefinition, VariantDefinitionGroup, ASPECT_VARIANT, AspectVariantCode, ASPECT_VARIANTS, FontVariantMeta, FONT_FAMILY_VARIANT, FontFamilyVariantCode, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, SHADOW_VARIANT, ShadowVariantCode, SHADOW_VARIANTS };
3137
3175
  export type { SystemConfig, ActionVariables, ActionEventHandler, ActionProps, ActionOptions, ActionHook, ActionHookLog, ActionChangeStateHook, SendFunction, PublishFunction, OnScrollContext, OnScrollFunction, ScrollDirection, LogLevel, Log, Event, ActionCloseHook, ShowTrigger, CloseTrigger, CollectionConfig, ActionTableRowRequestConfig, ActionTableRowsRequestConfig, ActionTableQueryRequestConfig, ActionTableRequestConfig };
3138
3176
  export { default as State } from './components/State.svelte';
3139
3177
  export { default as StateItem } from './components/StateItem.svelte';
@@ -3188,4 +3226,7 @@ export { default as FlexListItem } from './components-flex/list/ListItem.svelte'
3188
3226
  export { default as FlexMultiColumn } from './components-flex/multi-column/MultiColumn.svelte';
3189
3227
  export { default as FlexMultiColumnItem } from './components-flex/multi-column/MultiColumnItem.svelte';
3190
3228
  export { default as FlexYoutube } from './components-flex/youtube/Youtube.svelte';
3229
+ export { default as FlexCountDown } from './components-flex/count-down/CountDown.svelte';
3230
+ export { default as FlexCountDownValue } from './components-flex/count-down/CountDownValue.svelte';
3231
+ export { default as FlexClipCopy } from './components-flex/clip-copy/ClipCopy.svelte';
3191
3232
  export { default as ThumbnailPreview } from './components-flex/ThumbnailPreview.svelte';