@plaidev/karte-action-sdk 1.1.265 → 1.1.266-29065938.e3ec46c6
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 +29 -3
- package/dist/hydrate/index.es.js +779 -290
- package/dist/index.es.d.ts +29 -3
- package/dist/index.es.js +753 -298
- package/dist/svelte5/hydrate/index.es.d.ts +30 -4
- package/dist/svelte5/hydrate/index.es.js +754 -430
- package/dist/svelte5/index.es.d.ts +30 -4
- package/dist/svelte5/index.es.js +576 -386
- package/dist/svelte5/index.front2.es.js +578 -386
- package/package.json +1 -1
@@ -1419,7 +1419,7 @@ declare function getCssVariables(data: {
|
|
1419
1419
|
*/
|
1420
1420
|
declare function getActionRoot(): ShadowRoot | null;
|
1421
1421
|
/** @internal */
|
1422
|
-
declare function ensureActionRoot(
|
1422
|
+
declare function ensureActionRoot(): ShadowRoot | HTMLElement;
|
1423
1423
|
/**
|
1424
1424
|
* 非推奨
|
1425
1425
|
*
|
@@ -2621,8 +2621,8 @@ declare const CLOSE_BUTTON_ROUND: {
|
|
2621
2621
|
readonly fulled: "\u5186\u5F62";
|
2622
2622
|
};
|
2623
2623
|
declare const CLOSE_BUTTON_LABEL_PLACEMENT: {
|
2624
|
-
right:
|
2625
|
-
left:
|
2624
|
+
readonly right: "right";
|
2625
|
+
readonly left: "left";
|
2626
2626
|
};
|
2627
2627
|
type CloseButtonProps = CommonProps & ClickableProps & BorderProps & {
|
2628
2628
|
size?: number;
|
@@ -2713,6 +2713,7 @@ type LayerLayoutProps = CommonProps & ClickableProps & OverflowProps & BorderPro
|
|
2713
2713
|
direction?: LayoutFlexDirection;
|
2714
2714
|
align?: LayoutFlexAlign;
|
2715
2715
|
justify?: LayoutFlexJustify;
|
2716
|
+
gap?: Properties["gap"];
|
2716
2717
|
rowGap?: Properties["rowGap"];
|
2717
2718
|
columnGap?: Properties["columnGap"];
|
2718
2719
|
width?: Properties["width"];
|
@@ -2901,7 +2902,32 @@ type CodeProps = CommonProps & {
|
|
2901
2902
|
rawScript?: string;
|
2902
2903
|
};
|
2903
2904
|
declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
|
2904
|
-
|
2905
|
+
type FlexComponentSchemaPropType = "string" | "url" | "number" | "boolean" | "color" | "date_string";
|
2906
|
+
type FlexComponentSchemaProp<Props extends Record<string, any>, Key extends keyof Props> = {
|
2907
|
+
key: Key;
|
2908
|
+
type: FlexComponentSchemaPropType;
|
2909
|
+
suggestions: Props[Key][];
|
2910
|
+
default?: Props[Key];
|
2911
|
+
priority?: number;
|
2912
|
+
};
|
2913
|
+
type FlexComponentSchema<Props extends Record<string, any> = object> = {
|
2914
|
+
props: FlexComponentSchemaProp<Props, keyof Props>[];
|
2915
|
+
};
|
2916
|
+
declare const createProp: <Props extends Record<string, any>, K extends keyof Props>(key: K, type: FlexComponentSchemaPropType, suggestions?: Props[K][], priority?: number, defaultValue?: Props[K]) => FlexComponentSchemaProp<Props, K>;
|
2917
|
+
declare const flexComponentSchemes: {
|
2918
|
+
readonly FlexAvatar: FlexComponentSchema<AvatarProps>;
|
2919
|
+
readonly FlexButton: FlexComponentSchema<ButtonProps>;
|
2920
|
+
readonly FlexClipCopy: FlexComponentSchema<ClipboardProps>;
|
2921
|
+
readonly FlexCloseButton: FlexComponentSchema<CloseButtonProps>;
|
2922
|
+
readonly FlexCountDown: FlexComponentSchema<CountDownProps>;
|
2923
|
+
readonly FlexIcon: FlexComponentSchema<IconProps>;
|
2924
|
+
readonly FlexImage: FlexComponentSchema<ImageProps>;
|
2925
|
+
readonly FlexLayout: FlexComponentSchema<LayerLayoutProps>;
|
2926
|
+
readonly FlexList: FlexComponentSchema<ListProps>;
|
2927
|
+
readonly FlexListItem: FlexComponentSchema<ListItemProps>;
|
2928
|
+
readonly FlexText: FlexComponentSchema<LayerTextProps>;
|
2929
|
+
};
|
2930
|
+
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, ActionTableProps, 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, IMAGE_ROUND_STYLES, 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, FrameModalProps, 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, createProp, flexComponentSchemes };
|
2905
2931
|
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 };
|
2906
2932
|
export { default as State } from './components-flex/state/State.svelte';
|
2907
2933
|
export { default as StateItem } from './components-flex/state/StateItem.svelte';
|