pollination-react-io 1.97.0 → 1.98.0
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/build/index.esm.js +4 -0
- package/build/index.esm.js.map +1 -1
- package/build/index.js +4 -0
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
@@ -38973,6 +38973,10 @@ var useCreateStudy = function (accountName, projectName, client) {
|
|
38973
38973
|
}
|
38974
38974
|
});
|
38975
38975
|
}
|
38976
|
+
// from Base64 to File. Use it for controlled values local machine to cloud
|
38977
|
+
if (typeof value.base64_string === 'string' && typeof value.file_name === 'string') {
|
38978
|
+
value = dataURLtoFile(value.base64_string, value.file_name);
|
38979
|
+
}
|
38976
38980
|
// first download artifact and turn it into a blob
|
38977
38981
|
// then save it to the users machine and provide
|
38978
38982
|
// the name to the jobInfo object
|