Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fe3dc15
Disable bouncing
antonis Jan 30, 2025
72eef2d
Add modal ui appearance
antonis Jan 30, 2025
ccc808b
Update snapshot tests
antonis Jan 30, 2025
fd47fd2
Fix bottom margin
antonis Jan 30, 2025
dcc5d3b
Merge branch 'feedback-ui' into antonis/feedback-modal-ui
antonis Jan 31, 2025
9ecd8a2
Fix sheet height
antonis Jan 31, 2025
05f94f8
Remove extra modal border
antonis Jan 31, 2025
d88a599
Do not expose modal styles
antonis Jan 31, 2025
ce1de86
Animate background color
antonis Jan 31, 2025
a7a4e56
Avoid keyboard in modal
antonis Jan 31, 2025
8779886
Merge branch 'feedback-ui' into antonis/feedback-modal-ui
antonis Feb 3, 2025
ae80f7d
Merge branch 'feedback-ui' into antonis/feedback-modal-ui
antonis Feb 7, 2025
488658e
Merge branch 'feedback-ui' into antonis/feedback-modal-ui
antonis Feb 10, 2025
c4d502e
Use Image Picker interface matching `expo-image-picker` and `react-na…
antonis Feb 11, 2025
1b74b45
Update samples to pass the ImagePicker library implementation
antonis Feb 11, 2025
1d8a0db
Merge branch 'feedback-ui' into antonis/feedback-ui-imagepicker-integ…
antonis Feb 11, 2025
a0f4a77
Get image data from uri
antonis Feb 11, 2025
357dea8
Add early return and dev note
antonis Feb 11, 2025
192220b
Adds tests
antonis Feb 11, 2025
c3991ff
Adds sample expo plugin configuration
antonis Feb 11, 2025
91e96de
Merge branch 'feedback-ui' into antonis/feedback-ui-imagepicker-integ…
antonis Feb 11, 2025
6666cf6
Update media type for expo
antonis Feb 12, 2025
d1e5107
Update media type for rn
antonis Feb 12, 2025
d780fc1
Add native implementation for getDataFromUri
antonis Feb 13, 2025
85dff80
Bumped to the latest react-native-image-picker version 8
antonis Feb 13, 2025
e92fea6
Add missing null in return type
antonis Feb 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bumped to the latest react-native-image-picker version 8
  • Loading branch information
antonis committed Feb 13, 2025
commit 85dff80543c2bd803acd6aa2f1d64acc907c66f1
4 changes: 3 additions & 1 deletion packages/core/src/js/feedback/FeedbackForm.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ export interface FeedbackCallbacks {
}

/**
* Image Picker configuration interfact matching `expo-image-picker` and `react-native-image-picker`
* Image Picker configuration interface compatible with:
* - `react-native-image-picker`: 7.2, 8.0
* - `expo-image-picker`: 16.0`
*/
export interface ImagePickerConfiguration {
imagePicker?: ImagePicker;
Expand Down
2 changes: 1 addition & 1 deletion samples/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"react": "18.3.1",
"react-native": "0.77.0",
"react-native-gesture-handler": "^2.22.1",
"react-native-image-picker": "^7.2.2",
"react-native-image-picker": "^8.0.0",
"react-native-reanimated": "3.16.7",
"react-native-safe-area-context": "5.2.0",
"react-native-screens": "4.6.0",
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22928,13 +22928,13 @@ __metadata:
languageName: node
linkType: hard

"react-native-image-picker@npm:^7.2.2":
version: 7.2.2
resolution: "react-native-image-picker@npm:7.2.2"
"react-native-image-picker@npm:^8.0.0":
version: 8.0.0
resolution: "react-native-image-picker@npm:8.0.0"
peerDependencies:
react: "*"
react-native: "*"
checksum: 34289e29a28c3f8d869db46fdf5bfdeec8b37221ee4dcd9a63698b106f0097d11f4c40f3a2789c23a728dc94e37e02a0cf61add80aa04ffe60a6cf82115cddea
checksum: d1b90219f4ff77d700307bd3dfc7475463dfe5c1d9dc4da365535075df4baf44d0c411cf9f19a3f83226830ada18ad3728abc2b14f67c77b1f5e146ebbb0bdec
languageName: node
linkType: hard

Expand Down Expand Up @@ -24703,7 +24703,7 @@ __metadata:
react: 18.3.1
react-native: 0.77.0
react-native-gesture-handler: ^2.22.1
react-native-image-picker: ^7.2.2
react-native-image-picker: ^8.0.0
react-native-reanimated: 3.16.7
react-native-safe-area-context: 5.2.0
react-native-screens: 4.6.0
Expand Down
Loading