@simplysm/excel 13.0.0-beta.15 → 13.0.0-beta.17
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/excel-cell.js +3 -3
- package/dist/excel-col.js +1 -1
- package/dist/excel-row.js +1 -1
- package/dist/excel-workbook.js +6 -6
- package/dist/excel-worksheet.js +4 -4
- package/dist/excel-wrapper.js +1 -1
- package/dist/index.js +8 -8
- package/dist/utils/zip-cache.js +8 -8
- package/dist/xml/excel-xml-worksheet.js +1 -1
- package/package.json +2 -2
package/dist/excel-cell.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DateOnly, DateTime, numParseFloat, numParseInt, strIsNullOrEmpty, Time } from "@simplysm/core-common";
|
|
2
|
-
import { ExcelXmlSharedString as ExcelXmlSharedStringClass } from "./xml/excel-xml-shared-string";
|
|
3
|
-
import { ExcelXmlStyle as ExcelXmlStyleClass } from "./xml/excel-xml-style";
|
|
4
|
-
import { ExcelUtils } from "./utils/excel-utils";
|
|
2
|
+
import { ExcelXmlSharedString as ExcelXmlSharedStringClass } from "./xml/excel-xml-shared-string.js";
|
|
3
|
+
import { ExcelXmlStyle as ExcelXmlStyleClass } from "./xml/excel-xml-style.js";
|
|
4
|
+
import { ExcelUtils } from "./utils/excel-utils.js";
|
|
5
5
|
class ExcelCell {
|
|
6
6
|
constructor(_zipCache, _targetFileName, _r, _c) {
|
|
7
7
|
this._zipCache = _zipCache;
|
package/dist/excel-col.js
CHANGED
package/dist/excel-row.js
CHANGED
package/dist/excel-workbook.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ExcelWorksheet } from "./excel-worksheet";
|
|
2
|
-
import { ZipCache } from "./utils/zip-cache";
|
|
3
|
-
import { ExcelXmlContentType } from "./xml/excel-xml-content-type";
|
|
4
|
-
import { ExcelXmlRelationship } from "./xml/excel-xml-relationship";
|
|
5
|
-
import { ExcelXmlWorkbook as ExcelXmlWorkbookClass } from "./xml/excel-xml-workbook";
|
|
6
|
-
import { ExcelXmlWorksheet as ExcelXmlWorksheetClass } from "./xml/excel-xml-worksheet";
|
|
1
|
+
import { ExcelWorksheet } from "./excel-worksheet.js";
|
|
2
|
+
import { ZipCache } from "./utils/zip-cache.js";
|
|
3
|
+
import { ExcelXmlContentType } from "./xml/excel-xml-content-type.js";
|
|
4
|
+
import { ExcelXmlRelationship } from "./xml/excel-xml-relationship.js";
|
|
5
|
+
import { ExcelXmlWorkbook as ExcelXmlWorkbookClass } from "./xml/excel-xml-workbook.js";
|
|
6
|
+
import { ExcelXmlWorksheet as ExcelXmlWorksheetClass } from "./xml/excel-xml-worksheet.js";
|
|
7
7
|
class ExcelWorkbook {
|
|
8
8
|
zipCache;
|
|
9
9
|
_wsMap = /* @__PURE__ */ new Map();
|
package/dist/excel-worksheet.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "@simplysm/core-common";
|
|
2
2
|
import { strIsNullOrEmpty } from "@simplysm/core-common";
|
|
3
3
|
import mime from "mime";
|
|
4
|
-
import { ExcelCol } from "./excel-col";
|
|
5
|
-
import { ExcelRow } from "./excel-row";
|
|
6
|
-
import { ExcelXmlDrawing } from "./xml/excel-xml-drawing";
|
|
7
|
-
import { ExcelXmlRelationship } from "./xml/excel-xml-relationship";
|
|
4
|
+
import { ExcelCol } from "./excel-col.js";
|
|
5
|
+
import { ExcelRow } from "./excel-row.js";
|
|
6
|
+
import { ExcelXmlDrawing } from "./xml/excel-xml-drawing.js";
|
|
7
|
+
import { ExcelXmlRelationship } from "./xml/excel-xml-relationship.js";
|
|
8
8
|
class ExcelWorksheet {
|
|
9
9
|
constructor(_zipCache, _relId, _targetFileName) {
|
|
10
10
|
this._zipCache = _zipCache;
|
package/dist/excel-wrapper.js
CHANGED
|
@@ -45,7 +45,7 @@ var __callDispose = (stack, error, hasError) => {
|
|
|
45
45
|
};
|
|
46
46
|
import { DateOnly, DateTime, numParseFloat, Time } from "@simplysm/core-common";
|
|
47
47
|
import { ZodBoolean, ZodDefault, ZodNullable, ZodNumber, ZodOptional, ZodString } from "zod";
|
|
48
|
-
import { ExcelWorkbook } from "./excel-workbook";
|
|
48
|
+
import { ExcelWorkbook } from "./excel-workbook.js";
|
|
49
49
|
class ExcelWrapper {
|
|
50
50
|
/**
|
|
51
51
|
* @param _schema Zod 스키마 (레코드 구조 정의)
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from "./types";
|
|
2
|
-
export * from "./utils/excel-utils";
|
|
3
|
-
export * from "./excel-cell";
|
|
4
|
-
export * from "./excel-row";
|
|
5
|
-
export * from "./excel-col";
|
|
6
|
-
export * from "./excel-worksheet";
|
|
7
|
-
export * from "./excel-workbook";
|
|
8
|
-
export * from "./excel-wrapper";
|
|
1
|
+
export * from "./types.js";
|
|
2
|
+
export * from "./utils/excel-utils.js";
|
|
3
|
+
export * from "./excel-cell.js";
|
|
4
|
+
export * from "./excel-row.js";
|
|
5
|
+
export * from "./excel-col.js";
|
|
6
|
+
export * from "./excel-worksheet.js";
|
|
7
|
+
export * from "./excel-workbook.js";
|
|
8
|
+
export * from "./excel-wrapper.js";
|
|
9
9
|
//# sourceMappingURL=index.js.map
|
package/dist/utils/zip-cache.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ZipArchive, xmlStringify, xmlParse } from "@simplysm/core-common";
|
|
2
|
-
import { ExcelXmlContentType } from "../xml/excel-xml-content-type";
|
|
3
|
-
import { ExcelXmlDrawing } from "../xml/excel-xml-drawing";
|
|
4
|
-
import { ExcelXmlRelationship } from "../xml/excel-xml-relationship";
|
|
5
|
-
import { ExcelXmlSharedString } from "../xml/excel-xml-shared-string";
|
|
6
|
-
import { ExcelXmlStyle } from "../xml/excel-xml-style";
|
|
7
|
-
import { ExcelXmlUnknown } from "../xml/excel-xml-unknown";
|
|
8
|
-
import { ExcelXmlWorkbook } from "../xml/excel-xml-workbook";
|
|
9
|
-
import { ExcelXmlWorksheet } from "../xml/excel-xml-worksheet";
|
|
2
|
+
import { ExcelXmlContentType } from "../xml/excel-xml-content-type.js";
|
|
3
|
+
import { ExcelXmlDrawing } from "../xml/excel-xml-drawing.js";
|
|
4
|
+
import { ExcelXmlRelationship } from "../xml/excel-xml-relationship.js";
|
|
5
|
+
import { ExcelXmlSharedString } from "../xml/excel-xml-shared-string.js";
|
|
6
|
+
import { ExcelXmlStyle } from "../xml/excel-xml-style.js";
|
|
7
|
+
import { ExcelXmlUnknown } from "../xml/excel-xml-unknown.js";
|
|
8
|
+
import { ExcelXmlWorkbook } from "../xml/excel-xml-workbook.js";
|
|
9
|
+
import { ExcelXmlWorksheet } from "../xml/excel-xml-worksheet.js";
|
|
10
10
|
class ZipCache {
|
|
11
11
|
_cache = /* @__PURE__ */ new Map();
|
|
12
12
|
_zip;
|
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.17",
|
|
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.17"
|
|
23
23
|
}
|
|
24
24
|
}
|