@gravity-ui/page-constructor 2.12.0 → 2.13.0
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/CHANGELOG.md +7 -0
- package/build/cjs/schema/validators/components.d.ts +2 -0
- package/build/cjs/schema/validators/components.js +5 -0
- package/build/cjs/schema/validators/index.d.ts +2 -0
- package/build/cjs/schema/validators/index.js +2 -0
- package/build/esm/schema/validators/components.d.ts +2 -0
- package/build/esm/schema/validators/components.js +2 -0
- package/build/esm/schema/validators/index.d.ts +2 -0
- package/build/esm/schema/validators/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.13.0](https://github.com/gravity-ui/page-constructor/compare/v2.12.0...v2.13.0) (2023-04-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add components schemas in export ([#319](https://github.com/gravity-ui/page-constructor/issues/319)) ([756c209](https://github.com/gravity-ui/page-constructor/commit/756c20932c8643ffffbbd132a4a3d9e51439fbf7))
|
|
9
|
+
|
|
3
10
|
## [2.12.0](https://github.com/gravity-ui/page-constructor/compare/v2.11.0...v2.12.0) (2023-04-25)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as blocks from './blocks';
|
|
2
2
|
import * as common from './common';
|
|
3
|
+
import * as components from './components';
|
|
3
4
|
import * as navigation from './navigation';
|
|
4
5
|
import * as pixel from './pixel';
|
|
5
6
|
import * as subBlocks from './sub-blocks';
|
|
@@ -7,6 +8,7 @@ import * as utils from './utils';
|
|
|
7
8
|
export declare const validators: {
|
|
8
9
|
blocks: typeof blocks;
|
|
9
10
|
common: typeof common;
|
|
11
|
+
components: typeof components;
|
|
10
12
|
subBlocks: typeof subBlocks;
|
|
11
13
|
pixel: typeof pixel;
|
|
12
14
|
utils: typeof utils;
|
|
@@ -4,6 +4,7 @@ exports.validators = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const blocks = tslib_1.__importStar(require("./blocks"));
|
|
6
6
|
const common = tslib_1.__importStar(require("./common"));
|
|
7
|
+
const components = tslib_1.__importStar(require("./components"));
|
|
7
8
|
const navigation = tslib_1.__importStar(require("./navigation"));
|
|
8
9
|
const pixel = tslib_1.__importStar(require("./pixel"));
|
|
9
10
|
const subBlocks = tslib_1.__importStar(require("./sub-blocks"));
|
|
@@ -11,6 +12,7 @@ const utils = tslib_1.__importStar(require("./utils"));
|
|
|
11
12
|
exports.validators = {
|
|
12
13
|
blocks,
|
|
13
14
|
common,
|
|
15
|
+
components,
|
|
14
16
|
subBlocks,
|
|
15
17
|
pixel,
|
|
16
18
|
utils,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as blocks from './blocks';
|
|
2
2
|
import * as common from './common';
|
|
3
|
+
import * as components from './components';
|
|
3
4
|
import * as navigation from './navigation';
|
|
4
5
|
import * as pixel from './pixel';
|
|
5
6
|
import * as subBlocks from './sub-blocks';
|
|
@@ -7,6 +8,7 @@ import * as utils from './utils';
|
|
|
7
8
|
export declare const validators: {
|
|
8
9
|
blocks: typeof blocks;
|
|
9
10
|
common: typeof common;
|
|
11
|
+
components: typeof components;
|
|
10
12
|
subBlocks: typeof subBlocks;
|
|
11
13
|
pixel: typeof pixel;
|
|
12
14
|
utils: typeof utils;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as blocks from './blocks';
|
|
2
2
|
import * as common from './common';
|
|
3
|
+
import * as components from './components';
|
|
3
4
|
import * as navigation from './navigation';
|
|
4
5
|
import * as pixel from './pixel';
|
|
5
6
|
import * as subBlocks from './sub-blocks';
|
|
@@ -7,6 +8,7 @@ import * as utils from './utils';
|
|
|
7
8
|
export const validators = {
|
|
8
9
|
blocks,
|
|
9
10
|
common,
|
|
11
|
+
components,
|
|
10
12
|
subBlocks,
|
|
11
13
|
pixel,
|
|
12
14
|
utils,
|