@divkitframework/jsonbuilder 32.48.0 → 32.50.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.
@@ -897,7 +897,7 @@ declare class DivActionSetStoredValue<T extends DivActionSetStoredValueProps = D
897
897
  * for Android and iOS is `global'. For Web, the implementation depends entirely on the
898
898
  * developer.
899
899
  *
900
- * Platforms: android
900
+ * Platforms: android, ios, web
901
901
  */
902
902
  scope?: Type<DivActionSetStoredValueScope | DivExpression>;
903
903
  /**
@@ -923,7 +923,7 @@ interface DivActionSetStoredValueProps {
923
923
  * for Android and iOS is `global'. For Web, the implementation depends entirely on the
924
924
  * developer.
925
925
  *
926
- * Platforms: android
926
+ * Platforms: android, ios, web
927
927
  */
928
928
  scope?: Type<DivActionSetStoredValueScope | DivExpression>;
929
929
  /**
@@ -3440,7 +3440,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3440
3440
  * bottom.</p><p>In vertical galleries:`start` — alignment to the left of the card;`center` — to
3441
3441
  * the center;`end` — to the right.
3442
3442
  */
3443
- cross_content_alignment?: Type<DivGalleryCrossContentAlignment | DivExpression>;
3443
+ cross_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
3444
3444
  /**
3445
3445
  * Spacing between elements across the scroll axis. By default, the value set to `item_spacing`.
3446
3446
  *
@@ -3551,6 +3551,18 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3551
3551
  * Platforms: android, ios, web
3552
3552
  */
3553
3553
  row_span?: Type<number | DivExpression>;
3554
+ /**
3555
+ * Aligning elements along the scroll direction. In galleries without page scrolling, it is used
3556
+ * when calling scroll actions. In horizontal galleries:`start` — alignment to the left of the
3557
+ * card;`center` — to the center;`end` — to the right.</p><p>In vertical galleries:`start` —
3558
+ * alignment to the top of the card;`center` — to the center;`end` — to the bottom. For edge
3559
+ * alignment, the margin from the edge of the parent equals the value of the corresponding
3560
+ * padding. Default value:`start` — in galleries without paging scroll;`center` — in galleries
3561
+ * with paging scroll.
3562
+ *
3563
+ * Platforms: not supported
3564
+ */
3565
+ scroll_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
3554
3566
  /**
3555
3567
  * Scroll type: `default` — continuous, `paging` — page-by-page.
3556
3568
  *
@@ -3703,7 +3715,7 @@ interface DivGalleryProps {
3703
3715
  * bottom.</p><p>In vertical galleries:`start` — alignment to the left of the card;`center` — to
3704
3716
  * the center;`end` — to the right.
3705
3717
  */
3706
- cross_content_alignment?: Type<DivGalleryCrossContentAlignment | DivExpression>;
3718
+ cross_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
3707
3719
  /**
3708
3720
  * Spacing between elements across the scroll axis. By default, the value set to `item_spacing`.
3709
3721
  *
@@ -3814,6 +3826,18 @@ interface DivGalleryProps {
3814
3826
  * Platforms: android, ios, web
3815
3827
  */
3816
3828
  row_span?: Type<number | DivExpression>;
3829
+ /**
3830
+ * Aligning elements along the scroll direction. In galleries without page scrolling, it is used
3831
+ * when calling scroll actions. In horizontal galleries:`start` — alignment to the left of the
3832
+ * card;`center` — to the center;`end` — to the right.</p><p>In vertical galleries:`start` —
3833
+ * alignment to the top of the card;`center` — to the center;`end` — to the bottom. For edge
3834
+ * alignment, the margin from the edge of the parent equals the value of the corresponding
3835
+ * padding. Default value:`start` — in galleries without paging scroll;`center` — in galleries
3836
+ * with paging scroll.
3837
+ *
3838
+ * Platforms: not supported
3839
+ */
3840
+ scroll_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
3817
3841
  /**
3818
3842
  * Scroll type: `default` — continuous, `paging` — page-by-page.
3819
3843
  *
@@ -3914,7 +3938,7 @@ interface DivGalleryProps {
3914
3938
  */
3915
3939
  width?: Type<DivSize>;
3916
3940
  }
3917
- declare type DivGalleryCrossContentAlignment = 'start' | 'center' | 'end';
3941
+ declare type DivGalleryContentAlignment = 'start' | 'center' | 'end';
3918
3942
  declare type DivGalleryOrientation = 'horizontal' | 'vertical';
3919
3943
  declare type DivGalleryScrollMode = 'paging' | 'default';
3920
3944
  declare type DivGalleryScrollbar = 'none' | 'auto';
@@ -4113,8 +4137,6 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
4113
4137
  /**
4114
4138
  * Direct URL to an image for loading preview. When both `preview` and `preview_url` are used,
4115
4139
  * `preview` will be used.
4116
- *
4117
- * Platforms: android, web
4118
4140
  */
4119
4141
  preview_url?: Type<string | DivExpression>;
4120
4142
  /**
@@ -4410,8 +4432,6 @@ interface DivGifImageProps {
4410
4432
  /**
4411
4433
  * Direct URL to an image for loading preview. When both `preview` and `preview_url` are used,
4412
4434
  * `preview` will be used.
4413
- *
4414
- * Platforms: android, web
4415
4435
  */
4416
4436
  preview_url?: Type<string | DivExpression>;
4417
4437
  /**
@@ -9895,6 +9915,18 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9895
9915
  * Internal margins from the element stroke.
9896
9916
  */
9897
9917
  paddings?: Type<IDivEdgeInsets>;
9918
+ /**
9919
+ * Actions performed after clicking/tapping an element.
9920
+ *
9921
+ * Platforms: android, ios
9922
+ */
9923
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
9924
+ /**
9925
+ * Actions performed at the start of a click/tap on an element.
9926
+ *
9927
+ * Platforms: android, ios
9928
+ */
9929
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
9898
9930
  /**
9899
9931
  * Section style.
9900
9932
  *
@@ -10147,6 +10179,18 @@ interface DivSliderProps {
10147
10179
  * Internal margins from the element stroke.
10148
10180
  */
10149
10181
  paddings?: Type<IDivEdgeInsets>;
10182
+ /**
10183
+ * Actions performed after clicking/tapping an element.
10184
+ *
10185
+ * Platforms: android, ios
10186
+ */
10187
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
10188
+ /**
10189
+ * Actions performed at the start of a click/tap on an element.
10190
+ *
10191
+ * Platforms: android, ios
10192
+ */
10193
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
10150
10194
  /**
10151
10195
  * Section style.
10152
10196
  *
@@ -12941,7 +12985,7 @@ interface IDivTextImage {
12941
12985
  /**
12942
12986
  * Vertical image alignment within the row.
12943
12987
  *
12944
- * Platforms: android, web
12988
+ * Platforms: android, ios, web
12945
12989
  */
12946
12990
  alignment_vertical?: Type<DivTextAlignmentVertical | DivExpression>;
12947
12991
  /**
@@ -13595,6 +13639,12 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
13595
13639
  * Actions performed when playback is paused.
13596
13640
  */
13597
13641
  pause_actions?: Type<NonEmptyArray<IDivAction>>;
13642
+ /**
13643
+ * translations.json#/div_video_playback_speed
13644
+ *
13645
+ * Platforms: android, web
13646
+ */
13647
+ playback_speed?: Type<number | DivExpression>;
13598
13648
  /**
13599
13649
  * Additional information that can be used in the player.
13600
13650
  *
@@ -13846,6 +13896,12 @@ interface DivVideoProps {
13846
13896
  * Actions performed when playback is paused.
13847
13897
  */
13848
13898
  pause_actions?: Type<NonEmptyArray<IDivAction>>;
13899
+ /**
13900
+ * translations.json#/div_video_playback_speed
13901
+ *
13902
+ * Platforms: android, web
13903
+ */
13904
+ playback_speed?: Type<number | DivExpression>;
13849
13905
  /**
13850
13906
  * Additional information that can be used in the player.
13851
13907
  *
@@ -14575,4 +14631,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
14575
14631
  };
14576
14632
  };
14577
14633
 
14578
- 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, DivActionSetStoredValueScope, 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 };
14634
+ 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, DivActionSetStoredValueScope, 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, DivGalleryContentAlignment, 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 };
@@ -743,6 +743,7 @@ class DivGallery {
743
743
  this.restrict_parent_scroll = props === null || props === void 0 ? void 0 : props.restrict_parent_scroll;
744
744
  this.reuse_id = props === null || props === void 0 ? void 0 : props.reuse_id;
745
745
  this.row_span = props === null || props === void 0 ? void 0 : props.row_span;
746
+ this.scroll_content_alignment = props === null || props === void 0 ? void 0 : props.scroll_content_alignment;
746
747
  this.scroll_mode = props === null || props === void 0 ? void 0 : props.scroll_mode;
747
748
  this.scrollbar = props === null || props === void 0 ? void 0 : props.scrollbar;
748
749
  this.selected_actions = props === null || props === void 0 ? void 0 : props.selected_actions;
@@ -1640,6 +1641,8 @@ class DivSlider {
1640
1641
  this.max_value = props.max_value;
1641
1642
  this.min_value = props.min_value;
1642
1643
  this.paddings = props.paddings;
1644
+ this.press_end_actions = props.press_end_actions;
1645
+ this.press_start_actions = props.press_start_actions;
1643
1646
  this.ranges = props.ranges;
1644
1647
  this.reuse_id = props.reuse_id;
1645
1648
  this.row_span = props.row_span;
@@ -2049,6 +2052,7 @@ class DivVideo {
2049
2052
  this.muted = props === null || props === void 0 ? void 0 : props.muted;
2050
2053
  this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
2051
2054
  this.pause_actions = props === null || props === void 0 ? void 0 : props.pause_actions;
2055
+ this.playback_speed = props === null || props === void 0 ? void 0 : props.playback_speed;
2052
2056
  this.player_settings_payload = props === null || props === void 0 ? void 0 : props.player_settings_payload;
2053
2057
  this.preload_required = props === null || props === void 0 ? void 0 : props.preload_required;
2054
2058
  this.preview = props === null || props === void 0 ? void 0 : props.preview;