@divkitframework/jsonbuilder 32.45.0 → 32.46.0

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.
@@ -379,7 +379,8 @@ interface IDivAction {
379
379
  */
380
380
  referer?: Type<string | DivExpression>;
381
381
  /**
382
- * The ID of the element within which the specified action will be performed.
382
+ * The ID of the element whose scope will be used for changing variable values when the action is
383
+ * performed.
383
384
  *
384
385
  * Platforms: android, ios, web
385
386
  */
@@ -740,7 +741,7 @@ interface DivActionScrollByProps {
740
741
  }
741
742
  declare type DivActionScrollByOverflow = 'clamp' | 'ring';
742
743
 
743
- declare type DivActionScrollDestination = OffsetDestination | IndexDestination | StartDestination | EndDestination;
744
+ declare type DivActionScrollDestination = OffsetDestination | IndexDestination | StartDestination | EndDestination | ItemIdDestination;
744
745
 
745
746
  /**
746
747
  * Scrolls to a position or switches to the container element specified by the `destination`
@@ -755,9 +756,10 @@ declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScro
755
756
  animated?: Type<boolean | DivExpression>;
756
757
  /**
757
758
  * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
758
- * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
759
- * start of the container. Applies only in `gallery`;`start`: Scroll to the container
760
- * start;`end`: Scroll to the container end.
759
+ * `value``item_id`: Scroll to the element with identifier provided in `value``offset`: Scroll to
760
+ * the position specified in `value` and measured in `dp` from the start of the container.
761
+ * Applies only in `gallery`;`start`: Scroll to the container start;`end`: Scroll to the
762
+ * container end.
761
763
  */
762
764
  destination: Type<DivActionScrollDestination>;
763
765
  /**
@@ -773,9 +775,10 @@ interface DivActionScrollToProps {
773
775
  animated?: Type<boolean | DivExpression>;
774
776
  /**
775
777
  * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
776
- * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
777
- * start of the container. Applies only in `gallery`;`start`: Scroll to the container
778
- * start;`end`: Scroll to the container end.
778
+ * `value``item_id`: Scroll to the element with identifier provided in `value``offset`: Scroll to
779
+ * the position specified in `value` and measured in `dp` from the start of the container.
780
+ * Applies only in `gallery`;`start`: Scroll to the container start;`end`: Scroll to the
781
+ * container end.
779
782
  */
780
783
  destination: Type<DivActionScrollDestination>;
781
784
  /**
@@ -784,6 +787,53 @@ interface DivActionScrollToProps {
784
787
  id: Type<string | DivExpression>;
785
788
  }
786
789
 
790
+ /**
791
+ * Sets the cursor position in the specified input field.
792
+ */
793
+ declare class DivActionSetCursorPosition<T extends DivActionSetCursorPositionProps = DivActionSetCursorPositionProps> {
794
+ readonly _props?: Exact<DivActionSetCursorPositionProps, T>;
795
+ readonly type = "set_cursor_position";
796
+ /**
797
+ * ID of the input field.
798
+ */
799
+ id: Type<string | DivExpression>;
800
+ /**
801
+ * Defines the cursor position. If `end` is not set, or if `end` is equal to `start`, it will
802
+ * just be the cursor position, if both are set and the values are different, part of the text
803
+ * will be selected. Use 0 to indicate the beginning of the text, -1 for the end.
804
+ */
805
+ position: Type<DivActionSetCursorPositionPosition>;
806
+ constructor(props: Exact<DivActionSetCursorPositionProps, T>);
807
+ }
808
+ interface DivActionSetCursorPositionProps {
809
+ /**
810
+ * ID of the input field.
811
+ */
812
+ id: Type<string | DivExpression>;
813
+ /**
814
+ * Defines the cursor position. If `end` is not set, or if `end` is equal to `start`, it will
815
+ * just be the cursor position, if both are set and the values are different, part of the text
816
+ * will be selected. Use 0 to indicate the beginning of the text, -1 for the end.
817
+ */
818
+ position: Type<DivActionSetCursorPositionPosition>;
819
+ }
820
+ /**
821
+ * Defines the cursor position. If `end` is not set, or if `end` is equal to `start`, it will
822
+ * just be the cursor position, if both are set and the values are different, part of the text
823
+ * will be selected. Use 0 to indicate the beginning of the text, -1 for the end.
824
+ */
825
+ declare class DivActionSetCursorPositionPosition<T extends DivActionSetCursorPositionPositionProps = DivActionSetCursorPositionPositionProps> {
826
+ readonly _props?: Exact<DivActionSetCursorPositionPositionProps, T>;
827
+ readonly type = "absolute";
828
+ end?: Type<number | DivExpression>;
829
+ start: Type<number | DivExpression>;
830
+ constructor(props: Exact<DivActionSetCursorPositionPositionProps, T>);
831
+ }
832
+ interface DivActionSetCursorPositionPositionProps {
833
+ end?: Type<number | DivExpression>;
834
+ start: Type<number | DivExpression>;
835
+ }
836
+
787
837
  /**
788
838
  * Applies a new appearance to the content in `div-state'.
789
839
  */
@@ -1004,7 +1054,7 @@ interface DivActionTimerProps {
1004
1054
  }
1005
1055
  declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
1006
1056
 
1007
- declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionUpdateStructure | DivActionVideo | DivActionCustom;
1057
+ declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionUpdateStructure | DivActionVideo | DivActionCustom | DivActionSetCursorPosition;
1008
1058
 
1009
1059
  /**
1010
1060
  * Set values ​​in a variable of type array or dictionary with different nesting.
@@ -2936,7 +2986,8 @@ interface IDivDisappearAction {
2936
2986
  */
2937
2987
  referer?: Type<string | DivExpression>;
2938
2988
  /**
2939
- * The ID of the element within which the specified action will be performed.
2989
+ * The ID of the element whose scope will be used for changing variable values when the action is
2990
+ * performed.
2940
2991
  *
2941
2992
  * Platforms: android, ios, web
2942
2993
  */
@@ -9626,7 +9677,8 @@ interface IDivSightAction {
9626
9677
  */
9627
9678
  referer?: Type<string | DivExpression>;
9628
9679
  /**
9629
- * The ID of the element within which the specified action will be performed.
9680
+ * The ID of the element whose scope will be used for changing variable values when the action is
9681
+ * performed.
9630
9682
  *
9631
9683
  * Platforms: android, ios, web
9632
9684
  */
@@ -14007,7 +14059,8 @@ interface IDivVisibilityAction {
14007
14059
  */
14008
14060
  referer?: Type<string | DivExpression>;
14009
14061
  /**
14010
- * The ID of the element within which the specified action will be performed.
14062
+ * The ID of the element whose scope will be used for changing variable values when the action is
14063
+ * performed.
14011
14064
  *
14012
14065
  * Platforms: android, ios, web
14013
14066
  */
@@ -14132,6 +14185,25 @@ interface IntegerVariableProps {
14132
14185
  value: Type<number | DivExpression>;
14133
14186
  }
14134
14187
 
14188
+ /**
14189
+ * Specifies the element with the given `id` as the scrolling end position.
14190
+ */
14191
+ declare class ItemIdDestination<T extends ItemIdDestinationProps = ItemIdDestinationProps> {
14192
+ readonly _props?: Exact<ItemIdDestinationProps, T>;
14193
+ readonly type = "item_id";
14194
+ /**
14195
+ * Identifier of the container child element to scroll to.
14196
+ */
14197
+ value: Type<string | DivExpression>;
14198
+ constructor(props: Exact<ItemIdDestinationProps, T>);
14199
+ }
14200
+ interface ItemIdDestinationProps {
14201
+ /**
14202
+ * Identifier of the container child element to scroll to.
14203
+ */
14204
+ value: Type<string | DivExpression>;
14205
+ }
14206
+
14135
14207
  declare class NumberValue<T extends NumberValueProps = NumberValueProps> {
14136
14208
  readonly _props?: Exact<NumberValueProps, T>;
14137
14209
  readonly type = "number";
@@ -14480,4 +14552,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
14480
14552
  };
14481
14553
  };
14482
14554
 
14483
- export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionCustom, DivActionCustomProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionUpdateStructure, DivActionUpdateStructureProps, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFixedTranslation, DivFixedTranslationProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerItemAlignment, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPercentageTranslation, DivPercentageTranslationProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRotationTransformation, DivRotationTransformationProps, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, DivTooltipPosition, DivTransformation, DivTransitionSelector, DivTransitionTrigger, DivTranslation, DivTranslationTransformation, DivTranslationTransformationProps, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSizeUnitValue, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, PropertyVariable, PropertyVariableProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
14555
+ export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionCustom, DivActionCustomProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetCursorPosition, DivActionSetCursorPositionPosition, DivActionSetCursorPositionPositionProps, DivActionSetCursorPositionProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionUpdateStructure, DivActionUpdateStructureProps, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFixedTranslation, DivFixedTranslationProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerItemAlignment, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPercentageTranslation, DivPercentageTranslationProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRotationTransformation, DivRotationTransformationProps, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, DivTooltipPosition, DivTransformation, DivTransitionSelector, DivTransitionTrigger, DivTranslation, DivTranslationTransformation, DivTranslationTransformationProps, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSizeUnitValue, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, ItemIdDestination, ItemIdDestinationProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, PropertyVariable, PropertyVariableProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
@@ -278,6 +278,30 @@ class DivActionScrollTo {
278
278
  }
279
279
  }
280
280
 
281
+ // Generated code. Do not modify.
282
+ /**
283
+ * Sets the cursor position in the specified input field.
284
+ */
285
+ class DivActionSetCursorPosition {
286
+ constructor(props) {
287
+ this.type = 'set_cursor_position';
288
+ this.id = props.id;
289
+ this.position = props.position;
290
+ }
291
+ }
292
+ /**
293
+ * Defines the cursor position. If `end` is not set, or if `end` is equal to `start`, it will
294
+ * just be the cursor position, if both are set and the values are different, part of the text
295
+ * will be selected. Use 0 to indicate the beginning of the text, -1 for the end.
296
+ */
297
+ class DivActionSetCursorPositionPosition {
298
+ constructor(props) {
299
+ this.type = 'absolute';
300
+ this.end = props.end;
301
+ this.start = props.start;
302
+ }
303
+ }
304
+
281
305
  // Generated code. Do not modify.
282
306
  /**
283
307
  * Applies a new appearance to the content in `div-state'.
@@ -2125,6 +2149,17 @@ class IntegerVariable {
2125
2149
  }
2126
2150
  }
2127
2151
 
2152
+ // Generated code. Do not modify.
2153
+ /**
2154
+ * Specifies the element with the given `id` as the scrolling end position.
2155
+ */
2156
+ class ItemIdDestination {
2157
+ constructor(props) {
2158
+ this.type = 'item_id';
2159
+ this.value = props.value;
2160
+ }
2161
+ }
2162
+
2128
2163
  // Generated code. Do not modify.
2129
2164
  class NumberValue {
2130
2165
  constructor(props) {
@@ -2622,6 +2657,8 @@ exports.DivActionFocusElement = DivActionFocusElement;
2622
2657
  exports.DivActionHideTooltip = DivActionHideTooltip;
2623
2658
  exports.DivActionScrollBy = DivActionScrollBy;
2624
2659
  exports.DivActionScrollTo = DivActionScrollTo;
2660
+ exports.DivActionSetCursorPosition = DivActionSetCursorPosition;
2661
+ exports.DivActionSetCursorPositionPosition = DivActionSetCursorPositionPosition;
2625
2662
  exports.DivActionSetState = DivActionSetState;
2626
2663
  exports.DivActionSetStoredValue = DivActionSetStoredValue;
2627
2664
  exports.DivActionSetVariable = DivActionSetVariable;
@@ -2708,6 +2745,7 @@ exports.EndDestination = EndDestination;
2708
2745
  exports.IndexDestination = IndexDestination;
2709
2746
  exports.IntegerValue = IntegerValue;
2710
2747
  exports.IntegerVariable = IntegerVariable;
2748
+ exports.ItemIdDestination = ItemIdDestination;
2711
2749
  exports.NumberValue = NumberValue;
2712
2750
  exports.NumberVariable = NumberVariable;
2713
2751
  exports.OffsetDestination = OffsetDestination;