@simplysm/core-browser 14.2.1 → 14.2.3

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.
@@ -2,7 +2,7 @@
2
2
  * Blob을 파일로 다운로드
3
3
  *
4
4
  * @param blob - 다운로드할 Blob 객체
5
- * @param fileName - 저장할 파일명 (파일시스템 금지 문자·예약어는 자동 제거)
5
+ * @param fileName - 저장할 파일명 (파일시스템 금지 문자, 예약어는 자동 제거)
6
6
  */
7
7
  export declare function downloadBlob(blob: Blob, fileName: string): void;
8
8
  //# sourceMappingURL=download.d.ts.map
@@ -3,7 +3,7 @@ import sanitize from "sanitize-filename";
3
3
  * Blob을 파일로 다운로드
4
4
  *
5
5
  * @param blob - 다운로드할 Blob 객체
6
- * @param fileName - 저장할 파일명 (파일시스템 금지 문자·예약어는 자동 제거)
6
+ * @param fileName - 저장할 파일명 (파일시스템 금지 문자, 예약어는 자동 제거)
7
7
  */
8
8
  export function downloadBlob(blob, fileName) {
9
9
  const url = URL.createObjectURL(blob);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/core-browser",
3
- "version": "14.2.1",
3
+ "version": "14.2.3",
4
4
  "description": "심플리즘 패키지 - 코어 (browser)",
5
5
  "author": "심플리즘",
6
6
  "license": "Apache-2.0",
@@ -27,6 +27,6 @@
27
27
  "dependencies": {
28
28
  "sanitize-filename": "^1.6.4",
29
29
  "tabbable": "^6.5.0",
30
- "@simplysm/core-common": "14.2.1"
30
+ "@simplysm/core-common": "14.2.3"
31
31
  }
32
32
  }
@@ -4,7 +4,7 @@ import sanitize from "sanitize-filename";
4
4
  * Blob을 파일로 다운로드
5
5
  *
6
6
  * @param blob - 다운로드할 Blob 객체
7
- * @param fileName - 저장할 파일명 (파일시스템 금지 문자·예약어는 자동 제거)
7
+ * @param fileName - 저장할 파일명 (파일시스템 금지 문자, 예약어는 자동 제거)
8
8
  */
9
9
  export function downloadBlob(blob: Blob, fileName: string): void {
10
10
  const url = URL.createObjectURL(blob);