@progress/kendo-spreadsheet-common 1.1.2-develop.1 → 1.1.2-develop.2
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 +5 -0
- package/dist/index.js +5 -0
- package/package.json +1 -1
package/dist/index-esm.js
CHANGED
|
@@ -25660,6 +25660,11 @@ async function loadSheets(items, workbook) {
|
|
|
25660
25660
|
for (let i = 0; i < items.length; i++) {
|
|
25661
25661
|
const ctx = items[i];
|
|
25662
25662
|
let sheet = workbook.insertSheet(ctx.options);
|
|
25663
|
+
|
|
25664
|
+
if (!sheet) {
|
|
25665
|
+
continue;
|
|
25666
|
+
}
|
|
25667
|
+
|
|
25663
25668
|
sheet.suspendChanges(true);
|
|
25664
25669
|
await readSheet(ctx.zip, ctx.file, sheet, ctx.strings, ctx.styles);
|
|
25665
25670
|
}
|
package/dist/index.js
CHANGED
|
@@ -25661,6 +25661,11 @@
|
|
|
25661
25661
|
for (let i = 0; i < items.length; i++) {
|
|
25662
25662
|
const ctx = items[i];
|
|
25663
25663
|
let sheet = workbook.insertSheet(ctx.options);
|
|
25664
|
+
|
|
25665
|
+
if (!sheet) {
|
|
25666
|
+
continue;
|
|
25667
|
+
}
|
|
25668
|
+
|
|
25664
25669
|
sheet.suspendChanges(true);
|
|
25665
25670
|
await readSheet(ctx.zip, ctx.file, sheet, ctx.strings, ctx.styles);
|
|
25666
25671
|
}
|