@simplysm/excel 13.0.58 → 13.0.59

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/README.md +26 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -444,6 +444,32 @@ Behavior of the `read()` method:
444
444
  | `read(file, wsNameOrIndex?, options?)` | `Promise<z.infer<TSchema>[]>` | Read records from Excel file (`Uint8Array` or `Blob`); defaults to first worksheet. `options.excludes` omits specific fields. |
445
445
  | `write(wsName, records, options?)` | `Promise<ExcelWorkbook>` | Write partial records to a new workbook; caller must manage the returned workbook's lifecycle. `options.excludes` omits specific fields. |
446
446
 
447
+ ## XML Data Types
448
+
449
+ These types represent the raw OOXML structure used internally by the library. They are exported for advanced use cases such as direct XML manipulation.
450
+
451
+ | Type | Description |
452
+ |------|-------------|
453
+ | `ExcelXmlContentTypeData` | Structure of `[Content_Types].xml` |
454
+ | `ExcelXmlRelationshipData` | Structure of `.rels` relationship XML files |
455
+ | `ExcelRelationshipData` | Single relationship entry within `ExcelXmlRelationshipData` |
456
+ | `ExcelXmlWorkbookData` | Structure of `xl/workbook.xml` |
457
+ | `ExcelXmlWorksheetData` | Structure of `xl/worksheets/sheet*.xml` |
458
+ | `ExcelRowData` | Single row entry within `ExcelXmlWorksheetData` |
459
+ | `ExcelCellData` | Single cell entry within a row |
460
+ | `ExcelXmlDrawingData` | Structure of `xl/drawings/drawing*.xml` |
461
+ | `ExcelXmlSharedStringData` | Structure of `xl/sharedStrings.xml` |
462
+ | `ExcelXmlSharedStringDataSi` | Single shared string item (plain text or rich text) |
463
+ | `ExcelXmlSharedStringDataText` | Text element inside a shared string item |
464
+ | `ExcelXmlStyleData` | Structure of `xl/styles.xml` |
465
+ | `ExcelXmlStyleDataXf` | Cell format (`xf`) entry within `cellXfs` |
466
+ | `ExcelXmlStyleDataFill` | Fill entry within `fills` |
467
+ | `ExcelXmlStyleDataBorder` | Border entry within `borders` |
468
+
469
+ ```typescript
470
+ import type { ExcelXmlWorksheetData, ExcelCellData } from "@simplysm/excel";
471
+ ```
472
+
447
473
  ## Caveats
448
474
 
449
475
  ### All Cell Methods are Asynchronous
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/excel",
3
- "version": "13.0.58",
3
+ "version": "13.0.59",
4
4
  "description": "Excel 파일 처리 라이브러리",
5
5
  "author": "김석래",
6
6
  "license": "Apache-2.0",
@@ -20,6 +20,6 @@
20
20
  "dependencies": {
21
21
  "mime": "^4.1.0",
22
22
  "zod": "^4.3.6",
23
- "@simplysm/core-common": "13.0.58"
23
+ "@simplysm/core-common": "13.0.59"
24
24
  }
25
25
  }