Skip to content

Commit b2d222c

Browse files
authored
Merge branch 'main' into fix-healthcheck
2 parents 005b8e4 + b106e75 commit b2d222c

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "9.6.0"
2+
".": "9.6.1"
33
}

CHANGELOG.md

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

3+
## [9.6.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v9.6.0...v9.6.1) (2025-06-16)
4+
5+
6+
### Bug Fixes
7+
8+
* **uiFactory:** add generic support ([#2407](https://github.com/ydb-platform/ydb-embedded-ui/issues/2407)) ([0014557](https://github.com/ydb-platform/ydb-embedded-ui/commit/00145578ae6d548763d66af2fe8e78c1e37dac5c))
9+
310
## [9.6.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v9.5.1...v9.6.0) (2025-06-16)
411

512

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ydb-embedded-ui",
3-
"version": "9.6.0",
3+
"version": "9.6.1",
44
"files": [
55
"dist"
66
],

src/uiFactory/uiFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const uiFactoryBase: UIFactory = {
2020
},
2121
};
2222

23-
export function configureUIFactory(overrides: Partial<UIFactory>) {
23+
export function configureUIFactory<H extends string>(overrides: Partial<UIFactory<H>>) {
2424
Object.assign(uiFactoryBase, overrides);
2525
}
2626

0 commit comments

Comments
 (0)