@omegagrid/plugin-xlsx 0.6.24 → 0.6.26

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.
Files changed (2) hide show
  1. package/dist/export.js +1 -1
  2. package/package.json +4 -4
package/dist/export.js CHANGED
@@ -364,7 +364,7 @@ export async function createWorkbook(models, exportOptions) {
364
364
  if (!wb.Workbook.Sheets[index])
365
365
  wb.Workbook.Sheets[index] = {};
366
366
  if (m.tab?.hidden)
367
- wb.Workbook.Sheets[index].Hidden = 2;
367
+ wb.Workbook.Sheets[index].Hidden = 1;
368
368
  });
369
369
  return wb;
370
370
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omegagrid/plugin-xlsx",
3
- "version": "0.6.24",
3
+ "version": "0.6.26",
4
4
  "license": "UNLICENSED",
5
5
  "description": "Xlsx import/export plugin",
6
6
  "main": "./dist/index.js",
@@ -27,9 +27,9 @@
27
27
  "_prepublish": "yarn test && yarn lint"
28
28
  },
29
29
  "dependencies": {
30
- "@omegagrid/core": "^0.6.24",
31
- "@omegagrid/editor": "^0.6.24",
32
- "@omegagrid/grid": "^0.6.24",
30
+ "@omegagrid/core": "^0.6.26",
31
+ "@omegagrid/editor": "^0.6.26",
32
+ "@omegagrid/grid": "^0.6.26",
33
33
  "lit": "^3.1.1",
34
34
  "lit-html": "^3.1.1",
35
35
  "ts-debounce": "^4.0.0"