@infomaximum/widget-sdk 4.0.0-beta60 → 4.0.0-beta61

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/dist/index.esm.js CHANGED
@@ -743,7 +743,10 @@ var parseIndicatorLink = function (formula) {
743
743
  }
744
744
  var workspaceMatch = formula.match(workspaceLinkRegExp.source);
745
745
  if (workspaceMatch) {
746
- return { scopeName: workspaceMatch[1], indicatorName: workspaceMatch[2] };
746
+ return {
747
+ scopeName: unescapeSpecialCharacters(workspaceMatch[1]),
748
+ indicatorName: unescapeSpecialCharacters(workspaceMatch[2]),
749
+ };
747
750
  }
748
751
  return null;
749
752
  };
package/dist/index.js CHANGED
@@ -744,7 +744,10 @@ var parseIndicatorLink = function (formula) {
744
744
  }
745
745
  var workspaceMatch = formula.match(workspaceLinkRegExp.source);
746
746
  if (workspaceMatch) {
747
- return { scopeName: workspaceMatch[1], indicatorName: workspaceMatch[2] };
747
+ return {
748
+ scopeName: unescapeSpecialCharacters(workspaceMatch[1]),
749
+ indicatorName: unescapeSpecialCharacters(workspaceMatch[2]),
750
+ };
748
751
  }
749
752
  return null;
750
753
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "4.0.0-beta60",
3
+ "version": "4.0.0-beta61",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",