@divkitframework/jsonbuilder 32.51.0 → 32.53.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.
- package/dist/es/jsonbuilder.js +3 -0
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +105 -5
- package/dist/jsonbuilder.js +3 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -3404,6 +3404,12 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3404
3404
|
* Vertical alignment of an element inside the parent element.
|
|
3405
3405
|
*/
|
|
3406
3406
|
alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
3407
|
+
/**
|
|
3408
|
+
* Allows handling taps on gallery items while the gallery is scrolling or decelerating.
|
|
3409
|
+
*
|
|
3410
|
+
* Platforms: ios
|
|
3411
|
+
*/
|
|
3412
|
+
allow_tap_while_scroll?: Type<boolean | DivExpression>;
|
|
3407
3413
|
/**
|
|
3408
3414
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
3409
3415
|
*/
|
|
@@ -3560,7 +3566,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3560
3566
|
* padding. Default value:`start` — in galleries without paging scroll;`center` — in galleries
|
|
3561
3567
|
* with paging scroll.
|
|
3562
3568
|
*
|
|
3563
|
-
* Platforms: android, ios
|
|
3569
|
+
* Platforms: android, ios, web
|
|
3564
3570
|
*/
|
|
3565
3571
|
scroll_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
|
|
3566
3572
|
/**
|
|
@@ -3679,6 +3685,12 @@ interface DivGalleryProps {
|
|
|
3679
3685
|
* Vertical alignment of an element inside the parent element.
|
|
3680
3686
|
*/
|
|
3681
3687
|
alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
3688
|
+
/**
|
|
3689
|
+
* Allows handling taps on gallery items while the gallery is scrolling or decelerating.
|
|
3690
|
+
*
|
|
3691
|
+
* Platforms: ios
|
|
3692
|
+
*/
|
|
3693
|
+
allow_tap_while_scroll?: Type<boolean | DivExpression>;
|
|
3682
3694
|
/**
|
|
3683
3695
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
3684
3696
|
*/
|
|
@@ -3835,7 +3847,7 @@ interface DivGalleryProps {
|
|
|
3835
3847
|
* padding. Default value:`start` — in galleries without paging scroll;`center` — in galleries
|
|
3836
3848
|
* with paging scroll.
|
|
3837
3849
|
*
|
|
3838
|
-
* Platforms: android, ios
|
|
3850
|
+
* Platforms: android, ios, web
|
|
3839
3851
|
*/
|
|
3840
3852
|
scroll_content_alignment?: Type<DivGalleryContentAlignment | DivExpression>;
|
|
3841
3853
|
/**
|
|
@@ -12337,6 +12349,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
12337
12349
|
* on iOS.
|
|
12338
12350
|
*/
|
|
12339
12351
|
id?: Type<string>;
|
|
12352
|
+
/**
|
|
12353
|
+
* Platforms: android, ios
|
|
12354
|
+
*/
|
|
12355
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12340
12356
|
/**
|
|
12341
12357
|
* Images embedded in text.
|
|
12342
12358
|
*
|
|
@@ -12396,6 +12412,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
12396
12412
|
* Platforms: web, android, ios
|
|
12397
12413
|
*/
|
|
12398
12414
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12415
|
+
/**
|
|
12416
|
+
* Platforms: android, ios
|
|
12417
|
+
*/
|
|
12418
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12399
12419
|
/**
|
|
12400
12420
|
* A character range in which additional style parameters can be set. Defined by mandatory
|
|
12401
12421
|
* `start` and `end` fields.
|
|
@@ -12733,6 +12753,10 @@ interface DivTextProps {
|
|
|
12733
12753
|
* on iOS.
|
|
12734
12754
|
*/
|
|
12735
12755
|
id?: Type<string>;
|
|
12756
|
+
/**
|
|
12757
|
+
* Platforms: android, ios
|
|
12758
|
+
*/
|
|
12759
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12736
12760
|
/**
|
|
12737
12761
|
* Images embedded in text.
|
|
12738
12762
|
*
|
|
@@ -12792,6 +12816,10 @@ interface DivTextProps {
|
|
|
12792
12816
|
* Platforms: web, android, ios
|
|
12793
12817
|
*/
|
|
12794
12818
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12819
|
+
/**
|
|
12820
|
+
* Platforms: android, ios
|
|
12821
|
+
*/
|
|
12822
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12795
12823
|
/**
|
|
12796
12824
|
* A character range in which additional style parameters can be set. Defined by mandatory
|
|
12797
12825
|
* `start` and `end` fields.
|
|
@@ -12961,10 +12989,18 @@ interface IDivTextEllipsis {
|
|
|
12961
12989
|
* Actions when clicking on a crop marker.
|
|
12962
12990
|
*/
|
|
12963
12991
|
actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12992
|
+
/**
|
|
12993
|
+
* Platforms: android, ios
|
|
12994
|
+
*/
|
|
12995
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12964
12996
|
/**
|
|
12965
12997
|
* Images embedded in a crop marker.
|
|
12966
12998
|
*/
|
|
12967
12999
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
13000
|
+
/**
|
|
13001
|
+
* Platforms: android, ios
|
|
13002
|
+
*/
|
|
13003
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12968
13004
|
/**
|
|
12969
13005
|
* Character ranges inside a crop marker with different text styles.
|
|
12970
13006
|
*/
|
|
@@ -13046,6 +13082,38 @@ interface IImageAccessibility {
|
|
|
13046
13082
|
type?: Type<AccessibilityType>;
|
|
13047
13083
|
}
|
|
13048
13084
|
declare type AccessibilityType = 'none' | 'button' | 'image' | 'text' | 'auto';
|
|
13085
|
+
/**
|
|
13086
|
+
* Sets inline images dynamically using `data` and `prototypes`.
|
|
13087
|
+
*/
|
|
13088
|
+
interface IDivTextImageBuilder {
|
|
13089
|
+
/**
|
|
13090
|
+
* Data that will be used to create inline images.
|
|
13091
|
+
*/
|
|
13092
|
+
data: Type<unknown[] | DivExpression>;
|
|
13093
|
+
/**
|
|
13094
|
+
* Name for accessing the next `data` element in the prototype. Working with this element is the
|
|
13095
|
+
* same as with dictionaries.
|
|
13096
|
+
*/
|
|
13097
|
+
data_element_name?: Type<string>;
|
|
13098
|
+
/**
|
|
13099
|
+
* Array of `image` elements from which the inline images will be created.
|
|
13100
|
+
*/
|
|
13101
|
+
prototypes: Type<NonEmptyArray<IImageBuilderPrototype>>;
|
|
13102
|
+
}
|
|
13103
|
+
interface IImageBuilderPrototype {
|
|
13104
|
+
/**
|
|
13105
|
+
* `image` from which the inline image will be created. In `image`, you can use expressions using
|
|
13106
|
+
* data from `data`. To access the next `data` element, you need to use the same name as in
|
|
13107
|
+
* `data_element_name`.
|
|
13108
|
+
*/
|
|
13109
|
+
image: Type<IDivTextImage>;
|
|
13110
|
+
/**
|
|
13111
|
+
* A condition that is used to select the prototype for the next inline image. If there is more
|
|
13112
|
+
* than 1 true condition, the earlier prototype is selected. If none of the conditions are met,
|
|
13113
|
+
* the element from `data` is skipped.
|
|
13114
|
+
*/
|
|
13115
|
+
selector?: Type<IntBoolean | DivExpression>;
|
|
13116
|
+
}
|
|
13049
13117
|
/**
|
|
13050
13118
|
* Additional parameters of the character range.
|
|
13051
13119
|
*/
|
|
@@ -13162,6 +13230,38 @@ interface IDivTextRange {
|
|
|
13162
13230
|
*/
|
|
13163
13231
|
underline?: Type<DivLineStyle | DivExpression>;
|
|
13164
13232
|
}
|
|
13233
|
+
/**
|
|
13234
|
+
* Sets character ranges dynamically using `data` and `prototypes`.
|
|
13235
|
+
*/
|
|
13236
|
+
interface IDivTextRangeBuilder {
|
|
13237
|
+
/**
|
|
13238
|
+
* Data that will be used to create character ranges.
|
|
13239
|
+
*/
|
|
13240
|
+
data: Type<unknown[] | DivExpression>;
|
|
13241
|
+
/**
|
|
13242
|
+
* Name for accessing the next `data` element in the prototype. Working with this element is the
|
|
13243
|
+
* same as with dictionaries.
|
|
13244
|
+
*/
|
|
13245
|
+
data_element_name?: Type<string>;
|
|
13246
|
+
/**
|
|
13247
|
+
* Array of `range` elements from which the character ranges will be created.
|
|
13248
|
+
*/
|
|
13249
|
+
prototypes: Type<NonEmptyArray<IRangeBuilderPrototype>>;
|
|
13250
|
+
}
|
|
13251
|
+
interface IRangeBuilderPrototype {
|
|
13252
|
+
/**
|
|
13253
|
+
* `range` from which the character range will be created. In `range`, you can use expressions
|
|
13254
|
+
* using data from `data`. To access the next `data` element, you need to use the same name as in
|
|
13255
|
+
* `data_element_name`.
|
|
13256
|
+
*/
|
|
13257
|
+
range: Type<IDivTextRange>;
|
|
13258
|
+
/**
|
|
13259
|
+
* A condition that is used to select the prototype for the next character range. If there is
|
|
13260
|
+
* more than 1 true condition, the earlier prototype is selected. If none of the conditions are
|
|
13261
|
+
* met, the element from `data` is skipped.
|
|
13262
|
+
*/
|
|
13263
|
+
selector?: Type<IntBoolean | DivExpression>;
|
|
13264
|
+
}
|
|
13165
13265
|
|
|
13166
13266
|
declare type DivTextAlignmentVertical = 'top' | 'center' | 'bottom' | 'baseline';
|
|
13167
13267
|
|
|
@@ -13642,7 +13742,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
13642
13742
|
/**
|
|
13643
13743
|
* translations.json#/div_video_playback_speed
|
|
13644
13744
|
*
|
|
13645
|
-
* Platforms: android, web
|
|
13745
|
+
* Platforms: android, ios, web
|
|
13646
13746
|
*/
|
|
13647
13747
|
playback_speed?: Type<number | DivExpression>;
|
|
13648
13748
|
/**
|
|
@@ -13899,7 +13999,7 @@ interface DivVideoProps {
|
|
|
13899
13999
|
/**
|
|
13900
14000
|
* translations.json#/div_video_playback_speed
|
|
13901
14001
|
*
|
|
13902
|
-
* Platforms: android, web
|
|
14002
|
+
* Platforms: android, ios, web
|
|
13903
14003
|
*/
|
|
13904
14004
|
playback_speed?: Type<number | DivExpression>;
|
|
13905
14005
|
/**
|
|
@@ -14631,4 +14731,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
14631
14731
|
};
|
|
14632
14732
|
};
|
|
14633
14733
|
|
|
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 };
|
|
14734
|
+
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, IDivTextImageBuilder, IDivTextRange, IDivTextRangeBorder, IDivTextRangeBuilder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IImageAccessibility, IImageBuilderPrototype, IRangeBuilderPrototype, 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 };
|
package/dist/jsonbuilder.js
CHANGED
|
@@ -718,6 +718,7 @@ class DivGallery {
|
|
|
718
718
|
this.accessibility = props === null || props === void 0 ? void 0 : props.accessibility;
|
|
719
719
|
this.alignment_horizontal = props === null || props === void 0 ? void 0 : props.alignment_horizontal;
|
|
720
720
|
this.alignment_vertical = props === null || props === void 0 ? void 0 : props.alignment_vertical;
|
|
721
|
+
this.allow_tap_while_scroll = props === null || props === void 0 ? void 0 : props.allow_tap_while_scroll;
|
|
721
722
|
this.alpha = props === null || props === void 0 ? void 0 : props.alpha;
|
|
722
723
|
this.animators = props === null || props === void 0 ? void 0 : props.animators;
|
|
723
724
|
this.background = props === null || props === void 0 ? void 0 : props.background;
|
|
@@ -1916,6 +1917,7 @@ class DivText {
|
|
|
1916
1917
|
this.hover_end_actions = props.hover_end_actions;
|
|
1917
1918
|
this.hover_start_actions = props.hover_start_actions;
|
|
1918
1919
|
this.id = props.id;
|
|
1920
|
+
this.image_builder = props.image_builder;
|
|
1919
1921
|
this.images = props.images;
|
|
1920
1922
|
this.layout_provider = props.layout_provider;
|
|
1921
1923
|
this.letter_spacing = props.letter_spacing;
|
|
@@ -1927,6 +1929,7 @@ class DivText {
|
|
|
1927
1929
|
this.paddings = props.paddings;
|
|
1928
1930
|
this.press_end_actions = props.press_end_actions;
|
|
1929
1931
|
this.press_start_actions = props.press_start_actions;
|
|
1932
|
+
this.range_builder = props.range_builder;
|
|
1930
1933
|
this.ranges = props.ranges;
|
|
1931
1934
|
this.reuse_id = props.reuse_id;
|
|
1932
1935
|
this.row_span = props.row_span;
|