@gravity-ui/page-constructor 4.1.1 → 4.1.2

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.
@@ -66,6 +66,9 @@ export declare const FilterProps: {
66
66
  type: string;
67
67
  enum: string[];
68
68
  };
69
+ centered: {
70
+ type: string;
71
+ };
69
72
  title: {
70
73
  oneOf: ({
71
74
  type: string;
@@ -173,6 +176,9 @@ export declare const FilterBlock: {
173
176
  type: string;
174
177
  enum: string[];
175
178
  };
179
+ centered: {
180
+ type: string;
181
+ };
176
182
  title: {
177
183
  oneOf: ({
178
184
  type: string;
@@ -30,7 +30,7 @@ exports.FilterItemProps = {
30
30
  };
31
31
  exports.FilterProps = {
32
32
  additionalProperties: false,
33
- required: ['filterTags', 'block'],
33
+ required: ['tags', 'items'],
34
34
  properties: Object.assign(Object.assign(Object.assign(Object.assign({}, common_1.BlockBaseProps), common_1.AnimatableProps), common_1.BlockHeaderProps), { allTag: {
35
35
  oneOf: [
36
36
  {
@@ -45,7 +45,7 @@ exports.FilterProps = {
45
45
  }, colSizes: common_1.containerSizesObject, tags: (0, utils_1.filteredArray)(exports.FilterTagProps), items: (0, utils_1.filteredArray)(exports.FilterItemProps), tagButtonSize: {
46
46
  type: 'string',
47
47
  enum: ['s', 'm', 'l', 'xl'],
48
- } }),
48
+ }, centered: { type: 'boolean' } }),
49
49
  };
50
50
  exports.FilterBlock = {
51
51
  'filter-block': exports.FilterProps,
@@ -66,6 +66,9 @@ export declare const FilterProps: {
66
66
  type: string;
67
67
  enum: string[];
68
68
  };
69
+ centered: {
70
+ type: string;
71
+ };
69
72
  title: {
70
73
  oneOf: ({
71
74
  type: string;
@@ -173,6 +176,9 @@ export declare const FilterBlock: {
173
176
  type: string;
174
177
  enum: string[];
175
178
  };
179
+ centered: {
180
+ type: string;
181
+ };
176
182
  title: {
177
183
  oneOf: ({
178
184
  type: string;
@@ -27,7 +27,7 @@ export const FilterItemProps = {
27
27
  };
28
28
  export const FilterProps = {
29
29
  additionalProperties: false,
30
- required: ['filterTags', 'block'],
30
+ required: ['tags', 'items'],
31
31
  properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { allTag: {
32
32
  oneOf: [
33
33
  {
@@ -42,7 +42,7 @@ export const FilterProps = {
42
42
  }, colSizes: containerSizesObject, tags: filteredArray(FilterTagProps), items: filteredArray(FilterItemProps), tagButtonSize: {
43
43
  type: 'string',
44
44
  enum: ['s', 'm', 'l', 'xl'],
45
- } }),
45
+ }, centered: { type: 'boolean' } }),
46
46
  };
47
47
  export const FilterBlock = {
48
48
  'filter-block': FilterProps,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/page-constructor",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "description": "Gravity UI Page Constructor",
5
5
  "license": "MIT",
6
6
  "repository": {