@niicojs/excel 0.3.4 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@niicojs/excel",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "typescript library to manipulate excel files",
5
5
  "homepage": "https://github.com/niicojs/excel#readme",
6
6
  "bugs": {
@@ -45,15 +45,15 @@
45
45
  "prepublishOnly": "bun run build"
46
46
  },
47
47
  "dependencies": {
48
- "fast-xml-parser": "^5.3.4",
48
+ "fast-xml-parser": "^5.5.8",
49
49
  "fflate": "^0.8.2"
50
50
  },
51
51
  "devDependencies": {
52
- "@types/node": "^25.2.0",
52
+ "@types/node": "^25.5.0",
53
53
  "bunchee": "^6.9.4",
54
54
  "tsdx": "latest",
55
55
  "typescript": "^5.7.2",
56
- "vitest": "^4.0.18"
56
+ "vitest": "^4.1.0"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=20"
package/src/index.ts CHANGED
@@ -5,10 +5,9 @@ export { Cell } from './cell';
5
5
  export { Range } from './range';
6
6
  export { SharedStrings } from './shared-strings';
7
7
  export { Styles } from './styles';
8
- export { PivotTable } from './pivot-table';
9
- export { PivotCache } from './pivot-cache';
10
8
  export { Table } from './table';
11
- export { parseAddress, toAddress, parseRange, toRange } from './utils/address';
9
+ export { PivotTable } from './pivot-table';
10
+ export { parseAddress, toAddress, parseRange, toRange, parseSheetAddress, parseSheetRange } from './utils/address';
12
11
 
13
12
  // Type exports
14
13
  export type {
@@ -23,23 +22,22 @@ export type {
23
22
  BorderType,
24
23
  Alignment,
25
24
  DateHandling,
26
- // Pivot table types
27
- PivotTableConfig,
28
- PivotValueConfig,
29
- AggregationType,
30
- PivotFieldAxis,
31
- PivotSortOrder,
32
- PivotFieldFilter,
33
25
  // Table types
34
26
  TableConfig,
35
27
  TableStyleConfig,
36
28
  TableTotalFunction,
29
+ PivotTableConfig,
30
+ PivotAggregationType,
31
+ PivotValueConfig,
32
+ PivotSortOrder,
33
+ PivotFieldFilter,
37
34
  // Sheet from data types
38
35
  SheetFromDataConfig,
39
36
  ColumnConfig,
40
37
  RichCellValue,
41
38
  // Sheet to JSON types
42
39
  SheetToJsonConfig,
40
+ WorkbookReadOptions,
43
41
  } from './types';
44
42
 
45
43
  // Utility exports