@divkitframework/jsonbuilder 30.17.0 → 30.19.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 +53 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +282 -2
- package/dist/jsonbuilder.js +55 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -351,6 +351,10 @@ interface IDivAction {
|
|
|
351
351
|
* Referer URL for logging.
|
|
352
352
|
*/
|
|
353
353
|
referer?: Type<string | DivExpression>;
|
|
354
|
+
/**
|
|
355
|
+
* Div identifier denotes the scope in which this action will be performed.
|
|
356
|
+
*/
|
|
357
|
+
scope_id?: Type<string>;
|
|
354
358
|
/**
|
|
355
359
|
* The tab in which the URL must be opened.
|
|
356
360
|
*/
|
|
@@ -562,6 +566,41 @@ interface DivActionDictSetValueProps {
|
|
|
562
566
|
variable_name: Type<string | DivExpression>;
|
|
563
567
|
}
|
|
564
568
|
|
|
569
|
+
/**
|
|
570
|
+
* Loads more data in the form of a `div-patch` and updates current element,
|
|
571
|
+
*/
|
|
572
|
+
declare class DivActionDownload<T extends DivActionDownloadProps = DivActionDownloadProps> {
|
|
573
|
+
readonly _props?: Exact<DivActionDownloadProps, T>;
|
|
574
|
+
readonly type = "download";
|
|
575
|
+
/**
|
|
576
|
+
* Actions in case of unsuccessful loading if the host reported it or the waiting time expired.
|
|
577
|
+
*/
|
|
578
|
+
on_fail_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
579
|
+
/**
|
|
580
|
+
* Actions in case of successful loading.
|
|
581
|
+
*/
|
|
582
|
+
on_success_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
583
|
+
/**
|
|
584
|
+
* URL to get the patch.
|
|
585
|
+
*/
|
|
586
|
+
url: Type<string | DivExpression>;
|
|
587
|
+
constructor(props: Exact<DivActionDownloadProps, T>);
|
|
588
|
+
}
|
|
589
|
+
interface DivActionDownloadProps {
|
|
590
|
+
/**
|
|
591
|
+
* Actions in case of unsuccessful loading if the host reported it or the waiting time expired.
|
|
592
|
+
*/
|
|
593
|
+
on_fail_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
594
|
+
/**
|
|
595
|
+
* Actions in case of successful loading.
|
|
596
|
+
*/
|
|
597
|
+
on_success_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
598
|
+
/**
|
|
599
|
+
* URL to get the patch.
|
|
600
|
+
*/
|
|
601
|
+
url: Type<string | DivExpression>;
|
|
602
|
+
}
|
|
603
|
+
|
|
565
604
|
/**
|
|
566
605
|
* Requests focus for an element. May require a user action on the web.
|
|
567
606
|
*/
|
|
@@ -575,6 +614,64 @@ interface DivActionFocusElementProps {
|
|
|
575
614
|
element_id: Type<string | DivExpression>;
|
|
576
615
|
}
|
|
577
616
|
|
|
617
|
+
/**
|
|
618
|
+
* Hides tooltip.
|
|
619
|
+
*/
|
|
620
|
+
declare class DivActionHideTooltip<T extends DivActionHideTooltipProps = DivActionHideTooltipProps> {
|
|
621
|
+
readonly _props?: Exact<DivActionHideTooltipProps, T>;
|
|
622
|
+
readonly type = "hide_tooltip";
|
|
623
|
+
/**
|
|
624
|
+
* Tooltip identifier.
|
|
625
|
+
*/
|
|
626
|
+
id: Type<string | DivExpression>;
|
|
627
|
+
constructor(props: Exact<DivActionHideTooltipProps, T>);
|
|
628
|
+
}
|
|
629
|
+
interface DivActionHideTooltipProps {
|
|
630
|
+
/**
|
|
631
|
+
* Tooltip identifier.
|
|
632
|
+
*/
|
|
633
|
+
id: Type<string | DivExpression>;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* Switches the appearance of content in `div-state`.
|
|
638
|
+
*/
|
|
639
|
+
declare class DivActionSetState<T extends DivActionSetStateProps = DivActionSetStateProps> {
|
|
640
|
+
readonly _props?: Exact<DivActionSetStateProps, T>;
|
|
641
|
+
readonly type = "set_state";
|
|
642
|
+
/**
|
|
643
|
+
* The path of the state inside `state` that needs to be activated. Set in
|
|
644
|
+
* `div_data_state_id/id/state_id` format. Can be hierarchical:
|
|
645
|
+
* `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
|
|
646
|
+
* `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
|
|
647
|
+
* object;`state_id` - `state_id` value of the state object in `state`.
|
|
648
|
+
*/
|
|
649
|
+
state_id: Type<string | DivExpression>;
|
|
650
|
+
/**
|
|
651
|
+
* Indicates a state change:`true`: The change is temporary and when the element is re-created,
|
|
652
|
+
* the state will change back to the initial one (default value).`false` - The state change is
|
|
653
|
+
* permanent.
|
|
654
|
+
*/
|
|
655
|
+
temporary?: Type<boolean | DivExpression>;
|
|
656
|
+
constructor(props: Exact<DivActionSetStateProps, T>);
|
|
657
|
+
}
|
|
658
|
+
interface DivActionSetStateProps {
|
|
659
|
+
/**
|
|
660
|
+
* The path of the state inside `state` that needs to be activated. Set in
|
|
661
|
+
* `div_data_state_id/id/state_id` format. Can be hierarchical:
|
|
662
|
+
* `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
|
|
663
|
+
* `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
|
|
664
|
+
* object;`state_id` - `state_id` value of the state object in `state`.
|
|
665
|
+
*/
|
|
666
|
+
state_id: Type<string | DivExpression>;
|
|
667
|
+
/**
|
|
668
|
+
* Indicates a state change:`true`: The change is temporary and when the element is re-created,
|
|
669
|
+
* the state will change back to the initial one (default value).`false` - The state change is
|
|
670
|
+
* permanent.
|
|
671
|
+
*/
|
|
672
|
+
temporary?: Type<boolean | DivExpression>;
|
|
673
|
+
}
|
|
674
|
+
|
|
578
675
|
/**
|
|
579
676
|
* Assigns a value to the variable
|
|
580
677
|
*/
|
|
@@ -651,7 +748,7 @@ interface DivActionTimerProps {
|
|
|
651
748
|
}
|
|
652
749
|
declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
|
|
653
750
|
|
|
654
|
-
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
|
|
751
|
+
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionSetState | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
|
|
655
752
|
|
|
656
753
|
/**
|
|
657
754
|
* Controls given video.
|
|
@@ -858,6 +955,10 @@ interface IDivBase {
|
|
|
858
955
|
* Parameters when focusing on an element or losing focus.
|
|
859
956
|
*/
|
|
860
957
|
focus?: Type<IDivFocus>;
|
|
958
|
+
/**
|
|
959
|
+
* Custom functions.
|
|
960
|
+
*/
|
|
961
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
861
962
|
/**
|
|
862
963
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
863
964
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1325,6 +1426,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1325
1426
|
* Parameters when focusing on an element or losing focus.
|
|
1326
1427
|
*/
|
|
1327
1428
|
focus?: Type<IDivFocus>;
|
|
1429
|
+
/**
|
|
1430
|
+
* Custom functions.
|
|
1431
|
+
*/
|
|
1432
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1328
1433
|
/**
|
|
1329
1434
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1330
1435
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1542,6 +1647,10 @@ interface DivContainerPropsBase {
|
|
|
1542
1647
|
* Parameters when focusing on an element or losing focus.
|
|
1543
1648
|
*/
|
|
1544
1649
|
focus?: Type<IDivFocus>;
|
|
1650
|
+
/**
|
|
1651
|
+
* Custom functions.
|
|
1652
|
+
*/
|
|
1653
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1545
1654
|
/**
|
|
1546
1655
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1547
1656
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1829,6 +1938,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1829
1938
|
* Parameters when focusing on an element or losing focus.
|
|
1830
1939
|
*/
|
|
1831
1940
|
focus?: Type<IDivFocus>;
|
|
1941
|
+
/**
|
|
1942
|
+
* Custom functions.
|
|
1943
|
+
*/
|
|
1944
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1832
1945
|
/**
|
|
1833
1946
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1834
1947
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1981,6 +2094,10 @@ interface DivCustomProps {
|
|
|
1981
2094
|
* Parameters when focusing on an element or losing focus.
|
|
1982
2095
|
*/
|
|
1983
2096
|
focus?: Type<IDivFocus>;
|
|
2097
|
+
/**
|
|
2098
|
+
* Custom functions.
|
|
2099
|
+
*/
|
|
2100
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1984
2101
|
/**
|
|
1985
2102
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1986
2103
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2143,6 +2260,10 @@ interface IDivDisappearAction {
|
|
|
2143
2260
|
* Referer URL for logging.
|
|
2144
2261
|
*/
|
|
2145
2262
|
referer?: Type<string | DivExpression>;
|
|
2263
|
+
/**
|
|
2264
|
+
* Div identifier denotes the scope in which this action will be performed.
|
|
2265
|
+
*/
|
|
2266
|
+
scope_id?: Type<string>;
|
|
2146
2267
|
typed?: Type<DivActionTyped>;
|
|
2147
2268
|
/**
|
|
2148
2269
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
@@ -2204,6 +2325,8 @@ interface IDivEdgeInsets {
|
|
|
2204
2325
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
2205
2326
|
}
|
|
2206
2327
|
|
|
2328
|
+
declare type DivEvaluableType = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'color' | 'url' | 'dict' | 'array';
|
|
2329
|
+
|
|
2207
2330
|
/**
|
|
2208
2331
|
* Extension that affects an element.
|
|
2209
2332
|
*/
|
|
@@ -2425,6 +2548,43 @@ interface IDivFocusNextFocusIds {
|
|
|
2425
2548
|
|
|
2426
2549
|
declare type DivFontWeight = 'light' | 'medium' | 'regular' | 'bold';
|
|
2427
2550
|
|
|
2551
|
+
/**
|
|
2552
|
+
* Custom function.
|
|
2553
|
+
*/
|
|
2554
|
+
interface IDivFunction {
|
|
2555
|
+
/**
|
|
2556
|
+
* Function argument.
|
|
2557
|
+
*/
|
|
2558
|
+
arguments: Type<NonEmptyArray<IDivFunctionArgument>>;
|
|
2559
|
+
/**
|
|
2560
|
+
* Function body. Evaluated as an expression with the passed arguments. Does not capture external
|
|
2561
|
+
* variables
|
|
2562
|
+
*/
|
|
2563
|
+
body: Type<string>;
|
|
2564
|
+
/**
|
|
2565
|
+
* Function name.
|
|
2566
|
+
*/
|
|
2567
|
+
name: Type<string>;
|
|
2568
|
+
/**
|
|
2569
|
+
* Return type.
|
|
2570
|
+
*/
|
|
2571
|
+
return_type: Type<DivEvaluableType>;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
/**
|
|
2575
|
+
* Function argument.
|
|
2576
|
+
*/
|
|
2577
|
+
interface IDivFunctionArgument {
|
|
2578
|
+
/**
|
|
2579
|
+
* Function argument name.
|
|
2580
|
+
*/
|
|
2581
|
+
name: Type<string>;
|
|
2582
|
+
/**
|
|
2583
|
+
* Function argument type.
|
|
2584
|
+
*/
|
|
2585
|
+
type: Type<DivEvaluableType>;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2428
2588
|
/**
|
|
2429
2589
|
* Gallery. It contains a horizontal or vertical set of cards that can be scrolled.
|
|
2430
2590
|
*/
|
|
@@ -2498,6 +2658,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2498
2658
|
* Parameters when focusing on an element or losing focus.
|
|
2499
2659
|
*/
|
|
2500
2660
|
focus?: Type<IDivFocus>;
|
|
2661
|
+
/**
|
|
2662
|
+
* Custom functions.
|
|
2663
|
+
*/
|
|
2664
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2501
2665
|
/**
|
|
2502
2666
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2503
2667
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2701,6 +2865,10 @@ interface DivGalleryProps {
|
|
|
2701
2865
|
* Parameters when focusing on an element or losing focus.
|
|
2702
2866
|
*/
|
|
2703
2867
|
focus?: Type<IDivFocus>;
|
|
2868
|
+
/**
|
|
2869
|
+
* Custom functions.
|
|
2870
|
+
*/
|
|
2871
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2704
2872
|
/**
|
|
2705
2873
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2706
2874
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2921,6 +3089,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2921
3089
|
* Parameters when focusing on an element or losing focus.
|
|
2922
3090
|
*/
|
|
2923
3091
|
focus?: Type<IDivFocus>;
|
|
3092
|
+
/**
|
|
3093
|
+
* Custom functions.
|
|
3094
|
+
*/
|
|
3095
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2924
3096
|
/**
|
|
2925
3097
|
* Direct URL to a GIF image.
|
|
2926
3098
|
*/
|
|
@@ -3118,6 +3290,10 @@ interface DivGifImageProps {
|
|
|
3118
3290
|
* Parameters when focusing on an element or losing focus.
|
|
3119
3291
|
*/
|
|
3120
3292
|
focus?: Type<IDivFocus>;
|
|
3293
|
+
/**
|
|
3294
|
+
* Custom functions.
|
|
3295
|
+
*/
|
|
3296
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3121
3297
|
/**
|
|
3122
3298
|
* Direct URL to a GIF image.
|
|
3123
3299
|
*/
|
|
@@ -3319,6 +3495,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
3319
3495
|
* Parameters when focusing on an element or losing focus.
|
|
3320
3496
|
*/
|
|
3321
3497
|
focus?: Type<IDivFocus>;
|
|
3498
|
+
/**
|
|
3499
|
+
* Custom functions.
|
|
3500
|
+
*/
|
|
3501
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3322
3502
|
/**
|
|
3323
3503
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3324
3504
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3497,6 +3677,10 @@ interface DivGridProps {
|
|
|
3497
3677
|
* Parameters when focusing on an element or losing focus.
|
|
3498
3678
|
*/
|
|
3499
3679
|
focus?: Type<IDivFocus>;
|
|
3680
|
+
/**
|
|
3681
|
+
* Custom functions.
|
|
3682
|
+
*/
|
|
3683
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3500
3684
|
/**
|
|
3501
3685
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3502
3686
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3689,6 +3873,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3689
3873
|
* Parameters when focusing on an element or losing focus.
|
|
3690
3874
|
*/
|
|
3691
3875
|
focus?: Type<IDivFocus>;
|
|
3876
|
+
/**
|
|
3877
|
+
* Custom functions.
|
|
3878
|
+
*/
|
|
3879
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3692
3880
|
/**
|
|
3693
3881
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3694
3882
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3908,6 +4096,10 @@ interface DivImageProps {
|
|
|
3908
4096
|
* Parameters when focusing on an element or losing focus.
|
|
3909
4097
|
*/
|
|
3910
4098
|
focus?: Type<IDivFocus>;
|
|
4099
|
+
/**
|
|
4100
|
+
* Custom functions.
|
|
4101
|
+
*/
|
|
4102
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3911
4103
|
/**
|
|
3912
4104
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3913
4105
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4183,6 +4375,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
4183
4375
|
* Parameters when focusing on an element or losing focus.
|
|
4184
4376
|
*/
|
|
4185
4377
|
focus?: Type<IDivFocus>;
|
|
4378
|
+
/**
|
|
4379
|
+
* Custom functions.
|
|
4380
|
+
*/
|
|
4381
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4186
4382
|
/**
|
|
4187
4383
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4188
4384
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4385,6 +4581,10 @@ interface DivIndicatorProps {
|
|
|
4385
4581
|
* Parameters when focusing on an element or losing focus.
|
|
4386
4582
|
*/
|
|
4387
4583
|
focus?: Type<IDivFocus>;
|
|
4584
|
+
/**
|
|
4585
|
+
* Custom functions.
|
|
4586
|
+
*/
|
|
4587
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4388
4588
|
/**
|
|
4389
4589
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4390
4590
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4617,6 +4817,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
4617
4817
|
* Style. Numeric value.
|
|
4618
4818
|
*/
|
|
4619
4819
|
font_weight_value?: Type<number | DivExpression>;
|
|
4820
|
+
/**
|
|
4821
|
+
* Custom functions.
|
|
4822
|
+
*/
|
|
4823
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4620
4824
|
/**
|
|
4621
4825
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4622
4826
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4857,6 +5061,10 @@ interface DivInputProps {
|
|
|
4857
5061
|
* Style. Numeric value.
|
|
4858
5062
|
*/
|
|
4859
5063
|
font_weight_value?: Type<number | DivExpression>;
|
|
5064
|
+
/**
|
|
5065
|
+
* Custom functions.
|
|
5066
|
+
*/
|
|
5067
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4860
5068
|
/**
|
|
4861
5069
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4862
5070
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -5635,6 +5843,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
5635
5843
|
* Parameters when focusing on an element or losing focus.
|
|
5636
5844
|
*/
|
|
5637
5845
|
focus?: Type<IDivFocus>;
|
|
5846
|
+
/**
|
|
5847
|
+
* Custom functions.
|
|
5848
|
+
*/
|
|
5849
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5638
5850
|
/**
|
|
5639
5851
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5640
5852
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -5822,6 +6034,10 @@ interface DivPagerProps {
|
|
|
5822
6034
|
* Parameters when focusing on an element or losing focus.
|
|
5823
6035
|
*/
|
|
5824
6036
|
focus?: Type<IDivFocus>;
|
|
6037
|
+
/**
|
|
6038
|
+
* Custom functions.
|
|
6039
|
+
*/
|
|
6040
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5825
6041
|
/**
|
|
5826
6042
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5827
6043
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6400,6 +6616,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
6400
6616
|
* Style. Numeric value.
|
|
6401
6617
|
*/
|
|
6402
6618
|
font_weight_value?: Type<number | DivExpression>;
|
|
6619
|
+
/**
|
|
6620
|
+
* Custom functions.
|
|
6621
|
+
*/
|
|
6622
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6403
6623
|
/**
|
|
6404
6624
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6405
6625
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6588,6 +6808,10 @@ interface DivSelectProps {
|
|
|
6588
6808
|
* Style. Numeric value.
|
|
6589
6809
|
*/
|
|
6590
6810
|
font_weight_value?: Type<number | DivExpression>;
|
|
6811
|
+
/**
|
|
6812
|
+
* Custom functions.
|
|
6813
|
+
*/
|
|
6814
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6591
6815
|
/**
|
|
6592
6816
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6593
6817
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6792,6 +7016,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
6792
7016
|
* Parameters when focusing on an element or losing focus.
|
|
6793
7017
|
*/
|
|
6794
7018
|
focus?: Type<IDivFocus>;
|
|
7019
|
+
/**
|
|
7020
|
+
* Custom functions.
|
|
7021
|
+
*/
|
|
7022
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6795
7023
|
/**
|
|
6796
7024
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6797
7025
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6958,6 +7186,10 @@ interface DivSeparatorProps {
|
|
|
6958
7186
|
* Parameters when focusing on an element or losing focus.
|
|
6959
7187
|
*/
|
|
6960
7188
|
focus?: Type<IDivFocus>;
|
|
7189
|
+
/**
|
|
7190
|
+
* Custom functions.
|
|
7191
|
+
*/
|
|
7192
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6961
7193
|
/**
|
|
6962
7194
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6963
7195
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7165,6 +7397,10 @@ interface IDivSightAction {
|
|
|
7165
7397
|
* Referer URL for logging.
|
|
7166
7398
|
*/
|
|
7167
7399
|
referer?: Type<string | DivExpression>;
|
|
7400
|
+
/**
|
|
7401
|
+
* Div identifier denotes the scope in which this action will be performed.
|
|
7402
|
+
*/
|
|
7403
|
+
scope_id?: Type<string>;
|
|
7168
7404
|
typed?: Type<DivActionTyped>;
|
|
7169
7405
|
/**
|
|
7170
7406
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
@@ -7286,6 +7522,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
7286
7522
|
* Parameters when focusing on an element or losing focus.
|
|
7287
7523
|
*/
|
|
7288
7524
|
focus?: Type<IDivFocus>;
|
|
7525
|
+
/**
|
|
7526
|
+
* Custom functions.
|
|
7527
|
+
*/
|
|
7528
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7289
7529
|
/**
|
|
7290
7530
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7291
7531
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7482,6 +7722,10 @@ interface DivSliderProps {
|
|
|
7482
7722
|
* Parameters when focusing on an element or losing focus.
|
|
7483
7723
|
*/
|
|
7484
7724
|
focus?: Type<IDivFocus>;
|
|
7725
|
+
/**
|
|
7726
|
+
* Custom functions.
|
|
7727
|
+
*/
|
|
7728
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7485
7729
|
/**
|
|
7486
7730
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7487
7731
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7758,6 +8002,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
7758
8002
|
* Parameters when focusing on an element or losing focus.
|
|
7759
8003
|
*/
|
|
7760
8004
|
focus?: Type<IDivFocus>;
|
|
8005
|
+
/**
|
|
8006
|
+
* Custom functions.
|
|
8007
|
+
*/
|
|
8008
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7761
8009
|
/**
|
|
7762
8010
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7763
8011
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7926,6 +8174,10 @@ interface DivStateProps {
|
|
|
7926
8174
|
* Parameters when focusing on an element or losing focus.
|
|
7927
8175
|
*/
|
|
7928
8176
|
focus?: Type<IDivFocus>;
|
|
8177
|
+
/**
|
|
8178
|
+
* Custom functions.
|
|
8179
|
+
*/
|
|
8180
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7929
8181
|
/**
|
|
7930
8182
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7931
8183
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -8163,6 +8415,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
8163
8415
|
* Parameters when focusing on an element or losing focus.
|
|
8164
8416
|
*/
|
|
8165
8417
|
focus?: Type<IDivFocus>;
|
|
8418
|
+
/**
|
|
8419
|
+
* Custom functions.
|
|
8420
|
+
*/
|
|
8421
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8166
8422
|
/**
|
|
8167
8423
|
* A separating line between tabs and contents.
|
|
8168
8424
|
*/
|
|
@@ -8355,6 +8611,10 @@ interface DivTabsProps {
|
|
|
8355
8611
|
* Parameters when focusing on an element or losing focus.
|
|
8356
8612
|
*/
|
|
8357
8613
|
focus?: Type<IDivFocus>;
|
|
8614
|
+
/**
|
|
8615
|
+
* Custom functions.
|
|
8616
|
+
*/
|
|
8617
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8358
8618
|
/**
|
|
8359
8619
|
* A separating line between tabs and contents.
|
|
8360
8620
|
*/
|
|
@@ -8718,6 +8978,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
8718
8978
|
* Style. Numeric value.
|
|
8719
8979
|
*/
|
|
8720
8980
|
font_weight_value?: Type<number | DivExpression>;
|
|
8981
|
+
/**
|
|
8982
|
+
* Custom functions.
|
|
8983
|
+
*/
|
|
8984
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8721
8985
|
/**
|
|
8722
8986
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8723
8987
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -8982,6 +9246,10 @@ interface DivTextProps {
|
|
|
8982
9246
|
* Style. Numeric value.
|
|
8983
9247
|
*/
|
|
8984
9248
|
font_weight_value?: Type<number | DivExpression>;
|
|
9249
|
+
/**
|
|
9250
|
+
* Custom functions.
|
|
9251
|
+
*/
|
|
9252
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8985
9253
|
/**
|
|
8986
9254
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8987
9255
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -9540,6 +9808,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
9540
9808
|
* Parameters when focusing on an element or losing focus.
|
|
9541
9809
|
*/
|
|
9542
9810
|
focus?: Type<IDivFocus>;
|
|
9811
|
+
/**
|
|
9812
|
+
* Custom functions.
|
|
9813
|
+
*/
|
|
9814
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9543
9815
|
/**
|
|
9544
9816
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
9545
9817
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -9741,6 +10013,10 @@ interface DivVideoProps {
|
|
|
9741
10013
|
* Parameters when focusing on an element or losing focus.
|
|
9742
10014
|
*/
|
|
9743
10015
|
focus?: Type<IDivFocus>;
|
|
10016
|
+
/**
|
|
10017
|
+
* Custom functions.
|
|
10018
|
+
*/
|
|
10019
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9744
10020
|
/**
|
|
9745
10021
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
9746
10022
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -9973,6 +10249,10 @@ interface IDivVisibilityAction {
|
|
|
9973
10249
|
* Referer URL for logging.
|
|
9974
10250
|
*/
|
|
9975
10251
|
referer?: Type<string | DivExpression>;
|
|
10252
|
+
/**
|
|
10253
|
+
* Div identifier denotes the scope in which this action will be performed.
|
|
10254
|
+
*/
|
|
10255
|
+
scope_id?: Type<string>;
|
|
9976
10256
|
typed?: Type<DivActionTyped>;
|
|
9977
10257
|
/**
|
|
9978
10258
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
@@ -10338,4 +10618,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
10338
10618
|
};
|
|
10339
10619
|
};
|
|
10340
10620
|
|
|
10341
|
-
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, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, 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, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, 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, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, 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, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, 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 };
|
|
10621
|
+
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, DivActionSetState, DivActionSetStateProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, 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, 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, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, 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, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, 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, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, 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 };
|