@stamhoofd/excel-writer 2.136.2 → 2.137.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/dist/core.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ export * from './interfaces.js';
2
+ export * from './exportToExcel.js';
3
+ export * from './XlsxColumnFilterer.js';
4
+ export * from './XlsxTransformer.js';
5
+ //# sourceMappingURL=core.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAGA,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC"}
package/dist/core.js ADDED
@@ -0,0 +1,8 @@
1
+ // Browser-safe entry point: everything except the Node.js stream writers.
2
+ // Used by the frontend to generate Excel files locally with the same
3
+ // sheet/column definitions and filtering logic as the backend.
4
+ export * from './interfaces.js';
5
+ export * from './exportToExcel.js';
6
+ export * from './XlsxColumnFilterer.js';
7
+ export * from './XlsxTransformer.js';
8
+ //# sourceMappingURL=core.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAAA,0EAA0E;AAC1E,qEAAqE;AACrE,+DAA+D;AAC/D,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,sBAAsB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- export * from './interfaces.js';
2
- export * from './exportToExcel.js';
1
+ export * from './core.js';
3
2
  export * from './stream-writer/index.js';
4
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC"}
package/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
- export * from './interfaces.js';
2
- export * from './exportToExcel.js';
1
+ export * from './core.js';
3
2
  export * from './stream-writer/index.js';
4
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamhoofd/excel-writer",
3
- "version": "2.136.2",
3
+ "version": "2.137.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.d.ts",
6
6
  "module": "./dist/index.js",
@@ -11,6 +11,11 @@
11
11
  "types": "./dist/index.d.ts",
12
12
  "import": "./dist/index.js",
13
13
  "require": "./dist/index.js"
14
+ },
15
+ "./core": {
16
+ "types": "./dist/core.d.ts",
17
+ "import": "./dist/core.js",
18
+ "require": "./dist/core.js"
14
19
  }
15
20
  },
16
21
  "files": [
@@ -22,7 +27,8 @@
22
27
  "lint": "eslint"
23
28
  },
24
29
  "dependencies": {
25
- "@simonbackx/simple-errors": "1.5.0"
30
+ "@simonbackx/simple-errors": "1.5.0",
31
+ "uuid": "14.0.0"
26
32
  },
27
33
  "devDependencies": {
28
34
  "@types/archiver": "6.0.3",
@@ -37,5 +43,5 @@
37
43
  "publishConfig": {
38
44
  "access": "public"
39
45
  },
40
- "gitHead": "3859491238553f8cc64d4c033032209fbba3be5d"
46
+ "gitHead": "f327bce84bd0c5ca7160e3e71ad03700d520b086"
41
47
  }