@loaders.gl/excel 4.0.0-beta.3 → 4.0.0-beta.5
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 +0 -2
- package/dist/excel-worker.js +1 -1
- package/package.json +4 -4
package/dist/dist.dev.js
CHANGED
|
@@ -36768,7 +36768,6 @@ var __exports__ = (() => {
|
|
|
36768
36768
|
excel: {
|
|
36769
36769
|
shape: "object-row-table",
|
|
36770
36770
|
sheet: void 0
|
|
36771
|
-
// Load default Sheet
|
|
36772
36771
|
}
|
|
36773
36772
|
};
|
|
36774
36773
|
var ExcelLoader = {
|
|
@@ -36791,7 +36790,6 @@ var __exports__ = (() => {
|
|
|
36791
36790
|
const dataUrl = "dummy";
|
|
36792
36791
|
const workbook = (0, import_xlsx.read)(arrayBuffer, {
|
|
36793
36792
|
type: "array"
|
|
36794
|
-
// cellDates: true
|
|
36795
36793
|
});
|
|
36796
36794
|
let dataRows = [];
|
|
36797
36795
|
dataTableNamesMap[dataUrl] = [];
|
package/dist/excel-worker.js
CHANGED
|
@@ -36944,7 +36944,7 @@
|
|
|
36944
36944
|
}
|
|
36945
36945
|
|
|
36946
36946
|
// src/excel-loader.ts
|
|
36947
|
-
var VERSION = true ? "4.0.0-beta.
|
|
36947
|
+
var VERSION = true ? "4.0.0-beta.5" : "latest";
|
|
36948
36948
|
var DEFAULT_EXCEL_LOADER_OPTIONS = {
|
|
36949
36949
|
excel: {
|
|
36950
36950
|
shape: "object-row-table",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/excel",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.5",
|
|
4
4
|
"description": "Framework-independent loader for Excel files",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"build-worker": "esbuild src/workers/excel-worker.ts --bundle --outfile=dist/excel-worker.js --define:__VERSION__=\\\"$npm_package_version\\\""
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@loaders.gl/loader-utils": "4.0.0-beta.
|
|
47
|
-
"@loaders.gl/schema": "4.0.0-beta.
|
|
46
|
+
"@loaders.gl/loader-utils": "4.0.0-beta.5",
|
|
47
|
+
"@loaders.gl/schema": "4.0.0-beta.5",
|
|
48
48
|
"xlsx": "^0.17.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "a6f5a0d1a316cc22396e5a4d480c14329d1ef146"
|
|
51
51
|
}
|