@niicojs/excel 0.2.7 → 0.3.1

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.2.7",
3
+ "version": "0.3.1",
4
4
  "description": "typescript library to manipulate excel files",
5
5
  "homepage": "https://github.com/niicojs/excel#readme",
6
6
  "bugs": {
package/src/index.ts CHANGED
@@ -1,37 +1,45 @@
1
- // Main exports
2
- export { Workbook } from './workbook';
3
- export { Worksheet } from './worksheet';
4
- export { Cell } from './cell';
5
- export { Range } from './range';
6
- export { SharedStrings } from './shared-strings';
7
- export { Styles } from './styles';
8
- export { PivotTable } from './pivot-table';
9
- export { PivotCache } from './pivot-cache';
10
-
11
- // Type exports
12
- export type {
13
- CellValue,
14
- CellType,
15
- CellStyle,
16
- CellError,
17
- ErrorType,
18
- CellAddress,
19
- RangeAddress,
20
- BorderStyle,
21
- BorderType,
22
- Alignment,
23
- // Pivot table types
24
- PivotTableConfig,
25
- PivotValueConfig,
26
- AggregationType,
27
- PivotFieldAxis,
28
- // Sheet from data types
29
- SheetFromDataConfig,
30
- ColumnConfig,
31
- RichCellValue,
32
- // Sheet to JSON types
33
- SheetToJsonConfig,
34
- } from './types';
35
-
36
- // Utility exports
37
- export { parseAddress, toAddress, parseRange, toRange } from './utils/address';
1
+ // Main exports
2
+ export { Workbook } from './workbook';
3
+ export { Worksheet } from './worksheet';
4
+ export { Cell } from './cell';
5
+ export { Range } from './range';
6
+ export { SharedStrings } from './shared-strings';
7
+ export { Styles } from './styles';
8
+ export { PivotTable } from './pivot-table';
9
+ export { PivotCache } from './pivot-cache';
10
+ export { Table } from './table';
11
+ export { parseAddress, toAddress, parseRange, toRange } from './utils/address';
12
+
13
+ // Type exports
14
+ export type {
15
+ CellValue,
16
+ CellType,
17
+ CellStyle,
18
+ CellError,
19
+ ErrorType,
20
+ CellAddress,
21
+ RangeAddress,
22
+ BorderStyle,
23
+ BorderType,
24
+ Alignment,
25
+ DateHandling,
26
+ // Pivot table types
27
+ PivotTableConfig,
28
+ PivotValueConfig,
29
+ AggregationType,
30
+ PivotFieldAxis,
31
+ PivotSortOrder,
32
+ PivotFieldFilter,
33
+ // Table types
34
+ TableConfig,
35
+ TableStyleConfig,
36
+ TableTotalFunction,
37
+ // Sheet from data types
38
+ SheetFromDataConfig,
39
+ ColumnConfig,
40
+ RichCellValue,
41
+ // Sheet to JSON types
42
+ SheetToJsonConfig,
43
+ } from './types';
44
+
45
+ // Utility exports