@microsoft/connected-workbooks 3.2.0-beta → 3.2.2-beta
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/bundle.js +9660 -0
- package/dist/workbookManager.js +1 -1
- package/package.json +1 -1
- package/dist/main.js +0 -634
- package/dist/src/types.d.ts +0 -55
- package/dist/src/utils/index.d.ts +0 -8
- package/dist/tests/mocks/index.d.ts +0 -3
- package/dist/utils/index.d.ts +0 -8
package/dist/workbookManager.js
CHANGED
|
@@ -195,7 +195,7 @@ var getExcelForWebWorkbookUrl = function (file, filename, allowTyping) { return
|
|
|
195
195
|
switch (_a.label) {
|
|
196
196
|
case 0:
|
|
197
197
|
// Check if the file exists
|
|
198
|
-
if (file.size
|
|
198
|
+
if (file.size <= 0) {
|
|
199
199
|
throw new Error("File is empty");
|
|
200
200
|
}
|
|
201
201
|
fileContent = file;
|
package/package.json
CHANGED