Skip to content

Commit 995b47b

Browse files
author
Yury Kornilov
committed
Merge branch 'main' into release/v10
2 parents bccfd4d + f10dd5a commit 995b47b

4 files changed

Lines changed: 47 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [9.3.2](https://github.com/gravity-ui/dashkit/compare/v9.3.1...v9.3.2) (2026-01-29)
4+
5+
6+
### Bug Fixes
7+
8+
* **build:** treeshakability and correct types for commonjs ([#294](https://github.com/gravity-ui/dashkit/issues/294)) ([55df800](https://github.com/gravity-ui/dashkit/commit/55df8008936ffeeb2bb499bbf64643163316a791))
9+
10+
## [9.3.1](https://github.com/gravity-ui/dashkit/compare/v9.3.0...v9.3.1) (2025-12-25)
11+
12+
13+
### Bug Fixes
14+
15+
* **OverlayControls:** support iconSize prop usage with renderIcon ([#289](https://github.com/gravity-ui/dashkit/issues/289)) ([3afa93c](https://github.com/gravity-ui/dashkit/commit/3afa93cb72c6751e18fb4a404e2268c1e8677185))
16+
17+
## [9.3.0](https://github.com/gravity-ui/dashkit/compare/v9.2.0...v9.3.0) (2025-12-25)
18+
19+
20+
### Features
21+
22+
* **OverlayControls:** support className and rendIcon props ([#286](https://github.com/gravity-ui/dashkit/issues/286)) ([f68b174](https://github.com/gravity-ui/dashkit/commit/f68b174d8f5f513b992b7304b2fded70b7948e3a))
23+
324
## [9.2.0](https://github.com/gravity-ui/dashkit/compare/v9.1.4...v9.2.0) (2025-11-11)
425

526

gulpfile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const rimraf = require('rimraf');
88

99
const BUILD_DIR = path.resolve('build');
1010

11+
const {version, sideEffects} = require('./package.json');
12+
1113
task('clean', (done) => {
1214
rimraf.sync(BUILD_DIR);
1315
done();
@@ -49,7 +51,11 @@ async function compileTs(modules = false) {
4951
.pipe(
5052
utils.addVirtualFile({
5153
fileName: 'package.json',
52-
text: JSON.stringify({type: modules ? 'module' : 'commonjs'}),
54+
text: JSON.stringify({
55+
version,
56+
type: modules ? 'module' : 'commonjs',
57+
sideEffects,
58+
}),
5359
}),
5460
)
5561
.pipe(dest(path.resolve(BUILD_DIR, moduleType)))

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gravity-ui/dashkit",
3-
"version": "9.2.0",
3+
"version": "9.3.2",
44
"description": "Library for rendering dashboard grid layout",
55
"license": "MIT",
66
"repository": {
@@ -9,14 +9,24 @@
99
},
1010
"exports": {
1111
".": {
12-
"types": "./build/esm/index.d.ts",
13-
"require": "./build/cjs/index.js",
14-
"import": "./build/esm/index.js"
12+
"import": {
13+
"types": "./build/esm/index.d.ts",
14+
"default": "./build/esm/index.js"
15+
},
16+
"require": {
17+
"types": "./build/cjs/index.d.ts",
18+
"default": "./build/cjs/index.js"
19+
}
1520
},
1621
"./helpers": {
17-
"types": "./build/esm/helpers.d.ts",
18-
"require": "./build/cjs/helpers.js",
19-
"import": "./build/esm/helpers.js"
22+
"import": {
23+
"types": "./build/esm/helpers.d.ts",
24+
"default": "./build/esm/helpers.js"
25+
},
26+
"require": {
27+
"types": "./build/cjs/helpers.d.ts",
28+
"default": "./build/cjs/helpers.js"
29+
}
2030
}
2131
},
2232
"files": [

0 commit comments

Comments
 (0)