@divkitframework/jsonbuilder 32.52.0 → 32.54.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 +4 -0
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +121 -9
- package/dist/jsonbuilder.js +4 -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
|
/**
|
|
@@ -7702,6 +7714,12 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7702
7714
|
* Platforms: android, ios, web
|
|
7703
7715
|
*/
|
|
7704
7716
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7717
|
+
/**
|
|
7718
|
+
* Name of the variable to store the number of pager elements available to the user.
|
|
7719
|
+
*
|
|
7720
|
+
* Platforms: not supported
|
|
7721
|
+
*/
|
|
7722
|
+
item_count_variable?: Type<string>;
|
|
7705
7723
|
/**
|
|
7706
7724
|
* Spacing between elements.
|
|
7707
7725
|
*
|
|
@@ -7966,6 +7984,12 @@ interface DivPagerProps {
|
|
|
7966
7984
|
* Platforms: android, ios, web
|
|
7967
7985
|
*/
|
|
7968
7986
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7987
|
+
/**
|
|
7988
|
+
* Name of the variable to store the number of pager elements available to the user.
|
|
7989
|
+
*
|
|
7990
|
+
* Platforms: not supported
|
|
7991
|
+
*/
|
|
7992
|
+
item_count_variable?: Type<string>;
|
|
7969
7993
|
/**
|
|
7970
7994
|
* Spacing between elements.
|
|
7971
7995
|
*
|
|
@@ -9918,13 +9942,13 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9918
9942
|
/**
|
|
9919
9943
|
* Actions performed after clicking/tapping an element.
|
|
9920
9944
|
*
|
|
9921
|
-
* Platforms: android, ios
|
|
9945
|
+
* Platforms: android, ios, web
|
|
9922
9946
|
*/
|
|
9923
9947
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9924
9948
|
/**
|
|
9925
9949
|
* Actions performed at the start of a click/tap on an element.
|
|
9926
9950
|
*
|
|
9927
|
-
* Platforms: android, ios
|
|
9951
|
+
* Platforms: android, ios, web
|
|
9928
9952
|
*/
|
|
9929
9953
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9930
9954
|
/**
|
|
@@ -10182,13 +10206,13 @@ interface DivSliderProps {
|
|
|
10182
10206
|
/**
|
|
10183
10207
|
* Actions performed after clicking/tapping an element.
|
|
10184
10208
|
*
|
|
10185
|
-
* Platforms: android, ios
|
|
10209
|
+
* Platforms: android, ios, web
|
|
10186
10210
|
*/
|
|
10187
10211
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10188
10212
|
/**
|
|
10189
10213
|
* Actions performed at the start of a click/tap on an element.
|
|
10190
10214
|
*
|
|
10191
|
-
* Platforms: android, ios
|
|
10215
|
+
* Platforms: android, ios, web
|
|
10192
10216
|
*/
|
|
10193
10217
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10194
10218
|
/**
|
|
@@ -12337,6 +12361,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
12337
12361
|
* on iOS.
|
|
12338
12362
|
*/
|
|
12339
12363
|
id?: Type<string>;
|
|
12364
|
+
/**
|
|
12365
|
+
* Platforms: android, ios
|
|
12366
|
+
*/
|
|
12367
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12340
12368
|
/**
|
|
12341
12369
|
* Images embedded in text.
|
|
12342
12370
|
*
|
|
@@ -12396,6 +12424,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
12396
12424
|
* Platforms: web, android, ios
|
|
12397
12425
|
*/
|
|
12398
12426
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12427
|
+
/**
|
|
12428
|
+
* Platforms: android, ios
|
|
12429
|
+
*/
|
|
12430
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12399
12431
|
/**
|
|
12400
12432
|
* A character range in which additional style parameters can be set. Defined by mandatory
|
|
12401
12433
|
* `start` and `end` fields.
|
|
@@ -12733,6 +12765,10 @@ interface DivTextProps {
|
|
|
12733
12765
|
* on iOS.
|
|
12734
12766
|
*/
|
|
12735
12767
|
id?: Type<string>;
|
|
12768
|
+
/**
|
|
12769
|
+
* Platforms: android, ios
|
|
12770
|
+
*/
|
|
12771
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12736
12772
|
/**
|
|
12737
12773
|
* Images embedded in text.
|
|
12738
12774
|
*
|
|
@@ -12792,6 +12828,10 @@ interface DivTextProps {
|
|
|
12792
12828
|
* Platforms: web, android, ios
|
|
12793
12829
|
*/
|
|
12794
12830
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12831
|
+
/**
|
|
12832
|
+
* Platforms: android, ios
|
|
12833
|
+
*/
|
|
12834
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12795
12835
|
/**
|
|
12796
12836
|
* A character range in which additional style parameters can be set. Defined by mandatory
|
|
12797
12837
|
* `start` and `end` fields.
|
|
@@ -12961,10 +13001,18 @@ interface IDivTextEllipsis {
|
|
|
12961
13001
|
* Actions when clicking on a crop marker.
|
|
12962
13002
|
*/
|
|
12963
13003
|
actions?: Type<NonEmptyArray<IDivAction>>;
|
|
13004
|
+
/**
|
|
13005
|
+
* Platforms: android, ios
|
|
13006
|
+
*/
|
|
13007
|
+
image_builder?: Type<IDivTextImageBuilder>;
|
|
12964
13008
|
/**
|
|
12965
13009
|
* Images embedded in a crop marker.
|
|
12966
13010
|
*/
|
|
12967
13011
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
13012
|
+
/**
|
|
13013
|
+
* Platforms: android, ios
|
|
13014
|
+
*/
|
|
13015
|
+
range_builder?: Type<IDivTextRangeBuilder>;
|
|
12968
13016
|
/**
|
|
12969
13017
|
* Character ranges inside a crop marker with different text styles.
|
|
12970
13018
|
*/
|
|
@@ -13046,6 +13094,38 @@ interface IImageAccessibility {
|
|
|
13046
13094
|
type?: Type<AccessibilityType>;
|
|
13047
13095
|
}
|
|
13048
13096
|
declare type AccessibilityType = 'none' | 'button' | 'image' | 'text' | 'auto';
|
|
13097
|
+
/**
|
|
13098
|
+
* Sets inline images dynamically using `data` and `prototypes`.
|
|
13099
|
+
*/
|
|
13100
|
+
interface IDivTextImageBuilder {
|
|
13101
|
+
/**
|
|
13102
|
+
* Data that will be used to create inline images.
|
|
13103
|
+
*/
|
|
13104
|
+
data: Type<unknown[] | DivExpression>;
|
|
13105
|
+
/**
|
|
13106
|
+
* Name for accessing the next `data` element in the prototype. Working with this element is the
|
|
13107
|
+
* same as with dictionaries.
|
|
13108
|
+
*/
|
|
13109
|
+
data_element_name?: Type<string>;
|
|
13110
|
+
/**
|
|
13111
|
+
* Array of `image` elements from which the inline images will be created.
|
|
13112
|
+
*/
|
|
13113
|
+
prototypes: Type<NonEmptyArray<IImageBuilderPrototype>>;
|
|
13114
|
+
}
|
|
13115
|
+
interface IImageBuilderPrototype {
|
|
13116
|
+
/**
|
|
13117
|
+
* `image` from which the inline image will be created. In `image`, you can use expressions using
|
|
13118
|
+
* data from `data`. To access the next `data` element, you need to use the same name as in
|
|
13119
|
+
* `data_element_name`.
|
|
13120
|
+
*/
|
|
13121
|
+
image: Type<IDivTextImage>;
|
|
13122
|
+
/**
|
|
13123
|
+
* A condition that is used to select the prototype for the next inline image. If there is more
|
|
13124
|
+
* than 1 true condition, the earlier prototype is selected. If none of the conditions are met,
|
|
13125
|
+
* the element from `data` is skipped.
|
|
13126
|
+
*/
|
|
13127
|
+
selector?: Type<IntBoolean | DivExpression>;
|
|
13128
|
+
}
|
|
13049
13129
|
/**
|
|
13050
13130
|
* Additional parameters of the character range.
|
|
13051
13131
|
*/
|
|
@@ -13162,6 +13242,38 @@ interface IDivTextRange {
|
|
|
13162
13242
|
*/
|
|
13163
13243
|
underline?: Type<DivLineStyle | DivExpression>;
|
|
13164
13244
|
}
|
|
13245
|
+
/**
|
|
13246
|
+
* Sets character ranges dynamically using `data` and `prototypes`.
|
|
13247
|
+
*/
|
|
13248
|
+
interface IDivTextRangeBuilder {
|
|
13249
|
+
/**
|
|
13250
|
+
* Data that will be used to create character ranges.
|
|
13251
|
+
*/
|
|
13252
|
+
data: Type<unknown[] | DivExpression>;
|
|
13253
|
+
/**
|
|
13254
|
+
* Name for accessing the next `data` element in the prototype. Working with this element is the
|
|
13255
|
+
* same as with dictionaries.
|
|
13256
|
+
*/
|
|
13257
|
+
data_element_name?: Type<string>;
|
|
13258
|
+
/**
|
|
13259
|
+
* Array of `range` elements from which the character ranges will be created.
|
|
13260
|
+
*/
|
|
13261
|
+
prototypes: Type<NonEmptyArray<IRangeBuilderPrototype>>;
|
|
13262
|
+
}
|
|
13263
|
+
interface IRangeBuilderPrototype {
|
|
13264
|
+
/**
|
|
13265
|
+
* `range` from which the character range will be created. In `range`, you can use expressions
|
|
13266
|
+
* using data from `data`. To access the next `data` element, you need to use the same name as in
|
|
13267
|
+
* `data_element_name`.
|
|
13268
|
+
*/
|
|
13269
|
+
range: Type<IDivTextRange>;
|
|
13270
|
+
/**
|
|
13271
|
+
* A condition that is used to select the prototype for the next character range. If there is
|
|
13272
|
+
* more than 1 true condition, the earlier prototype is selected. If none of the conditions are
|
|
13273
|
+
* met, the element from `data` is skipped.
|
|
13274
|
+
*/
|
|
13275
|
+
selector?: Type<IntBoolean | DivExpression>;
|
|
13276
|
+
}
|
|
13165
13277
|
|
|
13166
13278
|
declare type DivTextAlignmentVertical = 'top' | 'center' | 'bottom' | 'baseline';
|
|
13167
13279
|
|
|
@@ -13642,7 +13754,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
13642
13754
|
/**
|
|
13643
13755
|
* translations.json#/div_video_playback_speed
|
|
13644
13756
|
*
|
|
13645
|
-
* Platforms: android, web
|
|
13757
|
+
* Platforms: android, ios, web
|
|
13646
13758
|
*/
|
|
13647
13759
|
playback_speed?: Type<number | DivExpression>;
|
|
13648
13760
|
/**
|
|
@@ -13899,7 +14011,7 @@ interface DivVideoProps {
|
|
|
13899
14011
|
/**
|
|
13900
14012
|
* translations.json#/div_video_playback_speed
|
|
13901
14013
|
*
|
|
13902
|
-
* Platforms: android, web
|
|
14014
|
+
* Platforms: android, ios, web
|
|
13903
14015
|
*/
|
|
13904
14016
|
playback_speed?: Type<number | DivExpression>;
|
|
13905
14017
|
/**
|
|
@@ -14631,4 +14743,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
14631
14743
|
};
|
|
14632
14744
|
};
|
|
14633
14745
|
|
|
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 };
|
|
14746
|
+
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;
|
|
@@ -1298,6 +1299,7 @@ class DivPager {
|
|
|
1298
1299
|
this.id = props.id;
|
|
1299
1300
|
this.infinite_scroll = props.infinite_scroll;
|
|
1300
1301
|
this.item_builder = props.item_builder;
|
|
1302
|
+
this.item_count_variable = props.item_count_variable;
|
|
1301
1303
|
this.item_spacing = props.item_spacing;
|
|
1302
1304
|
this.items = props.items;
|
|
1303
1305
|
this.layout_mode = props.layout_mode;
|
|
@@ -1916,6 +1918,7 @@ class DivText {
|
|
|
1916
1918
|
this.hover_end_actions = props.hover_end_actions;
|
|
1917
1919
|
this.hover_start_actions = props.hover_start_actions;
|
|
1918
1920
|
this.id = props.id;
|
|
1921
|
+
this.image_builder = props.image_builder;
|
|
1919
1922
|
this.images = props.images;
|
|
1920
1923
|
this.layout_provider = props.layout_provider;
|
|
1921
1924
|
this.letter_spacing = props.letter_spacing;
|
|
@@ -1927,6 +1930,7 @@ class DivText {
|
|
|
1927
1930
|
this.paddings = props.paddings;
|
|
1928
1931
|
this.press_end_actions = props.press_end_actions;
|
|
1929
1932
|
this.press_start_actions = props.press_start_actions;
|
|
1933
|
+
this.range_builder = props.range_builder;
|
|
1930
1934
|
this.ranges = props.ranges;
|
|
1931
1935
|
this.reuse_id = props.reuse_id;
|
|
1932
1936
|
this.row_span = props.row_span;
|