@simplysm/excel 13.0.0-beta.21 → 13.0.0-beta.23
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 +15 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -381,6 +381,21 @@ Behavior of the `read()` method:
|
|
|
381
381
|
| `convertNumFmtCodeToName(code)` | Format code | `ExcelNumberFormat` | Convert format code to name |
|
|
382
382
|
| `convertNumFmtNameToId(name)` | `ExcelNumberFormat` | Format ID | Convert format name to ID |
|
|
383
383
|
|
|
384
|
+
## ExcelRow API
|
|
385
|
+
|
|
386
|
+
| Method | Return Type | Description |
|
|
387
|
+
|--------|-----------|------|
|
|
388
|
+
| `cell(c)` | `ExcelCell` | Get cell at column index (0-based) |
|
|
389
|
+
| `getCells()` | `Promise<ExcelCell[]>` | Get all cells in the row |
|
|
390
|
+
|
|
391
|
+
## ExcelCol API
|
|
392
|
+
|
|
393
|
+
| Method | Return Type | Description |
|
|
394
|
+
|--------|-----------|------|
|
|
395
|
+
| `cell(r)` | `ExcelCell` | Get cell at row index (0-based) |
|
|
396
|
+
| `getCells()` | `Promise<ExcelCell[]>` | Get all cells in the column |
|
|
397
|
+
| `setWidth(size)` | `Promise<void>` | Set column width |
|
|
398
|
+
|
|
384
399
|
## ExcelCell API
|
|
385
400
|
|
|
386
401
|
| Method | Return Type | Description |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/excel",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "13.0.0-beta.
|
|
4
|
+
"version": "13.0.0-beta.23",
|
|
5
5
|
"description": "Excel 파일 처리 라이브러리",
|
|
6
6
|
"author": "김석래",
|
|
7
7
|
"repository": {
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"mime": "^4.1.0",
|
|
21
21
|
"zod": "^4.3.6",
|
|
22
|
-
"@simplysm/core-common": "13.0.0-beta.
|
|
22
|
+
"@simplysm/core-common": "13.0.0-beta.23"
|
|
23
23
|
}
|
|
24
24
|
}
|