@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
|
@@ -280,7 +280,7 @@ exports.config = {
|
|
|
280
280
|
{
|
|
281
281
|
fields: ['list'],
|
|
282
282
|
transformer: common_1.yfmTransformer,
|
|
283
|
-
parser: (0, common_1.createItemsParser)(['text']),
|
|
283
|
+
parser: (0, common_1.createItemsParser)(['title', 'text']),
|
|
284
284
|
},
|
|
285
285
|
],
|
|
286
286
|
[models_1.BlockType.InfoBlock]: [
|
|
@@ -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: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { IconsBlockProps } from '../../models';
|
|
2
2
|
import './Icons.css';
|
|
3
|
-
declare const Icons: ({ title, description, size, items }: IconsBlockProps) => JSX.Element;
|
|
3
|
+
declare const Icons: ({ title, description, size, colSizes, items }: IconsBlockProps) => JSX.Element;
|
|
4
4
|
export default Icons;
|
|
@@ -8,14 +8,14 @@ const b = block('icons-block');
|
|
|
8
8
|
const getItemContent = (item) => (React.createElement(Fragment, null,
|
|
9
9
|
React.createElement(Image, { className: b('image'), src: item.src }),
|
|
10
10
|
React.createElement("p", { className: b('text') }, item.text)));
|
|
11
|
-
const Icons = ({ title, description, size = 's', items }) => {
|
|
11
|
+
const Icons = ({ title, description, size = 's', colSizes = { all: 12 }, items }) => {
|
|
12
12
|
const { hostname } = useContext(LocationContext);
|
|
13
13
|
const handleAnalytics = useAnalytics();
|
|
14
14
|
const onClick = useCallback(({ analyticsEvents, url }) => {
|
|
15
15
|
handleAnalytics(analyticsEvents, { url });
|
|
16
16
|
}, [handleAnalytics]);
|
|
17
17
|
return (React.createElement("div", { className: b({ size }) },
|
|
18
|
-
(title || description) && (React.createElement(Title, { className: b('header'), title: title, subtitle: description, colSizes:
|
|
18
|
+
(title || description) && (React.createElement(Title, { className: b('header'), title: title, subtitle: description, colSizes: colSizes })),
|
|
19
19
|
items.map((item) => {
|
|
20
20
|
const itemContent = getItemContent(item);
|
|
21
21
|
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: {
|
|
@@ -23,7 +23,7 @@ const ContentList = ({ list, size = 'l', qa }) => {
|
|
|
23
23
|
React.createElement(ItemIcon, { icon: icon, className: b('icon', { without_title: !title }), qa: qaAttributes.image }),
|
|
24
24
|
React.createElement("div", null,
|
|
25
25
|
title &&
|
|
26
|
-
React.createElement(getHeadingLevel(size), { className: b('title'), 'data-qa': qaAttributes.title }, title),
|
|
26
|
+
React.createElement(getHeadingLevel(size), { className: b('title'), 'data-qa': qaAttributes.title }, React.createElement(YFMWrapper, { content: title, modifiers: { constructor: true } })),
|
|
27
27
|
text && (React.createElement(YFMWrapper, { className: b('text'), content: text, modifiers: { constructor: true }, qa: qaAttributes.text })))));
|
|
28
28
|
})));
|
|
29
29
|
};
|
|
@@ -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: {
|
|
@@ -497,20 +497,25 @@ export const ButtonBlock = {
|
|
|
497
497
|
},
|
|
498
498
|
};
|
|
499
499
|
const IframeProps = {
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
500
|
+
type: 'object',
|
|
501
|
+
additionalProperties: false,
|
|
502
|
+
required: ['src'],
|
|
503
|
+
properties: {
|
|
504
|
+
src: {
|
|
505
|
+
type: 'string',
|
|
506
|
+
},
|
|
507
|
+
name: {
|
|
508
|
+
type: 'string',
|
|
509
|
+
},
|
|
510
|
+
title: {
|
|
511
|
+
type: 'string',
|
|
512
|
+
},
|
|
513
|
+
height: {
|
|
514
|
+
type: 'number',
|
|
515
|
+
},
|
|
516
|
+
width: {
|
|
517
|
+
type: 'number',
|
|
518
|
+
},
|
|
514
519
|
},
|
|
515
520
|
};
|
|
516
521
|
export const MediaProps = {
|
|
@@ -548,7 +553,7 @@ export const MediaProps = {
|
|
|
548
553
|
},
|
|
549
554
|
iframe: Object.assign({}, IframeProps),
|
|
550
555
|
margins: {
|
|
551
|
-
type: '
|
|
556
|
+
type: 'boolean',
|
|
552
557
|
},
|
|
553
558
|
};
|
|
554
559
|
export const 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: {
|