@gravity-ui/page-constructor 1.12.0 → 1.12.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/build/cjs/blocks/CardLayout/schema.d.ts +22 -24
  3. package/build/cjs/blocks/CardLayout/schema.js +1 -6
  4. package/build/cjs/blocks/ExtendedFeatures/schema.d.ts +16 -17
  5. package/build/cjs/blocks/ExtendedFeatures/schema.js +1 -6
  6. package/build/cjs/blocks/HeaderSlider/schema.d.ts +0 -25
  7. package/build/cjs/blocks/LinkTable/schema.d.ts +29 -21
  8. package/build/cjs/blocks/LinkTable/schema.js +1 -1
  9. package/build/cjs/blocks/Media/schema.js +1 -1
  10. package/build/cjs/blocks/PromoFeaturesBlock/schema.d.ts +14 -15
  11. package/build/cjs/blocks/PromoFeaturesBlock/schema.js +1 -6
  12. package/build/cjs/blocks/Slider/schema.d.ts +28 -49
  13. package/build/cjs/blocks/Slider/schema.js +1 -6
  14. package/build/cjs/blocks/Tabs/schema.d.ts +29 -25
  15. package/build/cjs/blocks/Tabs/schema.js +1 -4
  16. package/build/cjs/components/BlockHeader/BlockHeader.css +8 -19
  17. package/build/cjs/components/BlockHeader/BlockHeader.js +4 -3
  18. package/build/cjs/schema/validators/common.d.ts +31 -0
  19. package/build/cjs/schema/validators/common.js +10 -1
  20. package/build/cjs/sub-blocks/CardWithImage/schema.js +1 -1
  21. package/build/cjs/text-transform/blocks.js +44 -54
  22. package/build/esm/blocks/CardLayout/schema.d.ts +22 -24
  23. package/build/esm/blocks/CardLayout/schema.js +2 -7
  24. package/build/esm/blocks/ExtendedFeatures/schema.d.ts +16 -17
  25. package/build/esm/blocks/ExtendedFeatures/schema.js +2 -7
  26. package/build/esm/blocks/HeaderSlider/schema.d.ts +0 -25
  27. package/build/esm/blocks/LinkTable/schema.d.ts +29 -21
  28. package/build/esm/blocks/LinkTable/schema.js +2 -2
  29. package/build/esm/blocks/Media/schema.js +1 -1
  30. package/build/esm/blocks/PromoFeaturesBlock/schema.d.ts +14 -15
  31. package/build/esm/blocks/PromoFeaturesBlock/schema.js +2 -7
  32. package/build/esm/blocks/Slider/schema.d.ts +28 -49
  33. package/build/esm/blocks/Slider/schema.js +2 -7
  34. package/build/esm/blocks/Tabs/schema.d.ts +29 -25
  35. package/build/esm/blocks/Tabs/schema.js +2 -5
  36. package/build/esm/components/BlockHeader/BlockHeader.css +8 -19
  37. package/build/esm/components/BlockHeader/BlockHeader.js +5 -4
  38. package/build/esm/schema/validators/common.d.ts +31 -0
  39. package/build/esm/schema/validators/common.js +9 -0
  40. package/build/esm/sub-blocks/CardWithImage/schema.js +1 -1
  41. package/build/esm/text-transform/blocks.js +44 -54
  42. package/package.json +1 -4
  43. package/server/text-transform/blocks.js +44 -54
@@ -4,7 +4,7 @@ exports.CardWithImage = exports.CardWithImageItem = void 0;
4
4
  const lodash_1 = require("lodash");
5
5
  const common_1 = require("../../schema/validators/common");
6
6
  const utils_1 = require("../../schema/validators/utils");
7
- const schema_1 = require("../../../src/sub-blocks/Content/schema");
7
+ const schema_1 = require("../../sub-blocks/Content/schema");
8
8
  const CardWithImageContentProps = (0, lodash_1.omit)(schema_1.ContentBase, ['links', 'size', 'text', 'theme']);
9
9
  const CardWithImageLinks = {
10
10
  type: 'object',
@@ -39,13 +39,6 @@ function parsePromoFeatures(transformer, items) {
39
39
  return (Object.assign({ text: transformer(text) }, rest));
40
40
  });
41
41
  }
42
- function parseSlider(transformer, block) {
43
- const { title, description } = block;
44
- block.title = Object.assign(Object.assign({}, title), { text: transformer(title ? title.text : '') });
45
- if (description) {
46
- block.description = transformer(description);
47
- }
48
- }
49
42
  const parseTitle = (transformer, title) => typeof title === 'object' && 'text' in title
50
43
  ? Object.assign(Object.assign({}, title), { text: transformer(title.text) }) : title && transformer(title);
51
44
  const parseItemsTitle = (transformer, items) => items.map((_a) => {
@@ -101,6 +94,17 @@ function typografTransformer(lang, content) {
101
94
  return (0, utils_1.typografToHTML)(content, lang);
102
95
  }
103
96
  exports.typografTransformer = typografTransformer;
97
+ const blockHeaderTransfomer = [
98
+ {
99
+ fields: ['title'],
100
+ transformer: typografTransformer,
101
+ parser: parseTitle,
102
+ },
103
+ {
104
+ fields: ['description'],
105
+ transformer: yfmTransformer,
106
+ },
107
+ ];
104
108
  const config = {
105
109
  [models_1.SubBlockType.Partner]: {
106
110
  fields: ['text'],
@@ -145,35 +149,35 @@ const config = {
145
149
  transformer: typografTransformer,
146
150
  },
147
151
  [models_1.BlockType.ExtendedFeaturesBlock]: [
152
+ ...blockHeaderTransfomer,
148
153
  {
149
- fields: ['title'],
154
+ fields: ['items'],
150
155
  transformer: typografTransformer,
151
- parser: parseTitle,
156
+ parser: (0, exports.createItemsParser)(['title']),
152
157
  },
153
158
  {
154
- fields: ['description'],
159
+ fields: ['items'],
155
160
  transformer: yfmTransformer,
161
+ parser: (0, exports.createItemsParser)(['text', 'additionalInfo']),
156
162
  },
163
+ ],
164
+ [models_1.BlockType.PromoFeaturesBlock]: [
157
165
  {
158
- fields: ['items'],
166
+ fields: ['title'],
159
167
  transformer: typografTransformer,
160
- parser: (0, exports.createItemsParser)(['title']),
168
+ parser: parseTitle,
169
+ },
170
+ {
171
+ fields: ['description'],
172
+ transformer: yfmTransformer,
161
173
  },
162
174
  {
163
175
  fields: ['items'],
164
176
  transformer: yfmTransformer,
165
- parser: (0, exports.createItemsParser)(['text', 'additionalInfo']),
177
+ parser: parsePromoFeatures,
166
178
  },
167
179
  ],
168
- [models_1.BlockType.PromoFeaturesBlock]: {
169
- fields: ['items'],
170
- transformer: yfmTransformer,
171
- parser: parsePromoFeatures,
172
- },
173
- [models_1.BlockType.SliderBlock]: {
174
- transformer: typografTransformer,
175
- parser: parseSlider,
176
- },
180
+ [models_1.BlockType.SliderBlock]: blockHeaderTransfomer,
177
181
  [models_1.BlockType.QuestionsBlock]: [
178
182
  {
179
183
  fields: ['title'],
@@ -210,21 +214,14 @@ const config = {
210
214
  },
211
215
  ],
212
216
  [models_1.BlockType.MediaBlock]: [
217
+ ...blockHeaderTransfomer,
213
218
  {
214
- fields: ['title'],
215
- transformer: typografTransformer,
216
- },
217
- {
218
- fields: ['description', 'title', 'additionalInfo'],
219
+ fields: ['title', 'additionalInfo'],
219
220
  transformer: yfmTransformer,
220
221
  },
221
222
  ],
222
223
  [models_1.BlockType.TabsBlock]: [
223
- {
224
- fields: ['title'],
225
- transformer: typografTransformer,
226
- parser: parseTitle,
227
- },
224
+ ...blockHeaderTransfomer,
228
225
  {
229
226
  fields: ['items'],
230
227
  transformer: yfmTransformer,
@@ -256,6 +253,11 @@ const config = {
256
253
  },
257
254
  ],
258
255
  [models_1.BlockType.SimpleBlock]: [
256
+ {
257
+ fields: ['title'],
258
+ transformer: typografTransformer,
259
+ parser: parseTitle,
260
+ },
259
261
  {
260
262
  fields: ['description'],
261
263
  transformer: yfmTransformer,
@@ -307,28 +309,7 @@ const config = {
307
309
  parser: parseTitle,
308
310
  },
309
311
  ],
310
- [models_1.BlockType.CardLayoutBlock]: [
311
- {
312
- fields: ['description'],
313
- transformer: yfmTransformer,
314
- },
315
- {
316
- fields: ['title'],
317
- transformer: typografTransformer,
318
- parser: parseTitle,
319
- },
320
- ],
321
- [models_1.BlockType.PromoFeaturesBlock]: [
322
- {
323
- fields: ['description'],
324
- transformer: typografTransformer,
325
- },
326
- {
327
- fields: ['title'],
328
- transformer: typografTransformer,
329
- parser: parseTitle,
330
- },
331
- ],
312
+ [models_1.BlockType.PromoFeaturesBlock]: blockHeaderTransfomer,
332
313
  [models_1.BlockType.InfoBlock]: [
333
314
  {
334
315
  fields: ['rightContent', 'leftContent'],
@@ -347,6 +328,15 @@ const config = {
347
328
  transformer: typografTransformer,
348
329
  },
349
330
  ],
331
+ [models_1.BlockType.CardLayoutBlock]: blockHeaderTransfomer,
332
+ [models_1.BlockType.IconsBlock]: [
333
+ {
334
+ fields: ['title'],
335
+ transformer: typografTransformer,
336
+ parser: parseTitle,
337
+ },
338
+ ],
339
+ [models_1.BlockType.LinkTableBlock]: blockHeaderTransfomer,
350
340
  };
351
341
  function addRandomOrder(block) {
352
342
  if (block) {
@@ -2,6 +2,17 @@ export declare const CardLayoutProps: {
2
2
  additionalProperties: boolean;
3
3
  required: string[];
4
4
  properties: {
5
+ colSizes: {
6
+ type: string;
7
+ additionalProperties: boolean;
8
+ properties: {};
9
+ };
10
+ children: {
11
+ type: string;
12
+ items: {
13
+ $ref: string;
14
+ };
15
+ };
5
16
  title: {
6
17
  oneOf: ({
7
18
  type: string;
@@ -25,24 +36,12 @@ export declare const CardLayoutProps: {
25
36
  };
26
37
  } | {
27
38
  type: string;
28
- contentType: string;
29
39
  })[];
30
40
  };
31
41
  description: {
32
42
  type: string;
33
43
  contentType: string;
34
44
  };
35
- colSizes: {
36
- type: string;
37
- additionalProperties: boolean;
38
- properties: {};
39
- };
40
- children: {
41
- type: string;
42
- items: {
43
- $ref: string;
44
- };
45
- };
46
45
  animated: {
47
46
  type: string;
48
47
  };
@@ -76,6 +75,17 @@ export declare const CardLayoutBlock: {
76
75
  additionalProperties: boolean;
77
76
  required: string[];
78
77
  properties: {
78
+ colSizes: {
79
+ type: string;
80
+ additionalProperties: boolean;
81
+ properties: {};
82
+ };
83
+ children: {
84
+ type: string;
85
+ items: {
86
+ $ref: string;
87
+ };
88
+ };
79
89
  title: {
80
90
  oneOf: ({
81
91
  type: string;
@@ -99,24 +109,12 @@ export declare const CardLayoutBlock: {
99
109
  };
100
110
  } | {
101
111
  type: string;
102
- contentType: string;
103
112
  })[];
104
113
  };
105
114
  description: {
106
115
  type: string;
107
116
  contentType: string;
108
117
  };
109
- colSizes: {
110
- type: string;
111
- additionalProperties: boolean;
112
- properties: {};
113
- };
114
- children: {
115
- type: string;
116
- items: {
117
- $ref: string;
118
- };
119
- };
120
118
  animated: {
121
119
  type: string;
122
120
  };
@@ -1,13 +1,8 @@
1
- import { AnimatableProps, containerSizesObject, ChildrenCardsProps, BlockBaseProps, TitleProps, } from '../../schema/validators/common';
1
+ import { AnimatableProps, containerSizesObject, ChildrenCardsProps, BlockBaseProps, BlockHeaderProps, } from '../../schema/validators/common';
2
2
  export const CardLayoutProps = {
3
3
  additionalProperties: false,
4
4
  required: ['title'],
5
- properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), { title: {
6
- oneOf: [{ type: 'string', contentType: 'text' }, TitleProps],
7
- }, description: {
8
- type: 'string',
9
- contentType: 'yfm',
10
- }, colSizes: containerSizesObject, children: ChildrenCardsProps }),
5
+ properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { colSizes: containerSizesObject, children: ChildrenCardsProps }),
11
6
  };
12
7
  export const CardLayoutBlock = {
13
8
  'card-layout-block': CardLayoutProps,
@@ -55,6 +55,22 @@ export declare const ExtendedFeaturesBlock: {
55
55
  additionalProperties: boolean;
56
56
  required: never[];
57
57
  properties: {
58
+ items: {
59
+ type: string;
60
+ items: {
61
+ type: string;
62
+ properties: {
63
+ when: {
64
+ type: string;
65
+ };
66
+ };
67
+ };
68
+ };
69
+ colSizes: {
70
+ type: string;
71
+ additionalProperties: boolean;
72
+ properties: {};
73
+ };
58
74
  title: {
59
75
  oneOf: ({
60
76
  type: string;
@@ -78,29 +94,12 @@ export declare const ExtendedFeaturesBlock: {
78
94
  };
79
95
  } | {
80
96
  type: string;
81
- contentType: string;
82
97
  })[];
83
98
  };
84
99
  description: {
85
100
  type: string;
86
101
  contentType: string;
87
102
  };
88
- items: {
89
- type: string;
90
- items: {
91
- type: string;
92
- properties: {
93
- when: {
94
- type: string;
95
- };
96
- };
97
- };
98
- };
99
- colSizes: {
100
- type: string;
101
- additionalProperties: boolean;
102
- properties: {};
103
- };
104
103
  animated: {
105
104
  type: string;
106
105
  };
@@ -1,4 +1,4 @@
1
- import { AnimatableProps, containerSizesObject, LinkProps, BlockBaseProps, TitleProps, } from '../../schema/validators/common';
1
+ import { AnimatableProps, containerSizesObject, LinkProps, BlockBaseProps, BlockHeaderProps, } from '../../schema/validators/common';
2
2
  import { filteredArray } from '../../schema/validators/utils';
3
3
  export const ExtendedFeaturesItem = {
4
4
  additionalProperties: false,
@@ -26,11 +26,6 @@ export const ExtendedFeaturesBlock = {
26
26
  'extended-features-block': {
27
27
  additionalProperties: false,
28
28
  required: [],
29
- properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), { title: {
30
- oneOf: [{ type: 'string', contentType: 'text' }, TitleProps],
31
- }, description: {
32
- type: 'string',
33
- contentType: 'yfm',
34
- }, items: filteredArray(ExtendedFeaturesItem), colSizes: containerSizesObject }),
29
+ properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { items: filteredArray(ExtendedFeaturesItem), colSizes: containerSizesObject }),
35
30
  },
36
31
  };
@@ -346,31 +346,6 @@ export declare const HeaderSliderBlock: {
346
346
  arrows: {
347
347
  type: string;
348
348
  };
349
- description: {
350
- type: string;
351
- contentType: string;
352
- };
353
- title: {
354
- type: string;
355
- additionalProperties: boolean;
356
- required: string[];
357
- properties: {
358
- text: {
359
- type: string;
360
- contentType: string;
361
- };
362
- textSize: {
363
- type: string;
364
- enum: string[];
365
- };
366
- url: {
367
- type: string;
368
- };
369
- resetMargin: {
370
- type: string;
371
- };
372
- };
373
- };
374
349
  randomOrder: {
375
350
  type: string;
376
351
  };
@@ -3,27 +3,6 @@ export declare const LinkTableBlock: {
3
3
  additionalProperties: boolean;
4
4
  required: string[];
5
5
  properties: {
6
- title: {
7
- type: string;
8
- additionalProperties: boolean;
9
- required: string[];
10
- properties: {
11
- text: {
12
- type: string;
13
- contentType: string;
14
- };
15
- textSize: {
16
- type: string;
17
- enum: string[];
18
- };
19
- url: {
20
- type: string;
21
- };
22
- resetMargin: {
23
- type: string;
24
- };
25
- };
26
- };
27
6
  items: {
28
7
  type: string;
29
8
  items: {
@@ -38,6 +17,35 @@ export declare const LinkTableBlock: {
38
17
  };
39
18
  };
40
19
  };
20
+ title: {
21
+ oneOf: ({
22
+ type: string;
23
+ additionalProperties: boolean;
24
+ required: string[];
25
+ properties: {
26
+ text: {
27
+ type: string;
28
+ contentType: string;
29
+ };
30
+ textSize: {
31
+ type: string;
32
+ enum: string[];
33
+ };
34
+ url: {
35
+ type: string;
36
+ };
37
+ resetMargin: {
38
+ type: string;
39
+ };
40
+ };
41
+ } | {
42
+ type: string;
43
+ })[];
44
+ };
45
+ description: {
46
+ type: string;
47
+ contentType: string;
48
+ };
41
49
  anchor: {
42
50
  type: string;
43
51
  additionalProperties: boolean;
@@ -1,10 +1,10 @@
1
1
  import { filteredArray } from '../../schema/validators/utils';
2
- import { LinkProps, BlockBaseProps, TitleProps } from '../../schema/validators/common';
2
+ import { LinkProps, BlockBaseProps, BlockHeaderProps } from '../../schema/validators/common';
3
3
  export const LinkTableBlock = {
4
4
  'link-table-block': {
5
5
  additionalProperties: false,
6
6
  required: ['items'],
7
- properties: Object.assign(Object.assign({}, BlockBaseProps), { title: TitleProps, items: {
7
+ properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), BlockHeaderProps), { items: {
8
8
  type: 'array',
9
9
  items: filteredArray(LinkProps),
10
10
  } }),
@@ -1,6 +1,6 @@
1
1
  import { omit } from 'lodash';
2
2
  import { BlockBaseProps, ButtonBlock, MediaProps, AnimatableProps, mediaDirection, } from '../../schema/validators/common';
3
- import { ContentBase } from '../../../src/sub-blocks/Content/schema';
3
+ import { ContentBase } from '../../sub-blocks/Content/schema';
4
4
  export const Media = {
5
5
  type: 'object',
6
6
  additionalProperties: false,
@@ -155,6 +155,20 @@ export declare const PromoFeaturesBlock: {
155
155
  additionalProperties: boolean;
156
156
  required: string[];
157
157
  properties: {
158
+ theme: {
159
+ enum: string[];
160
+ };
161
+ items: {
162
+ type: string;
163
+ items: {
164
+ type: string;
165
+ properties: {
166
+ when: {
167
+ type: string;
168
+ };
169
+ };
170
+ };
171
+ };
158
172
  title: {
159
173
  oneOf: ({
160
174
  type: string;
@@ -178,27 +192,12 @@ export declare const PromoFeaturesBlock: {
178
192
  };
179
193
  } | {
180
194
  type: string;
181
- contentType: string;
182
195
  })[];
183
196
  };
184
197
  description: {
185
198
  type: string;
186
199
  contentType: string;
187
200
  };
188
- theme: {
189
- enum: string[];
190
- };
191
- items: {
192
- type: string;
193
- items: {
194
- type: string;
195
- properties: {
196
- when: {
197
- type: string;
198
- };
199
- };
200
- };
201
- };
202
201
  animated: {
203
202
  type: string;
204
203
  };
@@ -1,4 +1,4 @@
1
- import { AnimatableProps, BlockBaseProps, TitleProps } from '../../schema/validators/common';
1
+ import { AnimatableProps, BlockBaseProps, BlockHeaderProps } from '../../schema/validators/common';
2
2
  import { filteredArray } from '../../schema/validators/utils';
3
3
  import { Media } from '../Media/schema';
4
4
  export const PromoFeaturesItem = {
@@ -23,12 +23,7 @@ export const PromoFeaturesBlock = {
23
23
  'promo-features-block': {
24
24
  additionalProperties: false,
25
25
  required: ['items'],
26
- properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), { title: {
27
- oneOf: [{ type: 'string', contentType: 'text' }, TitleProps],
28
- }, description: {
29
- type: 'string',
30
- contentType: 'text',
31
- }, theme: {
26
+ properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { theme: {
32
27
  enum: ['grey', 'default'],
33
28
  }, items: filteredArray(PromoFeaturesItem) }),
34
29
  },
@@ -5,31 +5,6 @@ export declare const SliderProps: {
5
5
  arrows: {
6
6
  type: string;
7
7
  };
8
- description: {
9
- type: string;
10
- contentType: string;
11
- };
12
- title: {
13
- type: string;
14
- additionalProperties: boolean;
15
- required: string[];
16
- properties: {
17
- text: {
18
- type: string;
19
- contentType: string;
20
- };
21
- textSize: {
22
- type: string;
23
- enum: string[];
24
- };
25
- url: {
26
- type: string;
27
- };
28
- resetMargin: {
29
- type: string;
30
- };
31
- };
32
- };
33
8
  randomOrder: {
34
9
  type: string;
35
10
  };
@@ -108,36 +83,40 @@ export declare const SliderBlock: {
108
83
  additionalProperties: boolean;
109
84
  required: never[];
110
85
  properties: {
111
- dots: {
112
- type: string;
113
- };
114
- arrows: {
115
- type: string;
86
+ title: {
87
+ oneOf: ({
88
+ type: string;
89
+ additionalProperties: boolean;
90
+ required: string[];
91
+ properties: {
92
+ text: {
93
+ type: string;
94
+ contentType: string;
95
+ };
96
+ textSize: {
97
+ type: string;
98
+ enum: string[];
99
+ };
100
+ url: {
101
+ type: string;
102
+ };
103
+ resetMargin: {
104
+ type: string;
105
+ };
106
+ };
107
+ } | {
108
+ type: string;
109
+ })[];
116
110
  };
117
111
  description: {
118
112
  type: string;
119
113
  contentType: string;
120
114
  };
121
- title: {
115
+ dots: {
116
+ type: string;
117
+ };
118
+ arrows: {
122
119
  type: string;
123
- additionalProperties: boolean;
124
- required: string[];
125
- properties: {
126
- text: {
127
- type: string;
128
- contentType: string;
129
- };
130
- textSize: {
131
- type: string;
132
- enum: string[];
133
- };
134
- url: {
135
- type: string;
136
- };
137
- resetMargin: {
138
- type: string;
139
- };
140
- };
141
120
  };
142
121
  randomOrder: {
143
122
  type: string;
@@ -1,4 +1,4 @@
1
- import { BlockBaseProps, TitleProps, AnimatableProps, ChildrenCardsProps, sliderSizesObject, textSize, } from '../../schema/validators/common';
1
+ import { BlockBaseProps, AnimatableProps, ChildrenCardsProps, sliderSizesObject, textSize, BlockHeaderProps, } from '../../schema/validators/common';
2
2
  const LoadableProps = {
3
3
  additionalProperties: false,
4
4
  required: ['source'],
@@ -48,11 +48,6 @@ export const SliderProps = {
48
48
  arrows: {
49
49
  type: 'boolean',
50
50
  },
51
- description: {
52
- type: 'string',
53
- contentType: 'text',
54
- },
55
- title: TitleProps,
56
51
  randomOrder: {
57
52
  type: 'boolean',
58
53
  },
@@ -69,6 +64,6 @@ export const SliderBlock = {
69
64
  'slider-block': {
70
65
  additionalProperties: false,
71
66
  required: [],
72
- properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), SliderProps),
67
+ properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), SliderProps), BlockHeaderProps),
73
68
  },
74
69
  };