@divkitframework/jsonbuilder 31.2.0 → 31.4.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 +24 -3
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +71 -14
- package/dist/jsonbuilder.js +25 -2
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -6750,21 +6750,48 @@ declare class DivLinearGradient<T extends DivLinearGradientProps = DivLinearGrad
|
|
|
6750
6750
|
* Angle of gradient direction.
|
|
6751
6751
|
*/
|
|
6752
6752
|
angle?: Type<number | DivExpression>;
|
|
6753
|
+
/**
|
|
6754
|
+
* Colors and positions of gradient points. When using this parameter, the `colors` parameter is
|
|
6755
|
+
* ignored.
|
|
6756
|
+
*
|
|
6757
|
+
* Platforms: android, ios
|
|
6758
|
+
*/
|
|
6759
|
+
color_map?: Type<NonEmptyArray<IDivLinearGradientColorPoint>>;
|
|
6753
6760
|
/**
|
|
6754
6761
|
* Colors. Gradient points are located at an equal distance from each other.
|
|
6755
6762
|
*/
|
|
6756
|
-
colors
|
|
6757
|
-
constructor(props
|
|
6763
|
+
colors?: Type<NonEmptyArray<string | DivExpression>>;
|
|
6764
|
+
constructor(props?: Exact<DivLinearGradientProps, T>);
|
|
6758
6765
|
}
|
|
6759
6766
|
interface DivLinearGradientProps {
|
|
6760
6767
|
/**
|
|
6761
6768
|
* Angle of gradient direction.
|
|
6762
6769
|
*/
|
|
6763
6770
|
angle?: Type<number | DivExpression>;
|
|
6771
|
+
/**
|
|
6772
|
+
* Colors and positions of gradient points. When using this parameter, the `colors` parameter is
|
|
6773
|
+
* ignored.
|
|
6774
|
+
*
|
|
6775
|
+
* Platforms: android, ios
|
|
6776
|
+
*/
|
|
6777
|
+
color_map?: Type<NonEmptyArray<IDivLinearGradientColorPoint>>;
|
|
6764
6778
|
/**
|
|
6765
6779
|
* Colors. Gradient points are located at an equal distance from each other.
|
|
6766
6780
|
*/
|
|
6767
|
-
colors
|
|
6781
|
+
colors?: Type<NonEmptyArray<string | DivExpression>>;
|
|
6782
|
+
}
|
|
6783
|
+
/**
|
|
6784
|
+
* Describes color at particular gradient position.
|
|
6785
|
+
*/
|
|
6786
|
+
interface IDivLinearGradientColorPoint {
|
|
6787
|
+
/**
|
|
6788
|
+
* Gradient color corresponding to gradient point.
|
|
6789
|
+
*/
|
|
6790
|
+
color: Type<string | DivExpression>;
|
|
6791
|
+
/**
|
|
6792
|
+
* The position of the gradient point.
|
|
6793
|
+
*/
|
|
6794
|
+
position: Type<number | DivExpression>;
|
|
6768
6795
|
}
|
|
6769
6796
|
|
|
6770
6797
|
/**
|
|
@@ -7180,7 +7207,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7180
7207
|
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7181
7208
|
* center;`end` — to the right.
|
|
7182
7209
|
*
|
|
7183
|
-
* Platforms:
|
|
7210
|
+
* Platforms: android, ios
|
|
7184
7211
|
*/
|
|
7185
7212
|
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7186
7213
|
/**
|
|
@@ -7310,7 +7337,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7310
7337
|
* bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
|
|
7311
7338
|
* corresponding padding.
|
|
7312
7339
|
*
|
|
7313
|
-
* Platforms: ios
|
|
7340
|
+
* Platforms: android, ios
|
|
7314
7341
|
*/
|
|
7315
7342
|
scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7316
7343
|
/**
|
|
@@ -7438,7 +7465,7 @@ interface DivPagerProps {
|
|
|
7438
7465
|
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7439
7466
|
* center;`end` — to the right.
|
|
7440
7467
|
*
|
|
7441
|
-
* Platforms:
|
|
7468
|
+
* Platforms: android, ios
|
|
7442
7469
|
*/
|
|
7443
7470
|
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7444
7471
|
/**
|
|
@@ -7568,7 +7595,7 @@ interface DivPagerProps {
|
|
|
7568
7595
|
* bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
|
|
7569
7596
|
* corresponding padding.
|
|
7570
7597
|
*
|
|
7571
|
-
* Platforms: ios
|
|
7598
|
+
* Platforms: android, ios
|
|
7572
7599
|
*/
|
|
7573
7600
|
scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7574
7601
|
/**
|
|
@@ -10242,6 +10269,12 @@ interface IDivStroke {
|
|
|
10242
10269
|
* Stroke color.
|
|
10243
10270
|
*/
|
|
10244
10271
|
color: Type<string | DivExpression>;
|
|
10272
|
+
/**
|
|
10273
|
+
* Stroke style. Supported for border stroke only.
|
|
10274
|
+
*
|
|
10275
|
+
* Platforms: android
|
|
10276
|
+
*/
|
|
10277
|
+
style?: Type<DivStrokeStyle>;
|
|
10245
10278
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
10246
10279
|
/**
|
|
10247
10280
|
* Stroke width.
|
|
@@ -10249,6 +10282,30 @@ interface IDivStroke {
|
|
|
10249
10282
|
width?: Type<number | DivExpression>;
|
|
10250
10283
|
}
|
|
10251
10284
|
|
|
10285
|
+
declare type DivStrokeStyle = DivStrokeStyleSolid | DivStrokeStyleDashed;
|
|
10286
|
+
|
|
10287
|
+
/**
|
|
10288
|
+
* Dashed stroke style.
|
|
10289
|
+
*/
|
|
10290
|
+
declare class DivStrokeStyleDashed<T extends DivStrokeStyleDashedProps = DivStrokeStyleDashedProps> {
|
|
10291
|
+
readonly _props?: Exact<DivStrokeStyleDashedProps, T>;
|
|
10292
|
+
readonly type = "dashed";
|
|
10293
|
+
constructor(props?: Exact<DivStrokeStyleDashedProps, T>);
|
|
10294
|
+
}
|
|
10295
|
+
interface DivStrokeStyleDashedProps {
|
|
10296
|
+
}
|
|
10297
|
+
|
|
10298
|
+
/**
|
|
10299
|
+
* Solid stroke style.
|
|
10300
|
+
*/
|
|
10301
|
+
declare class DivStrokeStyleSolid<T extends DivStrokeStyleSolidProps = DivStrokeStyleSolidProps> {
|
|
10302
|
+
readonly _props?: Exact<DivStrokeStyleSolidProps, T>;
|
|
10303
|
+
readonly type = "solid";
|
|
10304
|
+
constructor(props?: Exact<DivStrokeStyleSolidProps, T>);
|
|
10305
|
+
}
|
|
10306
|
+
interface DivStrokeStyleSolidProps {
|
|
10307
|
+
}
|
|
10308
|
+
|
|
10252
10309
|
/**
|
|
10253
10310
|
* Two-state toggle that allows the user to control a Boolean variable. The element's
|
|
10254
10311
|
* look-and-feel varies by platform. The toggle has a fixed size in iOS.
|
|
@@ -11297,7 +11354,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11297
11354
|
/**
|
|
11298
11355
|
* Automatic text cropping to fit the container size.
|
|
11299
11356
|
*
|
|
11300
|
-
* Platforms: android, web, flutter
|
|
11357
|
+
* Platforms: android, ios, web, flutter
|
|
11301
11358
|
*/
|
|
11302
11359
|
auto_ellipsize?: Type<IntBoolean | DivExpression>;
|
|
11303
11360
|
/**
|
|
@@ -11671,7 +11728,7 @@ interface DivTextProps {
|
|
|
11671
11728
|
/**
|
|
11672
11729
|
* Automatic text cropping to fit the container size.
|
|
11673
11730
|
*
|
|
11674
|
-
* Platforms: android, web, flutter
|
|
11731
|
+
* Platforms: android, ios, web, flutter
|
|
11675
11732
|
*/
|
|
11676
11733
|
auto_ellipsize?: Type<IntBoolean | DivExpression>;
|
|
11677
11734
|
/**
|
|
@@ -12049,7 +12106,7 @@ interface IDivTextImage {
|
|
|
12049
12106
|
– `reversed` is for indexing a string from the end to the beginning ([N, ..., 2, 1,
|
|
12050
12107
|
* 0]). Use it if you need to insert an image by index relative to the end of a string.
|
|
12051
12108
|
*
|
|
12052
|
-
* Platforms: android, web
|
|
12109
|
+
* Platforms: android, ios, web
|
|
12053
12110
|
*/
|
|
12054
12111
|
indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
|
|
12055
12112
|
/**
|
|
@@ -12070,7 +12127,7 @@ interface IDivTextImage {
|
|
|
12070
12127
|
/**
|
|
12071
12128
|
* Blend mode of the color specified in `tint_color`.
|
|
12072
12129
|
*
|
|
12073
|
-
* Platforms: android, web
|
|
12130
|
+
* Platforms: android, ios, web
|
|
12074
12131
|
*/
|
|
12075
12132
|
tint_mode?: Type<DivBlendMode | DivExpression>;
|
|
12076
12133
|
/**
|
|
@@ -12379,7 +12436,7 @@ interface IDivTooltip {
|
|
|
12379
12436
|
/**
|
|
12380
12437
|
* Allows dismissing tooltip by tapping outside of it.
|
|
12381
12438
|
*
|
|
12382
|
-
* Platforms: ios
|
|
12439
|
+
* Platforms: android, ios
|
|
12383
12440
|
*/
|
|
12384
12441
|
close_by_tap_outside?: Type<boolean | DivExpression>;
|
|
12385
12442
|
/**
|
|
@@ -12399,7 +12456,7 @@ interface IDivTooltip {
|
|
|
12399
12456
|
/**
|
|
12400
12457
|
* Tooltip modes.
|
|
12401
12458
|
*
|
|
12402
|
-
* Platforms:
|
|
12459
|
+
* Platforms: android
|
|
12403
12460
|
*/
|
|
12404
12461
|
mode?: Type<DivTooltipMode>;
|
|
12405
12462
|
/**
|
|
@@ -13539,4 +13596,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13539
13596
|
};
|
|
13540
13597
|
};
|
|
13541
13598
|
|
|
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 };
|
|
13599
|
+
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, 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, 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, IDivLinearGradientColorPoint, 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 };
|
package/dist/jsonbuilder.js
CHANGED
|
@@ -1079,8 +1079,9 @@ class DivInputValidatorRegex {
|
|
|
1079
1079
|
class DivLinearGradient {
|
|
1080
1080
|
constructor(props) {
|
|
1081
1081
|
this.type = 'gradient';
|
|
1082
|
-
this.angle = props.angle;
|
|
1083
|
-
this.
|
|
1082
|
+
this.angle = props === null || props === void 0 ? void 0 : props.angle;
|
|
1083
|
+
this.color_map = props === null || props === void 0 ? void 0 : props.color_map;
|
|
1084
|
+
this.colors = props === null || props === void 0 ? void 0 : props.colors;
|
|
1084
1085
|
}
|
|
1085
1086
|
}
|
|
1086
1087
|
|
|
@@ -1631,6 +1632,26 @@ class DivStretchIndicatorItemPlacement {
|
|
|
1631
1632
|
}
|
|
1632
1633
|
}
|
|
1633
1634
|
|
|
1635
|
+
// Generated code. Do not modify.
|
|
1636
|
+
/**
|
|
1637
|
+
* Dashed stroke style.
|
|
1638
|
+
*/
|
|
1639
|
+
class DivStrokeStyleDashed {
|
|
1640
|
+
constructor(props) {
|
|
1641
|
+
this.type = 'dashed';
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
// Generated code. Do not modify.
|
|
1646
|
+
/**
|
|
1647
|
+
* Solid stroke style.
|
|
1648
|
+
*/
|
|
1649
|
+
class DivStrokeStyleSolid {
|
|
1650
|
+
constructor(props) {
|
|
1651
|
+
this.type = 'solid';
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1634
1655
|
// Generated code. Do not modify.
|
|
1635
1656
|
/**
|
|
1636
1657
|
* Two-state toggle that allows the user to control a Boolean variable. The element's
|
|
@@ -2535,6 +2556,8 @@ exports.DivSlider = DivSlider;
|
|
|
2535
2556
|
exports.DivSolidBackground = DivSolidBackground;
|
|
2536
2557
|
exports.DivState = DivState;
|
|
2537
2558
|
exports.DivStretchIndicatorItemPlacement = DivStretchIndicatorItemPlacement;
|
|
2559
|
+
exports.DivStrokeStyleDashed = DivStrokeStyleDashed;
|
|
2560
|
+
exports.DivStrokeStyleSolid = DivStrokeStyleSolid;
|
|
2538
2561
|
exports.DivSwitch = DivSwitch;
|
|
2539
2562
|
exports.DivTabs = DivTabs;
|
|
2540
2563
|
exports.DivText = DivText;
|