matrix_components 2.0.414 → 2.0.415
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.
|
@@ -58689,9 +58689,8 @@ const download = (url, filename = "", method = RequestHttpEnum.GET, data = {}, b
|
|
|
58689
58689
|
return response;
|
|
58690
58690
|
});
|
|
58691
58691
|
};
|
|
58692
|
-
function downLoadLocalFile(path, name, errorCallback) {
|
|
58693
|
-
const
|
|
58694
|
-
const downloadUrl = `${window.location.origin}${baseUrl}`;
|
|
58692
|
+
function downLoadLocalFile(projectBaseUrl, path, name, errorCallback) {
|
|
58693
|
+
const downloadUrl = `${window.location.origin}${projectBaseUrl}`;
|
|
58695
58694
|
download(path, name, "get", {}, downloadUrl, {}, errorCallback);
|
|
58696
58695
|
}
|
|
58697
58696
|
function getTokenInfo() {
|