@plaidev/karte-action-sdk 1.1.250-28786077.a0d6c5ff → 1.1.250-28786567.83d7df8b

Sign up to get free protection for your applications and to get access to all the features.
@@ -2343,7 +2343,10 @@ declare const afterUpdate: typeof afterUpdateSvelte;
2343
2343
  declare const tick: typeof tickSvelte;
2344
2344
  // @internal
2345
2345
  declare const LAYOUT_COMPONENT_NAMES: string[];
2346
- type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Properties>;
2346
+ type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Properties & Partial<{
2347
+ hover: Properties;
2348
+ active: Properties;
2349
+ }>>;
2347
2350
  declare const SHADOW_VARIANT: {
2348
2351
  readonly extra_small: "XSmall";
2349
2352
  readonly small: "Small";
@@ -2358,6 +2361,55 @@ declare const ROUND_VARIANT: {
2358
2361
  readonly extra_large: "Large (24px)";
2359
2362
  readonly fulled: "Full (100%)";
2360
2363
  };
2364
+ declare const BUTTON_SIZE: {
2365
+ readonly extra_small: "XSmall";
2366
+ readonly small: "Small";
2367
+ readonly medium: "Medium";
2368
+ readonly large: "Large";
2369
+ readonly extra_large: "XLarge";
2370
+ };
2371
+ declare const BUTTON_THEME: {
2372
+ readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2373
+ readonly brand: "Brand";
2374
+ readonly success: "Success";
2375
+ readonly warning: "Warning";
2376
+ readonly alert: "Dander";
2377
+ readonly info: "Info";
2378
+ readonly gray: "Gray";
2379
+ readonly white: "White";
2380
+ };
2381
+ declare const BUTTON_ROUND: {
2382
+ readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2383
+ readonly none: "\u306A\u3057";
2384
+ readonly fulled: "\u5186\u5F62";
2385
+ };
2386
+ declare const BUTTON_LINK_TARGET: {
2387
+ readonly _self: "\u753B\u9762\u5185\u9077\u79FB";
2388
+ readonly _blank: "\u5225\u30BF\u30D6\u3067\u958B\u304F";
2389
+ };
2390
+ declare const BUTTON_ICON_ANGLE: {
2391
+ readonly row: "\u5DE6\u5074";
2392
+ readonly "row-reverse": "\u53F3\u5074";
2393
+ };
2394
+ type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & BorderProps & {
2395
+ label?: string;
2396
+ // size
2397
+ size?: keyof typeof BUTTON_SIZE;
2398
+ height?: Properties["height"];
2399
+ paddingLeft?: Properties["paddingLeft"];
2400
+ paddingRight?: Properties["paddingRight"];
2401
+ fontSize?: Properties["fontSize"];
2402
+ // theme
2403
+ theme?: keyof typeof BUTTON_THEME;
2404
+ color?: Properties["color"];
2405
+ backgroundColor?: Properties["backgroundColor"];
2406
+ // others
2407
+ fontWeight?: Properties["fontWeight"];
2408
+ round?: keyof typeof BUTTON_ROUND;
2409
+ width?: Properties["width"];
2410
+ wrap?: "wrap" | "nowrap";
2411
+ };
2412
+ declare const buttonPropsDefault: ButtonProps;
2361
2413
  type PositionPlaceProps = {
2362
2414
  top?: Properties["top"];
2363
2415
  left?: Properties["left"];
@@ -2408,6 +2460,17 @@ type BackgroundImageProps = {
2408
2460
  type ShadowProps = {
2409
2461
  shadow?: Properties["boxShadow"];
2410
2462
  };
2463
+ type WithIconProps = {
2464
+ isIcon?: boolean;
2465
+ iconVariant?: string;
2466
+ iconColor?: Properties["color"];
2467
+ iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
2468
+ };
2469
+ type LinkProps = {
2470
+ isLink?: boolean;
2471
+ linkUrl?: string;
2472
+ linkTarget?: keyof typeof BUTTON_LINK_TARGET;
2473
+ };
2411
2474
  declare const AVATAR_SIZE: {
2412
2475
  readonly extra_small: "XS\uFF0848 x 48\uFF09";
2413
2476
  readonly small: "S\uFF0864 x 64\uFF09";
@@ -2426,38 +2489,11 @@ type AvatarProps = CommonProps & ClickableProps & BorderProps & {
2426
2489
  caption?: string;
2427
2490
  alt?: string;
2428
2491
  };
2429
- declare const BUTTON_SIZE: {
2430
- readonly extra_small: "XSmall";
2431
- readonly small: "Small";
2432
- readonly medium: "Medium";
2433
- readonly large: "Large";
2434
- readonly extra_large: "XLarge";
2435
- };
2436
- declare const BUTTON_THEME: {
2437
- readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2438
- readonly primary: "\u30D7\u30E9\u30A4\u30DE\u30EA\u30FC";
2439
- readonly secondary: "\u30BB\u30AB\u30F3\u30C0\u30EA\u30FC";
2440
- readonly success: "\u30B5\u30AF\u30BB\u30B9";
2441
- readonly warning: "\u30EF\u30FC\u30CB\u30F3\u30B0";
2442
- readonly alert: "\u30A2\u30E9\u30FC\u30C8";
2443
- readonly info: "\u30A4\u30F3\u30D5\u30A9";
2444
- readonly neutral: "\u30CB\u30E5\u30FC\u30C8\u30E9\u30EB";
2445
- readonly transparent: "\u80CC\u666F\u306A\u3057";
2446
- };
2447
- declare const BUTTON_ROUND: {
2448
- readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2449
- readonly none: "\u306A\u3057";
2450
- readonly fulled: "\u5186\u5F62";
2451
- };
2452
- declare const BUTTON_LINK_TARGET: {
2453
- readonly _self: "\u753B\u9762\u5185\u9077\u79FB";
2454
- readonly _blank: "\u5225\u30BF\u30D6\u3067\u958B\u304F";
2455
- };
2456
- declare const BUTTON_ICON_ANGLE: {
2457
- readonly row: "\u5DE6\u5074";
2458
- readonly "row-reverse": "\u53F3\u5074";
2459
- };
2460
- type ButtonProps = CommonProps & ClickableProps & ShadowProps & BorderProps & {
2492
+ declare const BUTTON_SIZE_STYLES: PropStyles<ButtonProps, "size">;
2493
+ declare const BUTTON_THEME_STYLES: PropStyles<ButtonProps, "theme">;
2494
+ declare const BUTTON_ROUND_STYLES: PropStyles<ButtonProps, "round">;
2495
+ declare const BUTTON_WRAP_STYLES: PropStyles<ButtonProps, "wrap">;
2496
+ type ButtonOutlinedProps = CommonProps & ClickableProps & WithIconProps & LinkProps & BorderProps & {
2461
2497
  label?: string;
2462
2498
  // size
2463
2499
  size?: keyof typeof BUTTON_SIZE;
@@ -2467,42 +2503,14 @@ type ButtonProps = CommonProps & ClickableProps & ShadowProps & BorderProps & {
2467
2503
  fontSize?: Properties["fontSize"];
2468
2504
  // theme
2469
2505
  theme?: keyof typeof BUTTON_THEME;
2470
- fontWeight?: Properties["fontWeight"];
2471
2506
  color?: Properties["color"];
2472
2507
  backgroundColor?: Properties["backgroundColor"];
2508
+ borderColor?: Properties["backgroundColor"];
2473
2509
  // others
2474
- round?: keyof typeof BUTTON_ROUND;
2475
- isLink?: boolean;
2476
- isIcon?: boolean;
2477
- linkUrl?: string;
2478
- linkTarget?: keyof typeof BUTTON_LINK_TARGET;
2479
- iconVariant?: string;
2480
- iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
2481
2510
  width?: Properties["width"];
2482
- wrap?: "wrap" | "nowrap";
2483
- };
2484
- declare const buttonPropsDefault: ButtonProps;
2485
- declare const BUTTON_SIZE_STYLES: PropStyles<ButtonProps, "size">;
2486
- declare const BUTTON_THEME_STYLES: PropStyles<ButtonProps, "theme">;
2487
- declare const BUTTON_ROUND_STYLES: PropStyles<ButtonProps, "round">;
2488
- declare const BUTTON_WRAP_STYLES: PropStyles<ButtonProps, "wrap">;
2489
- type ButtonOutlinedProps = CommonProps & ClickableProps & BorderProps & {
2490
- label?: string;
2491
- size?: keyof typeof BUTTON_SIZE;
2492
- theme?: keyof typeof BUTTON_THEME;
2493
2511
  round?: keyof typeof BUTTON_ROUND;
2494
- isLink?: boolean;
2495
- isIcon?: boolean;
2496
- linkUrl?: string;
2497
- linkTarget?: keyof typeof BUTTON_LINK_TARGET;
2498
- iconVariant?: string;
2499
- iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
2500
- width?: Properties["width"];
2501
- wrap?: "wrap" | "nowrap";
2502
2512
  fontWeight?: Properties["fontWeight"];
2503
- color?: Properties["color"];
2504
- backgroundColor?: Properties["backgroundColor"];
2505
- borderColor?: Properties["backgroundColor"];
2513
+ wrap?: "wrap" | "nowrap";
2506
2514
  };
2507
2515
  declare const buttonOutlinedPropsDefault: ButtonOutlinedProps;
2508
2516
  declare const BUTTON_OUTLINED_SIZE_STYLES: PropStyles<ButtonOutlinedProps, "size">;
@@ -2524,7 +2532,7 @@ declare const BUTTON_TEXT_THEME: {
2524
2532
  readonly gray: "Gray";
2525
2533
  readonly white: "White";
2526
2534
  };
2527
- type ButtonTextProps = CommonProps & ClickableProps & {
2535
+ type ButtonTextProps = CommonProps & ClickableProps & LinkProps & WithIconProps & {
2528
2536
  label?: string;
2529
2537
  // size
2530
2538
  size?: keyof typeof BUTTON_TEXT_SIZE;
@@ -2534,19 +2542,10 @@ type ButtonTextProps = CommonProps & ClickableProps & {
2534
2542
  fontSize?: Properties["fontSize"];
2535
2543
  // theme
2536
2544
  theme?: keyof typeof BUTTON_TEXT_THEME;
2537
- fontWeight?: Properties["fontWeight"];
2538
2545
  color?: Properties["color"];
2539
2546
  backgroundColor?: Properties["backgroundColor"];
2540
- // icon
2541
- isIcon?: boolean;
2542
- iconVariant?: string;
2543
- iconColor?: Properties["color"];
2544
- iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
2545
- // link
2546
- isLink?: boolean;
2547
- linkUrl?: string;
2548
- linkTarget?: keyof typeof BUTTON_LINK_TARGET;
2549
2547
  // others
2548
+ fontWeight?: Properties["fontWeight"];
2550
2549
  width?: Properties["width"];
2551
2550
  round?: keyof typeof BUTTON_ROUND;
2552
2551
  wrap?: "wrap" | "nowrap";
@@ -2716,7 +2715,7 @@ declare const LAYER_TEXT_SIZE: {
2716
2715
  readonly heading_large: "HeadingLarge";
2717
2716
  readonly heading_extra_large: "HeadingExtraLarge";
2718
2717
  };
2719
- type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & PaddingProps & {
2718
+ type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & WithIconProps & LinkProps & ClickableProps & PaddingProps & {
2720
2719
  content: string;
2721
2720
  variant?: string;
2722
2721
  size?: keyof typeof LAYER_TEXT_SIZE;
@@ -2781,9 +2780,43 @@ declare const TEXT_VARIANTS: {
2781
2780
  };
2782
2781
  };
2783
2782
  };
2783
+ declare const TEXT_LINK_SIZE: {
2784
+ readonly small: "Small";
2785
+ readonly medium: "Medium";
2786
+ readonly large: "Large";
2787
+ };
2788
+ declare const TEXT_LINK_THEME: {
2789
+ readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2790
+ readonly link: "Link";
2791
+ readonly brand: "Brand";
2792
+ readonly alert: "Danger";
2793
+ readonly gray: "Gray";
2794
+ readonly white: "White";
2795
+ };
2796
+ declare const TEXT_LINK_UNDERLINE: {
2797
+ readonly hover_on: "\u30DB\u30D0\u30FC\u3067\u8868\u793A";
2798
+ readonly hover_off: "\u30DB\u30D0\u30FC\u3067\u975E\u8868\u793A";
2799
+ readonly on: "\u5E38\u306B\u8868\u793A";
2800
+ readonly off: "\u5E38\u306B\u975E\u8868\u793A";
2801
+ };
2802
+ type TextLinkProps = CommonProps & ClickableProps & LinkProps & WithIconProps & {
2803
+ label: string;
2804
+ // size
2805
+ size?: keyof typeof TEXT_LINK_SIZE;
2806
+ lineHeight?: number;
2807
+ fontSize?: Properties["fontSize"];
2808
+ // theme
2809
+ theme?: keyof typeof TEXT_LINK_THEME;
2810
+ color?: Properties["color"];
2811
+ // others
2812
+ underline?: keyof typeof TEXT_LINK_UNDERLINE;
2813
+ fontWeight?: Properties["fontWeight"];
2814
+ };
2815
+ declare const TEXT_LINK_SIZE_STYLES: PropStyles<TextLinkProps, "size">;
2816
+ declare const TEXT_LINK_THEME_STYLES: PropStyles<TextLinkProps, "theme">;
2784
2817
  declare const SHADOW_STYLES: Record<keyof typeof SHADOW_VARIANT, Properties>;
2785
2818
  declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
2786
- 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, SHADOW_VARIANT, ROUND_VARIANT, PositionProps, MetaProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, BUTTON_SIZE, BUTTON_THEME, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, BUTTON_SIZE_STYLES, BUTTON_THEME_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME_STYLES, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, LAYER_TEXT_SIZE, LayerTextProps, TEXT_VARIANTS, SHADOW_STYLES, ROUND_STYLES };
2819
+ 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, SHADOW_VARIANT, ROUND_VARIANT, PositionProps, MetaProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, WithIconProps, LinkProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, BUTTON_SIZE, BUTTON_THEME, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, BUTTON_SIZE_STYLES, BUTTON_THEME_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME_STYLES, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, LAYER_TEXT_SIZE, LayerTextProps, TEXT_VARIANTS, TEXT_LINK_SIZE, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TextLinkProps, TEXT_LINK_SIZE_STYLES, TEXT_LINK_THEME_STYLES, SHADOW_STYLES, ROUND_STYLES };
2787
2820
  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 };
2788
2821
  export { default as State } from './components/State.svelte';
2789
2822
  export { default as StateItem } from './components/StateItem.svelte';
@@ -2828,4 +2861,5 @@ export { default as FlexImage } from './components-flex/image/Image.svelte';
2828
2861
  export { default as FlexLayout } from './components-flex/layout/Layout.svelte';
2829
2862
  export { default as FlexSlider } from './components-flex/slider/Slider.svelte';
2830
2863
  export { default as FlexText } from './components-flex/text/Text.svelte';
2864
+ export { default as FlexTextLink } from './components-flex/text-link/TextLink.svelte';
2831
2865
  export { default as FlexModal } from './components-flex/modal/Modal.svelte';