@gravity-ui/page-constructor 4.39.1 → 4.40.1
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/build/cjs/blocks/Header/schema.d.ts +57 -42
- package/build/cjs/blocks/HeaderSlider/schema.d.ts +19 -14
- package/build/cjs/blocks/Icons/Icons.css +4 -0
- package/build/cjs/blocks/Icons/Icons.d.ts +1 -1
- package/build/cjs/blocks/Icons/Icons.js +2 -2
- package/build/cjs/blocks/Media/schema.d.ts +38 -28
- package/build/cjs/blocks/PromoFeaturesBlock/schema.d.ts +19 -14
- package/build/cjs/blocks/Tabs/schema.d.ts +19 -14
- package/build/cjs/components/ContentList/ContentList.css +4 -0
- package/build/cjs/components/ContentList/ContentList.js +1 -1
- package/build/cjs/constructor-items.d.ts +1 -1
- package/build/cjs/models/constructor-items/blocks.d.ts +1 -0
- package/build/cjs/schema/constants.d.ts +19 -14
- package/build/cjs/schema/validators/common.d.ts +19 -14
- package/build/cjs/schema/validators/common.js +20 -15
- package/build/cjs/sub-blocks/LayoutItem/schema.d.ts +19 -14
- package/build/cjs/sub-blocks/MediaCard/schema.d.ts +19 -14
- package/build/cjs/sub-blocks/PriceCard/schema.d.ts +19 -14
- package/build/cjs/text-transform/config.js +1 -1
- package/build/esm/blocks/Header/schema.d.ts +57 -42
- package/build/esm/blocks/HeaderSlider/schema.d.ts +19 -14
- package/build/esm/blocks/Icons/Icons.css +4 -0
- package/build/esm/blocks/Icons/Icons.d.ts +1 -1
- package/build/esm/blocks/Icons/Icons.js +2 -2
- package/build/esm/blocks/Media/schema.d.ts +38 -28
- package/build/esm/blocks/PromoFeaturesBlock/schema.d.ts +19 -14
- package/build/esm/blocks/Tabs/schema.d.ts +19 -14
- package/build/esm/components/ContentList/ContentList.css +4 -0
- package/build/esm/components/ContentList/ContentList.js +1 -1
- package/build/esm/constructor-items.d.ts +1 -1
- package/build/esm/models/constructor-items/blocks.d.ts +1 -0
- package/build/esm/schema/constants.d.ts +19 -14
- package/build/esm/schema/validators/common.d.ts +19 -14
- package/build/esm/schema/validators/common.js +20 -15
- package/build/esm/sub-blocks/LayoutItem/schema.d.ts +19 -14
- package/build/esm/sub-blocks/MediaCard/schema.d.ts +19 -14
- package/build/esm/sub-blocks/PriceCard/schema.d.ts +19 -14
- package/build/esm/text-transform/config.js +1 -1
- package/package.json +1 -1
- package/server/models/constructor-items/blocks.d.ts +1 -0
- package/server/text-transform/config.js +1 -1
- package/widget/index.js +1 -1
|
@@ -252,20 +252,25 @@ export declare const HeaderBackgroundProps: {
|
|
|
252
252
|
type: string;
|
|
253
253
|
};
|
|
254
254
|
iframe: {
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
255
|
+
type: string;
|
|
256
|
+
additionalProperties: boolean;
|
|
257
|
+
required: string[];
|
|
258
|
+
properties: {
|
|
259
|
+
src: {
|
|
260
|
+
type: string;
|
|
261
|
+
};
|
|
262
|
+
name: {
|
|
263
|
+
type: string;
|
|
264
|
+
};
|
|
265
|
+
title: {
|
|
266
|
+
type: string;
|
|
267
|
+
};
|
|
268
|
+
height: {
|
|
269
|
+
type: string;
|
|
270
|
+
};
|
|
271
|
+
width: {
|
|
272
|
+
type: string;
|
|
273
|
+
};
|
|
269
274
|
};
|
|
270
275
|
};
|
|
271
276
|
margins: {
|
|
@@ -707,20 +712,25 @@ export declare const HeaderProperties: {
|
|
|
707
712
|
type: string;
|
|
708
713
|
};
|
|
709
714
|
iframe: {
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
715
|
+
type: string;
|
|
716
|
+
additionalProperties: boolean;
|
|
717
|
+
required: string[];
|
|
718
|
+
properties: {
|
|
719
|
+
src: {
|
|
720
|
+
type: string;
|
|
721
|
+
};
|
|
722
|
+
name: {
|
|
723
|
+
type: string;
|
|
724
|
+
};
|
|
725
|
+
title: {
|
|
726
|
+
type: string;
|
|
727
|
+
};
|
|
728
|
+
height: {
|
|
729
|
+
type: string;
|
|
730
|
+
};
|
|
731
|
+
width: {
|
|
732
|
+
type: string;
|
|
733
|
+
};
|
|
724
734
|
};
|
|
725
735
|
};
|
|
726
736
|
margins: {
|
|
@@ -1211,20 +1221,25 @@ export declare const HeaderBlock: {
|
|
|
1211
1221
|
type: string;
|
|
1212
1222
|
};
|
|
1213
1223
|
iframe: {
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1224
|
+
type: string;
|
|
1225
|
+
additionalProperties: boolean;
|
|
1226
|
+
required: string[];
|
|
1227
|
+
properties: {
|
|
1228
|
+
src: {
|
|
1229
|
+
type: string;
|
|
1230
|
+
};
|
|
1231
|
+
name: {
|
|
1232
|
+
type: string;
|
|
1233
|
+
};
|
|
1234
|
+
title: {
|
|
1235
|
+
type: string;
|
|
1236
|
+
};
|
|
1237
|
+
height: {
|
|
1238
|
+
type: string;
|
|
1239
|
+
};
|
|
1240
|
+
width: {
|
|
1241
|
+
type: string;
|
|
1242
|
+
};
|
|
1228
1243
|
};
|
|
1229
1244
|
};
|
|
1230
1245
|
margins: {
|
|
@@ -443,20 +443,25 @@ export declare const HeaderSliderBlock: {
|
|
|
443
443
|
type: string;
|
|
444
444
|
};
|
|
445
445
|
iframe: {
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
446
|
+
type: string;
|
|
447
|
+
additionalProperties: boolean;
|
|
448
|
+
required: string[];
|
|
449
|
+
properties: {
|
|
450
|
+
src: {
|
|
451
|
+
type: string;
|
|
452
|
+
};
|
|
453
|
+
name: {
|
|
454
|
+
type: string;
|
|
455
|
+
};
|
|
456
|
+
title: {
|
|
457
|
+
type: string;
|
|
458
|
+
};
|
|
459
|
+
height: {
|
|
460
|
+
type: string;
|
|
461
|
+
};
|
|
462
|
+
width: {
|
|
463
|
+
type: string;
|
|
464
|
+
};
|
|
460
465
|
};
|
|
461
466
|
};
|
|
462
467
|
margins: {
|
|
@@ -10,14 +10,14 @@ const b = (0, utils_1.block)('icons-block');
|
|
|
10
10
|
const getItemContent = (item) => (react_1.default.createElement(react_1.Fragment, null,
|
|
11
11
|
react_1.default.createElement(components_1.Image, { className: b('image'), src: item.src }),
|
|
12
12
|
react_1.default.createElement("p", { className: b('text') }, item.text)));
|
|
13
|
-
const Icons = ({ title, description, size = 's', items }) => {
|
|
13
|
+
const Icons = ({ title, description, size = 's', colSizes = { all: 12 }, items }) => {
|
|
14
14
|
const { hostname } = (0, react_1.useContext)(locationContext_1.LocationContext);
|
|
15
15
|
const handleAnalytics = (0, hooks_1.useAnalytics)();
|
|
16
16
|
const onClick = (0, react_1.useCallback)(({ analyticsEvents, url }) => {
|
|
17
17
|
handleAnalytics(analyticsEvents, { url });
|
|
18
18
|
}, [handleAnalytics]);
|
|
19
19
|
return (react_1.default.createElement("div", { className: b({ size }) },
|
|
20
|
-
(title || description) && (react_1.default.createElement(components_1.Title, { className: b('header'), title: title, subtitle: description, colSizes:
|
|
20
|
+
(title || description) && (react_1.default.createElement(components_1.Title, { className: b('header'), title: title, subtitle: description, colSizes: colSizes })),
|
|
21
21
|
items.map((item) => {
|
|
22
22
|
const itemContent = getItemContent(item);
|
|
23
23
|
const { url, text } = item;
|
|
@@ -246,20 +246,25 @@ export declare const Media: {
|
|
|
246
246
|
type: string;
|
|
247
247
|
};
|
|
248
248
|
iframe: {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
249
|
+
type: string;
|
|
250
|
+
additionalProperties: boolean;
|
|
251
|
+
required: string[];
|
|
252
|
+
properties: {
|
|
253
|
+
src: {
|
|
254
|
+
type: string;
|
|
255
|
+
};
|
|
256
|
+
name: {
|
|
257
|
+
type: string;
|
|
258
|
+
};
|
|
259
|
+
title: {
|
|
260
|
+
type: string;
|
|
261
|
+
};
|
|
262
|
+
height: {
|
|
263
|
+
type: string;
|
|
264
|
+
};
|
|
265
|
+
width: {
|
|
266
|
+
type: string;
|
|
267
|
+
};
|
|
263
268
|
};
|
|
264
269
|
};
|
|
265
270
|
margins: {
|
|
@@ -891,20 +896,25 @@ export declare const MediaBlock: {
|
|
|
891
896
|
type: string;
|
|
892
897
|
};
|
|
893
898
|
iframe: {
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
899
|
+
type: string;
|
|
900
|
+
additionalProperties: boolean;
|
|
901
|
+
required: string[];
|
|
902
|
+
properties: {
|
|
903
|
+
src: {
|
|
904
|
+
type: string;
|
|
905
|
+
};
|
|
906
|
+
name: {
|
|
907
|
+
type: string;
|
|
908
|
+
};
|
|
909
|
+
title: {
|
|
910
|
+
type: string;
|
|
911
|
+
};
|
|
912
|
+
height: {
|
|
913
|
+
type: string;
|
|
914
|
+
};
|
|
915
|
+
width: {
|
|
916
|
+
type: string;
|
|
917
|
+
};
|
|
908
918
|
};
|
|
909
919
|
};
|
|
910
920
|
margins: {
|
|
@@ -262,20 +262,25 @@ export declare const PromoFeaturesItem: {
|
|
|
262
262
|
type: string;
|
|
263
263
|
};
|
|
264
264
|
iframe: {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
265
|
+
type: string;
|
|
266
|
+
additionalProperties: boolean;
|
|
267
|
+
required: string[];
|
|
268
|
+
properties: {
|
|
269
|
+
src: {
|
|
270
|
+
type: string;
|
|
271
|
+
};
|
|
272
|
+
name: {
|
|
273
|
+
type: string;
|
|
274
|
+
};
|
|
275
|
+
title: {
|
|
276
|
+
type: string;
|
|
277
|
+
};
|
|
278
|
+
height: {
|
|
279
|
+
type: string;
|
|
280
|
+
};
|
|
281
|
+
width: {
|
|
282
|
+
type: string;
|
|
283
|
+
};
|
|
279
284
|
};
|
|
280
285
|
};
|
|
281
286
|
margins: {
|
|
@@ -257,20 +257,25 @@ export declare const tabsItem: {
|
|
|
257
257
|
type: string;
|
|
258
258
|
};
|
|
259
259
|
iframe: {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
260
|
+
type: string;
|
|
261
|
+
additionalProperties: boolean;
|
|
262
|
+
required: string[];
|
|
263
|
+
properties: {
|
|
264
|
+
src: {
|
|
265
|
+
type: string;
|
|
266
|
+
};
|
|
267
|
+
name: {
|
|
268
|
+
type: string;
|
|
269
|
+
};
|
|
270
|
+
title: {
|
|
271
|
+
type: string;
|
|
272
|
+
};
|
|
273
|
+
height: {
|
|
274
|
+
type: string;
|
|
275
|
+
};
|
|
276
|
+
width: {
|
|
277
|
+
type: string;
|
|
278
|
+
};
|
|
274
279
|
};
|
|
275
280
|
};
|
|
276
281
|
margins: {
|
|
@@ -25,7 +25,7 @@ const ContentList = ({ list, size = 'l', qa }) => {
|
|
|
25
25
|
react_1.default.createElement(ContentListItemIcon_1.default, { icon: icon, className: b('icon', { without_title: !title }), qa: qaAttributes.image }),
|
|
26
26
|
react_1.default.createElement("div", null,
|
|
27
27
|
title &&
|
|
28
|
-
react_1.default.createElement(getHeadingLevel(size), { className: b('title'), 'data-qa': qaAttributes.title }, title),
|
|
28
|
+
react_1.default.createElement(getHeadingLevel(size), { className: b('title'), 'data-qa': qaAttributes.title }, react_1.default.createElement(YFMWrapper_1.default, { content: title, modifiers: { constructor: true } })),
|
|
29
29
|
text && (react_1.default.createElement(YFMWrapper_1.default, { className: b('text'), content: text, modifiers: { constructor: true }, qa: qaAttributes.text })))));
|
|
30
30
|
})));
|
|
31
31
|
};
|
|
@@ -10,7 +10,7 @@ export declare const blockMap: {
|
|
|
10
10
|
"table-block": (props: import("./models").TableBlockProps) => JSX.Element;
|
|
11
11
|
"tabs-block": ({ items, title, description, animated, tabsColSizes, centered, direction, contentSize, }: import("./models").TabsBlockProps) => JSX.Element;
|
|
12
12
|
"header-block": (props: import("./models").WithChildren<import("./models").HeaderBlockProps & import("./models").ClassNameProps>) => JSX.Element;
|
|
13
|
-
"icons-block": ({ title, description, size, items }: import("./models").IconsBlockProps) => JSX.Element;
|
|
13
|
+
"icons-block": ({ title, description, size, colSizes, items }: import("./models").IconsBlockProps) => JSX.Element;
|
|
14
14
|
"header-slider-block": ({ items, arrows, ...props }: import("./models").HeaderSliderBlockProps) => JSX.Element;
|
|
15
15
|
"card-layout-block": import("react").FC<import("./blocks/CardLayout/CardLayout").CardLayoutBlockProps>;
|
|
16
16
|
"content-layout-block": (props: import("./models").ContentLayoutBlockProps) => JSX.Element;
|
|
@@ -1099,20 +1099,25 @@ export declare const cardSchemas: {
|
|
|
1099
1099
|
type: string;
|
|
1100
1100
|
};
|
|
1101
1101
|
iframe: {
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1102
|
+
type: string;
|
|
1103
|
+
additionalProperties: boolean;
|
|
1104
|
+
required: string[];
|
|
1105
|
+
properties: {
|
|
1106
|
+
src: {
|
|
1107
|
+
type: string;
|
|
1108
|
+
};
|
|
1109
|
+
name: {
|
|
1110
|
+
type: string;
|
|
1111
|
+
};
|
|
1112
|
+
title: {
|
|
1113
|
+
type: string;
|
|
1114
|
+
};
|
|
1115
|
+
height: {
|
|
1116
|
+
type: string;
|
|
1117
|
+
};
|
|
1118
|
+
width: {
|
|
1119
|
+
type: string;
|
|
1120
|
+
};
|
|
1116
1121
|
};
|
|
1117
1122
|
};
|
|
1118
1123
|
margins: {
|
|
@@ -1354,20 +1354,25 @@ export declare const MediaProps: {
|
|
|
1354
1354
|
type: string;
|
|
1355
1355
|
};
|
|
1356
1356
|
iframe: {
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1357
|
+
type: string;
|
|
1358
|
+
additionalProperties: boolean;
|
|
1359
|
+
required: string[];
|
|
1360
|
+
properties: {
|
|
1361
|
+
src: {
|
|
1362
|
+
type: string;
|
|
1363
|
+
};
|
|
1364
|
+
name: {
|
|
1365
|
+
type: string;
|
|
1366
|
+
};
|
|
1367
|
+
title: {
|
|
1368
|
+
type: string;
|
|
1369
|
+
};
|
|
1370
|
+
height: {
|
|
1371
|
+
type: string;
|
|
1372
|
+
};
|
|
1373
|
+
width: {
|
|
1374
|
+
type: string;
|
|
1375
|
+
};
|
|
1371
1376
|
};
|
|
1372
1377
|
};
|
|
1373
1378
|
margins: {
|
|
@@ -501,20 +501,25 @@ exports.ButtonBlock = {
|
|
|
501
501
|
},
|
|
502
502
|
};
|
|
503
503
|
const IframeProps = {
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
504
|
+
type: 'object',
|
|
505
|
+
additionalProperties: false,
|
|
506
|
+
required: ['src'],
|
|
507
|
+
properties: {
|
|
508
|
+
src: {
|
|
509
|
+
type: 'string',
|
|
510
|
+
},
|
|
511
|
+
name: {
|
|
512
|
+
type: 'string',
|
|
513
|
+
},
|
|
514
|
+
title: {
|
|
515
|
+
type: 'string',
|
|
516
|
+
},
|
|
517
|
+
height: {
|
|
518
|
+
type: 'number',
|
|
519
|
+
},
|
|
520
|
+
width: {
|
|
521
|
+
type: 'number',
|
|
522
|
+
},
|
|
518
523
|
},
|
|
519
524
|
};
|
|
520
525
|
exports.MediaProps = {
|
|
@@ -552,7 +557,7 @@ exports.MediaProps = {
|
|
|
552
557
|
},
|
|
553
558
|
iframe: Object.assign({}, IframeProps),
|
|
554
559
|
margins: {
|
|
555
|
-
type: '
|
|
560
|
+
type: 'boolean',
|
|
556
561
|
},
|
|
557
562
|
};
|
|
558
563
|
exports.YMapMarkerLabel = {
|
|
@@ -247,20 +247,25 @@ export declare const LayoutItem: {
|
|
|
247
247
|
type: string;
|
|
248
248
|
};
|
|
249
249
|
iframe: {
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
250
|
+
type: string;
|
|
251
|
+
additionalProperties: boolean;
|
|
252
|
+
required: string[];
|
|
253
|
+
properties: {
|
|
254
|
+
src: {
|
|
255
|
+
type: string;
|
|
256
|
+
};
|
|
257
|
+
name: {
|
|
258
|
+
type: string;
|
|
259
|
+
};
|
|
260
|
+
title: {
|
|
261
|
+
type: string;
|
|
262
|
+
};
|
|
263
|
+
height: {
|
|
264
|
+
type: string;
|
|
265
|
+
};
|
|
266
|
+
width: {
|
|
267
|
+
type: string;
|
|
268
|
+
};
|
|
264
269
|
};
|
|
265
270
|
};
|
|
266
271
|
margins: {
|
|
@@ -252,20 +252,25 @@ export declare const MediaCardBlock: {
|
|
|
252
252
|
type: string;
|
|
253
253
|
};
|
|
254
254
|
iframe: {
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
255
|
+
type: string;
|
|
256
|
+
additionalProperties: boolean;
|
|
257
|
+
required: string[];
|
|
258
|
+
properties: {
|
|
259
|
+
src: {
|
|
260
|
+
type: string;
|
|
261
|
+
};
|
|
262
|
+
name: {
|
|
263
|
+
type: string;
|
|
264
|
+
};
|
|
265
|
+
title: {
|
|
266
|
+
type: string;
|
|
267
|
+
};
|
|
268
|
+
height: {
|
|
269
|
+
type: string;
|
|
270
|
+
};
|
|
271
|
+
width: {
|
|
272
|
+
type: string;
|
|
273
|
+
};
|
|
269
274
|
};
|
|
270
275
|
};
|
|
271
276
|
margins: {
|
|
@@ -636,20 +636,25 @@ export declare const PriceCardBlock: {
|
|
|
636
636
|
type: string;
|
|
637
637
|
};
|
|
638
638
|
iframe: {
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
639
|
+
type: string;
|
|
640
|
+
additionalProperties: boolean;
|
|
641
|
+
required: string[];
|
|
642
|
+
properties: {
|
|
643
|
+
src: {
|
|
644
|
+
type: string;
|
|
645
|
+
};
|
|
646
|
+
name: {
|
|
647
|
+
type: string;
|
|
648
|
+
};
|
|
649
|
+
title: {
|
|
650
|
+
type: string;
|
|
651
|
+
};
|
|
652
|
+
height: {
|
|
653
|
+
type: string;
|
|
654
|
+
};
|
|
655
|
+
width: {
|
|
656
|
+
type: string;
|
|
657
|
+
};
|
|
653
658
|
};
|
|
654
659
|
};
|
|
655
660
|
margins: {
|