@infomaximum/widget-sdk 7.0.0-30 → 7.0.0-31

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [7.0.0-31](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-30...v7.0.0-31) (2026-06-22)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **BI-15428:** unescape indicator name in dashboard link parsing ([4f38569](https://github.com/Infomaximum/widget-sdk/commit/4f385697f44e4aa24c41d16b3ac971b42a2a6de9))
11
+
5
12
  ## [7.0.0-30](https://github.com/Infomaximum/widget-sdk/compare/v7.0.0-29...v7.0.0-30) (2026-06-18)
6
13
 
7
14
 
package/dist/index.esm.js CHANGED
@@ -2472,7 +2472,7 @@ var escapeCurlyBracketLinkName = createEscaper(Array.from("\\}.[]"));
2472
2472
  var parseIndicatorLink = function (formula) {
2473
2473
  var dashboardMatch = formula.match(dashboardLinkRegExp.source);
2474
2474
  if (dashboardMatch) {
2475
- return { scopeName: null, indicatorName: dashboardMatch[1] };
2475
+ return { scopeName: null, indicatorName: unescapeSpecialCharacters(dashboardMatch[1]) };
2476
2476
  }
2477
2477
  var workspaceMatch = formula.match(workspaceLinkRegExp.source);
2478
2478
  if (workspaceMatch) {
package/dist/index.js CHANGED
@@ -2473,7 +2473,7 @@ var escapeCurlyBracketLinkName = createEscaper(Array.from("\\}.[]"));
2473
2473
  var parseIndicatorLink = function (formula) {
2474
2474
  var dashboardMatch = formula.match(dashboardLinkRegExp.source);
2475
2475
  if (dashboardMatch) {
2476
- return { scopeName: null, indicatorName: dashboardMatch[1] };
2476
+ return { scopeName: null, indicatorName: unescapeSpecialCharacters(dashboardMatch[1]) };
2477
2477
  }
2478
2478
  var workspaceMatch = formula.match(workspaceLinkRegExp.source);
2479
2479
  if (workspaceMatch) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "7.0.0-30",
3
+ "version": "7.0.0-31",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",