@simplysm/capacitor-plugin-file-system 13.0.15 → 13.0.18
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 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -9,18 +9,6 @@ npm install @simplysm/capacitor-plugin-file-system
|
|
|
9
9
|
npx cap sync
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
### Peer Dependencies
|
|
13
|
-
|
|
14
|
-
| Package | Version |
|
|
15
|
-
|--------|------|
|
|
16
|
-
| `@capacitor/core` | `^7.4.4` |
|
|
17
|
-
|
|
18
|
-
### Internal Dependencies
|
|
19
|
-
|
|
20
|
-
| Package | Description |
|
|
21
|
-
|--------|------|
|
|
22
|
-
| `@simplysm/core-common` | Common utilities such as base64 conversion, `Bytes` type |
|
|
23
|
-
|
|
24
12
|
## Supported Platforms
|
|
25
13
|
|
|
26
14
|
| Platform | Supported | Implementation |
|
|
@@ -40,7 +28,7 @@ Different permission models are used depending on the Android version.
|
|
|
40
28
|
|
|
41
29
|
The plugin automatically declares the necessary permissions in `AndroidManifest.xml`, so you don't need to add them separately in your app's manifest.
|
|
42
30
|
|
|
43
|
-
## Main
|
|
31
|
+
## Main Modules
|
|
44
32
|
|
|
45
33
|
All APIs are provided as static methods of the `FileSystem` class.
|
|
46
34
|
|
|
@@ -234,6 +222,20 @@ In web environments, it operates as an IndexedDB-based virtual file system (`Vir
|
|
|
234
222
|
- `getFileUri()` returns a Blob URL, which must be released with `URL.revokeObjectURL()` after use.
|
|
235
223
|
- File data is base64-encoded and stored in IndexedDB.
|
|
236
224
|
|
|
225
|
+
## Dependencies
|
|
226
|
+
|
|
227
|
+
### Peer Dependencies
|
|
228
|
+
|
|
229
|
+
| Package | Version |
|
|
230
|
+
|--------|------|
|
|
231
|
+
| `@capacitor/core` | `^7.4.4` |
|
|
232
|
+
|
|
233
|
+
### Internal Dependencies
|
|
234
|
+
|
|
235
|
+
| Package | Description |
|
|
236
|
+
|--------|------|
|
|
237
|
+
| `@simplysm/core-common` | Common utilities such as base64 conversion, `Bytes` type |
|
|
238
|
+
|
|
237
239
|
## License
|
|
238
240
|
|
|
239
241
|
MIT
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC"}
|
package/dist/index.js.map
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/capacitor-plugin-file-system",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.18",
|
|
4
4
|
"description": "심플리즘 패키지 - Capacitor File System Plugin",
|
|
5
5
|
"author": "김석래",
|
|
6
|
+
"license": "MIT",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "https://github.com/kslhunter/simplysm.git",
|
|
9
10
|
"directory": "packages/capacitor-plugin-file-system"
|
|
10
11
|
},
|
|
11
|
-
"license": "MIT",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"main": "./dist/index.js",
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"dist",
|
|
17
17
|
"android"
|
|
18
18
|
],
|
|
19
|
-
"capacitor": {
|
|
20
|
-
"android": {
|
|
21
|
-
"src": "android"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
19
|
"dependencies": {
|
|
25
|
-
"@simplysm/core-common": "13.0.
|
|
20
|
+
"@simplysm/core-common": "13.0.18"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@capacitor/core": "^7.5.0"
|
|
26
24
|
},
|
|
27
25
|
"peerDependencies": {
|
|
28
26
|
"@capacitor/core": "^7.4.4"
|
|
29
27
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
28
|
+
"capacitor": {
|
|
29
|
+
"android": {
|
|
30
|
+
"src": "android"
|
|
31
|
+
}
|
|
32
32
|
}
|
|
33
33
|
}
|