@divkitframework/jsonbuilder 32.10.0 → 32.12.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 +18 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +90 -17
- package/dist/jsonbuilder.js +18 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -308,7 +308,7 @@ interface IDivAccessibility {
|
|
|
308
308
|
* Shows the current status of the checkbox or toggle: `true` means it's selected, `false` means
|
|
309
309
|
* it isn't selected.
|
|
310
310
|
*
|
|
311
|
-
* Platforms: ios, web
|
|
311
|
+
* Platforms: android, ios, web
|
|
312
312
|
*/
|
|
313
313
|
is_checked?: Type<IntBoolean | DivExpression>;
|
|
314
314
|
/**
|
|
@@ -6934,6 +6934,18 @@ interface IDivLinearGradientColorPoint {
|
|
|
6934
6934
|
declare class DivMatchParentSize<T extends DivMatchParentSizeProps = DivMatchParentSizeProps> {
|
|
6935
6935
|
readonly _props?: Exact<DivMatchParentSizeProps, T>;
|
|
6936
6936
|
readonly type = "match_parent";
|
|
6937
|
+
/**
|
|
6938
|
+
* Maximum size of an element.
|
|
6939
|
+
*
|
|
6940
|
+
* Platforms: not supported
|
|
6941
|
+
*/
|
|
6942
|
+
max_size?: Type<IDivSizeUnitValue>;
|
|
6943
|
+
/**
|
|
6944
|
+
* Minimum size of an element.
|
|
6945
|
+
*
|
|
6946
|
+
* Platforms: not supported
|
|
6947
|
+
*/
|
|
6948
|
+
min_size?: Type<IDivSizeUnitValue>;
|
|
6937
6949
|
/**
|
|
6938
6950
|
* Weight when distributing free space between elements with the size type `match_parent` inside
|
|
6939
6951
|
* an element. If the weight isn't specified, the elements will divide the place equally.
|
|
@@ -6942,6 +6954,18 @@ declare class DivMatchParentSize<T extends DivMatchParentSizeProps = DivMatchPar
|
|
|
6942
6954
|
constructor(props?: Exact<DivMatchParentSizeProps, T>);
|
|
6943
6955
|
}
|
|
6944
6956
|
interface DivMatchParentSizeProps {
|
|
6957
|
+
/**
|
|
6958
|
+
* Maximum size of an element.
|
|
6959
|
+
*
|
|
6960
|
+
* Platforms: not supported
|
|
6961
|
+
*/
|
|
6962
|
+
max_size?: Type<IDivSizeUnitValue>;
|
|
6963
|
+
/**
|
|
6964
|
+
* Minimum size of an element.
|
|
6965
|
+
*
|
|
6966
|
+
* Platforms: not supported
|
|
6967
|
+
*/
|
|
6968
|
+
min_size?: Type<IDivSizeUnitValue>;
|
|
6945
6969
|
/**
|
|
6946
6970
|
* Weight when distributing free space between elements with the size type `match_parent` inside
|
|
6947
6971
|
* an element. If the weight isn't specified, the elements will divide the place equally.
|
|
@@ -9340,6 +9364,19 @@ declare type DivSize = DivFixedSize | DivMatchParentSize | DivWrapContentSize;
|
|
|
9340
9364
|
|
|
9341
9365
|
declare type DivSizeUnit = 'dp' | 'sp' | 'px';
|
|
9342
9366
|
|
|
9367
|
+
interface IDivSizeUnitValue {
|
|
9368
|
+
/**
|
|
9369
|
+
* Unit of measurement:`px` — a physical pixel.`dp` — a logical pixel that doesn't depend on
|
|
9370
|
+
* screen density.`sp` — a logical pixel that depends on the font size on a device. Specify
|
|
9371
|
+
* height in `sp`. Only available on Android.
|
|
9372
|
+
*/
|
|
9373
|
+
unit?: Type<DivSizeUnit | DivExpression>;
|
|
9374
|
+
/**
|
|
9375
|
+
* Element size.
|
|
9376
|
+
*/
|
|
9377
|
+
value: Type<number | DivExpression>;
|
|
9378
|
+
}
|
|
9379
|
+
|
|
9343
9380
|
/**
|
|
9344
9381
|
* Slide animation.
|
|
9345
9382
|
*/
|
|
@@ -12550,7 +12587,7 @@ interface IDivTextRange {
|
|
|
12550
12587
|
/**
|
|
12551
12588
|
* Vertical text alignment within the row. Ignored when a baseline offset is specified.
|
|
12552
12589
|
*
|
|
12553
|
-
* Platforms: android, web
|
|
12590
|
+
* Platforms: android, ios, web
|
|
12554
12591
|
*/
|
|
12555
12592
|
alignment_vertical?: Type<DivTextAlignmentVertical | DivExpression>;
|
|
12556
12593
|
/**
|
|
@@ -12961,7 +12998,7 @@ declare type DivTriggerMode = 'on_condition' | 'on_variable';
|
|
|
12961
12998
|
|
|
12962
12999
|
declare type DivTypedValue = StringValue | IntegerValue | NumberValue | ColorValue | BooleanValue | UrlValue | DictValue | ArrayValue;
|
|
12963
13000
|
|
|
12964
|
-
declare type DivVariable = StringVariable | NumberVariable | IntegerVariable | BooleanVariable | ColorVariable | UrlVariable | DictVariable | ArrayVariable;
|
|
13001
|
+
declare type DivVariable = StringVariable | NumberVariable | IntegerVariable | BooleanVariable | ColorVariable | UrlVariable | DictVariable | ArrayVariable | PropertyVariable;
|
|
12965
13002
|
|
|
12966
13003
|
/**
|
|
12967
13004
|
* Video.
|
|
@@ -13599,11 +13636,11 @@ declare class DivWrapContentSize<T extends DivWrapContentSizeProps = DivWrapCont
|
|
|
13599
13636
|
/**
|
|
13600
13637
|
* Maximum size of an element.
|
|
13601
13638
|
*/
|
|
13602
|
-
max_size?: Type<
|
|
13639
|
+
max_size?: Type<IDivSizeUnitValue>;
|
|
13603
13640
|
/**
|
|
13604
13641
|
* Minimum size of an element.
|
|
13605
13642
|
*/
|
|
13606
|
-
min_size?: Type<
|
|
13643
|
+
min_size?: Type<IDivSizeUnitValue>;
|
|
13607
13644
|
constructor(props?: Exact<DivWrapContentSizeProps, T>);
|
|
13608
13645
|
}
|
|
13609
13646
|
interface DivWrapContentSizeProps {
|
|
@@ -13615,20 +13652,11 @@ interface DivWrapContentSizeProps {
|
|
|
13615
13652
|
/**
|
|
13616
13653
|
* Maximum size of an element.
|
|
13617
13654
|
*/
|
|
13618
|
-
max_size?: Type<
|
|
13655
|
+
max_size?: Type<IDivSizeUnitValue>;
|
|
13619
13656
|
/**
|
|
13620
13657
|
* Minimum size of an element.
|
|
13621
13658
|
*/
|
|
13622
|
-
min_size?: Type<
|
|
13623
|
-
}
|
|
13624
|
-
interface IDivWrapContentSizeConstraintSize {
|
|
13625
|
-
/**
|
|
13626
|
-
* Unit of measurement:`px` — a physical pixel.`dp` — a logical pixel that doesn't depend on
|
|
13627
|
-
* screen density.`sp` — a logical pixel that depends on the font size on a device. Specify
|
|
13628
|
-
* height in `sp`. Only available on Android.
|
|
13629
|
-
*/
|
|
13630
|
-
unit?: Type<DivSizeUnit | DivExpression>;
|
|
13631
|
-
value: Type<number | DivExpression>;
|
|
13659
|
+
min_size?: Type<IDivSizeUnitValue>;
|
|
13632
13660
|
}
|
|
13633
13661
|
|
|
13634
13662
|
/**
|
|
@@ -13755,6 +13783,51 @@ interface OffsetDestinationProps {
|
|
|
13755
13783
|
value: Type<number | DivExpression>;
|
|
13756
13784
|
}
|
|
13757
13785
|
|
|
13786
|
+
/**
|
|
13787
|
+
* A property that is handeled with get and set methods.
|
|
13788
|
+
*/
|
|
13789
|
+
declare class PropertyVariable<T extends PropertyVariableProps = PropertyVariableProps> {
|
|
13790
|
+
readonly _props?: Exact<PropertyVariableProps, T>;
|
|
13791
|
+
readonly type = "property";
|
|
13792
|
+
/**
|
|
13793
|
+
* Value. Supports expressions for property initialization.
|
|
13794
|
+
*/
|
|
13795
|
+
get: Type<string | DivExpression>;
|
|
13796
|
+
/**
|
|
13797
|
+
* Property name.
|
|
13798
|
+
*/
|
|
13799
|
+
name: Type<string>;
|
|
13800
|
+
/**
|
|
13801
|
+
* Name for accessing the data passed to the setter.
|
|
13802
|
+
*/
|
|
13803
|
+
new_value_variable_name?: Type<string>;
|
|
13804
|
+
/**
|
|
13805
|
+
* Action when setting a property.
|
|
13806
|
+
*/
|
|
13807
|
+
set?: Type<NonEmptyArray<IDivAction>>;
|
|
13808
|
+
value_type: Type<DivEvaluableType | DivExpression>;
|
|
13809
|
+
constructor(props: Exact<PropertyVariableProps, T>);
|
|
13810
|
+
}
|
|
13811
|
+
interface PropertyVariableProps {
|
|
13812
|
+
/**
|
|
13813
|
+
* Value. Supports expressions for property initialization.
|
|
13814
|
+
*/
|
|
13815
|
+
get: Type<string | DivExpression>;
|
|
13816
|
+
/**
|
|
13817
|
+
* Property name.
|
|
13818
|
+
*/
|
|
13819
|
+
name: Type<string>;
|
|
13820
|
+
/**
|
|
13821
|
+
* Name for accessing the data passed to the setter.
|
|
13822
|
+
*/
|
|
13823
|
+
new_value_variable_name?: Type<string>;
|
|
13824
|
+
/**
|
|
13825
|
+
* Action when setting a property.
|
|
13826
|
+
*/
|
|
13827
|
+
set?: Type<NonEmptyArray<IDivAction>>;
|
|
13828
|
+
value_type: Type<DivEvaluableType | DivExpression>;
|
|
13829
|
+
}
|
|
13830
|
+
|
|
13758
13831
|
/**
|
|
13759
13832
|
* Specifies the start of the container as the scrolling end position.
|
|
13760
13833
|
*/
|
|
@@ -13995,4 +14068,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13995
14068
|
};
|
|
13996
14069
|
};
|
|
13997
14070
|
|
|
13998
|
-
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, 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, 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, IDivRadialGradientColorPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction,
|
|
14071
|
+
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, 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, 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, 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, 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
|
@@ -1110,6 +1110,8 @@ class DivLinearGradient {
|
|
|
1110
1110
|
class DivMatchParentSize {
|
|
1111
1111
|
constructor(props) {
|
|
1112
1112
|
this.type = 'match_parent';
|
|
1113
|
+
this.max_size = props === null || props === void 0 ? void 0 : props.max_size;
|
|
1114
|
+
this.min_size = props === null || props === void 0 ? void 0 : props.min_size;
|
|
1113
1115
|
this.weight = props === null || props === void 0 ? void 0 : props.weight;
|
|
1114
1116
|
}
|
|
1115
1117
|
}
|
|
@@ -2076,6 +2078,21 @@ class OffsetDestination {
|
|
|
2076
2078
|
}
|
|
2077
2079
|
}
|
|
2078
2080
|
|
|
2081
|
+
// Generated code. Do not modify.
|
|
2082
|
+
/**
|
|
2083
|
+
* A property that is handeled with get and set methods.
|
|
2084
|
+
*/
|
|
2085
|
+
class PropertyVariable {
|
|
2086
|
+
constructor(props) {
|
|
2087
|
+
this.type = 'property';
|
|
2088
|
+
this.get = props.get;
|
|
2089
|
+
this.name = props.name;
|
|
2090
|
+
this.new_value_variable_name = props.new_value_variable_name;
|
|
2091
|
+
this.set = props.set;
|
|
2092
|
+
this.value_type = props.value_type;
|
|
2093
|
+
}
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2079
2096
|
// Generated code. Do not modify.
|
|
2080
2097
|
/**
|
|
2081
2098
|
* Specifies the start of the container as the scrolling end position.
|
|
@@ -2610,6 +2627,7 @@ exports.IntegerVariable = IntegerVariable;
|
|
|
2610
2627
|
exports.NumberValue = NumberValue;
|
|
2611
2628
|
exports.NumberVariable = NumberVariable;
|
|
2612
2629
|
exports.OffsetDestination = OffsetDestination;
|
|
2630
|
+
exports.PropertyVariable = PropertyVariable;
|
|
2613
2631
|
exports.SafeDivExpression = SafeDivExpression;
|
|
2614
2632
|
exports.StartDestination = StartDestination;
|
|
2615
2633
|
exports.StringValue = StringValue;
|