@progress/kendo-spreadsheet-common 1.0.0-develop.14 → 1.0.0-develop.15
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 +8 -8
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/index-esm.js
CHANGED
|
@@ -24960,14 +24960,14 @@ class OpenCommand extends Command {
|
|
|
24960
24960
|
}
|
|
24961
24961
|
|
|
24962
24962
|
let workbook = this.options.workbook;
|
|
24963
|
-
workbook.fromFile(this.options.file)
|
|
24964
|
-
|
|
24965
|
-
|
|
24966
|
-
|
|
24967
|
-
|
|
24968
|
-
|
|
24969
|
-
}
|
|
24970
|
-
}
|
|
24963
|
+
workbook.fromFile(this.options.file);
|
|
24964
|
+
|
|
24965
|
+
let errors = workbook.excelImportErrors;
|
|
24966
|
+
if (errors && errors.length) {
|
|
24967
|
+
workbook._view.openDialog("importError", {
|
|
24968
|
+
errors: errors
|
|
24969
|
+
});
|
|
24970
|
+
}
|
|
24971
24971
|
}
|
|
24972
24972
|
}
|
|
24973
24973
|
|
package/dist/index.js
CHANGED
|
@@ -24961,14 +24961,14 @@
|
|
|
24961
24961
|
}
|
|
24962
24962
|
|
|
24963
24963
|
let workbook = this.options.workbook;
|
|
24964
|
-
workbook.fromFile(this.options.file)
|
|
24965
|
-
|
|
24966
|
-
|
|
24967
|
-
|
|
24968
|
-
|
|
24969
|
-
|
|
24970
|
-
}
|
|
24971
|
-
}
|
|
24964
|
+
workbook.fromFile(this.options.file);
|
|
24965
|
+
|
|
24966
|
+
let errors = workbook.excelImportErrors;
|
|
24967
|
+
if (errors && errors.length) {
|
|
24968
|
+
workbook._view.openDialog("importError", {
|
|
24969
|
+
errors: errors
|
|
24970
|
+
});
|
|
24971
|
+
}
|
|
24972
24972
|
}
|
|
24973
24973
|
}
|
|
24974
24974
|
|