@divkitframework/jsonbuilder 31.0.0 → 31.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/jsonbuilder.js +24 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +87 -13
- package/dist/jsonbuilder.js +25 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -15,6 +15,12 @@ declare class SafeDivExpression implements DivExpression {
|
|
|
15
15
|
* Root structure.
|
|
16
16
|
*/
|
|
17
17
|
interface IDivData {
|
|
18
|
+
/**
|
|
19
|
+
* User functions.
|
|
20
|
+
*
|
|
21
|
+
* Platforms: ios
|
|
22
|
+
*/
|
|
23
|
+
functions?: NonEmptyArray<IDivFunction>;
|
|
18
24
|
/**
|
|
19
25
|
* Logging ID.
|
|
20
26
|
*/
|
|
@@ -5997,7 +6003,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
5997
6003
|
/**
|
|
5998
6004
|
* Filter that prevents users from entering text that doesn't satisfy the specified conditions.
|
|
5999
6005
|
*
|
|
6000
|
-
* Platforms: ios
|
|
6006
|
+
* Platforms: ios, web
|
|
6001
6007
|
*/
|
|
6002
6008
|
filters?: Type<NonEmptyArray<DivInputFilter>>;
|
|
6003
6009
|
/**
|
|
@@ -6311,7 +6317,7 @@ interface DivInputProps {
|
|
|
6311
6317
|
/**
|
|
6312
6318
|
* Filter that prevents users from entering text that doesn't satisfy the specified conditions.
|
|
6313
6319
|
*
|
|
6314
|
-
* Platforms: ios
|
|
6320
|
+
* Platforms: ios, web
|
|
6315
6321
|
*/
|
|
6316
6322
|
filters?: Type<NonEmptyArray<DivInputFilter>>;
|
|
6317
6323
|
/**
|
|
@@ -7168,6 +7174,15 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7168
7174
|
* Platforms: android, ios, web
|
|
7169
7175
|
*/
|
|
7170
7176
|
column_span?: Type<number | DivExpression>;
|
|
7177
|
+
/**
|
|
7178
|
+
* Aligning elements in the direction perpendicular to the scroll direction. In horizontal
|
|
7179
|
+
* pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
|
|
7180
|
+
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7181
|
+
* center;`end` — to the right.
|
|
7182
|
+
*
|
|
7183
|
+
* Platforms: not supported
|
|
7184
|
+
*/
|
|
7185
|
+
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7171
7186
|
/**
|
|
7172
7187
|
* Ordinal number of the pager element that will be opened by default.
|
|
7173
7188
|
*/
|
|
@@ -7289,12 +7304,15 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7289
7304
|
*/
|
|
7290
7305
|
row_span?: Type<number | DivExpression>;
|
|
7291
7306
|
/**
|
|
7292
|
-
* Alignment of pager pages along the scroll
|
|
7293
|
-
* of the
|
|
7307
|
+
* Alignment of pager pages along the scroll direction. In horizontal pager:`start` — alignment
|
|
7308
|
+
* to the left of the card;`center` — to the center;`end` — to the right.</p><p>In vertical
|
|
7309
|
+
* pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
|
|
7310
|
+
* bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
|
|
7311
|
+
* corresponding padding.
|
|
7294
7312
|
*
|
|
7295
7313
|
* Platforms: ios
|
|
7296
7314
|
*/
|
|
7297
|
-
scroll_axis_alignment?: Type<
|
|
7315
|
+
scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7298
7316
|
/**
|
|
7299
7317
|
* List of [actions](div-action.md) to be executed when selecting an element in
|
|
7300
7318
|
* [pager](div-pager.md).
|
|
@@ -7414,6 +7432,15 @@ interface DivPagerProps {
|
|
|
7414
7432
|
* Platforms: android, ios, web
|
|
7415
7433
|
*/
|
|
7416
7434
|
column_span?: Type<number | DivExpression>;
|
|
7435
|
+
/**
|
|
7436
|
+
* Aligning elements in the direction perpendicular to the scroll direction. In horizontal
|
|
7437
|
+
* pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
|
|
7438
|
+
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7439
|
+
* center;`end` — to the right.
|
|
7440
|
+
*
|
|
7441
|
+
* Platforms: not supported
|
|
7442
|
+
*/
|
|
7443
|
+
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7417
7444
|
/**
|
|
7418
7445
|
* Ordinal number of the pager element that will be opened by default.
|
|
7419
7446
|
*/
|
|
@@ -7535,12 +7562,15 @@ interface DivPagerProps {
|
|
|
7535
7562
|
*/
|
|
7536
7563
|
row_span?: Type<number | DivExpression>;
|
|
7537
7564
|
/**
|
|
7538
|
-
* Alignment of pager pages along the scroll
|
|
7539
|
-
* of the
|
|
7565
|
+
* Alignment of pager pages along the scroll direction. In horizontal pager:`start` — alignment
|
|
7566
|
+
* to the left of the card;`center` — to the center;`end` — to the right.</p><p>In vertical
|
|
7567
|
+
* pager:`start` — alignment to the top of the card;`center` — to the center;`end` — to the
|
|
7568
|
+
* bottom.. For edge alignment, the margin from the edge of the parent equals the value of the
|
|
7569
|
+
* corresponding padding.
|
|
7540
7570
|
*
|
|
7541
7571
|
* Platforms: ios
|
|
7542
7572
|
*/
|
|
7543
|
-
scroll_axis_alignment?: Type<
|
|
7573
|
+
scroll_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7544
7574
|
/**
|
|
7545
7575
|
* List of [actions](div-action.md) to be executed when selecting an element in
|
|
7546
7576
|
* [pager](div-pager.md).
|
|
@@ -7620,8 +7650,8 @@ interface DivPagerProps {
|
|
|
7620
7650
|
*/
|
|
7621
7651
|
width?: Type<DivSize>;
|
|
7622
7652
|
}
|
|
7653
|
+
declare type DivPagerItemAlignment = 'start' | 'center' | 'end';
|
|
7623
7654
|
declare type DivPagerOrientation = 'horizontal' | 'vertical';
|
|
7624
|
-
declare type DivPagerScrollAxisAlignment = 'start' | 'center' | 'end';
|
|
7625
7655
|
|
|
7626
7656
|
declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize | DivPageContentSize;
|
|
7627
7657
|
|
|
@@ -11503,7 +11533,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11503
11533
|
/**
|
|
11504
11534
|
* Parameters of the shadow applied to the text.
|
|
11505
11535
|
*
|
|
11506
|
-
* Platforms: android, web
|
|
11536
|
+
* Platforms: android, ios, web
|
|
11507
11537
|
*/
|
|
11508
11538
|
text_shadow?: Type<IDivShadow>;
|
|
11509
11539
|
/**
|
|
@@ -11877,7 +11907,7 @@ interface DivTextProps {
|
|
|
11877
11907
|
/**
|
|
11878
11908
|
* Parameters of the shadow applied to the text.
|
|
11879
11909
|
*
|
|
11880
|
-
* Platforms: android, web
|
|
11910
|
+
* Platforms: android, ios, web
|
|
11881
11911
|
*/
|
|
11882
11912
|
text_shadow?: Type<IDivShadow>;
|
|
11883
11913
|
/**
|
|
@@ -12163,7 +12193,7 @@ interface IDivTextRange {
|
|
|
12163
12193
|
/**
|
|
12164
12194
|
* Parameters of the shadow applied to the character range.
|
|
12165
12195
|
*
|
|
12166
|
-
* Platforms: android, web
|
|
12196
|
+
* Platforms: android, ios, web
|
|
12167
12197
|
*/
|
|
12168
12198
|
text_shadow?: Type<IDivShadow>;
|
|
12169
12199
|
/**
|
|
@@ -12346,6 +12376,12 @@ interface IDivTooltip {
|
|
|
12346
12376
|
* Platforms: android, web
|
|
12347
12377
|
*/
|
|
12348
12378
|
animation_out?: Type<IDivAnimation>;
|
|
12379
|
+
/**
|
|
12380
|
+
* Allows dismissing tooltip by tapping outside of it.
|
|
12381
|
+
*
|
|
12382
|
+
* Platforms: not supported
|
|
12383
|
+
*/
|
|
12384
|
+
close_by_tap_outside?: Type<boolean | DivExpression>;
|
|
12349
12385
|
/**
|
|
12350
12386
|
* An element that will be shown in a tooltip. If there are tooltips inside an element, they
|
|
12351
12387
|
* won't be shown.
|
|
@@ -12360,6 +12396,12 @@ interface IDivTooltip {
|
|
|
12360
12396
|
* Tooltip ID. It is used to avoid re-showing. It must be unique for all element tooltips.
|
|
12361
12397
|
*/
|
|
12362
12398
|
id: Type<string>;
|
|
12399
|
+
/**
|
|
12400
|
+
* Tooltip modes.
|
|
12401
|
+
*
|
|
12402
|
+
* Platforms: not supported
|
|
12403
|
+
*/
|
|
12404
|
+
mode?: Type<DivTooltipMode>;
|
|
12363
12405
|
/**
|
|
12364
12406
|
* Shift relative to an anchor point.
|
|
12365
12407
|
*/
|
|
@@ -12368,9 +12410,41 @@ interface IDivTooltip {
|
|
|
12368
12410
|
* The position of a tooltip relative to an element it belongs to.
|
|
12369
12411
|
*/
|
|
12370
12412
|
position: Type<DivTooltipPosition | DivExpression>;
|
|
12413
|
+
/**
|
|
12414
|
+
* Specifies actions triggered by tapping outside the tooltip.
|
|
12415
|
+
*
|
|
12416
|
+
* Platforms: not supported
|
|
12417
|
+
*/
|
|
12418
|
+
tap_outside_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12371
12419
|
}
|
|
12372
12420
|
declare type DivTooltipPosition = 'left' | 'top-left' | 'top' | 'top-right' | 'right' | 'bottom-right' | 'bottom' | 'bottom-left' | 'center';
|
|
12373
12421
|
|
|
12422
|
+
declare type DivTooltipMode = DivTooltipModeNonModal | DivTooltipModeModal;
|
|
12423
|
+
|
|
12424
|
+
/**
|
|
12425
|
+
* Modal mode. Clicks outside do not pass through to underlying elements. Restricts focus to the
|
|
12426
|
+
* tooltip. Back button on Android and back gesture on iOS close the tooltip.
|
|
12427
|
+
*/
|
|
12428
|
+
declare class DivTooltipModeModal<T extends DivTooltipModeModalProps = DivTooltipModeModalProps> {
|
|
12429
|
+
readonly _props?: Exact<DivTooltipModeModalProps, T>;
|
|
12430
|
+
readonly type = "modal";
|
|
12431
|
+
constructor(props?: Exact<DivTooltipModeModalProps, T>);
|
|
12432
|
+
}
|
|
12433
|
+
interface DivTooltipModeModalProps {
|
|
12434
|
+
}
|
|
12435
|
+
|
|
12436
|
+
/**
|
|
12437
|
+
* Non-modal mode. Clicks outside pass through to underlying elements. Does not restrict focus to
|
|
12438
|
+
* the tooltip. Back button on Android and back gesture on iOS do not close the tooltip.
|
|
12439
|
+
*/
|
|
12440
|
+
declare class DivTooltipModeNonModal<T extends DivTooltipModeNonModalProps = DivTooltipModeNonModalProps> {
|
|
12441
|
+
readonly _props?: Exact<DivTooltipModeNonModalProps, T>;
|
|
12442
|
+
readonly type = "non_modal";
|
|
12443
|
+
constructor(props?: Exact<DivTooltipModeNonModalProps, T>);
|
|
12444
|
+
}
|
|
12445
|
+
interface DivTooltipModeNonModalProps {
|
|
12446
|
+
}
|
|
12447
|
+
|
|
12374
12448
|
/**
|
|
12375
12449
|
* Transformation of the element.
|
|
12376
12450
|
*/
|
|
@@ -13465,4 +13539,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13465
13539
|
};
|
|
13466
13540
|
};
|
|
13467
13541
|
|
|
13468
|
-
export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps,
|
|
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 };
|
package/dist/jsonbuilder.js
CHANGED
|
@@ -1207,6 +1207,7 @@ class DivPager {
|
|
|
1207
1207
|
this.background = props.background;
|
|
1208
1208
|
this.border = props.border;
|
|
1209
1209
|
this.column_span = props.column_span;
|
|
1210
|
+
this.cross_axis_alignment = props.cross_axis_alignment;
|
|
1210
1211
|
this.default_item = props.default_item;
|
|
1211
1212
|
this.disappear_actions = props.disappear_actions;
|
|
1212
1213
|
this.extensions = props.extensions;
|
|
@@ -1835,6 +1836,28 @@ class DivTextRangeMaskSolid {
|
|
|
1835
1836
|
}
|
|
1836
1837
|
}
|
|
1837
1838
|
|
|
1839
|
+
// Generated code. Do not modify.
|
|
1840
|
+
/**
|
|
1841
|
+
* Modal mode. Clicks outside do not pass through to underlying elements. Restricts focus to the
|
|
1842
|
+
* tooltip. Back button on Android and back gesture on iOS close the tooltip.
|
|
1843
|
+
*/
|
|
1844
|
+
class DivTooltipModeModal {
|
|
1845
|
+
constructor(props) {
|
|
1846
|
+
this.type = 'modal';
|
|
1847
|
+
}
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
// Generated code. Do not modify.
|
|
1851
|
+
/**
|
|
1852
|
+
* Non-modal mode. Clicks outside pass through to underlying elements. Does not restrict focus to
|
|
1853
|
+
* the tooltip. Back button on Android and back gesture on iOS do not close the tooltip.
|
|
1854
|
+
*/
|
|
1855
|
+
class DivTooltipModeNonModal {
|
|
1856
|
+
constructor(props) {
|
|
1857
|
+
this.type = 'non_modal';
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1838
1861
|
// Generated code. Do not modify.
|
|
1839
1862
|
/**
|
|
1840
1863
|
* Video.
|
|
@@ -2517,6 +2540,8 @@ exports.DivTabs = DivTabs;
|
|
|
2517
2540
|
exports.DivText = DivText;
|
|
2518
2541
|
exports.DivTextRangeMaskParticles = DivTextRangeMaskParticles;
|
|
2519
2542
|
exports.DivTextRangeMaskSolid = DivTextRangeMaskSolid;
|
|
2543
|
+
exports.DivTooltipModeModal = DivTooltipModeModal;
|
|
2544
|
+
exports.DivTooltipModeNonModal = DivTooltipModeNonModal;
|
|
2520
2545
|
exports.DivVideo = DivVideo;
|
|
2521
2546
|
exports.DivVideoSource = DivVideoSource;
|
|
2522
2547
|
exports.DivVideoSourceResolution = DivVideoSourceResolution;
|