@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 +4 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
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 {
|
|
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 {
|
|
747
|
+
return {
|
|
748
|
+
scopeName: unescapeSpecialCharacters(workspaceMatch[1]),
|
|
749
|
+
indicatorName: unescapeSpecialCharacters(workspaceMatch[2]),
|
|
750
|
+
};
|
|
748
751
|
}
|
|
749
752
|
return null;
|
|
750
753
|
};
|