@divkitframework/jsonbuilder 32.49.0 → 32.51.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, web
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, web
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: android, ios
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: android, ios
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
  /**
@@ -9898,13 +9918,13 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9898
9918
  /**
9899
9919
  * Actions performed after clicking/tapping an element.
9900
9920
  *
9901
- * Platforms: not supported
9921
+ * Platforms: android, ios
9902
9922
  */
9903
9923
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
9904
9924
  /**
9905
9925
  * Actions performed at the start of a click/tap on an element.
9906
9926
  *
9907
- * Platforms: not supported
9927
+ * Platforms: android, ios
9908
9928
  */
9909
9929
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
9910
9930
  /**
@@ -10162,13 +10182,13 @@ interface DivSliderProps {
10162
10182
  /**
10163
10183
  * Actions performed after clicking/tapping an element.
10164
10184
  *
10165
- * Platforms: not supported
10185
+ * Platforms: android, ios
10166
10186
  */
10167
10187
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
10168
10188
  /**
10169
10189
  * Actions performed at the start of a click/tap on an element.
10170
10190
  *
10171
- * Platforms: not supported
10191
+ * Platforms: android, ios
10172
10192
  */
10173
10193
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
10174
10194
  /**
@@ -12965,7 +12985,7 @@ interface IDivTextImage {
12965
12985
  /**
12966
12986
  * Vertical image alignment within the row.
12967
12987
  *
12968
- * Platforms: android, web
12988
+ * Platforms: android, ios, web
12969
12989
  */
12970
12990
  alignment_vertical?: Type<DivTextAlignmentVertical | DivExpression>;
12971
12991
  /**
@@ -13622,7 +13642,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
13622
13642
  /**
13623
13643
  * translations.json#/div_video_playback_speed
13624
13644
  *
13625
- * Platforms: not supported
13645
+ * Platforms: android, web
13626
13646
  */
13627
13647
  playback_speed?: Type<number | DivExpression>;
13628
13648
  /**
@@ -13879,7 +13899,7 @@ interface DivVideoProps {
13879
13899
  /**
13880
13900
  * translations.json#/div_video_playback_speed
13881
13901
  *
13882
- * Platforms: not supported
13902
+ * Platforms: android, web
13883
13903
  */
13884
13904
  playback_speed?: Type<number | DivExpression>;
13885
13905
  /**
@@ -14611,4 +14631,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
14611
14631
  };
14612
14632
  };
14613
14633
 
14614
- 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;