@divkitframework/jsonbuilder 30.10.0 → 30.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -648,6 +648,11 @@ interface IDivBase {
648
648
  * Internal margins from the element stroke.
649
649
  */
650
650
  paddings?: Type<IDivEdgeInsets>;
651
+ /**
652
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
653
+ * blocks](../../reuse/reuse.md)
654
+ */
655
+ reuse_id?: Type<string | DivExpression>;
651
656
  /**
652
657
  * Merges cells in a string of the [grid](div-grid.md) element.
653
658
  */
@@ -1026,6 +1031,11 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1026
1031
  * Internal margins from the element stroke.
1027
1032
  */
1028
1033
  paddings?: Type<IDivEdgeInsets>;
1034
+ /**
1035
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
1036
+ * blocks](../../reuse/reuse.md)
1037
+ */
1038
+ reuse_id?: Type<string | DivExpression>;
1029
1039
  /**
1030
1040
  * Merges cells in a string of the [grid](div-grid.md) element.
1031
1041
  */
@@ -1230,6 +1240,11 @@ interface DivContainerPropsBase {
1230
1240
  * Internal margins from the element stroke.
1231
1241
  */
1232
1242
  paddings?: Type<IDivEdgeInsets>;
1243
+ /**
1244
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
1245
+ * blocks](../../reuse/reuse.md)
1246
+ */
1247
+ reuse_id?: Type<string | DivExpression>;
1233
1248
  /**
1234
1249
  * Merges cells in a string of the [grid](div-grid.md) element.
1235
1250
  */
@@ -1477,6 +1492,11 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1477
1492
  * Internal margins from the element stroke.
1478
1493
  */
1479
1494
  paddings?: Type<IDivEdgeInsets>;
1495
+ /**
1496
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
1497
+ * blocks](../../reuse/reuse.md)
1498
+ */
1499
+ reuse_id?: Type<string | DivExpression>;
1480
1500
  /**
1481
1501
  * Merges cells in a string of the [grid](div-grid.md) element.
1482
1502
  */
@@ -1616,6 +1636,11 @@ interface DivCustomProps {
1616
1636
  * Internal margins from the element stroke.
1617
1637
  */
1618
1638
  paddings?: Type<IDivEdgeInsets>;
1639
+ /**
1640
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
1641
+ * blocks](../../reuse/reuse.md)
1642
+ */
1643
+ reuse_id?: Type<string | DivExpression>;
1619
1644
  /**
1620
1645
  * Merges cells in a string of the [grid](div-grid.md) element.
1621
1646
  */
@@ -2146,6 +2171,11 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
2146
2171
  * element.
2147
2172
  */
2148
2173
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
2174
+ /**
2175
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
2176
+ * blocks](../../reuse/reuse.md)
2177
+ */
2178
+ reuse_id?: Type<string | DivExpression>;
2149
2179
  /**
2150
2180
  * Merges cells in a string of the [grid](div-grid.md) element.
2151
2181
  */
@@ -2336,6 +2366,11 @@ interface DivGalleryProps {
2336
2366
  * element.
2337
2367
  */
2338
2368
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
2369
+ /**
2370
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
2371
+ * blocks](../../reuse/reuse.md)
2372
+ */
2373
+ reuse_id?: Type<string | DivExpression>;
2339
2374
  /**
2340
2375
  * Merges cells in a string of the [grid](div-grid.md) element.
2341
2376
  */
@@ -2535,6 +2570,11 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
2535
2570
  * image is loaded. Format `data url`: `data:[;base64],<data>`
2536
2571
  */
2537
2572
  preview?: Type<string | DivExpression>;
2573
+ /**
2574
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
2575
+ * blocks](../../reuse/reuse.md)
2576
+ */
2577
+ reuse_id?: Type<string | DivExpression>;
2538
2578
  /**
2539
2579
  * Merges cells in a string of the [grid](div-grid.md) element.
2540
2580
  */
@@ -2719,6 +2759,11 @@ interface DivGifImageProps {
2719
2759
  * image is loaded. Format `data url`: `data:[;base64],<data>`
2720
2760
  */
2721
2761
  preview?: Type<string | DivExpression>;
2762
+ /**
2763
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
2764
+ * blocks](../../reuse/reuse.md)
2765
+ */
2766
+ reuse_id?: Type<string | DivExpression>;
2722
2767
  /**
2723
2768
  * Merges cells in a string of the [grid](div-grid.md) element.
2724
2769
  */
@@ -2894,6 +2939,11 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2894
2939
  * Internal margins from the element stroke.
2895
2940
  */
2896
2941
  paddings?: Type<IDivEdgeInsets>;
2942
+ /**
2943
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
2944
+ * blocks](../../reuse/reuse.md)
2945
+ */
2946
+ reuse_id?: Type<string | DivExpression>;
2897
2947
  /**
2898
2948
  * Merges cells in a string of the [grid](div-grid.md) element.
2899
2949
  */
@@ -3059,6 +3109,11 @@ interface DivGridProps {
3059
3109
  * Internal margins from the element stroke.
3060
3110
  */
3061
3111
  paddings?: Type<IDivEdgeInsets>;
3112
+ /**
3113
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
3114
+ * blocks](../../reuse/reuse.md)
3115
+ */
3116
+ reuse_id?: Type<string | DivExpression>;
3062
3117
  /**
3063
3118
  * Merges cells in a string of the [grid](div-grid.md) element.
3064
3119
  */
@@ -3257,6 +3312,11 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
3257
3312
  * image is loaded. Format `data url`: `data:[;base64],<data>`
3258
3313
  */
3259
3314
  preview?: Type<string | DivExpression>;
3315
+ /**
3316
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
3317
+ * blocks](../../reuse/reuse.md)
3318
+ */
3319
+ reuse_id?: Type<string | DivExpression>;
3260
3320
  /**
3261
3321
  * Merges cells in a string of the [grid](div-grid.md) element.
3262
3322
  */
@@ -3463,6 +3523,11 @@ interface DivImageProps {
3463
3523
  * image is loaded. Format `data url`: `data:[;base64],<data>`
3464
3524
  */
3465
3525
  preview?: Type<string | DivExpression>;
3526
+ /**
3527
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
3528
+ * blocks](../../reuse/reuse.md)
3529
+ */
3530
+ reuse_id?: Type<string | DivExpression>;
3466
3531
  /**
3467
3532
  * Merges cells in a string of the [grid](div-grid.md) element.
3468
3533
  */
@@ -3727,6 +3792,11 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3727
3792
  * ID of the pager that is a data source for an indicator.
3728
3793
  */
3729
3794
  pager_id?: Type<string>;
3795
+ /**
3796
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
3797
+ * blocks](../../reuse/reuse.md)
3798
+ */
3799
+ reuse_id?: Type<string | DivExpression>;
3730
3800
  /**
3731
3801
  * Merges cells in a string of the [grid](div-grid.md) element.
3732
3802
  */
@@ -3916,6 +3986,11 @@ interface DivIndicatorProps {
3916
3986
  * ID of the pager that is a data source for an indicator.
3917
3987
  */
3918
3988
  pager_id?: Type<string>;
3989
+ /**
3990
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
3991
+ * blocks](../../reuse/reuse.md)
3992
+ */
3993
+ reuse_id?: Type<string | DivExpression>;
3919
3994
  /**
3920
3995
  * Merges cells in a string of the [grid](div-grid.md) element.
3921
3996
  */
@@ -4142,6 +4217,11 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
4142
4217
  * Internal margins from the element stroke.
4143
4218
  */
4144
4219
  paddings?: Type<IDivEdgeInsets>;
4220
+ /**
4221
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
4222
+ * blocks](../../reuse/reuse.md)
4223
+ */
4224
+ reuse_id?: Type<string | DivExpression>;
4145
4225
  /**
4146
4226
  * Merges cells in a string of the [grid](div-grid.md) element.
4147
4227
  */
@@ -4361,6 +4441,11 @@ interface DivInputProps {
4361
4441
  * Internal margins from the element stroke.
4362
4442
  */
4363
4443
  paddings?: Type<IDivEdgeInsets>;
4444
+ /**
4445
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
4446
+ * blocks](../../reuse/reuse.md)
4447
+ */
4448
+ reuse_id?: Type<string | DivExpression>;
4364
4449
  /**
4365
4450
  * Merges cells in a string of the [grid](div-grid.md) element.
4366
4451
  */
@@ -4578,11 +4663,11 @@ interface IDivLayoutProvider {
4578
4663
  /**
4579
4664
  * Variable name to store element height.
4580
4665
  */
4581
- height_variable_name?: Type<string | DivExpression>;
4666
+ height_variable_name?: Type<string>;
4582
4667
  /**
4583
4668
  * Variable name to store element width.
4584
4669
  */
4585
- width_variable_name?: Type<string | DivExpression>;
4670
+ width_variable_name?: Type<string>;
4586
4671
  }
4587
4672
 
4588
4673
  declare type DivLineStyle = 'none' | 'single';
@@ -4976,6 +5061,11 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
4976
5061
  * element.
4977
5062
  */
4978
5063
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
5064
+ /**
5065
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
5066
+ * blocks](../../reuse/reuse.md)
5067
+ */
5068
+ reuse_id?: Type<string | DivExpression>;
4979
5069
  /**
4980
5070
  * Merges cells in a string of the [grid](div-grid.md) element.
4981
5071
  */
@@ -5150,6 +5240,11 @@ interface DivPagerProps {
5150
5240
  * element.
5151
5241
  */
5152
5242
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
5243
+ /**
5244
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
5245
+ * blocks](../../reuse/reuse.md)
5246
+ */
5247
+ reuse_id?: Type<string | DivExpression>;
5153
5248
  /**
5154
5249
  * Merges cells in a string of the [grid](div-grid.md) element.
5155
5250
  */
@@ -5229,6 +5324,14 @@ interface IDivPatch {
5229
5324
  * there are errors, they are reported.
5230
5325
  */
5231
5326
  mode?: DivPatchMode | DivExpression;
5327
+ /**
5328
+ * Actions after applying patch.
5329
+ */
5330
+ on_applied_actions?: NonEmptyArray<IDivAction>;
5331
+ /**
5332
+ * Actions after an error applying patch in transactional mode.
5333
+ */
5334
+ on_failed_actions?: NonEmptyArray<IDivAction>;
5232
5335
  }
5233
5336
  declare type DivPatchMode = 'transactional' | 'partial';
5234
5337
  interface IDivPatchChange {
@@ -5681,6 +5784,11 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
5681
5784
  * Internal margins from the element stroke.
5682
5785
  */
5683
5786
  paddings?: Type<IDivEdgeInsets>;
5787
+ /**
5788
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
5789
+ * blocks](../../reuse/reuse.md)
5790
+ */
5791
+ reuse_id?: Type<string | DivExpression>;
5684
5792
  /**
5685
5793
  * Merges cells in a string of the [grid](div-grid.md) element.
5686
5794
  */
@@ -5856,6 +5964,11 @@ interface DivSelectProps {
5856
5964
  * Internal margins from the element stroke.
5857
5965
  */
5858
5966
  paddings?: Type<IDivEdgeInsets>;
5967
+ /**
5968
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
5969
+ * blocks](../../reuse/reuse.md)
5970
+ */
5971
+ reuse_id?: Type<string | DivExpression>;
5859
5972
  /**
5860
5973
  * Merges cells in a string of the [grid](div-grid.md) element.
5861
5974
  */
@@ -6035,6 +6148,11 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
6035
6148
  * Internal margins from the element stroke.
6036
6149
  */
6037
6150
  paddings?: Type<IDivEdgeInsets>;
6151
+ /**
6152
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
6153
+ * blocks](../../reuse/reuse.md)
6154
+ */
6155
+ reuse_id?: Type<string | DivExpression>;
6038
6156
  /**
6039
6157
  * Merges cells in a string of the [grid](div-grid.md) element.
6040
6158
  */
@@ -6188,6 +6306,11 @@ interface DivSeparatorProps {
6188
6306
  * Internal margins from the element stroke.
6189
6307
  */
6190
6308
  paddings?: Type<IDivEdgeInsets>;
6309
+ /**
6310
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
6311
+ * blocks](../../reuse/reuse.md)
6312
+ */
6313
+ reuse_id?: Type<string | DivExpression>;
6191
6314
  /**
6192
6315
  * Merges cells in a string of the [grid](div-grid.md) element.
6193
6316
  */
@@ -6510,6 +6633,11 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
6510
6633
  * Section style.
6511
6634
  */
6512
6635
  ranges?: Type<NonEmptyArray<IDivSliderRange>>;
6636
+ /**
6637
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
6638
+ * blocks](../../reuse/reuse.md)
6639
+ */
6640
+ reuse_id?: Type<string | DivExpression>;
6513
6641
  /**
6514
6642
  * Merges cells in a string of the [grid](div-grid.md) element.
6515
6643
  */
@@ -6693,6 +6821,11 @@ interface DivSliderProps {
6693
6821
  * Section style.
6694
6822
  */
6695
6823
  ranges?: Type<NonEmptyArray<IDivSliderRange>>;
6824
+ /**
6825
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
6826
+ * blocks](../../reuse/reuse.md)
6827
+ */
6828
+ reuse_id?: Type<string | DivExpression>;
6696
6829
  /**
6697
6830
  * Merges cells in a string of the [grid](div-grid.md) element.
6698
6831
  */
@@ -6944,6 +7077,11 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
6944
7077
  * Internal margins from the element stroke.
6945
7078
  */
6946
7079
  paddings?: Type<IDivEdgeInsets>;
7080
+ /**
7081
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
7082
+ * blocks](../../reuse/reuse.md)
7083
+ */
7084
+ reuse_id?: Type<string | DivExpression>;
6947
7085
  /**
6948
7086
  * Merges cells in a string of the [grid](div-grid.md) element.
6949
7087
  */
@@ -7099,6 +7237,11 @@ interface DivStateProps {
7099
7237
  * Internal margins from the element stroke.
7100
7238
  */
7101
7239
  paddings?: Type<IDivEdgeInsets>;
7240
+ /**
7241
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
7242
+ * blocks](../../reuse/reuse.md)
7243
+ */
7244
+ reuse_id?: Type<string | DivExpression>;
7102
7245
  /**
7103
7246
  * Merges cells in a string of the [grid](div-grid.md) element.
7104
7247
  */
@@ -7343,6 +7486,11 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
7343
7486
  * If the parameter is enabled, tabs won't transmit the scroll gesture to the parent element.
7344
7487
  */
7345
7488
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
7489
+ /**
7490
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
7491
+ * blocks](../../reuse/reuse.md)
7492
+ */
7493
+ reuse_id?: Type<string | DivExpression>;
7346
7494
  /**
7347
7495
  * Merges cells in a string of the [grid](div-grid.md) element.
7348
7496
  */
@@ -7522,6 +7670,11 @@ interface DivTabsProps {
7522
7670
  * If the parameter is enabled, tabs won't transmit the scroll gesture to the parent element.
7523
7671
  */
7524
7672
  restrict_parent_scroll?: Type<IntBoolean | DivExpression>;
7673
+ /**
7674
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
7675
+ * blocks](../../reuse/reuse.md)
7676
+ */
7677
+ reuse_id?: Type<string | DivExpression>;
7525
7678
  /**
7526
7679
  * Merges cells in a string of the [grid](div-grid.md) element.
7527
7680
  */
@@ -7882,6 +8035,11 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
7882
8035
  * `start` and `end` fields.
7883
8036
  */
7884
8037
  ranges?: Type<NonEmptyArray<IDivTextRange>>;
8038
+ /**
8039
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
8040
+ * blocks](../../reuse/reuse.md)
8041
+ */
8042
+ reuse_id?: Type<string | DivExpression>;
7885
8043
  /**
7886
8044
  * Merges cells in a string of the [grid](div-grid.md) element.
7887
8045
  */
@@ -8133,6 +8291,11 @@ interface DivTextProps {
8133
8291
  * `start` and `end` fields.
8134
8292
  */
8135
8293
  ranges?: Type<NonEmptyArray<IDivTextRange>>;
8294
+ /**
8295
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
8296
+ * blocks](../../reuse/reuse.md)
8297
+ */
8298
+ reuse_id?: Type<string | DivExpression>;
8136
8299
  /**
8137
8300
  * Merges cells in a string of the [grid](div-grid.md) element.
8138
8301
  */
@@ -8654,6 +8817,11 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
8654
8817
  * Actions performed when video playback resumes.
8655
8818
  */
8656
8819
  resume_actions?: Type<NonEmptyArray<IDivAction>>;
8820
+ /**
8821
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
8822
+ * blocks](../../reuse/reuse.md)
8823
+ */
8824
+ reuse_id?: Type<string | DivExpression>;
8657
8825
  /**
8658
8826
  * Merges cells in a string of the [grid](div-grid.md) element.
8659
8827
  */
@@ -8842,6 +9010,11 @@ interface DivVideoProps {
8842
9010
  * Actions performed when video playback resumes.
8843
9011
  */
8844
9012
  resume_actions?: Type<NonEmptyArray<IDivAction>>;
9013
+ /**
9014
+ * Id for the div structure. Used for more optimal reuse of blocks. See [reusing
9015
+ * blocks](../../reuse/reuse.md)
9016
+ */
9017
+ reuse_id?: Type<string | DivExpression>;
8845
9018
  /**
8846
9019
  * Merges cells in a string of the [grid](div-grid.md) element.
8847
9020
  */
@@ -292,6 +292,7 @@ class DivContainer {
292
292
  this.margins = props === null || props === void 0 ? void 0 : props.margins;
293
293
  this.orientation = props === null || props === void 0 ? void 0 : props.orientation;
294
294
  this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
295
+ this.reuse_id = props === null || props === void 0 ? void 0 : props.reuse_id;
295
296
  this.row_span = props === null || props === void 0 ? void 0 : props.row_span;
296
297
  this.selected_actions = props === null || props === void 0 ? void 0 : props.selected_actions;
297
298
  this.separator = props === null || props === void 0 ? void 0 : props.separator;
@@ -347,6 +348,7 @@ class DivCustom {
347
348
  this.layout_provider = props.layout_provider;
348
349
  this.margins = props.margins;
349
350
  this.paddings = props.paddings;
351
+ this.reuse_id = props.reuse_id;
350
352
  this.row_span = props.row_span;
351
353
  this.selected_actions = props.selected_actions;
352
354
  this.tooltips = props.tooltips;
@@ -466,6 +468,7 @@ class DivGallery {
466
468
  this.orientation = props === null || props === void 0 ? void 0 : props.orientation;
467
469
  this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
468
470
  this.restrict_parent_scroll = props === null || props === void 0 ? void 0 : props.restrict_parent_scroll;
471
+ this.reuse_id = props === null || props === void 0 ? void 0 : props.reuse_id;
469
472
  this.row_span = props === null || props === void 0 ? void 0 : props.row_span;
470
473
  this.scroll_mode = props === null || props === void 0 ? void 0 : props.scroll_mode;
471
474
  this.scrollbar = props === null || props === void 0 ? void 0 : props.scrollbar;
@@ -518,6 +521,7 @@ class DivGifImage {
518
521
  this.placeholder_color = props.placeholder_color;
519
522
  this.preload_required = props.preload_required;
520
523
  this.preview = props.preview;
524
+ this.reuse_id = props.reuse_id;
521
525
  this.row_span = props.row_span;
522
526
  this.scale = props.scale;
523
527
  this.selected_actions = props.selected_actions;
@@ -566,6 +570,7 @@ class DivGrid {
566
570
  this.longtap_actions = props.longtap_actions;
567
571
  this.margins = props.margins;
568
572
  this.paddings = props.paddings;
573
+ this.reuse_id = props.reuse_id;
569
574
  this.row_span = props.row_span;
570
575
  this.selected_actions = props.selected_actions;
571
576
  this.tooltips = props.tooltips;
@@ -619,6 +624,7 @@ class DivImage {
619
624
  this.placeholder_color = props.placeholder_color;
620
625
  this.preload_required = props.preload_required;
621
626
  this.preview = props.preview;
627
+ this.reuse_id = props.reuse_id;
622
628
  this.row_span = props.row_span;
623
629
  this.scale = props.scale;
624
630
  this.selected_actions = props.selected_actions;
@@ -687,6 +693,7 @@ class DivIndicator {
687
693
  this.minimum_item_size = props === null || props === void 0 ? void 0 : props.minimum_item_size;
688
694
  this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
689
695
  this.pager_id = props === null || props === void 0 ? void 0 : props.pager_id;
696
+ this.reuse_id = props === null || props === void 0 ? void 0 : props.reuse_id;
690
697
  this.row_span = props === null || props === void 0 ? void 0 : props.row_span;
691
698
  this.selected_actions = props === null || props === void 0 ? void 0 : props.selected_actions;
692
699
  this.shape = props === null || props === void 0 ? void 0 : props.shape;
@@ -753,6 +760,7 @@ class DivInput {
753
760
  this.max_visible_lines = props.max_visible_lines;
754
761
  this.native_interface = props.native_interface;
755
762
  this.paddings = props.paddings;
763
+ this.reuse_id = props.reuse_id;
756
764
  this.row_span = props.row_span;
757
765
  this.select_all_on_focus = props.select_all_on_focus;
758
766
  this.selected_actions = props.selected_actions;
@@ -923,6 +931,7 @@ class DivPager {
923
931
  this.paddings = props.paddings;
924
932
  this.page_transformation = props.page_transformation;
925
933
  this.restrict_parent_scroll = props.restrict_parent_scroll;
934
+ this.reuse_id = props.reuse_id;
926
935
  this.row_span = props.row_span;
927
936
  this.selected_actions = props.selected_actions;
928
937
  this.tooltips = props.tooltips;
@@ -1095,6 +1104,7 @@ class DivSelect {
1095
1104
  this.margins = props.margins;
1096
1105
  this.options = props.options;
1097
1106
  this.paddings = props.paddings;
1107
+ this.reuse_id = props.reuse_id;
1098
1108
  this.row_span = props.row_span;
1099
1109
  this.selected_actions = props.selected_actions;
1100
1110
  this.text_color = props.text_color;
@@ -1141,6 +1151,7 @@ class DivSeparator {
1141
1151
  this.longtap_actions = props === null || props === void 0 ? void 0 : props.longtap_actions;
1142
1152
  this.margins = props === null || props === void 0 ? void 0 : props.margins;
1143
1153
  this.paddings = props === null || props === void 0 ? void 0 : props.paddings;
1154
+ this.reuse_id = props === null || props === void 0 ? void 0 : props.reuse_id;
1144
1155
  this.row_span = props === null || props === void 0 ? void 0 : props.row_span;
1145
1156
  this.selected_actions = props === null || props === void 0 ? void 0 : props.selected_actions;
1146
1157
  this.tooltips = props === null || props === void 0 ? void 0 : props.tooltips;
@@ -1210,6 +1221,7 @@ class DivSlider {
1210
1221
  this.min_value = props.min_value;
1211
1222
  this.paddings = props.paddings;
1212
1223
  this.ranges = props.ranges;
1224
+ this.reuse_id = props.reuse_id;
1213
1225
  this.row_span = props.row_span;
1214
1226
  this.secondary_value_accessibility = props.secondary_value_accessibility;
1215
1227
  this.selected_actions = props.selected_actions;
@@ -1272,6 +1284,7 @@ class DivState {
1272
1284
  this.layout_provider = props.layout_provider;
1273
1285
  this.margins = props.margins;
1274
1286
  this.paddings = props.paddings;
1287
+ this.reuse_id = props.reuse_id;
1275
1288
  this.row_span = props.row_span;
1276
1289
  this.selected_actions = props.selected_actions;
1277
1290
  this.state_id_variable = props.state_id_variable;
@@ -1330,6 +1343,7 @@ class DivTabs {
1330
1343
  this.margins = props.margins;
1331
1344
  this.paddings = props.paddings;
1332
1345
  this.restrict_parent_scroll = props.restrict_parent_scroll;
1346
+ this.reuse_id = props.reuse_id;
1333
1347
  this.row_span = props.row_span;
1334
1348
  this.selected_actions = props.selected_actions;
1335
1349
  this.selected_tab = props.selected_tab;
@@ -1395,6 +1409,7 @@ class DivText {
1395
1409
  this.min_hidden_lines = props.min_hidden_lines;
1396
1410
  this.paddings = props.paddings;
1397
1411
  this.ranges = props.ranges;
1412
+ this.reuse_id = props.reuse_id;
1398
1413
  this.row_span = props.row_span;
1399
1414
  this.selectable = props.selectable;
1400
1415
  this.selected_actions = props.selected_actions;
@@ -1456,6 +1471,7 @@ class DivVideo {
1456
1471
  this.preview = props.preview;
1457
1472
  this.repeatable = props.repeatable;
1458
1473
  this.resume_actions = props.resume_actions;
1474
+ this.reuse_id = props.reuse_id;
1459
1475
  this.row_span = props.row_span;
1460
1476
  this.scale = props.scale;
1461
1477
  this.selected_actions = props.selected_actions;