@umituz/react-native-design-system 4.25.73 → 4.25.74
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 +1 -1
- package/src/filesystem/infrastructure/services/directory.service.ts +1 -1
- package/src/filesystem/infrastructure/services/download.service.ts +1 -1
- package/src/filesystem/infrastructure/services/file-info.service.ts +1 -1
- package/src/filesystem/infrastructure/services/file-manager.service.ts +1 -1
- package/src/filesystem/infrastructure/services/file-reader.service.ts +1 -1
- package/src/filesystem/infrastructure/services/file-writer.service.ts +1 -1
- package/src/filesystem/infrastructure/utils/blob.utils.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.74",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Manage directory operations
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { Directory, Paths } from "expo-file-system
|
|
6
|
+
import { Directory, Paths } from "expo-file-system";
|
|
7
7
|
import type { DirectoryType } from "../../domain/entities/File";
|
|
8
8
|
import { ErrorHandler, ErrorCodes } from "../../../utils/errors";
|
|
9
9
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Download Service
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import { File, Paths, Directory } from "expo-file-system
|
|
5
|
+
import { File, Paths, Directory } from "expo-file-system";
|
|
6
6
|
import type { FileOperationResult } from "../../domain/entities/File";
|
|
7
7
|
import { FileUtils } from "../../domain/entities/File";
|
|
8
8
|
import { SUPPORTED_DOWNLOAD_EXTENSIONS, DEFAULT_DOWNLOAD_EXTENSION } from "./download.constants";
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Manage file operations (delete, copy, move)
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { File, Directory } from "expo-file-system
|
|
6
|
+
import { File, Directory } from "expo-file-system";
|
|
7
7
|
import type { FileOperationResult } from "../../domain/entities/File";
|
|
8
8
|
import { ErrorHandler, ErrorCodes } from "../../../utils/errors";
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Single Responsibility: Write files to device storage
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { File } from "expo-file-system
|
|
6
|
+
import { File } from "expo-file-system";
|
|
7
7
|
import type { FileEncoding, FileOperationResult } from "../../domain/entities/File";
|
|
8
8
|
import { getEncodingType, type ExpoEncodingType } from "./encoding.service";
|
|
9
9
|
import { ErrorHandler } from "../../../utils/errors";
|