@loaders.gl/excel 4.2.0-alpha.6 → 4.2.0-beta.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/dist.dev.js +9 -8
- package/dist/dist.min.js +16 -16
- package/dist/excel-loader.d.ts +26 -3
- package/dist/excel-loader.d.ts.map +1 -1
- package/dist/excel-loader.js +9 -8
- package/dist/excel-worker.js +10 -9
- package/dist/index.cjs +10 -9
- package/dist/index.cjs.map +2 -2
- package/dist/index.d.ts +20 -2
- package/dist/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/excel-loader.ts +17 -12
- package/src/index.ts +2 -2
package/dist/dist.dev.js
CHANGED
|
@@ -55,14 +55,9 @@ var __exports__ = (() => {
|
|
|
55
55
|
|
|
56
56
|
// src/excel-loader.ts
|
|
57
57
|
var VERSION = typeof __VERSION__ !== "undefined" ? __VERSION__ : "latest";
|
|
58
|
-
var DEFAULT_EXCEL_LOADER_OPTIONS = {
|
|
59
|
-
excel: {
|
|
60
|
-
shape: "object-row-table",
|
|
61
|
-
sheet: void 0
|
|
62
|
-
// Load default Sheet
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
58
|
var ExcelLoader = {
|
|
59
|
+
dataType: null,
|
|
60
|
+
batchType: null,
|
|
66
61
|
name: "Excel",
|
|
67
62
|
id: "excel",
|
|
68
63
|
module: "excel",
|
|
@@ -75,7 +70,13 @@ var __exports__ = (() => {
|
|
|
75
70
|
],
|
|
76
71
|
category: "table",
|
|
77
72
|
binary: true,
|
|
78
|
-
options:
|
|
73
|
+
options: {
|
|
74
|
+
excel: {
|
|
75
|
+
shape: "object-row-table",
|
|
76
|
+
sheet: void 0
|
|
77
|
+
// Load default Sheet
|
|
78
|
+
}
|
|
79
|
+
}
|
|
79
80
|
};
|
|
80
81
|
|
|
81
82
|
// ../../node_modules/xlsx/xlsx.mjs
|