@divkitframework/jsonbuilder 30.16.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 +163 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +806 -2
- package/dist/jsonbuilder.js +171 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/es/jsonbuilder.js
CHANGED
|
@@ -96,6 +96,35 @@ class DictVariable {
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
// Generated code. Do not modify.
|
|
100
|
+
/**
|
|
101
|
+
* Starts specified animator
|
|
102
|
+
*/
|
|
103
|
+
class DivActionAnimatorStart {
|
|
104
|
+
constructor(props) {
|
|
105
|
+
this.type = 'animator_start';
|
|
106
|
+
this.animator_id = props.animator_id;
|
|
107
|
+
this.direction = props.direction;
|
|
108
|
+
this.duration = props.duration;
|
|
109
|
+
this.end_value = props.end_value;
|
|
110
|
+
this.interpolator = props.interpolator;
|
|
111
|
+
this.repeat_count = props.repeat_count;
|
|
112
|
+
this.start_delay = props.start_delay;
|
|
113
|
+
this.start_value = props.start_value;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// Generated code. Do not modify.
|
|
118
|
+
/**
|
|
119
|
+
* Stops specified animator
|
|
120
|
+
*/
|
|
121
|
+
class DivActionAnimatorStop {
|
|
122
|
+
constructor(props) {
|
|
123
|
+
this.type = 'animator_stop';
|
|
124
|
+
this.animator_id = props.animator_id;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
99
128
|
// Generated code. Do not modify.
|
|
100
129
|
/**
|
|
101
130
|
* Adds a value to the array
|
|
@@ -179,6 +208,29 @@ class DivActionFocusElement {
|
|
|
179
208
|
}
|
|
180
209
|
}
|
|
181
210
|
|
|
211
|
+
// Generated code. Do not modify.
|
|
212
|
+
/**
|
|
213
|
+
* Hides tooltip.
|
|
214
|
+
*/
|
|
215
|
+
class DivActionHideTooltip {
|
|
216
|
+
constructor(props) {
|
|
217
|
+
this.type = 'hide_tooltip';
|
|
218
|
+
this.id = props.id;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// Generated code. Do not modify.
|
|
223
|
+
/**
|
|
224
|
+
* Switches the appearance of content in `div-state`.
|
|
225
|
+
*/
|
|
226
|
+
class DivActionSetState {
|
|
227
|
+
constructor(props) {
|
|
228
|
+
this.type = 'set_state';
|
|
229
|
+
this.state_id = props.state_id;
|
|
230
|
+
this.temporary = props.temporary;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
182
234
|
// Generated code. Do not modify.
|
|
183
235
|
/**
|
|
184
236
|
* Assigns a value to the variable
|
|
@@ -191,6 +243,42 @@ class DivActionSetVariable {
|
|
|
191
243
|
}
|
|
192
244
|
}
|
|
193
245
|
|
|
246
|
+
// Generated code. Do not modify.
|
|
247
|
+
/**
|
|
248
|
+
* Shows tooltip.
|
|
249
|
+
*/
|
|
250
|
+
class DivActionShowTooltip {
|
|
251
|
+
constructor(props) {
|
|
252
|
+
this.type = 'show_tooltip';
|
|
253
|
+
this.id = props.id;
|
|
254
|
+
this.multiple = props.multiple;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Generated code. Do not modify.
|
|
259
|
+
/**
|
|
260
|
+
* Controls the timer.
|
|
261
|
+
*/
|
|
262
|
+
class DivActionTimer {
|
|
263
|
+
constructor(props) {
|
|
264
|
+
this.type = 'timer';
|
|
265
|
+
this.action = props.action;
|
|
266
|
+
this.id = props.id;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// Generated code. Do not modify.
|
|
271
|
+
/**
|
|
272
|
+
* Controls given video.
|
|
273
|
+
*/
|
|
274
|
+
class DivActionVideo {
|
|
275
|
+
constructor(props) {
|
|
276
|
+
this.type = 'video';
|
|
277
|
+
this.action = props.action;
|
|
278
|
+
this.id = props.id;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
194
282
|
// Generated code. Do not modify.
|
|
195
283
|
/**
|
|
196
284
|
* A set of animations to be applied simultaneously.
|
|
@@ -250,6 +338,27 @@ class DivCircleShape {
|
|
|
250
338
|
}
|
|
251
339
|
}
|
|
252
340
|
|
|
341
|
+
// Generated code. Do not modify.
|
|
342
|
+
/**
|
|
343
|
+
* Color animator.
|
|
344
|
+
*/
|
|
345
|
+
class DivColorAnimator {
|
|
346
|
+
constructor(props) {
|
|
347
|
+
this.type = 'color_animator';
|
|
348
|
+
this.cancel_actions = props.cancel_actions;
|
|
349
|
+
this.direction = props.direction;
|
|
350
|
+
this.duration = props.duration;
|
|
351
|
+
this.end_actions = props.end_actions;
|
|
352
|
+
this.end_value = props.end_value;
|
|
353
|
+
this.id = props.id;
|
|
354
|
+
this.interpolator = props.interpolator;
|
|
355
|
+
this.repeat_count = props.repeat_count;
|
|
356
|
+
this.start_delay = props.start_delay;
|
|
357
|
+
this.start_value = props.start_value;
|
|
358
|
+
this.variable_name = props.variable_name;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
253
362
|
// Generated code. Do not modify.
|
|
254
363
|
/**
|
|
255
364
|
* Container. It contains other elements and is responsible for their location. It is used to
|
|
@@ -266,6 +375,7 @@ class DivContainer {
|
|
|
266
375
|
this.alignment_horizontal = props === null || props === void 0 ? void 0 : props.alignment_horizontal;
|
|
267
376
|
this.alignment_vertical = props === null || props === void 0 ? void 0 : props.alignment_vertical;
|
|
268
377
|
this.alpha = props === null || props === void 0 ? void 0 : props.alpha;
|
|
378
|
+
this.animators = props === null || props === void 0 ? void 0 : props.animators;
|
|
269
379
|
this.aspect = props === null || props === void 0 ? void 0 : props.aspect;
|
|
270
380
|
this.background = props === null || props === void 0 ? void 0 : props.background;
|
|
271
381
|
this.border = props === null || props === void 0 ? void 0 : props.border;
|
|
@@ -277,6 +387,7 @@ class DivContainer {
|
|
|
277
387
|
this.doubletap_actions = props === null || props === void 0 ? void 0 : props.doubletap_actions;
|
|
278
388
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
279
389
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
390
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
280
391
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
281
392
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
282
393
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
@@ -331,6 +442,7 @@ class DivCustom {
|
|
|
331
442
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
332
443
|
this.alignment_vertical = props.alignment_vertical;
|
|
333
444
|
this.alpha = props.alpha;
|
|
445
|
+
this.animators = props.animators;
|
|
334
446
|
this.background = props.background;
|
|
335
447
|
this.border = props.border;
|
|
336
448
|
this.column_span = props.column_span;
|
|
@@ -339,6 +451,7 @@ class DivCustom {
|
|
|
339
451
|
this.disappear_actions = props.disappear_actions;
|
|
340
452
|
this.extensions = props.extensions;
|
|
341
453
|
this.focus = props.focus;
|
|
454
|
+
this.functions = props.functions;
|
|
342
455
|
this.height = props.height;
|
|
343
456
|
this.id = props.id;
|
|
344
457
|
this.items = props.items;
|
|
@@ -446,6 +559,7 @@ class DivGallery {
|
|
|
446
559
|
this.alignment_horizontal = props === null || props === void 0 ? void 0 : props.alignment_horizontal;
|
|
447
560
|
this.alignment_vertical = props === null || props === void 0 ? void 0 : props.alignment_vertical;
|
|
448
561
|
this.alpha = props === null || props === void 0 ? void 0 : props.alpha;
|
|
562
|
+
this.animators = props === null || props === void 0 ? void 0 : props.animators;
|
|
449
563
|
this.background = props === null || props === void 0 ? void 0 : props.background;
|
|
450
564
|
this.border = props === null || props === void 0 ? void 0 : props.border;
|
|
451
565
|
this.column_count = props === null || props === void 0 ? void 0 : props.column_count;
|
|
@@ -456,6 +570,7 @@ class DivGallery {
|
|
|
456
570
|
this.disappear_actions = props === null || props === void 0 ? void 0 : props.disappear_actions;
|
|
457
571
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
458
572
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
573
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
459
574
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
460
575
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
461
576
|
this.item_builder = props === null || props === void 0 ? void 0 : props.item_builder;
|
|
@@ -500,6 +615,7 @@ class DivGifImage {
|
|
|
500
615
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
501
616
|
this.alignment_vertical = props.alignment_vertical;
|
|
502
617
|
this.alpha = props.alpha;
|
|
618
|
+
this.animators = props.animators;
|
|
503
619
|
this.aspect = props.aspect;
|
|
504
620
|
this.background = props.background;
|
|
505
621
|
this.border = props.border;
|
|
@@ -510,6 +626,7 @@ class DivGifImage {
|
|
|
510
626
|
this.doubletap_actions = props.doubletap_actions;
|
|
511
627
|
this.extensions = props.extensions;
|
|
512
628
|
this.focus = props.focus;
|
|
629
|
+
this.functions = props.functions;
|
|
513
630
|
this.gif_url = props.gif_url;
|
|
514
631
|
this.height = props.height;
|
|
515
632
|
this.id = props.id;
|
|
@@ -553,6 +670,7 @@ class DivGrid {
|
|
|
553
670
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
554
671
|
this.alignment_vertical = props.alignment_vertical;
|
|
555
672
|
this.alpha = props.alpha;
|
|
673
|
+
this.animators = props.animators;
|
|
556
674
|
this.background = props.background;
|
|
557
675
|
this.border = props.border;
|
|
558
676
|
this.column_count = props.column_count;
|
|
@@ -563,6 +681,7 @@ class DivGrid {
|
|
|
563
681
|
this.doubletap_actions = props.doubletap_actions;
|
|
564
682
|
this.extensions = props.extensions;
|
|
565
683
|
this.focus = props.focus;
|
|
684
|
+
this.functions = props.functions;
|
|
566
685
|
this.height = props.height;
|
|
567
686
|
this.id = props.id;
|
|
568
687
|
this.items = props.items;
|
|
@@ -602,6 +721,7 @@ class DivImage {
|
|
|
602
721
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
603
722
|
this.alignment_vertical = props.alignment_vertical;
|
|
604
723
|
this.alpha = props.alpha;
|
|
724
|
+
this.animators = props.animators;
|
|
605
725
|
this.appearance_animation = props.appearance_animation;
|
|
606
726
|
this.aspect = props.aspect;
|
|
607
727
|
this.background = props.background;
|
|
@@ -614,6 +734,7 @@ class DivImage {
|
|
|
614
734
|
this.extensions = props.extensions;
|
|
615
735
|
this.filters = props.filters;
|
|
616
736
|
this.focus = props.focus;
|
|
737
|
+
this.functions = props.functions;
|
|
617
738
|
this.height = props.height;
|
|
618
739
|
this.high_priority_preview_show = props.high_priority_preview_show;
|
|
619
740
|
this.id = props.id;
|
|
@@ -678,12 +799,14 @@ class DivIndicator {
|
|
|
678
799
|
this.alignment_vertical = props === null || props === void 0 ? void 0 : props.alignment_vertical;
|
|
679
800
|
this.alpha = props === null || props === void 0 ? void 0 : props.alpha;
|
|
680
801
|
this.animation = props === null || props === void 0 ? void 0 : props.animation;
|
|
802
|
+
this.animators = props === null || props === void 0 ? void 0 : props.animators;
|
|
681
803
|
this.background = props === null || props === void 0 ? void 0 : props.background;
|
|
682
804
|
this.border = props === null || props === void 0 ? void 0 : props.border;
|
|
683
805
|
this.column_span = props === null || props === void 0 ? void 0 : props.column_span;
|
|
684
806
|
this.disappear_actions = props === null || props === void 0 ? void 0 : props.disappear_actions;
|
|
685
807
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
686
808
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
809
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
687
810
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
688
811
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
689
812
|
this.inactive_item_color = props === null || props === void 0 ? void 0 : props.inactive_item_color;
|
|
@@ -736,6 +859,7 @@ class DivInput {
|
|
|
736
859
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
737
860
|
this.alignment_vertical = props.alignment_vertical;
|
|
738
861
|
this.alpha = props.alpha;
|
|
862
|
+
this.animators = props.animators;
|
|
739
863
|
this.autocapitalization = props.autocapitalization;
|
|
740
864
|
this.background = props.background;
|
|
741
865
|
this.border = props.border;
|
|
@@ -749,6 +873,7 @@ class DivInput {
|
|
|
749
873
|
this.font_size_unit = props.font_size_unit;
|
|
750
874
|
this.font_weight = props.font_weight;
|
|
751
875
|
this.font_weight_value = props.font_weight_value;
|
|
876
|
+
this.functions = props.functions;
|
|
752
877
|
this.height = props.height;
|
|
753
878
|
this.highlight_color = props.highlight_color;
|
|
754
879
|
this.hint_color = props.hint_color;
|
|
@@ -885,6 +1010,27 @@ class DivNinePatchBackground {
|
|
|
885
1010
|
}
|
|
886
1011
|
}
|
|
887
1012
|
|
|
1013
|
+
// Generated code. Do not modify.
|
|
1014
|
+
/**
|
|
1015
|
+
* Number animator.
|
|
1016
|
+
*/
|
|
1017
|
+
class DivNumberAnimator {
|
|
1018
|
+
constructor(props) {
|
|
1019
|
+
this.type = 'number_animator';
|
|
1020
|
+
this.cancel_actions = props.cancel_actions;
|
|
1021
|
+
this.direction = props.direction;
|
|
1022
|
+
this.duration = props.duration;
|
|
1023
|
+
this.end_actions = props.end_actions;
|
|
1024
|
+
this.end_value = props.end_value;
|
|
1025
|
+
this.id = props.id;
|
|
1026
|
+
this.interpolator = props.interpolator;
|
|
1027
|
+
this.repeat_count = props.repeat_count;
|
|
1028
|
+
this.start_delay = props.start_delay;
|
|
1029
|
+
this.start_value = props.start_value;
|
|
1030
|
+
this.variable_name = props.variable_name;
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
|
|
888
1034
|
// Generated code. Do not modify.
|
|
889
1035
|
/**
|
|
890
1036
|
* Page width (%).
|
|
@@ -939,6 +1085,7 @@ class DivPager {
|
|
|
939
1085
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
940
1086
|
this.alignment_vertical = props.alignment_vertical;
|
|
941
1087
|
this.alpha = props.alpha;
|
|
1088
|
+
this.animators = props.animators;
|
|
942
1089
|
this.background = props.background;
|
|
943
1090
|
this.border = props.border;
|
|
944
1091
|
this.column_span = props.column_span;
|
|
@@ -946,6 +1093,7 @@ class DivPager {
|
|
|
946
1093
|
this.disappear_actions = props.disappear_actions;
|
|
947
1094
|
this.extensions = props.extensions;
|
|
948
1095
|
this.focus = props.focus;
|
|
1096
|
+
this.functions = props.functions;
|
|
949
1097
|
this.height = props.height;
|
|
950
1098
|
this.id = props.id;
|
|
951
1099
|
this.infinite_scroll = props.infinite_scroll;
|
|
@@ -1112,6 +1260,7 @@ class DivSelect {
|
|
|
1112
1260
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1113
1261
|
this.alignment_vertical = props.alignment_vertical;
|
|
1114
1262
|
this.alpha = props.alpha;
|
|
1263
|
+
this.animators = props.animators;
|
|
1115
1264
|
this.background = props.background;
|
|
1116
1265
|
this.border = props.border;
|
|
1117
1266
|
this.column_span = props.column_span;
|
|
@@ -1123,6 +1272,7 @@ class DivSelect {
|
|
|
1123
1272
|
this.font_size_unit = props.font_size_unit;
|
|
1124
1273
|
this.font_weight = props.font_weight;
|
|
1125
1274
|
this.font_weight_value = props.font_weight_value;
|
|
1275
|
+
this.functions = props.functions;
|
|
1126
1276
|
this.height = props.height;
|
|
1127
1277
|
this.hint_color = props.hint_color;
|
|
1128
1278
|
this.hint_text = props.hint_text;
|
|
@@ -1167,6 +1317,7 @@ class DivSeparator {
|
|
|
1167
1317
|
this.alignment_horizontal = props === null || props === void 0 ? void 0 : props.alignment_horizontal;
|
|
1168
1318
|
this.alignment_vertical = props === null || props === void 0 ? void 0 : props.alignment_vertical;
|
|
1169
1319
|
this.alpha = props === null || props === void 0 ? void 0 : props.alpha;
|
|
1320
|
+
this.animators = props === null || props === void 0 ? void 0 : props.animators;
|
|
1170
1321
|
this.background = props === null || props === void 0 ? void 0 : props.background;
|
|
1171
1322
|
this.border = props === null || props === void 0 ? void 0 : props.border;
|
|
1172
1323
|
this.column_span = props === null || props === void 0 ? void 0 : props.column_span;
|
|
@@ -1175,6 +1326,7 @@ class DivSeparator {
|
|
|
1175
1326
|
this.doubletap_actions = props === null || props === void 0 ? void 0 : props.doubletap_actions;
|
|
1176
1327
|
this.extensions = props === null || props === void 0 ? void 0 : props.extensions;
|
|
1177
1328
|
this.focus = props === null || props === void 0 ? void 0 : props.focus;
|
|
1329
|
+
this.functions = props === null || props === void 0 ? void 0 : props.functions;
|
|
1178
1330
|
this.height = props === null || props === void 0 ? void 0 : props.height;
|
|
1179
1331
|
this.id = props === null || props === void 0 ? void 0 : props.id;
|
|
1180
1332
|
this.layout_provider = props === null || props === void 0 ? void 0 : props.layout_provider;
|
|
@@ -1238,12 +1390,14 @@ class DivSlider {
|
|
|
1238
1390
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1239
1391
|
this.alignment_vertical = props.alignment_vertical;
|
|
1240
1392
|
this.alpha = props.alpha;
|
|
1393
|
+
this.animators = props.animators;
|
|
1241
1394
|
this.background = props.background;
|
|
1242
1395
|
this.border = props.border;
|
|
1243
1396
|
this.column_span = props.column_span;
|
|
1244
1397
|
this.disappear_actions = props.disappear_actions;
|
|
1245
1398
|
this.extensions = props.extensions;
|
|
1246
1399
|
this.focus = props.focus;
|
|
1400
|
+
this.functions = props.functions;
|
|
1247
1401
|
this.height = props.height;
|
|
1248
1402
|
this.id = props.id;
|
|
1249
1403
|
this.layout_provider = props.layout_provider;
|
|
@@ -1303,6 +1457,7 @@ class DivState {
|
|
|
1303
1457
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1304
1458
|
this.alignment_vertical = props.alignment_vertical;
|
|
1305
1459
|
this.alpha = props.alpha;
|
|
1460
|
+
this.animators = props.animators;
|
|
1306
1461
|
this.background = props.background;
|
|
1307
1462
|
this.border = props.border;
|
|
1308
1463
|
this.column_span = props.column_span;
|
|
@@ -1311,6 +1466,7 @@ class DivState {
|
|
|
1311
1466
|
this.div_id = props.div_id;
|
|
1312
1467
|
this.extensions = props.extensions;
|
|
1313
1468
|
this.focus = props.focus;
|
|
1469
|
+
this.functions = props.functions;
|
|
1314
1470
|
this.height = props.height;
|
|
1315
1471
|
this.id = props.id;
|
|
1316
1472
|
this.layout_provider = props.layout_provider;
|
|
@@ -1361,6 +1517,7 @@ class DivTabs {
|
|
|
1361
1517
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1362
1518
|
this.alignment_vertical = props.alignment_vertical;
|
|
1363
1519
|
this.alpha = props.alpha;
|
|
1520
|
+
this.animators = props.animators;
|
|
1364
1521
|
this.background = props.background;
|
|
1365
1522
|
this.border = props.border;
|
|
1366
1523
|
this.column_span = props.column_span;
|
|
@@ -1368,6 +1525,7 @@ class DivTabs {
|
|
|
1368
1525
|
this.dynamic_height = props.dynamic_height;
|
|
1369
1526
|
this.extensions = props.extensions;
|
|
1370
1527
|
this.focus = props.focus;
|
|
1528
|
+
this.functions = props.functions;
|
|
1371
1529
|
this.has_separator = props.has_separator;
|
|
1372
1530
|
this.height = props.height;
|
|
1373
1531
|
this.id = props.id;
|
|
@@ -1415,6 +1573,7 @@ class DivText {
|
|
|
1415
1573
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1416
1574
|
this.alignment_vertical = props.alignment_vertical;
|
|
1417
1575
|
this.alpha = props.alpha;
|
|
1576
|
+
this.animators = props.animators;
|
|
1418
1577
|
this.auto_ellipsize = props.auto_ellipsize;
|
|
1419
1578
|
this.background = props.background;
|
|
1420
1579
|
this.border = props.border;
|
|
@@ -1431,6 +1590,7 @@ class DivText {
|
|
|
1431
1590
|
this.font_size_unit = props.font_size_unit;
|
|
1432
1591
|
this.font_weight = props.font_weight;
|
|
1433
1592
|
this.font_weight_value = props.font_weight_value;
|
|
1593
|
+
this.functions = props.functions;
|
|
1434
1594
|
this.height = props.height;
|
|
1435
1595
|
this.id = props.id;
|
|
1436
1596
|
this.images = props.images;
|
|
@@ -1482,6 +1642,7 @@ class DivVideo {
|
|
|
1482
1642
|
this.alignment_horizontal = props.alignment_horizontal;
|
|
1483
1643
|
this.alignment_vertical = props.alignment_vertical;
|
|
1484
1644
|
this.alpha = props.alpha;
|
|
1645
|
+
this.animators = props.animators;
|
|
1485
1646
|
this.aspect = props.aspect;
|
|
1486
1647
|
this.autostart = props.autostart;
|
|
1487
1648
|
this.background = props.background;
|
|
@@ -1494,6 +1655,7 @@ class DivVideo {
|
|
|
1494
1655
|
this.extensions = props.extensions;
|
|
1495
1656
|
this.fatal_actions = props.fatal_actions;
|
|
1496
1657
|
this.focus = props.focus;
|
|
1658
|
+
this.functions = props.functions;
|
|
1497
1659
|
this.height = props.height;
|
|
1498
1660
|
this.id = props.id;
|
|
1499
1661
|
this.layout_provider = props.layout_provider;
|
|
@@ -2016,5 +2178,5 @@ function rewriteTemplateVersions(templates, resolvedNames) {
|
|
|
2016
2178
|
return rewriteNames(templates, rename, resolvedNames);
|
|
2017
2179
|
}
|
|
2018
2180
|
|
|
2019
|
-
export { ArrayValue, ArrayVariable, BooleanValue, BooleanVariable, ColorValue, ColorVariable, ContentText, ContentUrl, DictValue, DictVariable, DivActionArrayInsertValue, DivActionArrayRemoveValue, DivActionArraySetValue, DivActionClearFocus, DivActionCopyToClipboard, DivActionDictSetValue, DivActionFocusElement, DivActionSetVariable, DivAppearanceSetTransition, DivBlur, DivChangeBoundsTransition, DivChangeSetTransition, DivCircleShape, DivContainer, DivCurrencyInputMask, DivCustom, DivDefaultIndicatorItemPlacement, DivFadeTransition, DivFilterRtlMirror, DivFixedCount, DivFixedLengthInputMask, DivFixedSize, DivGallery, DivGifImage, DivGradientBackground, DivGrid, DivImage, DivImageBackground, DivIndicator, DivInfinityCount, DivInput, DivInputFilterExpression, DivInputFilterRegex, DivInputValidatorExpression, DivInputValidatorRegex, DivLinearGradient, DivMatchParentSize, DivNeighbourPageSize, DivNinePatchBackground, DivPageSize, DivPageTransformationOverlap, DivPageTransformationSlide, DivPager, DivPercentageSize, DivPhoneInputMask, DivPivotFixed, DivPivotPercentage, DivRadialGradient, DivRadialGradientFixedCenter, DivRadialGradientRelativeCenter, DivRadialGradientRelativeRadius, DivRoundedRectangleShape, DivScaleTransition, DivSelect, DivSeparator, DivShapeDrawable, DivSlideTransition, DivSlider, DivSolidBackground, DivState, DivStretchIndicatorItemPlacement, DivTabs, DivText, DivVideo, DivVideoSource, DivVideoSourceResolution, DivWrapContentSize, IntegerValue, IntegerVariable, NumberValue, NumberVariable, SafeDivExpression, StringValue, StringVariable, TemplateBlock, TemplatePropertyReference, UrlValue, UrlVariable, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|
|
2181
|
+
export { ArrayValue, ArrayVariable, BooleanValue, BooleanVariable, ColorValue, ColorVariable, ContentText, ContentUrl, DictValue, DictVariable, DivActionAnimatorStart, DivActionAnimatorStop, DivActionArrayInsertValue, DivActionArrayRemoveValue, DivActionArraySetValue, DivActionClearFocus, DivActionCopyToClipboard, DivActionDictSetValue, DivActionFocusElement, DivActionHideTooltip, DivActionSetState, DivActionSetVariable, DivActionShowTooltip, DivActionTimer, DivActionVideo, DivAppearanceSetTransition, DivBlur, DivChangeBoundsTransition, DivChangeSetTransition, DivCircleShape, DivColorAnimator, DivContainer, DivCurrencyInputMask, DivCustom, DivDefaultIndicatorItemPlacement, DivFadeTransition, DivFilterRtlMirror, DivFixedCount, DivFixedLengthInputMask, DivFixedSize, DivGallery, DivGifImage, DivGradientBackground, DivGrid, DivImage, DivImageBackground, DivIndicator, DivInfinityCount, DivInput, DivInputFilterExpression, DivInputFilterRegex, DivInputValidatorExpression, DivInputValidatorRegex, DivLinearGradient, DivMatchParentSize, DivNeighbourPageSize, DivNinePatchBackground, DivNumberAnimator, DivPageSize, DivPageTransformationOverlap, DivPageTransformationSlide, DivPager, DivPercentageSize, DivPhoneInputMask, DivPivotFixed, DivPivotPercentage, DivRadialGradient, DivRadialGradientFixedCenter, DivRadialGradientRelativeCenter, DivRadialGradientRelativeRadius, DivRoundedRectangleShape, DivScaleTransition, DivSelect, DivSeparator, DivShapeDrawable, DivSlideTransition, DivSlider, DivSolidBackground, DivState, DivStretchIndicatorItemPlacement, DivTabs, DivText, DivVideo, DivVideoSource, DivVideoSourceResolution, DivWrapContentSize, IntegerValue, IntegerVariable, NumberValue, NumberVariable, SafeDivExpression, StringValue, StringVariable, TemplateBlock, TemplatePropertyReference, UrlValue, UrlVariable, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|
|
2020
2182
|
//# sourceMappingURL=jsonbuilder.js.map
|