@concord-consortium/cloud-file-manager 2.1.0-pre.12 → 2.1.0-pre.13
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/cjs/app-options.d.ts +1 -0
- package/dist/cjs/client.js +1 -1
- package/dist/cjs/providers/provider-interface.js +1 -1
- package/dist/esm/app-options.d.ts +1 -0
- package/dist/esm/client.js +1 -1
- package/dist/esm/providers/provider-interface.js +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +4 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@concord-consortium/cloud-file-manager",
|
|
3
3
|
"description": "Wrapper for providing file management for web applications",
|
|
4
4
|
"author": "The Concord Consortium",
|
|
5
|
-
"version": "2.1.0-pre.
|
|
5
|
+
"version": "2.1.0-pre.13",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/concord-consortium/cloud-file-manager.git"
|
package/readme.md
CHANGED
|
@@ -218,6 +218,10 @@ export interface CFMAppOptions {
|
|
|
218
218
|
// false if the content should be unwrapped before storing to file/disk
|
|
219
219
|
wrapFileContent?: boolean
|
|
220
220
|
mimeType?: string
|
|
221
|
+
// if present, used when saving to local file system
|
|
222
|
+
// if set to "application/octet-stream " this prevents iOS from appending a file extension
|
|
223
|
+
// based on MIME type
|
|
224
|
+
localFileMimeType?: string
|
|
221
225
|
// note different capitalization from CFMBaseProviderOptions
|
|
222
226
|
readableMimeTypes?: string[]
|
|
223
227
|
extension?: string
|