@divkitframework/jsonbuilder 30.7.0 → 30.9.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 +17 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +145 -2
- package/dist/jsonbuilder.js +17 -1
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -428,7 +428,7 @@ interface DivActionArraySetValueProps {
|
|
|
428
428
|
}
|
|
429
429
|
|
|
430
430
|
/**
|
|
431
|
-
* Removes focus from
|
|
431
|
+
* Removes focus from an element.
|
|
432
432
|
*/
|
|
433
433
|
declare class DivActionClearFocus<T extends DivActionClearFocusProps = DivActionClearFocusProps> {
|
|
434
434
|
readonly _props?: Exact<DivActionClearFocusProps, T>;
|
|
@@ -636,6 +636,10 @@ interface IDivBase {
|
|
|
636
636
|
* on iOS.
|
|
637
637
|
*/
|
|
638
638
|
id?: Type<string>;
|
|
639
|
+
/**
|
|
640
|
+
* Provides element real size values after a layout cycle.
|
|
641
|
+
*/
|
|
642
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
639
643
|
/**
|
|
640
644
|
* External margins from the element stroke.
|
|
641
645
|
*/
|
|
@@ -994,6 +998,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
994
998
|
* axis with the size value `match_parent` are ignored.
|
|
995
999
|
*/
|
|
996
1000
|
layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
|
|
1001
|
+
/**
|
|
1002
|
+
* Provides element real size values after a layout cycle.
|
|
1003
|
+
*/
|
|
1004
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
997
1005
|
/**
|
|
998
1006
|
* Separator between elements along the cross axis. Not used if the `layout_mode` parameter is
|
|
999
1007
|
* set to `no_wrap`. Only new browsers are supported on the web (the `gap` property must be
|
|
@@ -1194,6 +1202,10 @@ interface DivContainerPropsBase {
|
|
|
1194
1202
|
* axis with the size value `match_parent` are ignored.
|
|
1195
1203
|
*/
|
|
1196
1204
|
layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
|
|
1205
|
+
/**
|
|
1206
|
+
* Provides element real size values after a layout cycle.
|
|
1207
|
+
*/
|
|
1208
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
1197
1209
|
/**
|
|
1198
1210
|
* Separator between elements along the cross axis. Not used if the `layout_mode` parameter is
|
|
1199
1211
|
* set to `no_wrap`. Only new browsers are supported on the web (the `gap` property must be
|
|
@@ -1453,6 +1465,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1453
1465
|
* Nested elements.
|
|
1454
1466
|
*/
|
|
1455
1467
|
items?: Type<NonEmptyArray<Div>>;
|
|
1468
|
+
/**
|
|
1469
|
+
* Provides element real size values after a layout cycle.
|
|
1470
|
+
*/
|
|
1471
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
1456
1472
|
/**
|
|
1457
1473
|
* External margins from the element stroke.
|
|
1458
1474
|
*/
|
|
@@ -1588,6 +1604,10 @@ interface DivCustomProps {
|
|
|
1588
1604
|
* Nested elements.
|
|
1589
1605
|
*/
|
|
1590
1606
|
items?: Type<NonEmptyArray<Div>>;
|
|
1607
|
+
/**
|
|
1608
|
+
* Provides element real size values after a layout cycle.
|
|
1609
|
+
*/
|
|
1610
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
1591
1611
|
/**
|
|
1592
1612
|
* External margins from the element stroke.
|
|
1593
1613
|
*/
|
|
@@ -2105,6 +2125,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2105
2125
|
* element.</p><p>By default, `clamp`.
|
|
2106
2126
|
*/
|
|
2107
2127
|
items?: Type<NonEmptyArray<Div>>;
|
|
2128
|
+
/**
|
|
2129
|
+
* Provides element real size values after a layout cycle.
|
|
2130
|
+
*/
|
|
2131
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
2108
2132
|
/**
|
|
2109
2133
|
* External margins from the element stroke.
|
|
2110
2134
|
*/
|
|
@@ -2291,6 +2315,10 @@ interface DivGalleryProps {
|
|
|
2291
2315
|
* element.</p><p>By default, `clamp`.
|
|
2292
2316
|
*/
|
|
2293
2317
|
items?: Type<NonEmptyArray<Div>>;
|
|
2318
|
+
/**
|
|
2319
|
+
* Provides element real size values after a layout cycle.
|
|
2320
|
+
*/
|
|
2321
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
2294
2322
|
/**
|
|
2295
2323
|
* External margins from the element stroke.
|
|
2296
2324
|
*/
|
|
@@ -2477,6 +2505,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2477
2505
|
* on iOS.
|
|
2478
2506
|
*/
|
|
2479
2507
|
id?: Type<string>;
|
|
2508
|
+
/**
|
|
2509
|
+
* Provides element real size values after a layout cycle.
|
|
2510
|
+
*/
|
|
2511
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
2480
2512
|
/**
|
|
2481
2513
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
2482
2514
|
* gestures.
|
|
@@ -2657,6 +2689,10 @@ interface DivGifImageProps {
|
|
|
2657
2689
|
* on iOS.
|
|
2658
2690
|
*/
|
|
2659
2691
|
id?: Type<string>;
|
|
2692
|
+
/**
|
|
2693
|
+
* Provides element real size values after a layout cycle.
|
|
2694
|
+
*/
|
|
2695
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
2660
2696
|
/**
|
|
2661
2697
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
2662
2698
|
* gestures.
|
|
@@ -2841,6 +2877,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2841
2877
|
* Contents.
|
|
2842
2878
|
*/
|
|
2843
2879
|
items?: Type<NonEmptyArray<Div>>;
|
|
2880
|
+
/**
|
|
2881
|
+
* Provides element real size values after a layout cycle.
|
|
2882
|
+
*/
|
|
2883
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
2844
2884
|
/**
|
|
2845
2885
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
2846
2886
|
* gestures.
|
|
@@ -3002,6 +3042,10 @@ interface DivGridProps {
|
|
|
3002
3042
|
* Contents.
|
|
3003
3043
|
*/
|
|
3004
3044
|
items?: Type<NonEmptyArray<Div>>;
|
|
3045
|
+
/**
|
|
3046
|
+
* Provides element real size values after a layout cycle.
|
|
3047
|
+
*/
|
|
3048
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
3005
3049
|
/**
|
|
3006
3050
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
3007
3051
|
* gestures.
|
|
@@ -3183,6 +3227,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3183
3227
|
* Direct URL to an image.
|
|
3184
3228
|
*/
|
|
3185
3229
|
image_url: Type<string | DivExpression>;
|
|
3230
|
+
/**
|
|
3231
|
+
* Provides element real size values after a layout cycle.
|
|
3232
|
+
*/
|
|
3233
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
3186
3234
|
/**
|
|
3187
3235
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
3188
3236
|
* gestures.
|
|
@@ -3385,6 +3433,10 @@ interface DivImageProps {
|
|
|
3385
3433
|
* Direct URL to an image.
|
|
3386
3434
|
*/
|
|
3387
3435
|
image_url: Type<string | DivExpression>;
|
|
3436
|
+
/**
|
|
3437
|
+
* Provides element real size values after a layout cycle.
|
|
3438
|
+
*/
|
|
3439
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
3388
3440
|
/**
|
|
3389
3441
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
3390
3442
|
* gestures.
|
|
@@ -3652,6 +3704,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3652
3704
|
* parameters.Stretch: Indicators are expanded to fill the entire width.
|
|
3653
3705
|
*/
|
|
3654
3706
|
items_placement?: Type<DivIndicatorItemPlacement>;
|
|
3707
|
+
/**
|
|
3708
|
+
* Provides element real size values after a layout cycle.
|
|
3709
|
+
*/
|
|
3710
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
3655
3711
|
/**
|
|
3656
3712
|
* External margins from the element stroke.
|
|
3657
3713
|
*/
|
|
@@ -3837,6 +3893,10 @@ interface DivIndicatorProps {
|
|
|
3837
3893
|
* parameters.Stretch: Indicators are expanded to fill the entire width.
|
|
3838
3894
|
*/
|
|
3839
3895
|
items_placement?: Type<DivIndicatorItemPlacement>;
|
|
3896
|
+
/**
|
|
3897
|
+
* Provides element real size values after a layout cycle.
|
|
3898
|
+
*/
|
|
3899
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
3840
3900
|
/**
|
|
3841
3901
|
* External margins from the element stroke.
|
|
3842
3902
|
*/
|
|
@@ -4046,6 +4106,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
4046
4106
|
* Keyboard type.
|
|
4047
4107
|
*/
|
|
4048
4108
|
keyboard_type?: Type<DivInputKeyboardType | DivExpression>;
|
|
4109
|
+
/**
|
|
4110
|
+
* Provides element real size values after a layout cycle.
|
|
4111
|
+
*/
|
|
4112
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
4049
4113
|
/**
|
|
4050
4114
|
* Spacing between characters.
|
|
4051
4115
|
*/
|
|
@@ -4261,6 +4325,10 @@ interface DivInputProps {
|
|
|
4261
4325
|
* Keyboard type.
|
|
4262
4326
|
*/
|
|
4263
4327
|
keyboard_type?: Type<DivInputKeyboardType | DivExpression>;
|
|
4328
|
+
/**
|
|
4329
|
+
* Provides element real size values after a layout cycle.
|
|
4330
|
+
*/
|
|
4331
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
4264
4332
|
/**
|
|
4265
4333
|
* Spacing between characters.
|
|
4266
4334
|
*/
|
|
@@ -4506,6 +4574,17 @@ interface DivInputValidatorRegexProps {
|
|
|
4506
4574
|
variable: Type<string>;
|
|
4507
4575
|
}
|
|
4508
4576
|
|
|
4577
|
+
interface IDivLayoutProvider {
|
|
4578
|
+
/**
|
|
4579
|
+
* Variable name to store element height.
|
|
4580
|
+
*/
|
|
4581
|
+
height_variable_name?: Type<string | DivExpression>;
|
|
4582
|
+
/**
|
|
4583
|
+
* Variable name to store element width.
|
|
4584
|
+
*/
|
|
4585
|
+
width_variable_name?: Type<string | DivExpression>;
|
|
4586
|
+
}
|
|
4587
|
+
|
|
4509
4588
|
declare type DivLineStyle = 'none' | 'single';
|
|
4510
4589
|
|
|
4511
4590
|
/**
|
|
@@ -4872,6 +4951,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4872
4951
|
* `neighbour_page_width`;`percentage` — from the percentage value `page_width`.
|
|
4873
4952
|
*/
|
|
4874
4953
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
4954
|
+
/**
|
|
4955
|
+
* Provides element real size values after a layout cycle.
|
|
4956
|
+
*/
|
|
4957
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
4875
4958
|
/**
|
|
4876
4959
|
* External margins from the element stroke.
|
|
4877
4960
|
*/
|
|
@@ -5042,6 +5125,10 @@ interface DivPagerProps {
|
|
|
5042
5125
|
* `neighbour_page_width`;`percentage` — from the percentage value `page_width`.
|
|
5043
5126
|
*/
|
|
5044
5127
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
5128
|
+
/**
|
|
5129
|
+
* Provides element real size values after a layout cycle.
|
|
5130
|
+
*/
|
|
5131
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
5045
5132
|
/**
|
|
5046
5133
|
* External margins from the element stroke.
|
|
5047
5134
|
*/
|
|
@@ -5573,6 +5660,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5573
5660
|
* on iOS.
|
|
5574
5661
|
*/
|
|
5575
5662
|
id?: Type<string>;
|
|
5663
|
+
/**
|
|
5664
|
+
* Provides element real size values after a layout cycle.
|
|
5665
|
+
*/
|
|
5666
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
5576
5667
|
/**
|
|
5577
5668
|
* Spacing between characters.
|
|
5578
5669
|
*/
|
|
@@ -5744,6 +5835,10 @@ interface DivSelectProps {
|
|
|
5744
5835
|
* on iOS.
|
|
5745
5836
|
*/
|
|
5746
5837
|
id?: Type<string>;
|
|
5838
|
+
/**
|
|
5839
|
+
* Provides element real size values after a layout cycle.
|
|
5840
|
+
*/
|
|
5841
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
5747
5842
|
/**
|
|
5748
5843
|
* Spacing between characters.
|
|
5749
5844
|
*/
|
|
@@ -5923,6 +6018,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5923
6018
|
* on iOS.
|
|
5924
6019
|
*/
|
|
5925
6020
|
id?: Type<string>;
|
|
6021
|
+
/**
|
|
6022
|
+
* Provides element real size values after a layout cycle.
|
|
6023
|
+
*/
|
|
6024
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
5926
6025
|
/**
|
|
5927
6026
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
5928
6027
|
* gestures.
|
|
@@ -6072,6 +6171,10 @@ interface DivSeparatorProps {
|
|
|
6072
6171
|
* on iOS.
|
|
6073
6172
|
*/
|
|
6074
6173
|
id?: Type<string>;
|
|
6174
|
+
/**
|
|
6175
|
+
* Provides element real size values after a layout cycle.
|
|
6176
|
+
*/
|
|
6177
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
6075
6178
|
/**
|
|
6076
6179
|
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
6077
6180
|
* gestures.
|
|
@@ -6383,6 +6486,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6383
6486
|
* on iOS.
|
|
6384
6487
|
*/
|
|
6385
6488
|
id?: Type<string>;
|
|
6489
|
+
/**
|
|
6490
|
+
* Provides element real size values after a layout cycle.
|
|
6491
|
+
*/
|
|
6492
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
6386
6493
|
/**
|
|
6387
6494
|
* External margins from the element stroke.
|
|
6388
6495
|
*/
|
|
@@ -6562,6 +6669,10 @@ interface DivSliderProps {
|
|
|
6562
6669
|
* on iOS.
|
|
6563
6670
|
*/
|
|
6564
6671
|
id?: Type<string>;
|
|
6672
|
+
/**
|
|
6673
|
+
* Provides element real size values after a layout cycle.
|
|
6674
|
+
*/
|
|
6675
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
6565
6676
|
/**
|
|
6566
6677
|
* External margins from the element stroke.
|
|
6567
6678
|
*/
|
|
@@ -6821,6 +6932,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6821
6932
|
* on iOS.
|
|
6822
6933
|
*/
|
|
6823
6934
|
id?: Type<string>;
|
|
6935
|
+
/**
|
|
6936
|
+
* Provides element real size values after a layout cycle.
|
|
6937
|
+
*/
|
|
6938
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
6824
6939
|
/**
|
|
6825
6940
|
* External margins from the element stroke.
|
|
6826
6941
|
*/
|
|
@@ -6972,6 +7087,10 @@ interface DivStateProps {
|
|
|
6972
7087
|
* on iOS.
|
|
6973
7088
|
*/
|
|
6974
7089
|
id?: Type<string>;
|
|
7090
|
+
/**
|
|
7091
|
+
* Provides element real size values after a layout cycle.
|
|
7092
|
+
*/
|
|
7093
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
6975
7094
|
/**
|
|
6976
7095
|
* External margins from the element stroke.
|
|
6977
7096
|
*/
|
|
@@ -7208,6 +7327,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
7208
7327
|
* end, depending on the current element.</p><p>By default, `clamp`.
|
|
7209
7328
|
*/
|
|
7210
7329
|
items: Type<NonEmptyArray<IDivTabsItem>>;
|
|
7330
|
+
/**
|
|
7331
|
+
* Provides element real size values after a layout cycle.
|
|
7332
|
+
*/
|
|
7333
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
7211
7334
|
/**
|
|
7212
7335
|
* External margins from the element stroke.
|
|
7213
7336
|
*/
|
|
@@ -7383,6 +7506,10 @@ interface DivTabsProps {
|
|
|
7383
7506
|
* end, depending on the current element.</p><p>By default, `clamp`.
|
|
7384
7507
|
*/
|
|
7385
7508
|
items: Type<NonEmptyArray<IDivTabsItem>>;
|
|
7509
|
+
/**
|
|
7510
|
+
* Provides element real size values after a layout cycle.
|
|
7511
|
+
*/
|
|
7512
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
7386
7513
|
/**
|
|
7387
7514
|
* External margins from the element stroke.
|
|
7388
7515
|
*/
|
|
@@ -7717,6 +7844,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7717
7844
|
* Images embedded in text.
|
|
7718
7845
|
*/
|
|
7719
7846
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
7847
|
+
/**
|
|
7848
|
+
* Provides element real size values after a layout cycle.
|
|
7849
|
+
*/
|
|
7850
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
7720
7851
|
/**
|
|
7721
7852
|
* Spacing between characters.
|
|
7722
7853
|
*/
|
|
@@ -7964,6 +8095,10 @@ interface DivTextProps {
|
|
|
7964
8095
|
* Images embedded in text.
|
|
7965
8096
|
*/
|
|
7966
8097
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
8098
|
+
/**
|
|
8099
|
+
* Provides element real size values after a layout cycle.
|
|
8100
|
+
*/
|
|
8101
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
7967
8102
|
/**
|
|
7968
8103
|
* Spacing between characters.
|
|
7969
8104
|
*/
|
|
@@ -8478,6 +8613,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8478
8613
|
* on iOS.
|
|
8479
8614
|
*/
|
|
8480
8615
|
id?: Type<string>;
|
|
8616
|
+
/**
|
|
8617
|
+
* Provides element real size values after a layout cycle.
|
|
8618
|
+
*/
|
|
8619
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
8481
8620
|
/**
|
|
8482
8621
|
* External margins from the element stroke.
|
|
8483
8622
|
*/
|
|
@@ -8662,6 +8801,10 @@ interface DivVideoProps {
|
|
|
8662
8801
|
* on iOS.
|
|
8663
8802
|
*/
|
|
8664
8803
|
id?: Type<string>;
|
|
8804
|
+
/**
|
|
8805
|
+
* Provides element real size values after a layout cycle.
|
|
8806
|
+
*/
|
|
8807
|
+
layout_provider?: Type<IDivLayoutProvider>;
|
|
8665
8808
|
/**
|
|
8666
8809
|
* External margins from the element stroke.
|
|
8667
8810
|
*/
|
|
@@ -9235,4 +9378,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
9235
9378
|
};
|
|
9236
9379
|
};
|
|
9237
9380
|
|
|
9238
|
-
export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, 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, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, 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, 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, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, 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, 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 };
|
|
9381
|
+
export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, 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, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, 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, 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, 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, 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
|
@@ -140,7 +140,7 @@ class DivActionArraySetValue {
|
|
|
140
140
|
|
|
141
141
|
// Generated code. Do not modify.
|
|
142
142
|
/**
|
|
143
|
-
* Removes focus from
|
|
143
|
+
* Removes focus from an element.
|
|
144
144
|
*/
|
|
145
145
|
class DivActionClearFocus {
|
|
146
146
|
constructor(props) {
|
|
@@ -286,6 +286,7 @@ class DivContainer {
|
|
|
286
286
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
287
287
|
this.items = props === null || props === void 0 ? void 0 : props.items;
|
|
288
288
|
this.layout_mode = props === null || props === void 0 ? void 0 : props.layout_mode;
|
|
289
|
+
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
289
290
|
this.line_separator = props === null || props === void 0 ? void 0 : props.line_separator;
|
|
290
291
|
this.longtap_actions = props === null || props === void 0 ? void 0 : props.longtap_actions;
|
|
291
292
|
this.margins = props === null || props === void 0 ? void 0 : props.margins;
|
|
@@ -343,6 +344,7 @@ class DivCustom {
|
|
|
343
344
|
this.height = props.height;
|
|
344
345
|
this.id = props.id;
|
|
345
346
|
this.items = props.items;
|
|
347
|
+
this.layout_provider = props.layout_provider;
|
|
346
348
|
this.margins = props.margins;
|
|
347
349
|
this.paddings = props.paddings;
|
|
348
350
|
this.row_span = props.row_span;
|
|
@@ -459,6 +461,7 @@ class DivGallery {
|
|
|
459
461
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
460
462
|
this.item_spacing = props === null || props === void 0 ? void 0 : props.item_spacing;
|
|
461
463
|
this.items = props === null || props === void 0 ? void 0 : props.items;
|
|
464
|
+
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
462
465
|
this.margins = props === null || props === void 0 ? void 0 : props.margins;
|
|
463
466
|
this.orientation = props === null || props === void 0 ? void 0 : props.orientation;
|
|
464
467
|
this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
|
|
@@ -508,6 +511,7 @@ class DivGifImage {
|
|
|
508
511
|
this.gif_url = props.gif_url;
|
|
509
512
|
this.height = props.height;
|
|
510
513
|
this.id = props.id;
|
|
514
|
+
this.layout_provider = props.layout_provider;
|
|
511
515
|
this.longtap_actions = props.longtap_actions;
|
|
512
516
|
this.margins = props.margins;
|
|
513
517
|
this.paddings = props.paddings;
|
|
@@ -558,6 +562,7 @@ class DivGrid {
|
|
|
558
562
|
this.height = props.height;
|
|
559
563
|
this.id = props.id;
|
|
560
564
|
this.items = props.items;
|
|
565
|
+
this.layout_provider = props.layout_provider;
|
|
561
566
|
this.longtap_actions = props.longtap_actions;
|
|
562
567
|
this.margins = props.margins;
|
|
563
568
|
this.paddings = props.paddings;
|
|
@@ -607,6 +612,7 @@ class DivImage {
|
|
|
607
612
|
this.high_priority_preview_show = props.high_priority_preview_show;
|
|
608
613
|
this.id = props.id;
|
|
609
614
|
this.image_url = props.image_url;
|
|
615
|
+
this.layout_provider = props.layout_provider;
|
|
610
616
|
this.longtap_actions = props.longtap_actions;
|
|
611
617
|
this.margins = props.margins;
|
|
612
618
|
this.paddings = props.paddings;
|
|
@@ -676,6 +682,7 @@ class DivIndicator {
|
|
|
676
682
|
this.inactive_minimum_shape = props === null || props === void 0 ? void 0 : props.inactive_minimum_shape;
|
|
677
683
|
this.inactive_shape = props === null || props === void 0 ? void 0 : props.inactive_shape;
|
|
678
684
|
this.items_placement = props === null || props === void 0 ? void 0 : props.items_placement;
|
|
685
|
+
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
679
686
|
this.margins = props === null || props === void 0 ? void 0 : props.margins;
|
|
680
687
|
this.minimum_item_size = props === null || props === void 0 ? void 0 : props.minimum_item_size;
|
|
681
688
|
this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
|
|
@@ -737,6 +744,7 @@ class DivInput {
|
|
|
737
744
|
this.id = props.id;
|
|
738
745
|
this.is_enabled = props.is_enabled;
|
|
739
746
|
this.keyboard_type = props.keyboard_type;
|
|
747
|
+
this.layout_provider = props.layout_provider;
|
|
740
748
|
this.letter_spacing = props.letter_spacing;
|
|
741
749
|
this.line_height = props.line_height;
|
|
742
750
|
this.margins = props.margins;
|
|
@@ -909,6 +917,7 @@ class DivPager {
|
|
|
909
917
|
this.item_spacing = props.item_spacing;
|
|
910
918
|
this.items = props.items;
|
|
911
919
|
this.layout_mode = props.layout_mode;
|
|
920
|
+
this.layout_provider = props.layout_provider;
|
|
912
921
|
this.margins = props.margins;
|
|
913
922
|
this.orientation = props.orientation;
|
|
914
923
|
this.paddings = props.paddings;
|
|
@@ -1080,6 +1089,7 @@ class DivSelect {
|
|
|
1080
1089
|
this.hint_color = props.hint_color;
|
|
1081
1090
|
this.hint_text = props.hint_text;
|
|
1082
1091
|
this.id = props.id;
|
|
1092
|
+
this.layout_provider = props.layout_provider;
|
|
1083
1093
|
this.letter_spacing = props.letter_spacing;
|
|
1084
1094
|
this.line_height = props.line_height;
|
|
1085
1095
|
this.margins = props.margins;
|
|
@@ -1127,6 +1137,7 @@ class DivSeparator {
|
|
|
1127
1137
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
1128
1138
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
1129
1139
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
1140
|
+
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
1130
1141
|
this.longtap_actions = props === null || props === void 0 ? void 0 : props.longtap_actions;
|
|
1131
1142
|
this.margins = props === null || props === void 0 ? void 0 : props.margins;
|
|
1132
1143
|
this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
|
|
@@ -1193,6 +1204,7 @@ class DivSlider {
|
|
|
1193
1204
|
this.focus = props.focus;
|
|
1194
1205
|
this.height = props.height;
|
|
1195
1206
|
this.id = props.id;
|
|
1207
|
+
this.layout_provider = props.layout_provider;
|
|
1196
1208
|
this.margins = props.margins;
|
|
1197
1209
|
this.max_value = props.max_value;
|
|
1198
1210
|
this.min_value = props.min_value;
|
|
@@ -1257,6 +1269,7 @@ class DivState {
|
|
|
1257
1269
|
this.focus = props.focus;
|
|
1258
1270
|
this.height = props.height;
|
|
1259
1271
|
this.id = props.id;
|
|
1272
|
+
this.layout_provider = props.layout_provider;
|
|
1260
1273
|
this.margins = props.margins;
|
|
1261
1274
|
this.paddings = props.paddings;
|
|
1262
1275
|
this.row_span = props.row_span;
|
|
@@ -1313,6 +1326,7 @@ class DivTabs {
|
|
|
1313
1326
|
this.height = props.height;
|
|
1314
1327
|
this.id = props.id;
|
|
1315
1328
|
this.items = props.items;
|
|
1329
|
+
this.layout_provider = props.layout_provider;
|
|
1316
1330
|
this.margins = props.margins;
|
|
1317
1331
|
this.paddings = props.paddings;
|
|
1318
1332
|
this.restrict_parent_scroll = props.restrict_parent_scroll;
|
|
@@ -1372,6 +1386,7 @@ class DivText {
|
|
|
1372
1386
|
this.height = props.height;
|
|
1373
1387
|
this.id = props.id;
|
|
1374
1388
|
this.images = props.images;
|
|
1389
|
+
this.layout_provider = props.layout_provider;
|
|
1375
1390
|
this.letter_spacing = props.letter_spacing;
|
|
1376
1391
|
this.line_height = props.line_height;
|
|
1377
1392
|
this.longtap_actions = props.longtap_actions;
|
|
@@ -1431,6 +1446,7 @@ class DivVideo {
|
|
|
1431
1446
|
this.focus = props.focus;
|
|
1432
1447
|
this.height = props.height;
|
|
1433
1448
|
this.id = props.id;
|
|
1449
|
+
this.layout_provider = props.layout_provider;
|
|
1434
1450
|
this.margins = props.margins;
|
|
1435
1451
|
this.muted = props.muted;
|
|
1436
1452
|
this.paddings = props.paddings;
|