@plaidev/karte-action-sdk 1.1.250 → 1.1.251-28786588.7177c726
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 +144 -76
- package/dist/hydrate/index.es.js +1392 -815
- package/dist/index.es.d.ts +144 -76
- package/dist/index.es.js +1300 -741
- package/dist/templates.cjs.js +1 -0
- package/dist/templates.js +1 -0
- package/package.json +1 -1
- package/meta/karte-action-sdk.api.json +0 -8155
@@ -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,99 +2489,69 @@ type AvatarProps = CommonProps & ClickableProps & BorderProps & {
|
|
2426
2489
|
caption?: string;
|
2427
2490
|
alt?: string;
|
2428
2491
|
};
|
2429
|
-
declare const
|
2430
|
-
|
2431
|
-
|
2432
|
-
|
2433
|
-
|
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;
|
2498
|
+
// size
|
2462
2499
|
size?: keyof typeof BUTTON_SIZE;
|
2463
2500
|
height?: Properties["height"];
|
2464
2501
|
paddingLeft?: Properties["paddingLeft"];
|
2465
2502
|
paddingRight?: Properties["paddingRight"];
|
2466
2503
|
fontSize?: Properties["fontSize"];
|
2504
|
+
// theme
|
2467
2505
|
theme?: keyof typeof BUTTON_THEME;
|
2468
|
-
round?: keyof typeof BUTTON_ROUND;
|
2469
|
-
isLink?: boolean;
|
2470
|
-
isIcon?: boolean;
|
2471
|
-
linkUrl?: string;
|
2472
|
-
linkTarget?: keyof typeof BUTTON_LINK_TARGET;
|
2473
|
-
iconVariant?: string;
|
2474
|
-
iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
|
2475
|
-
width?: Properties["width"];
|
2476
|
-
wrap?: "wrap" | "nowrap";
|
2477
|
-
fontWeight?: Properties["fontWeight"];
|
2478
2506
|
color?: Properties["color"];
|
2479
2507
|
backgroundColor?: Properties["backgroundColor"];
|
2480
|
-
|
2481
|
-
|
2482
|
-
declare const BUTTON_SIZE_STYLES: PropStyles<ButtonProps, "size">;
|
2483
|
-
declare const BUTTON_THEME_STYLES: PropStyles<ButtonProps, "theme">;
|
2484
|
-
declare const BUTTON_ROUND_STYLES: PropStyles<ButtonProps, "round">;
|
2485
|
-
declare const BUTTON_WRAP_STYLES: PropStyles<ButtonProps, "wrap">;
|
2486
|
-
type ButtonOutlinedProps = CommonProps & ClickableProps & BorderProps & {
|
2487
|
-
label?: string;
|
2488
|
-
size?: keyof typeof BUTTON_SIZE;
|
2489
|
-
theme?: keyof typeof BUTTON_THEME;
|
2490
|
-
round?: keyof typeof BUTTON_ROUND;
|
2491
|
-
isLink?: boolean;
|
2492
|
-
isIcon?: boolean;
|
2493
|
-
linkUrl?: string;
|
2494
|
-
linkTarget?: keyof typeof BUTTON_LINK_TARGET;
|
2495
|
-
iconVariant?: string;
|
2496
|
-
iconAngle?: keyof typeof BUTTON_ICON_ANGLE;
|
2508
|
+
borderColor?: Properties["backgroundColor"];
|
2509
|
+
// others
|
2497
2510
|
width?: Properties["width"];
|
2498
|
-
|
2511
|
+
round?: keyof typeof BUTTON_ROUND;
|
2499
2512
|
fontWeight?: Properties["fontWeight"];
|
2500
|
-
|
2501
|
-
backgroundColor?: Properties["backgroundColor"];
|
2502
|
-
borderColor?: Properties["backgroundColor"];
|
2513
|
+
wrap?: "wrap" | "nowrap";
|
2503
2514
|
};
|
2504
2515
|
declare const buttonOutlinedPropsDefault: ButtonOutlinedProps;
|
2505
2516
|
declare const BUTTON_OUTLINED_SIZE_STYLES: PropStyles<ButtonOutlinedProps, "size">;
|
2506
2517
|
declare const BUTTON_OUTLINED_ROUND_STYLES: PropStyles<ButtonOutlinedProps, "round">;
|
2507
2518
|
declare const BUTTON_OUTLINED_WRAP_STYLES: PropStyles<ButtonOutlinedProps, "wrap">;
|
2508
|
-
|
2519
|
+
declare const BUTTON_TEXT_SIZE: {
|
2520
|
+
readonly small: "Small";
|
2521
|
+
readonly medium: "Medium";
|
2522
|
+
readonly large: "Large";
|
2523
|
+
};
|
2524
|
+
declare const BUTTON_TEXT_THEME: {
|
2525
|
+
readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
|
2526
|
+
readonly link: "Link";
|
2527
|
+
readonly brand: "Brand";
|
2528
|
+
readonly success: "Success";
|
2529
|
+
readonly warning: "Warning";
|
2530
|
+
readonly alert: "Danger";
|
2531
|
+
readonly info: "Info";
|
2532
|
+
readonly gray: "Gray";
|
2533
|
+
readonly white: "White";
|
2534
|
+
};
|
2535
|
+
type ButtonTextProps = CommonProps & ClickableProps & LinkProps & WithIconProps & {
|
2509
2536
|
label?: string;
|
2510
|
-
size
|
2511
|
-
|
2512
|
-
|
2513
|
-
|
2514
|
-
|
2515
|
-
|
2516
|
-
|
2517
|
-
|
2537
|
+
// size
|
2538
|
+
size?: keyof typeof BUTTON_TEXT_SIZE;
|
2539
|
+
height?: Properties["height"];
|
2540
|
+
paddingLeft?: Properties["paddingLeft"];
|
2541
|
+
paddingRight?: Properties["paddingRight"];
|
2542
|
+
fontSize?: Properties["fontSize"];
|
2543
|
+
// theme
|
2544
|
+
theme?: keyof typeof BUTTON_TEXT_THEME;
|
2545
|
+
color?: Properties["color"];
|
2546
|
+
backgroundColor?: Properties["backgroundColor"];
|
2547
|
+
// others
|
2548
|
+
fontWeight?: Properties["fontWeight"];
|
2518
2549
|
width?: Properties["width"];
|
2550
|
+
round?: keyof typeof BUTTON_ROUND;
|
2519
2551
|
wrap?: "wrap" | "nowrap";
|
2520
|
-
fontWeight?: Properties["fontWeight"];
|
2521
2552
|
};
|
2553
|
+
declare const BUTTON_TEXT_SIZE_STYLES: PropStyles<ButtonTextProps, "size">;
|
2554
|
+
declare const BUTTON_TEXT_THEME_STYLES: PropStyles<ButtonTextProps, "theme">;
|
2522
2555
|
declare const CLOSE_BUTTON_PLACEMENT: {
|
2523
2556
|
readonly topRight: "topRight";
|
2524
2557
|
readonly topLeft: "topLeft";
|
@@ -2682,7 +2715,7 @@ declare const LAYER_TEXT_SIZE: {
|
|
2682
2715
|
readonly heading_large: "HeadingLarge";
|
2683
2716
|
readonly heading_extra_large: "HeadingExtraLarge";
|
2684
2717
|
};
|
2685
|
-
type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & PaddingProps & {
|
2718
|
+
type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & WithIconProps & LinkProps & ClickableProps & PaddingProps & {
|
2686
2719
|
content: string;
|
2687
2720
|
variant?: string;
|
2688
2721
|
size?: keyof typeof LAYER_TEXT_SIZE;
|
@@ -2747,9 +2780,43 @@ declare const TEXT_VARIANTS: {
|
|
2747
2780
|
};
|
2748
2781
|
};
|
2749
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">;
|
2750
2817
|
declare const SHADOW_STYLES: Record<keyof typeof SHADOW_VARIANT, Properties>;
|
2751
2818
|
declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
|
2752
|
-
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, ButtonTextProps, 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 };
|
2753
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 };
|
2754
2821
|
export { default as State } from './components/State.svelte';
|
2755
2822
|
export { default as StateItem } from './components/StateItem.svelte';
|
@@ -2794,4 +2861,5 @@ export { default as FlexImage } from './components-flex/image/Image.svelte';
|
|
2794
2861
|
export { default as FlexLayout } from './components-flex/layout/Layout.svelte';
|
2795
2862
|
export { default as FlexSlider } from './components-flex/slider/Slider.svelte';
|
2796
2863
|
export { default as FlexText } from './components-flex/text/Text.svelte';
|
2864
|
+
export { default as FlexTextLink } from './components-flex/text-link/TextLink.svelte';
|
2797
2865
|
export { default as FlexModal } from './components-flex/modal/Modal.svelte';
|