@extend-ai/react-xlsx 0.11.0 → 0.12.0
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/README.md +50 -2
- package/dist/duke_sheets_wasm_bg.wasm +0 -0
- package/dist/index.cjs +303 -96
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +240 -2
- package/dist/index.d.ts +240 -2
- package/dist/index.js +303 -96
- package/dist/index.js.map +1 -1
- package/dist/xlsx-worker.js +1 -1
- package/dist/xlsx-worker.js.map +1 -1
- package/package.json +2 -2
package/dist/xlsx-worker.js
CHANGED
|
@@ -4449,7 +4449,7 @@ function getSheetsWasmModule() {
|
|
|
4449
4449
|
if (!wasmModulePromise) {
|
|
4450
4450
|
wasmModulePromise = import("@dukelib/sheets-wasm").then(async (mod) => {
|
|
4451
4451
|
if (configuredWasmSource !== void 0) {
|
|
4452
|
-
await mod.default(configuredWasmSource);
|
|
4452
|
+
await mod.default({ module_or_path: configuredWasmSource });
|
|
4453
4453
|
} else {
|
|
4454
4454
|
await mod.default();
|
|
4455
4455
|
}
|