@plaidev/karte-action-sdk 1.1.212 → 1.1.213

Sign up to get free protection for your applications and to get access to all the features.
@@ -625,8 +625,8 @@ declare function resetVariables(): void;
625
625
  /** @internal */
626
626
  interface FormData {
627
627
  [name: string]: {
628
- statePath: string;
629
628
  value: any;
629
+ statePath: string;
630
630
  isValid: boolean;
631
631
  };
632
632
  }
@@ -909,6 +909,11 @@ type LongText = string;
909
909
  /** @internal */
910
910
  type Url = string;
911
911
  /** @internal */
912
+ type RegExpProp = {
913
+ pattern: string;
914
+ flags: string;
915
+ };
916
+ /** @internal */
912
917
  type Image = string;
913
918
  /** @internal */
914
919
  declare const LengthUnits: readonly [
@@ -1206,6 +1211,34 @@ type ModalBreakPoint = {
1206
1211
  };
1207
1212
  /** @internal */
1208
1213
  declare const DefaultModalBreakPoint: ModalBreakPoint;
1214
+ declare const FormIdentifyTextFields: readonly [
1215
+ "email",
1216
+ "phone",
1217
+ "first_name",
1218
+ "last_name",
1219
+ "address"
1220
+ ];
1221
+ /** @internal */
1222
+ type FormIdentifyTextField = (typeof FormIdentifyTextFields)[number];
1223
+ /** @internal */
1224
+ declare const FormIdentifyTextFieldValidations: {
1225
+ [K in FormIdentifyTextField]: RegExpProp;
1226
+ };
1227
+ /** @internal */
1228
+ declare const FormIdentifyTextFieldPlaceholders: {
1229
+ [K in FormIdentifyTextField]: string;
1230
+ };
1231
+ /** @internal */
1232
+ declare const DefaultFormIdentifyTextField: FormIdentifyTextField;
1233
+ /** @internal */
1234
+ declare const FormIdentifyBooleanFields: readonly [
1235
+ "subscription",
1236
+ "phone_subscribe"
1237
+ ];
1238
+ /** @internal */
1239
+ type FormIdentifyBooleanField = (typeof FormIdentifyBooleanFields)[number];
1240
+ /** @internal */
1241
+ declare const DefaultFormIdentifyBooleanField: FormIdentifyBooleanField;
1209
1242
  /**
1210
1243
  * スクロール方向
1211
1244
  *
@@ -2244,7 +2277,7 @@ declare const afterUpdate: typeof afterUpdateSvelte;
2244
2277
  declare const tick: typeof tickSvelte;
2245
2278
  // @internal
2246
2279
  declare const LAYOUT_COMPONENT_NAMES: string[];
2247
- 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, 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, showAction, closeAction, loadStyle, applyCss, onShow, onClose, onChangeState, getActionRoot, getCssVariables, show, close, ensureModalRoot, createApp, createFog, collection, loadActionTableRow, loadActionTableRows, loadActionTableQuery, loadActionTable, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES };
2280
+ 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, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES };
2248
2281
  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 };
2249
2282
  export { default as State } from './components/State.svelte';
2250
2283
  export { default as StateItem } from './components/StateItem.svelte';
@@ -2265,6 +2298,8 @@ export { default as FormSelect } from './components/FormSelect.svelte';
2265
2298
  export { default as FormCheckBoxes } from './components/FormCheckBoxes.svelte';
2266
2299
  export { default as FormRatingButtonsNumber } from './components/FormRatingButtonsNumber.svelte';
2267
2300
  export { default as FormRatingButtonsFace } from './components/FormRatingButtonsFace.svelte';
2301
+ export { default as FormIdentifyInput } from './components/FormIdentifyInput.svelte';
2302
+ export { default as FormIdentifyChoices } from './components/FormIdentifyChoices.svelte';
2268
2303
  export { default as Slide } from './components/Slide.svelte';
2269
2304
  export { default as SlideItem } from './components/SlideItem.svelte';
2270
2305
  export { default as Countdown } from './components/Countdown.svelte';