expo-document-picker 13.0.4-canary-20250306-d9d3e02 → 13.0.4-canary-20250331-817737a
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/CHANGELOG.md +2 -0
- package/android/build.gradle +2 -1
- package/ios/Exceptions.swift +3 -3
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
14
14
|
- [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
|
|
15
15
|
- [web] Add option to disable file reader to read base64 from file on successfull picking. ([#34739](https://github.com/expo/expo/pull/34739) by [@danilaplee](https://github.com/danilaplee))
|
|
16
|
+
- [iOS] Fix warnings which will become errors in Swift 6. ([#35288](https://github.com/expo/expo/pull/35288) by [@behenate](https://github.com/behenate))
|
|
17
|
+
- [Android] Specified Gradle project version. ([#35751](https://github.com/expo/expo/pull/35751) by [@lukmccall](https://github.com/lukmccall))
|
|
16
18
|
|
|
17
19
|
## 13.0.3 - 2025-02-07
|
|
18
20
|
|
package/android/build.gradle
CHANGED
package/ios/Exceptions.swift
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import ExpoModulesCore
|
|
2
2
|
|
|
3
|
-
internal class InvalidFileException: Exception {
|
|
3
|
+
internal final class InvalidFileException: Exception {
|
|
4
4
|
override var reason: String {
|
|
5
5
|
"Unable to get file size"
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
internal class PickingInProgressException: Exception {
|
|
9
|
+
internal final class PickingInProgressException: Exception {
|
|
10
10
|
override var reason: String {
|
|
11
11
|
"Different document picking in progress. Await other document picking first"
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
internal class MissingViewControllerException: Exception {
|
|
15
|
+
internal final class MissingViewControllerException: Exception {
|
|
16
16
|
override var reason: String {
|
|
17
17
|
"Could not find the current ViewController"
|
|
18
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-document-picker",
|
|
3
|
-
"version": "13.0.4-canary-
|
|
3
|
+
"version": "13.0.4-canary-20250331-817737a",
|
|
4
4
|
"description": "Provides access to the system's UI for selecting documents from the available providers on the user's device.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -35,10 +35,9 @@
|
|
|
35
35
|
"preset": "expo-module-scripts"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"expo-module-scripts": "4.0.5-canary-
|
|
38
|
+
"expo-module-scripts": "4.0.5-canary-20250331-817737a"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"expo": "53.0.0-canary-
|
|
42
|
-
}
|
|
43
|
-
"gitHead": "d9d3e024d8742099c307754673f17117a20c1dea"
|
|
41
|
+
"expo": "53.0.0-canary-20250331-817737a"
|
|
42
|
+
}
|
|
44
43
|
}
|