@plaidev/karte-action-sdk 1.1.261-28981806.8a8d40a8 → 1.1.261-28997367.d745b343
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hydrate/index.es.d.ts +135 -17
- package/dist/hydrate/index.es.js +2597 -676
- package/dist/index.es.d.ts +135 -17
- package/dist/index.es.js +2472 -686
- package/dist/templates.cjs.js +7 -1
- package/dist/templates.js +7 -1
- package/package.json +2 -2
@@ -938,6 +938,10 @@ declare const SYSTEM_FONT = "sans-serif, serif, monospace, system-ui";
|
|
938
938
|
declare const Fonts: readonly [
|
939
939
|
"sans-serif, serif, monospace, system-ui",
|
940
940
|
"Noto Sans JP",
|
941
|
+
"Sawarabi Gothic",
|
942
|
+
"Zen Kaku Gothic New",
|
943
|
+
"Zen Maru Gothic",
|
944
|
+
"Shippori Mincho",
|
941
945
|
"M PLUS Rounded 1c",
|
942
946
|
"M PLUS 1p",
|
943
947
|
"Kosugi Maru",
|
@@ -2344,12 +2348,6 @@ declare const tick: typeof tickSvelte;
|
|
2344
2348
|
// @internal
|
2345
2349
|
declare const LAYOUT_COMPONENT_NAMES: string[];
|
2346
2350
|
type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Properties>;
|
2347
|
-
declare const SHADOW_VARIANT: {
|
2348
|
-
readonly extra_small: "XSmall";
|
2349
|
-
readonly small: "Small";
|
2350
|
-
readonly medium: "Medium";
|
2351
|
-
readonly large: "Large";
|
2352
|
-
};
|
2353
2351
|
declare const ROUND_VARIANT: {
|
2354
2352
|
readonly extra_small: "XSmall (2px)";
|
2355
2353
|
readonly small: "Small (4px)";
|
@@ -2422,6 +2420,38 @@ declare const getBrandKit: (customBrandKit?: Partial<BrandKit>) => BrandKit;
|
|
2422
2420
|
declare const useBrandKit: () => {
|
2423
2421
|
brandKit: BrandKit;
|
2424
2422
|
};
|
2423
|
+
type VariantStyles<Props extends object = object> = Props & {
|
2424
|
+
hover?: Props;
|
2425
|
+
active?: Props;
|
2426
|
+
};
|
2427
|
+
type VariantDefinition<Props extends object = object, Meta extends object = undefined> = {
|
2428
|
+
name: string;
|
2429
|
+
description?: string;
|
2430
|
+
getProps: (brandKit?: BrandKit) => VariantStyles<Props>;
|
2431
|
+
meta?: Meta;
|
2432
|
+
};
|
2433
|
+
type VariantDefinitionGroup<Props extends object = object> = Record<string, VariantDefinition<Props>>;
|
2434
|
+
// ================================
|
2435
|
+
// Aspect
|
2436
|
+
// ================================
|
2437
|
+
declare const ASPECT_VARIANT: VariantDefinitionGroup<Omit<AspectProps, "aspectVariant">>;
|
2438
|
+
type AspectVariantCode = keyof typeof ASPECT_VARIANT;
|
2439
|
+
declare const ASPECT_VARIANTS: (VariantDefinition<Omit<AspectProps, "aspectVariant">, undefined> & {
|
2440
|
+
code: string;
|
2441
|
+
})[];
|
2442
|
+
declare const FONT_FAMILY_VARIANT: VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">>;
|
2443
|
+
type FontFamilyVariantCode = keyof typeof FONT_FAMILY_VARIANT;
|
2444
|
+
declare const FONT_FAMILY_VARIANTS: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, undefined> & {
|
2445
|
+
code: string;
|
2446
|
+
})[];
|
2447
|
+
// ================================
|
2448
|
+
// Shadow
|
2449
|
+
// ================================
|
2450
|
+
declare const SHADOW_VARIANT: VariantDefinitionGroup<Omit<ShadowProps, "shadowVariant">>;
|
2451
|
+
type ShadowVariantCode = keyof typeof SHADOW_VARIANT;
|
2452
|
+
declare const SHADOW_VARIANTS: (VariantDefinition<Omit<ShadowProps, "shadowVariant">, undefined> & {
|
2453
|
+
code: string;
|
2454
|
+
})[];
|
2425
2455
|
type PositionPlaceProps = {
|
2426
2456
|
top?: Properties["top"];
|
2427
2457
|
left?: Properties["left"];
|
@@ -2479,6 +2509,7 @@ type BackgroundImageProps = {
|
|
2479
2509
|
};
|
2480
2510
|
type ShadowProps = {
|
2481
2511
|
shadow?: Properties["boxShadow"];
|
2512
|
+
shadowVariant?: ShadowVariantCode;
|
2482
2513
|
};
|
2483
2514
|
type WithIconProps = {
|
2484
2515
|
isIcon?: boolean;
|
@@ -2491,6 +2522,14 @@ type LinkProps = {
|
|
2491
2522
|
linkUrl?: string;
|
2492
2523
|
linkTarget?: keyof typeof BUTTON_LINK_TARGET;
|
2493
2524
|
};
|
2525
|
+
type AspectProps = {
|
2526
|
+
aspectVariant?: AspectVariantCode | string;
|
2527
|
+
aspect?: Properties["aspectRatio"];
|
2528
|
+
};
|
2529
|
+
type FontFamilyProps = {
|
2530
|
+
fontFamilyVariant?: FontFamilyVariantCode;
|
2531
|
+
fontFamily?: Properties["fontFamily"];
|
2532
|
+
};
|
2494
2533
|
declare const AVATAR_SIZE: {
|
2495
2534
|
readonly extra_small: "XS\uFF0848 x 48\uFF09";
|
2496
2535
|
readonly small: "S\uFF0864 x 64\uFF09";
|
@@ -2778,14 +2817,28 @@ type IconProps = CommonProps & ClickableProps & {
|
|
2778
2817
|
height?: Properties$0["height"];
|
2779
2818
|
};
|
2780
2819
|
declare const ICON_SIZE_STYLES: PropStyles<IconProps, "size">;
|
2781
|
-
|
2820
|
+
declare const IMAGE_ROUND_SHAPE: {
|
2821
|
+
readonly circle: "\u30B5\u30FC\u30AF\u30EB";
|
2822
|
+
readonly square: "\u30B9\u30AF\u30A8\u30A2";
|
2823
|
+
readonly rounded: "\u30E9\u30A6\u30F3\u30C9";
|
2824
|
+
};
|
2825
|
+
declare const IMAGE_ASPECT_VARIANTS: {
|
2826
|
+
"1/1": string;
|
2827
|
+
"2/1": string;
|
2828
|
+
"3/2": string;
|
2829
|
+
"4/3": string;
|
2830
|
+
"16/9": string;
|
2831
|
+
"16/5": string;
|
2832
|
+
"1/2": string;
|
2833
|
+
"2/3": string;
|
2834
|
+
"3/4": string;
|
2835
|
+
"9/16": string;
|
2836
|
+
};
|
2837
|
+
type ImageProps = CommonProps & ClickableProps & AspectProps & BorderProps & {
|
2782
2838
|
image?: string;
|
2783
2839
|
width?: Properties["width"];
|
2784
|
-
aspect?: string;
|
2785
2840
|
alt?: string;
|
2786
|
-
|
2787
|
-
eventName?: string;
|
2788
|
-
eventValue?: object;
|
2841
|
+
shape?: keyof typeof IMAGE_ROUND_SHAPE;
|
2789
2842
|
};
|
2790
2843
|
declare const LAYOUT_DISPLAY_TYPE: readonly [
|
2791
2844
|
"inline-flex",
|
@@ -2823,12 +2876,15 @@ type LayerLayoutProps = CommonProps & ClickableProps & OverflowProps & BorderPro
|
|
2823
2876
|
columnGap?: Properties["columnGap"];
|
2824
2877
|
width?: Properties["width"];
|
2825
2878
|
};
|
2826
|
-
type SliderProps = {
|
2879
|
+
type SliderProps = CommonProps & {
|
2827
2880
|
gap: number;
|
2828
2881
|
itemWidthPercentage: number;
|
2829
2882
|
auto?: boolean;
|
2883
|
+
loop?: boolean;
|
2884
|
+
hideIndicator?: boolean;
|
2830
2885
|
interval?: number;
|
2831
2886
|
};
|
2887
|
+
type SliderItemProps = CommonProps & ClickableProps;
|
2832
2888
|
declare const LAYER_TEXT_SIZE: {
|
2833
2889
|
readonly extra_small: "ExtraSmall";
|
2834
2890
|
readonly small: "Small";
|
@@ -2855,7 +2911,7 @@ declare const TEXT_STYLE: {
|
|
2855
2911
|
readonly normal: "normal";
|
2856
2912
|
readonly italic: "italic";
|
2857
2913
|
};
|
2858
|
-
type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & WithIconProps & LinkProps & ClickableProps & CustomizeCssProps & PaddingProps & {
|
2914
|
+
type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorProps & WithIconProps & LinkProps & ClickableProps & CustomizeCssProps & FontFamilyProps & PaddingProps & {
|
2859
2915
|
content: string;
|
2860
2916
|
theme?: keyof typeof TEXT_THEME;
|
2861
2917
|
size?: keyof typeof LAYER_TEXT_SIZE;
|
@@ -2863,7 +2919,6 @@ type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorP
|
|
2863
2919
|
fontStyle?: Properties["fontStyle"];
|
2864
2920
|
fontSize?: Properties["fontSize"];
|
2865
2921
|
fontWeight?: Properties["fontWeight"];
|
2866
|
-
fontFamily?: string;
|
2867
2922
|
lineHeight?: number;
|
2868
2923
|
color?: Properties["color"];
|
2869
2924
|
width?: Properties["width"];
|
@@ -2967,7 +3022,7 @@ declare const TEXT_LINK_UNDERLINE: {
|
|
2967
3022
|
readonly on: "\u5E38\u306B\u8868\u793A";
|
2968
3023
|
readonly off: "\u5E38\u306B\u975E\u8868\u793A";
|
2969
3024
|
};
|
2970
|
-
type TextLinkProps = CommonProps & ClickableProps & LinkProps & WithIconProps & {
|
3025
|
+
type TextLinkProps = CommonProps & ClickableProps & LinkProps & FontFamilyProps & WithIconProps & {
|
2971
3026
|
label: string;
|
2972
3027
|
// size
|
2973
3028
|
size?: keyof typeof TEXT_LINK_SIZE;
|
@@ -3001,14 +3056,70 @@ declare const getTextLinkThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
|
|
3001
3056
|
color: string;
|
3002
3057
|
};
|
3003
3058
|
};
|
3059
|
+
type ListProps = CommonProps & {
|
3060
|
+
gap?: Properties["gap"];
|
3061
|
+
borderWidth?: Properties["borderTopWidth"];
|
3062
|
+
borderStyle?: Properties["borderTopStyle"];
|
3063
|
+
borderColor?: Properties["borderTopColor"];
|
3064
|
+
width?: Properties["width"];
|
3065
|
+
itemPaddingTop?: Properties["paddingTop"];
|
3066
|
+
itemPaddingLeft?: Properties["paddingLeft"];
|
3067
|
+
itemPaddingRight?: Properties["paddingRight"];
|
3068
|
+
itemPaddingBottom?: Properties["paddingBottom"];
|
3069
|
+
itemHeight?: Properties["height"];
|
3070
|
+
itemGap?: Properties["gap"];
|
3071
|
+
};
|
3072
|
+
type ListItemProps = CommonProps & ClickableProps & {
|
3073
|
+
gap?: number;
|
3074
|
+
};
|
3075
|
+
declare const LIST_ITEM_CONTEXT_KEY = "ListItemContext";
|
3076
|
+
type ListItemContext = {
|
3077
|
+
paddingTop?: Properties["paddingTop"];
|
3078
|
+
paddingLeft?: Properties["paddingLeft"];
|
3079
|
+
paddingRight?: Properties["paddingRight"];
|
3080
|
+
paddingBottom?: Properties["paddingBottom"];
|
3081
|
+
height?: Properties["paddingTop"];
|
3082
|
+
borderTopWidth?: Properties["borderTopWidth"];
|
3083
|
+
borderTopStyle?: Properties["borderTopStyle"];
|
3084
|
+
borderTopColor?: Properties["borderTopColor"];
|
3085
|
+
gap?: Properties["gap"];
|
3086
|
+
};
|
3087
|
+
type MultiColumnProps = CommonProps & {
|
3088
|
+
gap?: Properties["columnGap"];
|
3089
|
+
borderWidth?: Properties["borderTopWidth"];
|
3090
|
+
borderStyle?: Properties["borderTopStyle"];
|
3091
|
+
borderColor?: Properties["borderTopColor"];
|
3092
|
+
width?: Properties["width"];
|
3093
|
+
itemPaddingTop?: Properties["paddingTop"];
|
3094
|
+
itemPaddingLeft?: Properties["paddingLeft"];
|
3095
|
+
itemPaddingRight?: Properties["paddingRight"];
|
3096
|
+
itemPaddingBottom?: Properties["paddingBottom"];
|
3097
|
+
itemHeight?: Properties["height"];
|
3098
|
+
itemGap?: Properties["gap"];
|
3099
|
+
};
|
3100
|
+
type MultiColumnItemProps = CommonProps & ClickableProps & {
|
3101
|
+
gap?: number;
|
3102
|
+
};
|
3103
|
+
declare const MULTI_COLUMN_ITEM_CONTEXT_KEY = "MultiColumnItemContext";
|
3104
|
+
type MultiColumnItemContext = {
|
3105
|
+
paddingTop?: Properties["paddingTop"];
|
3106
|
+
paddingLeft?: Properties["paddingLeft"];
|
3107
|
+
paddingRight?: Properties["paddingRight"];
|
3108
|
+
paddingBottom?: Properties["paddingBottom"];
|
3109
|
+
height?: Properties["paddingTop"];
|
3110
|
+
borderLeftWidth?: Properties["borderTopWidth"];
|
3111
|
+
borderLeftStyle?: Properties["borderTopStyle"];
|
3112
|
+
borderLeftColor?: Properties["borderTopColor"];
|
3113
|
+
gap?: Properties["gap"];
|
3114
|
+
innerGap?: Properties["gap"];
|
3115
|
+
};
|
3004
3116
|
type CodeProps = CommonProps & {
|
3005
3117
|
rawHtml?: string;
|
3006
3118
|
rawCss?: string;
|
3007
3119
|
rawScript?: string;
|
3008
3120
|
};
|
3009
|
-
declare const SHADOW_STYLES: Record<keyof typeof SHADOW_VARIANT, Properties>;
|
3010
3121
|
declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
|
3011
|
-
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,
|
3122
|
+
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, 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 };
|
3012
3123
|
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 };
|
3013
3124
|
export { default as State } from './components/State.svelte';
|
3014
3125
|
export { default as StateItem } from './components/StateItem.svelte';
|
@@ -3052,7 +3163,14 @@ export { default as FlexIcon } from './components-flex/icon/Icon.svelte';
|
|
3052
3163
|
export { default as FlexImage } from './components-flex/image/Image.svelte';
|
3053
3164
|
export { default as FlexLayout } from './components-flex/layout/Layout.svelte';
|
3054
3165
|
export { default as FlexSlider } from './components-flex/slider/Slider.svelte';
|
3166
|
+
export { default as FlexSliderItem } from './components-flex/slider/SliderItem.svelte';
|
3055
3167
|
export { default as FlexText } from './components-flex/text/Text.svelte';
|
3168
|
+
export { default as FlexRichText } from './components-flex/rich-text/RichText.svelte';
|
3056
3169
|
export { default as FlexTextLink } from './components-flex/text-link/TextLink.svelte';
|
3057
3170
|
export { default as FlexModal } from './components-flex/modal/Modal.svelte';
|
3058
3171
|
export { default as FlexCode } from './components-flex/code/Code.svelte';
|
3172
|
+
export { default as FlexList } from './components-flex/list/List.svelte';
|
3173
|
+
export { default as FlexListItem } from './components-flex/list/ListItem.svelte';
|
3174
|
+
export { default as FlexMultiColumn } from './components-flex/multi-column/MultiColumn.svelte';
|
3175
|
+
export { default as FlexMultiColumnItem } from './components-flex/multi-column/MultiColumnItem.svelte';
|
3176
|
+
export { default as ThumbnailPreview } from './components-flex/ThumbnailPreview.svelte';
|