@plaidev/karte-action-sdk 1.1.120-27932497.7c9501cf → 1.1.120-27933281.c7c47ad7

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.
@@ -441,6 +441,37 @@ declare const DefaultSlideNavigationButton: {
441
441
  /** @internal */
442
442
  type FormInputName = string;
443
443
  /** @internal */
444
+ interface FormButtonStyle {
445
+ size: Length;
446
+ colorActive: Color;
447
+ colorInactive: Color;
448
+ }
449
+ /** @internal */
450
+ declare const DefaultFormButtonStyle: {
451
+ readonly size: "16px";
452
+ readonly colorActive: "#2aab9f";
453
+ readonly colorInactive: "rgba(0, 16, 14, 0.06)";
454
+ };
455
+ /** @internal */
456
+ interface FormSelectStyle {
457
+ colorArrow: Color;
458
+ colorFocused: Color;
459
+ }
460
+ /** @internal */
461
+ declare const DefaultFormSelectStyle: {
462
+ readonly colorArrow: "#333";
463
+ readonly colorFocused: "#2aab9f";
464
+ };
465
+ /** @internal */
466
+ type FormRatingButtonType = "star" | "face";
467
+ /** @internal */
468
+ declare const FormRatingButtonTypes: readonly [
469
+ "star",
470
+ "face"
471
+ ];
472
+ /** @internal */
473
+ declare const DefaultFormRatingButtonType: "star";
474
+ /** @internal */
444
475
  type Store<T> = Writable_<T>; // Wrap svelte tools
445
476
  /**
446
477
  * get store state value
@@ -1731,6 +1762,37 @@ declare namespace widget {
1731
1762
  /** @internal */
1732
1763
  type FormInputName = string;
1733
1764
  /** @internal */
1765
+ interface FormButtonStyle {
1766
+ size: Length;
1767
+ colorActive: Color;
1768
+ colorInactive: Color;
1769
+ }
1770
+ /** @internal */
1771
+ const DefaultFormButtonStyle: {
1772
+ readonly size: "16px";
1773
+ readonly colorActive: "#2aab9f";
1774
+ readonly colorInactive: "rgba(0, 16, 14, 0.06)";
1775
+ };
1776
+ /** @internal */
1777
+ interface FormSelectStyle {
1778
+ colorArrow: Color;
1779
+ colorFocused: Color;
1780
+ }
1781
+ /** @internal */
1782
+ const DefaultFormSelectStyle: {
1783
+ readonly colorArrow: "#333";
1784
+ readonly colorFocused: "#2aab9f";
1785
+ };
1786
+ /** @internal */
1787
+ type FormRatingButtonType = "star" | "face";
1788
+ /** @internal */
1789
+ const FormRatingButtonTypes: readonly [
1790
+ "star",
1791
+ "face"
1792
+ ];
1793
+ /** @internal */
1794
+ const DefaultFormRatingButtonType: "star";
1795
+ /** @internal */
1734
1796
  type Store<T> = Writable_<T>; // Wrap svelte tools
1735
1797
  /**
1736
1798
  * get store state value
@@ -2778,7 +2840,7 @@ declare namespace widget {
2778
2840
  */
2779
2841
  export { showAction as show, closeAction as hide };
2780
2842
  }
2781
- export { loadGlobalScript, loadGlobalStyle, applyGlobalCss, initialize, finalize, setAutoStart, getState, setState, getStates, isOpened, getCustomVariables, setCustomVariables, updateCustomVariables, getCustomHandlers, setCustomHandlers, updateCustomHandlers, getSystem, setActionSetting, customHandlers, customVariables, formData, state, opened, closed, destroyed, stopped, isClosed, setClosed, getStoreState, onScroll, onTime, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, Image, LengthUnits, LengthUnit, Length, Color, Justifies, Justify, Alignments, Alignment, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, Style, StateName, WritingModes, WritingMode, ListSeparatorTypes, 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, create, destroy, closeAction, showAction, loadStyle, applyCss, getActionShadowRoot, onCreate, onShow, onClose, onDestroy, onChangeState, showModal, ensureModalRoot, show, close, createApp, createFog, KARTE_MODAL_ROOT, collection, widget };
2843
+ export { loadGlobalScript, loadGlobalStyle, applyGlobalCss, initialize, finalize, setAutoStart, getState, setState, getStates, isOpened, getCustomVariables, setCustomVariables, updateCustomVariables, getCustomHandlers, setCustomHandlers, updateCustomHandlers, getSystem, setActionSetting, customHandlers, customVariables, formData, state, opened, closed, destroyed, stopped, isClosed, setClosed, getStoreState, onScroll, onTime, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, Image, LengthUnits, LengthUnit, Length, Color, Justifies, Justify, Alignments, Alignment, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, Style, StateName, WritingModes, WritingMode, ListSeparatorTypes, 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, FormButtonStyle, DefaultFormButtonStyle, FormSelectStyle, DefaultFormSelectStyle, FormRatingButtonType, FormRatingButtonTypes, DefaultFormRatingButtonType, create, destroy, closeAction, showAction, loadStyle, applyCss, getActionShadowRoot, onCreate, onShow, onClose, onDestroy, onChangeState, showModal, ensureModalRoot, show, close, createApp, createFog, KARTE_MODAL_ROOT, collection, widget };
2782
2844
  export type { CloseTrigger, CustomVariables, ActionEventHandler, SystemConfig, OnScrollContext, OnScrollFunction, ScrollDirection, ActionProps, ActionOptions, ActionHook, ActionCloseHook, ActionChangeStateHook, SendFunction, CollectionConfig };
2783
2845
  export { default as State } from './components/State.svelte';
2784
2846
  export { default as StateItem } from './components/StateItem.svelte';