@divkitframework/jsonbuilder 32.5.0 → 32.7.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.
@@ -992,7 +992,50 @@ interface DivActionTimerProps {
992
992
  }
993
993
  declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
994
994
 
995
- declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionVideo;
995
+ declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionUpdateStructure | DivActionVideo;
996
+
997
+ /**
998
+ * Set values ​​in a variable of type array or dictionary with different nesting.
999
+ */
1000
+ declare class DivActionUpdateStructure<T extends DivActionUpdateStructureProps = DivActionUpdateStructureProps> {
1001
+ readonly _props?: Exact<DivActionUpdateStructureProps, T>;
1002
+ readonly type = "update_structure";
1003
+ /**
1004
+ * Path within an array/dictionary where a value needs to be set. Path format: Each path element
1005
+ * is separated by a '/' symbol.Path elements can be of two types: an index of an element in an
1006
+ * array, starting from 0 or dictionary keys in the form of arbitrary strings.The path is read
1007
+ * from left to right, each element determines the transition to the next level of
1008
+ * nesting.Example path: `key/0/inner_key/1`.
1009
+ */
1010
+ path: Type<string | DivExpression>;
1011
+ /**
1012
+ * Value set into dictionary/array.
1013
+ */
1014
+ value: Type<DivTypedValue>;
1015
+ /**
1016
+ * Variable name of array or dictionary type.
1017
+ */
1018
+ variable_name: Type<string | DivExpression>;
1019
+ constructor(props: Exact<DivActionUpdateStructureProps, T>);
1020
+ }
1021
+ interface DivActionUpdateStructureProps {
1022
+ /**
1023
+ * Path within an array/dictionary where a value needs to be set. Path format: Each path element
1024
+ * is separated by a '/' symbol.Path elements can be of two types: an index of an element in an
1025
+ * array, starting from 0 or dictionary keys in the form of arbitrary strings.The path is read
1026
+ * from left to right, each element determines the transition to the next level of
1027
+ * nesting.Example path: `key/0/inner_key/1`.
1028
+ */
1029
+ path: Type<string | DivExpression>;
1030
+ /**
1031
+ * Value set into dictionary/array.
1032
+ */
1033
+ value: Type<DivTypedValue>;
1034
+ /**
1035
+ * Variable name of array or dictionary type.
1036
+ */
1037
+ variable_name: Type<string | DivExpression>;
1038
+ }
996
1039
 
997
1040
  /**
998
1041
  * Manages video playback.
@@ -9955,6 +9998,21 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9955
9998
  * Platforms: android, ios, web
9956
9999
  */
9957
10000
  accessibility?: Type<IDivAccessibility>;
10001
+ /**
10002
+ * One action when clicking on an element. Not used if the `actions` parameter is set.
10003
+ */
10004
+ action?: Type<IDivAction>;
10005
+ /**
10006
+ * Click animation. The web only supports the following values: `fade`, `scale`, `native`,
10007
+ * `no_animation` and `set`.
10008
+ *
10009
+ * Platforms: android, ios, web
10010
+ */
10011
+ action_animation?: Type<IDivAnimation>;
10012
+ /**
10013
+ * Multiple actions when clicking on an element.
10014
+ */
10015
+ actions?: Type<NonEmptyArray<IDivAction>>;
9958
10016
  /**
9959
10017
  * Horizontal alignment of an element inside the parent element.
9960
10018
  */
@@ -9981,6 +10039,15 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9981
10039
  * Element stroke.
9982
10040
  */
9983
10041
  border?: Type<IDivBorder>;
10042
+ /**
10043
+ * If the value is:`true` - when the element action is activated, the focus will be moved to that
10044
+ * element. That means that the accessibility focus will be moved and the virtual keyboard will
10045
+ * be hidden, unless the target element implies its presence (e.g. `input`).`false` - when you
10046
+ * click on an element, the focus will remain on the currently focused element.
10047
+ *
10048
+ * Platforms: android, ios, web
10049
+ */
10050
+ capture_focus_on_action?: Type<boolean | DivExpression>;
9984
10051
  /**
9985
10052
  * Enables the bounding of child elements by the parent's borders.
9986
10053
  *
@@ -10010,6 +10077,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
10010
10077
  * @deprecated
10011
10078
  */
10012
10079
  div_id?: Type<string>;
10080
+ /**
10081
+ * Action when double-clicking on an element.
10082
+ *
10083
+ * Platforms: android, ios, web
10084
+ */
10085
+ doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
10013
10086
  /**
10014
10087
  * Extensions for additional processing of an element. The list of extensions is given in
10015
10088
  * [DivExtension](../../extensions).
@@ -10033,6 +10106,20 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
10033
10106
  * measurement, see [Layout inside the card](../../layout).
10034
10107
  */
10035
10108
  height?: Type<DivSize>;
10109
+ /**
10110
+ * Actions performed after hovering over an element. Available on platforms that support pointing
10111
+ * devices (such as a mouse or stylus).
10112
+ *
10113
+ * Platforms: web, android, ios
10114
+ */
10115
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
10116
+ /**
10117
+ * Actions performed when hovering over an element. Available on platforms that support pointing
10118
+ * devices (such as a mouse or stylus).
10119
+ *
10120
+ * Platforms: web, android, ios
10121
+ */
10122
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
10036
10123
  /**
10037
10124
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
10038
10125
  * on iOS.
@@ -10044,6 +10131,13 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
10044
10131
  * Platforms: android, ios, web
10045
10132
  */
10046
10133
  layout_provider?: Type<IDivLayoutProvider>;
10134
+ /**
10135
+ * Action when long-clicking an element. Doesn't work on devices that don't support touch
10136
+ * gestures.
10137
+ *
10138
+ * Platforms: android, ios, web
10139
+ */
10140
+ longtap_actions?: Type<NonEmptyArray<IDivAction>>;
10047
10141
  /**
10048
10142
  * External margins from the element stroke.
10049
10143
  */
@@ -10052,6 +10146,18 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
10052
10146
  * Internal margins from the element stroke.
10053
10147
  */
10054
10148
  paddings?: Type<IDivEdgeInsets>;
10149
+ /**
10150
+ * Actions performed after clicking/tapping an element.
10151
+ *
10152
+ * Platforms: web, android, ios
10153
+ */
10154
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
10155
+ /**
10156
+ * Actions performed at the start of a click/tap on an element.
10157
+ *
10158
+ * Platforms: web, android, ios
10159
+ */
10160
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
10055
10161
  /**
10056
10162
  * ID for the div object structure. Used to optimize block reuse. See [block
10057
10163
  * reuse](../../reuse/reuse.md).
@@ -10169,6 +10275,21 @@ interface DivStateProps {
10169
10275
  * Platforms: android, ios, web
10170
10276
  */
10171
10277
  accessibility?: Type<IDivAccessibility>;
10278
+ /**
10279
+ * One action when clicking on an element. Not used if the `actions` parameter is set.
10280
+ */
10281
+ action?: Type<IDivAction>;
10282
+ /**
10283
+ * Click animation. The web only supports the following values: `fade`, `scale`, `native`,
10284
+ * `no_animation` and `set`.
10285
+ *
10286
+ * Platforms: android, ios, web
10287
+ */
10288
+ action_animation?: Type<IDivAnimation>;
10289
+ /**
10290
+ * Multiple actions when clicking on an element.
10291
+ */
10292
+ actions?: Type<NonEmptyArray<IDivAction>>;
10172
10293
  /**
10173
10294
  * Horizontal alignment of an element inside the parent element.
10174
10295
  */
@@ -10195,6 +10316,15 @@ interface DivStateProps {
10195
10316
  * Element stroke.
10196
10317
  */
10197
10318
  border?: Type<IDivBorder>;
10319
+ /**
10320
+ * If the value is:`true` - when the element action is activated, the focus will be moved to that
10321
+ * element. That means that the accessibility focus will be moved and the virtual keyboard will
10322
+ * be hidden, unless the target element implies its presence (e.g. `input`).`false` - when you
10323
+ * click on an element, the focus will remain on the currently focused element.
10324
+ *
10325
+ * Platforms: android, ios, web
10326
+ */
10327
+ capture_focus_on_action?: Type<boolean | DivExpression>;
10198
10328
  /**
10199
10329
  * Enables the bounding of child elements by the parent's borders.
10200
10330
  *
@@ -10224,6 +10354,12 @@ interface DivStateProps {
10224
10354
  * @deprecated
10225
10355
  */
10226
10356
  div_id?: Type<string>;
10357
+ /**
10358
+ * Action when double-clicking on an element.
10359
+ *
10360
+ * Platforms: android, ios, web
10361
+ */
10362
+ doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
10227
10363
  /**
10228
10364
  * Extensions for additional processing of an element. The list of extensions is given in
10229
10365
  * [DivExtension](../../extensions).
@@ -10247,6 +10383,20 @@ interface DivStateProps {
10247
10383
  * measurement, see [Layout inside the card](../../layout).
10248
10384
  */
10249
10385
  height?: Type<DivSize>;
10386
+ /**
10387
+ * Actions performed after hovering over an element. Available on platforms that support pointing
10388
+ * devices (such as a mouse or stylus).
10389
+ *
10390
+ * Platforms: web, android, ios
10391
+ */
10392
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
10393
+ /**
10394
+ * Actions performed when hovering over an element. Available on platforms that support pointing
10395
+ * devices (such as a mouse or stylus).
10396
+ *
10397
+ * Platforms: web, android, ios
10398
+ */
10399
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
10250
10400
  /**
10251
10401
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
10252
10402
  * on iOS.
@@ -10258,6 +10408,13 @@ interface DivStateProps {
10258
10408
  * Platforms: android, ios, web
10259
10409
  */
10260
10410
  layout_provider?: Type<IDivLayoutProvider>;
10411
+ /**
10412
+ * Action when long-clicking an element. Doesn't work on devices that don't support touch
10413
+ * gestures.
10414
+ *
10415
+ * Platforms: android, ios, web
10416
+ */
10417
+ longtap_actions?: Type<NonEmptyArray<IDivAction>>;
10261
10418
  /**
10262
10419
  * External margins from the element stroke.
10263
10420
  */
@@ -10266,6 +10423,18 @@ interface DivStateProps {
10266
10423
  * Internal margins from the element stroke.
10267
10424
  */
10268
10425
  paddings?: Type<IDivEdgeInsets>;
10426
+ /**
10427
+ * Actions performed after clicking/tapping an element.
10428
+ *
10429
+ * Platforms: web, android, ios
10430
+ */
10431
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
10432
+ /**
10433
+ * Actions performed at the start of a click/tap on an element.
10434
+ *
10435
+ * Platforms: web, android, ios
10436
+ */
10437
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
10269
10438
  /**
10270
10439
  * ID for the div object structure. Used to optimize block reuse. See [block
10271
10440
  * reuse](../../reuse/reuse.md).
@@ -13825,4 +13994,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13825
13994
  };
13826
13995
  };
13827
13996
 
13828
- 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, 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, 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, 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, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, 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, DivTransitionSelector, DivTransitionTrigger, 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, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, 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 };
13997
+ 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, 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, 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, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, 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, DivTransitionSelector, DivTransitionTrigger, 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, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, 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 };
@@ -343,6 +343,19 @@ class DivActionTimer {
343
343
  }
344
344
  }
345
345
 
346
+ // Generated code. Do not modify.
347
+ /**
348
+ * Set values ​​in a variable of type array or dictionary with different nesting.
349
+ */
350
+ class DivActionUpdateStructure {
351
+ constructor(props) {
352
+ this.type = 'update_structure';
353
+ this.path = props.path;
354
+ this.value = props.value;
355
+ this.variable_name = props.variable_name;
356
+ }
357
+ }
358
+
346
359
  // Generated code. Do not modify.
347
360
  /**
348
361
  * Manages video playback.
@@ -1588,25 +1601,35 @@ class DivState {
1588
1601
  constructor(props) {
1589
1602
  this.type = 'state';
1590
1603
  this.accessibility = props.accessibility;
1604
+ this.action = props.action;
1605
+ this.action_animation = props.action_animation;
1606
+ this.actions = props.actions;
1591
1607
  this.alignment_horizontal = props.alignment_horizontal;
1592
1608
  this.alignment_vertical = props.alignment_vertical;
1593
1609
  this.alpha = props.alpha;
1594
1610
  this.animators = props.animators;
1595
1611
  this.background = props.background;
1596
1612
  this.border = props.border;
1613
+ this.capture_focus_on_action = props.capture_focus_on_action;
1597
1614
  this.clip_to_bounds = props.clip_to_bounds;
1598
1615
  this.column_span = props.column_span;
1599
1616
  this.default_state_id = props.default_state_id;
1600
1617
  this.disappear_actions = props.disappear_actions;
1601
1618
  this.div_id = props.div_id;
1619
+ this.doubletap_actions = props.doubletap_actions;
1602
1620
  this.extensions = props.extensions;
1603
1621
  this.focus = props.focus;
1604
1622
  this.functions = props.functions;
1605
1623
  this.height = props.height;
1624
+ this.hover_end_actions = props.hover_end_actions;
1625
+ this.hover_start_actions = props.hover_start_actions;
1606
1626
  this.id = props.id;
1607
1627
  this.layout_provider = props.layout_provider;
1628
+ this.longtap_actions = props.longtap_actions;
1608
1629
  this.margins = props.margins;
1609
1630
  this.paddings = props.paddings;
1631
+ this.press_end_actions = props.press_end_actions;
1632
+ this.press_start_actions = props.press_start_actions;
1610
1633
  this.reuse_id = props.reuse_id;
1611
1634
  this.row_span = props.row_span;
1612
1635
  this.selected_actions = props.selected_actions;
@@ -2508,6 +2531,7 @@ exports.DivActionSetVariable = DivActionSetVariable;
2508
2531
  exports.DivActionShowTooltip = DivActionShowTooltip;
2509
2532
  exports.DivActionSubmit = DivActionSubmit;
2510
2533
  exports.DivActionTimer = DivActionTimer;
2534
+ exports.DivActionUpdateStructure = DivActionUpdateStructure;
2511
2535
  exports.DivActionVideo = DivActionVideo;
2512
2536
  exports.DivAppearanceSetTransition = DivAppearanceSetTransition;
2513
2537
  exports.DivBlur = DivBlur;