ydb-embedded-ui 4.11.0 → 4.11.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.11.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.11.0...v4.11.1) (2023-07-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **Issues:** fix types ([#488](https://github.com/ydb-platform/ydb-embedded-ui/issues/488)) ([e2fe731](https://github.com/ydb-platform/ydb-embedded-ui/commit/e2fe731ae23db6703f21179668582d5657de9550))
9
+
3
10
  ## [4.11.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v4.10.1...v4.11.0) (2023-07-27)
4
11
 
5
12
 
@@ -145,7 +145,7 @@ function IssueList(props: {issues: IssueMessage[]; expanded: boolean; level: num
145
145
  );
146
146
  }
147
147
 
148
- const severityIcons: Record<SEVERITY, string> = {
148
+ const severityIcons: Record<SEVERITY, SVGIconData> = {
149
149
  S_INFO: infoIcon,
150
150
  S_WARNING: warningIcon,
151
151
  S_ERROR: errorIcon,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "4.11.0",
3
+ "version": "4.11.1",
4
4
  "files": [
5
5
  "dist"
6
6
  ],