@divkitframework/jsonbuilder 30.17.0 → 30.18.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 +40 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +231 -2
- package/dist/jsonbuilder.js +41 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -575,6 +575,64 @@ interface DivActionFocusElementProps {
|
|
|
575
575
|
element_id: Type<string | DivExpression>;
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
+
/**
|
|
579
|
+
* Hides tooltip.
|
|
580
|
+
*/
|
|
581
|
+
declare class DivActionHideTooltip<T extends DivActionHideTooltipProps = DivActionHideTooltipProps> {
|
|
582
|
+
readonly _props?: Exact<DivActionHideTooltipProps, T>;
|
|
583
|
+
readonly type = "hide_tooltip";
|
|
584
|
+
/**
|
|
585
|
+
* Tooltip identifier.
|
|
586
|
+
*/
|
|
587
|
+
id: Type<string | DivExpression>;
|
|
588
|
+
constructor(props: Exact<DivActionHideTooltipProps, T>);
|
|
589
|
+
}
|
|
590
|
+
interface DivActionHideTooltipProps {
|
|
591
|
+
/**
|
|
592
|
+
* Tooltip identifier.
|
|
593
|
+
*/
|
|
594
|
+
id: Type<string | DivExpression>;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* Switches the appearance of content in `div-state`.
|
|
599
|
+
*/
|
|
600
|
+
declare class DivActionSetState<T extends DivActionSetStateProps = DivActionSetStateProps> {
|
|
601
|
+
readonly _props?: Exact<DivActionSetStateProps, T>;
|
|
602
|
+
readonly type = "set_state";
|
|
603
|
+
/**
|
|
604
|
+
* The path of the state inside `state` that needs to be activated. Set in
|
|
605
|
+
* `div_data_state_id/id/state_id` format. Can be hierarchical:
|
|
606
|
+
* `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
|
|
607
|
+
* `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
|
|
608
|
+
* object;`state_id` - `state_id` value of the state object in `state`.
|
|
609
|
+
*/
|
|
610
|
+
state_id: Type<string | DivExpression>;
|
|
611
|
+
/**
|
|
612
|
+
* Indicates a state change:`true`: The change is temporary and when the element is re-created,
|
|
613
|
+
* the state will change back to the initial one (default value).`false` - The state change is
|
|
614
|
+
* permanent.
|
|
615
|
+
*/
|
|
616
|
+
temporary?: Type<boolean | DivExpression>;
|
|
617
|
+
constructor(props: Exact<DivActionSetStateProps, T>);
|
|
618
|
+
}
|
|
619
|
+
interface DivActionSetStateProps {
|
|
620
|
+
/**
|
|
621
|
+
* The path of the state inside `state` that needs to be activated. Set in
|
|
622
|
+
* `div_data_state_id/id/state_id` format. Can be hierarchical:
|
|
623
|
+
* `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
|
|
624
|
+
* `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
|
|
625
|
+
* object;`state_id` - `state_id` value of the state object in `state`.
|
|
626
|
+
*/
|
|
627
|
+
state_id: Type<string | DivExpression>;
|
|
628
|
+
/**
|
|
629
|
+
* Indicates a state change:`true`: The change is temporary and when the element is re-created,
|
|
630
|
+
* the state will change back to the initial one (default value).`false` - The state change is
|
|
631
|
+
* permanent.
|
|
632
|
+
*/
|
|
633
|
+
temporary?: Type<boolean | DivExpression>;
|
|
634
|
+
}
|
|
635
|
+
|
|
578
636
|
/**
|
|
579
637
|
* Assigns a value to the variable
|
|
580
638
|
*/
|
|
@@ -651,7 +709,7 @@ interface DivActionTimerProps {
|
|
|
651
709
|
}
|
|
652
710
|
declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
|
|
653
711
|
|
|
654
|
-
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
|
|
712
|
+
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionHideTooltip | DivActionSetState | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
|
|
655
713
|
|
|
656
714
|
/**
|
|
657
715
|
* Controls given video.
|
|
@@ -858,6 +916,10 @@ interface IDivBase {
|
|
|
858
916
|
* Parameters when focusing on an element or losing focus.
|
|
859
917
|
*/
|
|
860
918
|
focus?: Type<IDivFocus>;
|
|
919
|
+
/**
|
|
920
|
+
* Custom functions.
|
|
921
|
+
*/
|
|
922
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
861
923
|
/**
|
|
862
924
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
863
925
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1325,6 +1387,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1325
1387
|
* Parameters when focusing on an element or losing focus.
|
|
1326
1388
|
*/
|
|
1327
1389
|
focus?: Type<IDivFocus>;
|
|
1390
|
+
/**
|
|
1391
|
+
* Custom functions.
|
|
1392
|
+
*/
|
|
1393
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1328
1394
|
/**
|
|
1329
1395
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1330
1396
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1542,6 +1608,10 @@ interface DivContainerPropsBase {
|
|
|
1542
1608
|
* Parameters when focusing on an element or losing focus.
|
|
1543
1609
|
*/
|
|
1544
1610
|
focus?: Type<IDivFocus>;
|
|
1611
|
+
/**
|
|
1612
|
+
* Custom functions.
|
|
1613
|
+
*/
|
|
1614
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1545
1615
|
/**
|
|
1546
1616
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1547
1617
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1829,6 +1899,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1829
1899
|
* Parameters when focusing on an element or losing focus.
|
|
1830
1900
|
*/
|
|
1831
1901
|
focus?: Type<IDivFocus>;
|
|
1902
|
+
/**
|
|
1903
|
+
* Custom functions.
|
|
1904
|
+
*/
|
|
1905
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1832
1906
|
/**
|
|
1833
1907
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1834
1908
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -1981,6 +2055,10 @@ interface DivCustomProps {
|
|
|
1981
2055
|
* Parameters when focusing on an element or losing focus.
|
|
1982
2056
|
*/
|
|
1983
2057
|
focus?: Type<IDivFocus>;
|
|
2058
|
+
/**
|
|
2059
|
+
* Custom functions.
|
|
2060
|
+
*/
|
|
2061
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1984
2062
|
/**
|
|
1985
2063
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1986
2064
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2204,6 +2282,8 @@ interface IDivEdgeInsets {
|
|
|
2204
2282
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
2205
2283
|
}
|
|
2206
2284
|
|
|
2285
|
+
declare type DivEvaluableType = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'color' | 'url' | 'dict' | 'array';
|
|
2286
|
+
|
|
2207
2287
|
/**
|
|
2208
2288
|
* Extension that affects an element.
|
|
2209
2289
|
*/
|
|
@@ -2425,6 +2505,43 @@ interface IDivFocusNextFocusIds {
|
|
|
2425
2505
|
|
|
2426
2506
|
declare type DivFontWeight = 'light' | 'medium' | 'regular' | 'bold';
|
|
2427
2507
|
|
|
2508
|
+
/**
|
|
2509
|
+
* Custom function.
|
|
2510
|
+
*/
|
|
2511
|
+
interface IDivFunction {
|
|
2512
|
+
/**
|
|
2513
|
+
* Function argument.
|
|
2514
|
+
*/
|
|
2515
|
+
arguments: Type<NonEmptyArray<IDivFunctionArgument>>;
|
|
2516
|
+
/**
|
|
2517
|
+
* Function body. Evaluated as an expression with the passed arguments. Does not capture external
|
|
2518
|
+
* variables
|
|
2519
|
+
*/
|
|
2520
|
+
body: Type<string>;
|
|
2521
|
+
/**
|
|
2522
|
+
* Function name.
|
|
2523
|
+
*/
|
|
2524
|
+
name: Type<string>;
|
|
2525
|
+
/**
|
|
2526
|
+
* Return type.
|
|
2527
|
+
*/
|
|
2528
|
+
return_type: Type<DivEvaluableType>;
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
/**
|
|
2532
|
+
* Function argument.
|
|
2533
|
+
*/
|
|
2534
|
+
interface IDivFunctionArgument {
|
|
2535
|
+
/**
|
|
2536
|
+
* Function argument name.
|
|
2537
|
+
*/
|
|
2538
|
+
name: Type<string>;
|
|
2539
|
+
/**
|
|
2540
|
+
* Function argument type.
|
|
2541
|
+
*/
|
|
2542
|
+
type: Type<DivEvaluableType>;
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2428
2545
|
/**
|
|
2429
2546
|
* Gallery. It contains a horizontal or vertical set of cards that can be scrolled.
|
|
2430
2547
|
*/
|
|
@@ -2498,6 +2615,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2498
2615
|
* Parameters when focusing on an element or losing focus.
|
|
2499
2616
|
*/
|
|
2500
2617
|
focus?: Type<IDivFocus>;
|
|
2618
|
+
/**
|
|
2619
|
+
* Custom functions.
|
|
2620
|
+
*/
|
|
2621
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2501
2622
|
/**
|
|
2502
2623
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2503
2624
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2701,6 +2822,10 @@ interface DivGalleryProps {
|
|
|
2701
2822
|
* Parameters when focusing on an element or losing focus.
|
|
2702
2823
|
*/
|
|
2703
2824
|
focus?: Type<IDivFocus>;
|
|
2825
|
+
/**
|
|
2826
|
+
* Custom functions.
|
|
2827
|
+
*/
|
|
2828
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2704
2829
|
/**
|
|
2705
2830
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2706
2831
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -2921,6 +3046,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2921
3046
|
* Parameters when focusing on an element or losing focus.
|
|
2922
3047
|
*/
|
|
2923
3048
|
focus?: Type<IDivFocus>;
|
|
3049
|
+
/**
|
|
3050
|
+
* Custom functions.
|
|
3051
|
+
*/
|
|
3052
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2924
3053
|
/**
|
|
2925
3054
|
* Direct URL to a GIF image.
|
|
2926
3055
|
*/
|
|
@@ -3118,6 +3247,10 @@ interface DivGifImageProps {
|
|
|
3118
3247
|
* Parameters when focusing on an element or losing focus.
|
|
3119
3248
|
*/
|
|
3120
3249
|
focus?: Type<IDivFocus>;
|
|
3250
|
+
/**
|
|
3251
|
+
* Custom functions.
|
|
3252
|
+
*/
|
|
3253
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3121
3254
|
/**
|
|
3122
3255
|
* Direct URL to a GIF image.
|
|
3123
3256
|
*/
|
|
@@ -3319,6 +3452,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
3319
3452
|
* Parameters when focusing on an element or losing focus.
|
|
3320
3453
|
*/
|
|
3321
3454
|
focus?: Type<IDivFocus>;
|
|
3455
|
+
/**
|
|
3456
|
+
* Custom functions.
|
|
3457
|
+
*/
|
|
3458
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3322
3459
|
/**
|
|
3323
3460
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3324
3461
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3497,6 +3634,10 @@ interface DivGridProps {
|
|
|
3497
3634
|
* Parameters when focusing on an element or losing focus.
|
|
3498
3635
|
*/
|
|
3499
3636
|
focus?: Type<IDivFocus>;
|
|
3637
|
+
/**
|
|
3638
|
+
* Custom functions.
|
|
3639
|
+
*/
|
|
3640
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3500
3641
|
/**
|
|
3501
3642
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3502
3643
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3689,6 +3830,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3689
3830
|
* Parameters when focusing on an element or losing focus.
|
|
3690
3831
|
*/
|
|
3691
3832
|
focus?: Type<IDivFocus>;
|
|
3833
|
+
/**
|
|
3834
|
+
* Custom functions.
|
|
3835
|
+
*/
|
|
3836
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3692
3837
|
/**
|
|
3693
3838
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3694
3839
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -3908,6 +4053,10 @@ interface DivImageProps {
|
|
|
3908
4053
|
* Parameters when focusing on an element or losing focus.
|
|
3909
4054
|
*/
|
|
3910
4055
|
focus?: Type<IDivFocus>;
|
|
4056
|
+
/**
|
|
4057
|
+
* Custom functions.
|
|
4058
|
+
*/
|
|
4059
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3911
4060
|
/**
|
|
3912
4061
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3913
4062
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4183,6 +4332,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
4183
4332
|
* Parameters when focusing on an element or losing focus.
|
|
4184
4333
|
*/
|
|
4185
4334
|
focus?: Type<IDivFocus>;
|
|
4335
|
+
/**
|
|
4336
|
+
* Custom functions.
|
|
4337
|
+
*/
|
|
4338
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4186
4339
|
/**
|
|
4187
4340
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4188
4341
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4385,6 +4538,10 @@ interface DivIndicatorProps {
|
|
|
4385
4538
|
* Parameters when focusing on an element or losing focus.
|
|
4386
4539
|
*/
|
|
4387
4540
|
focus?: Type<IDivFocus>;
|
|
4541
|
+
/**
|
|
4542
|
+
* Custom functions.
|
|
4543
|
+
*/
|
|
4544
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4388
4545
|
/**
|
|
4389
4546
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4390
4547
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4617,6 +4774,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
4617
4774
|
* Style. Numeric value.
|
|
4618
4775
|
*/
|
|
4619
4776
|
font_weight_value?: Type<number | DivExpression>;
|
|
4777
|
+
/**
|
|
4778
|
+
* Custom functions.
|
|
4779
|
+
*/
|
|
4780
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4620
4781
|
/**
|
|
4621
4782
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4622
4783
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -4857,6 +5018,10 @@ interface DivInputProps {
|
|
|
4857
5018
|
* Style. Numeric value.
|
|
4858
5019
|
*/
|
|
4859
5020
|
font_weight_value?: Type<number | DivExpression>;
|
|
5021
|
+
/**
|
|
5022
|
+
* Custom functions.
|
|
5023
|
+
*/
|
|
5024
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4860
5025
|
/**
|
|
4861
5026
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4862
5027
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -5635,6 +5800,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
5635
5800
|
* Parameters when focusing on an element or losing focus.
|
|
5636
5801
|
*/
|
|
5637
5802
|
focus?: Type<IDivFocus>;
|
|
5803
|
+
/**
|
|
5804
|
+
* Custom functions.
|
|
5805
|
+
*/
|
|
5806
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5638
5807
|
/**
|
|
5639
5808
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5640
5809
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -5822,6 +5991,10 @@ interface DivPagerProps {
|
|
|
5822
5991
|
* Parameters when focusing on an element or losing focus.
|
|
5823
5992
|
*/
|
|
5824
5993
|
focus?: Type<IDivFocus>;
|
|
5994
|
+
/**
|
|
5995
|
+
* Custom functions.
|
|
5996
|
+
*/
|
|
5997
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5825
5998
|
/**
|
|
5826
5999
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5827
6000
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6400,6 +6573,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
6400
6573
|
* Style. Numeric value.
|
|
6401
6574
|
*/
|
|
6402
6575
|
font_weight_value?: Type<number | DivExpression>;
|
|
6576
|
+
/**
|
|
6577
|
+
* Custom functions.
|
|
6578
|
+
*/
|
|
6579
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6403
6580
|
/**
|
|
6404
6581
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6405
6582
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6588,6 +6765,10 @@ interface DivSelectProps {
|
|
|
6588
6765
|
* Style. Numeric value.
|
|
6589
6766
|
*/
|
|
6590
6767
|
font_weight_value?: Type<number | DivExpression>;
|
|
6768
|
+
/**
|
|
6769
|
+
* Custom functions.
|
|
6770
|
+
*/
|
|
6771
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6591
6772
|
/**
|
|
6592
6773
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6593
6774
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6792,6 +6973,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
6792
6973
|
* Parameters when focusing on an element or losing focus.
|
|
6793
6974
|
*/
|
|
6794
6975
|
focus?: Type<IDivFocus>;
|
|
6976
|
+
/**
|
|
6977
|
+
* Custom functions.
|
|
6978
|
+
*/
|
|
6979
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6795
6980
|
/**
|
|
6796
6981
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6797
6982
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -6958,6 +7143,10 @@ interface DivSeparatorProps {
|
|
|
6958
7143
|
* Parameters when focusing on an element or losing focus.
|
|
6959
7144
|
*/
|
|
6960
7145
|
focus?: Type<IDivFocus>;
|
|
7146
|
+
/**
|
|
7147
|
+
* Custom functions.
|
|
7148
|
+
*/
|
|
7149
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6961
7150
|
/**
|
|
6962
7151
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6963
7152
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7286,6 +7475,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
7286
7475
|
* Parameters when focusing on an element or losing focus.
|
|
7287
7476
|
*/
|
|
7288
7477
|
focus?: Type<IDivFocus>;
|
|
7478
|
+
/**
|
|
7479
|
+
* Custom functions.
|
|
7480
|
+
*/
|
|
7481
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7289
7482
|
/**
|
|
7290
7483
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7291
7484
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7482,6 +7675,10 @@ interface DivSliderProps {
|
|
|
7482
7675
|
* Parameters when focusing on an element or losing focus.
|
|
7483
7676
|
*/
|
|
7484
7677
|
focus?: Type<IDivFocus>;
|
|
7678
|
+
/**
|
|
7679
|
+
* Custom functions.
|
|
7680
|
+
*/
|
|
7681
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7485
7682
|
/**
|
|
7486
7683
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7487
7684
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7758,6 +7955,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
7758
7955
|
* Parameters when focusing on an element or losing focus.
|
|
7759
7956
|
*/
|
|
7760
7957
|
focus?: Type<IDivFocus>;
|
|
7958
|
+
/**
|
|
7959
|
+
* Custom functions.
|
|
7960
|
+
*/
|
|
7961
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7761
7962
|
/**
|
|
7762
7963
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7763
7964
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -7926,6 +8127,10 @@ interface DivStateProps {
|
|
|
7926
8127
|
* Parameters when focusing on an element or losing focus.
|
|
7927
8128
|
*/
|
|
7928
8129
|
focus?: Type<IDivFocus>;
|
|
8130
|
+
/**
|
|
8131
|
+
* Custom functions.
|
|
8132
|
+
*/
|
|
8133
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7929
8134
|
/**
|
|
7930
8135
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7931
8136
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -8163,6 +8368,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
8163
8368
|
* Parameters when focusing on an element or losing focus.
|
|
8164
8369
|
*/
|
|
8165
8370
|
focus?: Type<IDivFocus>;
|
|
8371
|
+
/**
|
|
8372
|
+
* Custom functions.
|
|
8373
|
+
*/
|
|
8374
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8166
8375
|
/**
|
|
8167
8376
|
* A separating line between tabs and contents.
|
|
8168
8377
|
*/
|
|
@@ -8355,6 +8564,10 @@ interface DivTabsProps {
|
|
|
8355
8564
|
* Parameters when focusing on an element or losing focus.
|
|
8356
8565
|
*/
|
|
8357
8566
|
focus?: Type<IDivFocus>;
|
|
8567
|
+
/**
|
|
8568
|
+
* Custom functions.
|
|
8569
|
+
*/
|
|
8570
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8358
8571
|
/**
|
|
8359
8572
|
* A separating line between tabs and contents.
|
|
8360
8573
|
*/
|
|
@@ -8718,6 +8931,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
8718
8931
|
* Style. Numeric value.
|
|
8719
8932
|
*/
|
|
8720
8933
|
font_weight_value?: Type<number | DivExpression>;
|
|
8934
|
+
/**
|
|
8935
|
+
* Custom functions.
|
|
8936
|
+
*/
|
|
8937
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8721
8938
|
/**
|
|
8722
8939
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8723
8940
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -8982,6 +9199,10 @@ interface DivTextProps {
|
|
|
8982
9199
|
* Style. Numeric value.
|
|
8983
9200
|
*/
|
|
8984
9201
|
font_weight_value?: Type<number | DivExpression>;
|
|
9202
|
+
/**
|
|
9203
|
+
* Custom functions.
|
|
9204
|
+
*/
|
|
9205
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8985
9206
|
/**
|
|
8986
9207
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8987
9208
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -9540,6 +9761,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
9540
9761
|
* Parameters when focusing on an element or losing focus.
|
|
9541
9762
|
*/
|
|
9542
9763
|
focus?: Type<IDivFocus>;
|
|
9764
|
+
/**
|
|
9765
|
+
* Custom functions.
|
|
9766
|
+
*/
|
|
9767
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9543
9768
|
/**
|
|
9544
9769
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
9545
9770
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -9741,6 +9966,10 @@ interface DivVideoProps {
|
|
|
9741
9966
|
* Parameters when focusing on an element or losing focus.
|
|
9742
9967
|
*/
|
|
9743
9968
|
focus?: Type<IDivFocus>;
|
|
9969
|
+
/**
|
|
9970
|
+
* Custom functions.
|
|
9971
|
+
*/
|
|
9972
|
+
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9744
9973
|
/**
|
|
9745
9974
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
9746
9975
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
@@ -10338,4 +10567,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
10338
10567
|
};
|
|
10339
10568
|
};
|
|
10340
10569
|
|
|
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 };
|
|
10570
|
+
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, 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 };
|
package/dist/jsonbuilder.js
CHANGED
|
@@ -212,6 +212,29 @@ class DivActionFocusElement {
|
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
// Generated code. Do not modify.
|
|
216
|
+
/**
|
|
217
|
+
* Hides tooltip.
|
|
218
|
+
*/
|
|
219
|
+
class DivActionHideTooltip {
|
|
220
|
+
constructor(props) {
|
|
221
|
+
this.type = 'hide_tooltip';
|
|
222
|
+
this.id = props.id;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// Generated code. Do not modify.
|
|
227
|
+
/**
|
|
228
|
+
* Switches the appearance of content in `div-state`.
|
|
229
|
+
*/
|
|
230
|
+
class DivActionSetState {
|
|
231
|
+
constructor(props) {
|
|
232
|
+
this.type = 'set_state';
|
|
233
|
+
this.state_id = props.state_id;
|
|
234
|
+
this.temporary = props.temporary;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
215
238
|
// Generated code. Do not modify.
|
|
216
239
|
/**
|
|
217
240
|
* Assigns a value to the variable
|
|
@@ -368,6 +391,7 @@ class DivContainer {
|
|
|
368
391
|
this.doubletap_actions = props === null || props === void 0 ? void 0 : props.doubletap_actions;
|
|
369
392
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
370
393
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
394
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
371
395
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
372
396
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
373
397
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
@@ -431,6 +455,7 @@ class DivCustom {
|
|
|
431
455
|
this.disappear_actions = props.disappear_actions;
|
|
432
456
|
this.extensions = props.extensions;
|
|
433
457
|
this.focus = props.focus;
|
|
458
|
+
this.functions = props.functions;
|
|
434
459
|
this.height = props.height;
|
|
435
460
|
this.id = props.id;
|
|
436
461
|
this.items = props.items;
|
|
@@ -549,6 +574,7 @@ class DivGallery {
|
|
|
549
574
|
this.disappear_actions = props === null || props === void 0 ? void 0 : props.disappear_actions;
|
|
550
575
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
551
576
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
577
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
552
578
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
553
579
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
554
580
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
@@ -604,6 +630,7 @@ class DivGifImage {
|
|
|
604
630
|
this.doubletap_actions = props.doubletap_actions;
|
|
605
631
|
this.extensions = props.extensions;
|
|
606
632
|
this.focus = props.focus;
|
|
633
|
+
this.functions = props.functions;
|
|
607
634
|
this.gif_url = props.gif_url;
|
|
608
635
|
this.height = props.height;
|
|
609
636
|
this.id = props.id;
|
|
@@ -658,6 +685,7 @@ class DivGrid {
|
|
|
658
685
|
this.doubletap_actions = props.doubletap_actions;
|
|
659
686
|
this.extensions = props.extensions;
|
|
660
687
|
this.focus = props.focus;
|
|
688
|
+
this.functions = props.functions;
|
|
661
689
|
this.height = props.height;
|
|
662
690
|
this.id = props.id;
|
|
663
691
|
this.items = props.items;
|
|
@@ -710,6 +738,7 @@ class DivImage {
|
|
|
710
738
|
this.extensions = props.extensions;
|
|
711
739
|
this.filters = props.filters;
|
|
712
740
|
this.focus = props.focus;
|
|
741
|
+
this.functions = props.functions;
|
|
713
742
|
this.height = props.height;
|
|
714
743
|
this.high_priority_preview_show = props.high_priority_preview_show;
|
|
715
744
|
this.id = props.id;
|
|
@@ -781,6 +810,7 @@ class DivIndicator {
|
|
|
781
810
|
this.disappear_actions = props === null || props === void 0 ? void 0 : props.disappear_actions;
|
|
782
811
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
783
812
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
813
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
784
814
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
785
815
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
786
816
|
this.inactive_item_color = props === null || props === void 0 ? void 0 : props.inactive_item_color;
|
|
@@ -847,6 +877,7 @@ class DivInput {
|
|
|
847
877
|
this.font_size_unit = props.font_size_unit;
|
|
848
878
|
this.font_weight = props.font_weight;
|
|
849
879
|
this.font_weight_value = props.font_weight_value;
|
|
880
|
+
this.functions = props.functions;
|
|
850
881
|
this.height = props.height;
|
|
851
882
|
this.highlight_color = props.highlight_color;
|
|
852
883
|
this.hint_color = props.hint_color;
|
|
@@ -1066,6 +1097,7 @@ class DivPager {
|
|
|
1066
1097
|
this.disappear_actions = props.disappear_actions;
|
|
1067
1098
|
this.extensions = props.extensions;
|
|
1068
1099
|
this.focus = props.focus;
|
|
1100
|
+
this.functions = props.functions;
|
|
1069
1101
|
this.height = props.height;
|
|
1070
1102
|
this.id = props.id;
|
|
1071
1103
|
this.infinite_scroll = props.infinite_scroll;
|
|
@@ -1244,6 +1276,7 @@ class DivSelect {
|
|
|
1244
1276
|
this.font_size_unit = props.font_size_unit;
|
|
1245
1277
|
this.font_weight = props.font_weight;
|
|
1246
1278
|
this.font_weight_value = props.font_weight_value;
|
|
1279
|
+
this.functions = props.functions;
|
|
1247
1280
|
this.height = props.height;
|
|
1248
1281
|
this.hint_color = props.hint_color;
|
|
1249
1282
|
this.hint_text = props.hint_text;
|
|
@@ -1297,6 +1330,7 @@ class DivSeparator {
|
|
|
1297
1330
|
this.doubletap_actions = props === null || props === void 0 ? void 0 : props.doubletap_actions;
|
|
1298
1331
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
1299
1332
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
1333
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
1300
1334
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
1301
1335
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
1302
1336
|
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
@@ -1367,6 +1401,7 @@ class DivSlider {
|
|
|
1367
1401
|
this.disappear_actions = props.disappear_actions;
|
|
1368
1402
|
this.extensions = props.extensions;
|
|
1369
1403
|
this.focus = props.focus;
|
|
1404
|
+
this.functions = props.functions;
|
|
1370
1405
|
this.height = props.height;
|
|
1371
1406
|
this.id = props.id;
|
|
1372
1407
|
this.layout_provider = props.layout_provider;
|
|
@@ -1435,6 +1470,7 @@ class DivState {
|
|
|
1435
1470
|
this.div_id = props.div_id;
|
|
1436
1471
|
this.extensions = props.extensions;
|
|
1437
1472
|
this.focus = props.focus;
|
|
1473
|
+
this.functions = props.functions;
|
|
1438
1474
|
this.height = props.height;
|
|
1439
1475
|
this.id = props.id;
|
|
1440
1476
|
this.layout_provider = props.layout_provider;
|
|
@@ -1493,6 +1529,7 @@ class DivTabs {
|
|
|
1493
1529
|
this.dynamic_height = props.dynamic_height;
|
|
1494
1530
|
this.extensions = props.extensions;
|
|
1495
1531
|
this.focus = props.focus;
|
|
1532
|
+
this.functions = props.functions;
|
|
1496
1533
|
this.has_separator = props.has_separator;
|
|
1497
1534
|
this.height = props.height;
|
|
1498
1535
|
this.id = props.id;
|
|
@@ -1557,6 +1594,7 @@ class DivText {
|
|
|
1557
1594
|
this.font_size_unit = props.font_size_unit;
|
|
1558
1595
|
this.font_weight = props.font_weight;
|
|
1559
1596
|
this.font_weight_value = props.font_weight_value;
|
|
1597
|
+
this.functions = props.functions;
|
|
1560
1598
|
this.height = props.height;
|
|
1561
1599
|
this.id = props.id;
|
|
1562
1600
|
this.images = props.images;
|
|
@@ -1621,6 +1659,7 @@ class DivVideo {
|
|
|
1621
1659
|
this.extensions = props.extensions;
|
|
1622
1660
|
this.fatal_actions = props.fatal_actions;
|
|
1623
1661
|
this.focus = props.focus;
|
|
1662
|
+
this.functions = props.functions;
|
|
1624
1663
|
this.height = props.height;
|
|
1625
1664
|
this.id = props.id;
|
|
1626
1665
|
this.layout_provider = props.layout_provider;
|
|
@@ -2162,6 +2201,8 @@ exports.DivActionClearFocus = DivActionClearFocus;
|
|
|
2162
2201
|
exports.DivActionCopyToClipboard = DivActionCopyToClipboard;
|
|
2163
2202
|
exports.DivActionDictSetValue = DivActionDictSetValue;
|
|
2164
2203
|
exports.DivActionFocusElement = DivActionFocusElement;
|
|
2204
|
+
exports.DivActionHideTooltip = DivActionHideTooltip;
|
|
2205
|
+
exports.DivActionSetState = DivActionSetState;
|
|
2165
2206
|
exports.DivActionSetVariable = DivActionSetVariable;
|
|
2166
2207
|
exports.DivActionShowTooltip = DivActionShowTooltip;
|
|
2167
2208
|
exports.DivActionTimer = DivActionTimer;
|