@divkitframework/jsonbuilder 30.33.1 → 31.1.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.
@@ -15,6 +15,12 @@ declare class SafeDivExpression implements DivExpression {
15
15
  * Root structure.
16
16
  */
17
17
  interface IDivData {
18
+ /**
19
+ * User functions.
20
+ *
21
+ * Platforms: ios
22
+ */
23
+ functions?: NonEmptyArray<IDivFunction>;
18
24
  /**
19
25
  * Logging ID.
20
26
  */
@@ -783,6 +789,8 @@ declare class DivActionSetState<T extends DivActionSetStateProps = DivActionSetS
783
789
  /**
784
790
  * Indicates a state change:`true` — the change is temporary and will switch to the original one
785
791
  * (default value) when the element is recreated`false` — the change is permanent
792
+ *
793
+ * Platforms: android, ios
786
794
  */
787
795
  temporary?: Type<boolean | DivExpression>;
788
796
  constructor(props: Exact<DivActionSetStateProps, T>);
@@ -799,6 +807,8 @@ interface DivActionSetStateProps {
799
807
  /**
800
808
  * Indicates a state change:`true` — the change is temporary and will switch to the original one
801
809
  * (default value) when the element is recreated`false` — the change is permanent
810
+ *
811
+ * Platforms: android, ios
802
812
  */
803
813
  temporary?: Type<boolean | DivExpression>;
804
814
  }
@@ -5993,7 +6003,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
5993
6003
  /**
5994
6004
  * Filter that prevents users from entering text that doesn't satisfy the specified conditions.
5995
6005
  *
5996
- * Platforms: ios
6006
+ * Platforms: ios, web
5997
6007
  */
5998
6008
  filters?: Type<NonEmptyArray<DivInputFilter>>;
5999
6009
  /**
@@ -6307,7 +6317,7 @@ interface DivInputProps {
6307
6317
  /**
6308
6318
  * Filter that prevents users from entering text that doesn't satisfy the specified conditions.
6309
6319
  *
6310
- * Platforms: ios
6320
+ * Platforms: ios, web
6311
6321
  */
6312
6322
  filters?: Type<NonEmptyArray<DivInputFilter>>;
6313
6323
  /**
@@ -7164,6 +7174,15 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7164
7174
  * Platforms: android, ios, web
7165
7175
  */
7166
7176
  column_span?: Type<number | DivExpression>;
7177
+ /**
7178
+ * Aligning elements in the direction perpendicular to the scroll direction. In horizontal
7179
+ * pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
7180
+ * bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
7181
+ * center;`end` — to the right.
7182
+ *
7183
+ * Platforms: not supported
7184
+ */
7185
+ cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
7167
7186
  /**
7168
7187
  * Ordinal number of the pager element that will be opened by default.
7169
7188
  */
@@ -7285,12 +7304,15 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7285
7304
  */
7286
7305
  row_span?: Type<number | DivExpression>;
7287
7306
  /**
7288
- * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7289
- * of the parent equals the value of the corresponding padding.
7307
+ * Alignment of pager pages along the scroll direction. In horizontal pager:`start` alignment
7308
+ * to the left of the card;`center` to the center;`end` to the right.</p><p>In vertical
7309
+ * pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
7310
+ * bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
7311
+ * corresponding padding.
7290
7312
  *
7291
7313
  * Platforms: ios
7292
7314
  */
7293
- scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
7315
+ scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
7294
7316
  /**
7295
7317
  * List of [actions](div-action.md) to be executed when selecting an element in
7296
7318
  * [pager](div-pager.md).
@@ -7410,6 +7432,15 @@ interface DivPagerProps {
7410
7432
  * Platforms: android, ios, web
7411
7433
  */
7412
7434
  column_span?: Type<number | DivExpression>;
7435
+ /**
7436
+ * Aligning elements in the direction perpendicular to the scroll direction. In horizontal
7437
+ * pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
7438
+ * bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
7439
+ * center;`end` — to the right.
7440
+ *
7441
+ * Platforms: not supported
7442
+ */
7443
+ cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
7413
7444
  /**
7414
7445
  * Ordinal number of the pager element that will be opened by default.
7415
7446
  */
@@ -7531,12 +7562,15 @@ interface DivPagerProps {
7531
7562
  */
7532
7563
  row_span?: Type<number | DivExpression>;
7533
7564
  /**
7534
- * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7535
- * of the parent equals the value of the corresponding padding.
7565
+ * Alignment of pager pages along the scroll direction. In horizontal pager:`start` alignment
7566
+ * to the left of the card;`center` to the center;`end` to the right.</p><p>In vertical
7567
+ * pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
7568
+ * bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
7569
+ * corresponding padding.
7536
7570
  *
7537
7571
  * Platforms: ios
7538
7572
  */
7539
- scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
7573
+ scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
7540
7574
  /**
7541
7575
  * List of [actions](div-action.md) to be executed when selecting an element in
7542
7576
  * [pager](div-pager.md).
@@ -7616,8 +7650,8 @@ interface DivPagerProps {
7616
7650
  */
7617
7651
  width?: Type<DivSize>;
7618
7652
  }
7653
+ declare type DivPagerItemAlignment = 'start' | 'center' | 'end';
7619
7654
  declare type DivPagerOrientation = 'horizontal' | 'vertical';
7620
- declare type DivPagerScrollAxisAlignment = 'start' | 'center' | 'end';
7621
7655
 
7622
7656
  declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize | DivPageContentSize;
7623
7657
 
@@ -11499,7 +11533,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11499
11533
  /**
11500
11534
  * Parameters of the shadow applied to the text.
11501
11535
  *
11502
- * Platforms: android, web
11536
+ * Platforms: android, ios, web
11503
11537
  */
11504
11538
  text_shadow?: Type<IDivShadow>;
11505
11539
  /**
@@ -11873,7 +11907,7 @@ interface DivTextProps {
11873
11907
  /**
11874
11908
  * Parameters of the shadow applied to the text.
11875
11909
  *
11876
- * Platforms: android, web
11910
+ * Platforms: android, ios, web
11877
11911
  */
11878
11912
  text_shadow?: Type<IDivShadow>;
11879
11913
  /**
@@ -12080,9 +12114,9 @@ interface IDivTextRange {
12080
12114
  */
12081
12115
  background?: Type<DivTextRangeBackground>;
12082
12116
  /**
12083
- * Character baseline vertial offset. If set, vertical alignment is ignored.
12117
+ * Vertical baseline offset in a character range. If set, vertical alignment is ignored.
12084
12118
  *
12085
- * Platforms: android, web
12119
+ * Platforms: android, ios, web
12086
12120
  */
12087
12121
  baseline_offset?: Type<number | DivExpression>;
12088
12122
  /**
@@ -12159,7 +12193,7 @@ interface IDivTextRange {
12159
12193
  /**
12160
12194
  * Parameters of the shadow applied to the character range.
12161
12195
  *
12162
- * Platforms: android, web
12196
+ * Platforms: android, ios, web
12163
12197
  */
12164
12198
  text_shadow?: Type<IDivShadow>;
12165
12199
  /**
@@ -12342,6 +12376,12 @@ interface IDivTooltip {
12342
12376
  * Platforms: android, web
12343
12377
  */
12344
12378
  animation_out?: Type<IDivAnimation>;
12379
+ /**
12380
+ * Allows dismissing tooltip by tapping outside of it.
12381
+ *
12382
+ * Platforms: not supported
12383
+ */
12384
+ close_by_tap_outside?: Type<boolean | DivExpression>;
12345
12385
  /**
12346
12386
  * An element that will be shown in a tooltip. If there are tooltips inside an element, they
12347
12387
  * won't be shown.
@@ -12356,6 +12396,12 @@ interface IDivTooltip {
12356
12396
  * Tooltip ID. It is used to avoid re-showing. It must be unique for all element tooltips.
12357
12397
  */
12358
12398
  id: Type<string>;
12399
+ /**
12400
+ * Tooltip modes.
12401
+ *
12402
+ * Platforms: not supported
12403
+ */
12404
+ mode?: Type<DivTooltipMode>;
12359
12405
  /**
12360
12406
  * Shift relative to an anchor point.
12361
12407
  */
@@ -12364,9 +12410,41 @@ interface IDivTooltip {
12364
12410
  * The position of a tooltip relative to an element it belongs to.
12365
12411
  */
12366
12412
  position: Type<DivTooltipPosition | DivExpression>;
12413
+ /**
12414
+ * Specifies actions triggered by tapping outside the tooltip.
12415
+ *
12416
+ * Platforms: not supported
12417
+ */
12418
+ tap_outside_actions?: Type<NonEmptyArray<IDivAction>>;
12367
12419
  }
12368
12420
  declare type DivTooltipPosition = 'left' | 'top-left' | 'top' | 'top-right' | 'right' | 'bottom-right' | 'bottom' | 'bottom-left' | 'center';
12369
12421
 
12422
+ declare type DivTooltipMode = DivTooltipModeNonModal | DivTooltipModeModal;
12423
+
12424
+ /**
12425
+ * Modal mode. Clicks outside do not pass through to underlying elements. Restricts focus to the
12426
+ * tooltip. Back button on Android and back gesture on iOS close the tooltip.
12427
+ */
12428
+ declare class DivTooltipModeModal<T extends DivTooltipModeModalProps = DivTooltipModeModalProps> {
12429
+ readonly _props?: Exact<DivTooltipModeModalProps, T>;
12430
+ readonly type = "modal";
12431
+ constructor(props?: Exact<DivTooltipModeModalProps, T>);
12432
+ }
12433
+ interface DivTooltipModeModalProps {
12434
+ }
12435
+
12436
+ /**
12437
+ * Non-modal mode. Clicks outside pass through to underlying elements. Does not restrict focus to
12438
+ * the tooltip. Back button on Android and back gesture on iOS do not close the tooltip.
12439
+ */
12440
+ declare class DivTooltipModeNonModal<T extends DivTooltipModeNonModalProps = DivTooltipModeNonModalProps> {
12441
+ readonly _props?: Exact<DivTooltipModeNonModalProps, T>;
12442
+ readonly type = "non_modal";
12443
+ constructor(props?: Exact<DivTooltipModeNonModalProps, T>);
12444
+ }
12445
+ interface DivTooltipModeNonModalProps {
12446
+ }
12447
+
12370
12448
  /**
12371
12449
  * Transformation of the element.
12372
12450
  */
@@ -13461,4 +13539,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13461
13539
  };
13462
13540
  };
13463
13541
 
13464
- 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, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPagerScrollAxisAlignment, 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, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, 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, IDivPatch, IDivPatchChange, IDivPoint, 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 };
13542
+ 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, 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, IDivPatch, IDivPatchChange, IDivPoint, 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 };
@@ -1207,6 +1207,7 @@ class DivPager {
1207
1207
  this.background = props.background;
1208
1208
  this.border = props.border;
1209
1209
  this.column_span = props.column_span;
1210
+ this.cross_axis_alignment = props.cross_axis_alignment;
1210
1211
  this.default_item = props.default_item;
1211
1212
  this.disappear_actions = props.disappear_actions;
1212
1213
  this.extensions = props.extensions;
@@ -1835,6 +1836,28 @@ class DivTextRangeMaskSolid {
1835
1836
  }
1836
1837
  }
1837
1838
 
1839
+ // Generated code. Do not modify.
1840
+ /**
1841
+ * Modal mode. Clicks outside do not pass through to underlying elements. Restricts focus to the
1842
+ * tooltip. Back button on Android and back gesture on iOS close the tooltip.
1843
+ */
1844
+ class DivTooltipModeModal {
1845
+ constructor(props) {
1846
+ this.type = 'modal';
1847
+ }
1848
+ }
1849
+
1850
+ // Generated code. Do not modify.
1851
+ /**
1852
+ * Non-modal mode. Clicks outside pass through to underlying elements. Does not restrict focus to
1853
+ * the tooltip. Back button on Android and back gesture on iOS do not close the tooltip.
1854
+ */
1855
+ class DivTooltipModeNonModal {
1856
+ constructor(props) {
1857
+ this.type = 'non_modal';
1858
+ }
1859
+ }
1860
+
1838
1861
  // Generated code. Do not modify.
1839
1862
  /**
1840
1863
  * Video.
@@ -2517,6 +2540,8 @@ exports.DivTabs = DivTabs;
2517
2540
  exports.DivText = DivText;
2518
2541
  exports.DivTextRangeMaskParticles = DivTextRangeMaskParticles;
2519
2542
  exports.DivTextRangeMaskSolid = DivTextRangeMaskSolid;
2543
+ exports.DivTooltipModeModal = DivTooltipModeModal;
2544
+ exports.DivTooltipModeNonModal = DivTooltipModeNonModal;
2520
2545
  exports.DivVideo = DivVideo;
2521
2546
  exports.DivVideoSource = DivVideoSource;
2522
2547
  exports.DivVideoSourceResolution = DivVideoSourceResolution;