@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
|
@@ -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: {
|
package/package.json
CHANGED
|
@@ -290,7 +290,7 @@ exports.config = {
|
|
|
290
290
|
{
|
|
291
291
|
fields: ['list'],
|
|
292
292
|
transformer: common_1.yfmTransformer,
|
|
293
|
-
parser: (0, common_1.createItemsParser)(['text']),
|
|
293
|
+
parser: (0, common_1.createItemsParser)(['title', 'text']),
|
|
294
294
|
},
|
|
295
295
|
],
|
|
296
296
|
[models_1.BlockType.InfoBlock]: [
|