@originallyus/feedback-rn-sdk 4.0.0-beta.16 → 4.0.0-beta.17
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 +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,20 +6,20 @@ A cross-platform Feedback component for React Native.
|
|
|
6
6
|
|
|
7
7
|
Scan the QR code below with **Expo Go** (Android) or the **Camera app** (iOS) to try the latest SDK features:
|
|
8
8
|
|
|
9
|
-
Expo QR
|
|
9
|
+

|
|
10
10
|
|
|
11
11
|
[👉 Try on Expo Dev](https://expo.dev/preview/update?message=Demo+sdk&updateRuntimeVersion=1.0.0&createdAt=2026-03-09T04%3A14%3A55.230Z&slug=exp&projectId=64be1f70-2b29-479e-8c0a-ee495f737d06&group=5b7b437e-e0b8-4c66-adb7-a831478c9320)
|
|
12
12
|
|
|
13
13
|
## 📦 Installation
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
npm install @originallyus/feedback-rn-sdk@4.0.0-beta.
|
|
16
|
+
npm install @originallyus/feedback-rn-sdk@4.0.0-beta.17
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or yarn
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
yarn add @originallyus/feedback-rn-sdk@4.0.0-beta.
|
|
22
|
+
yarn add @originallyus/feedback-rn-sdk@4.0.0-beta.17
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Peer Dependencies
|
|
@@ -143,14 +143,14 @@ Use this for inline feedback (e.g., "Was this helpful?") inside your content scr
|
|
|
143
143
|
|
|
144
144
|
```tsx
|
|
145
145
|
<ContentUsefulness
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
146
|
+
slug="content_usefulness-1"
|
|
147
|
+
options={{
|
|
148
|
+
appSec: '...',
|
|
149
|
+
packageId: '...',
|
|
150
|
+
debug: true,
|
|
151
|
+
}}
|
|
152
|
+
onSuccess={res => console.log('Useful!', res)}
|
|
153
|
+
onError={err => console.error(err)}
|
|
154
154
|
/>
|
|
155
155
|
```
|
|
156
156
|
|
package/package.json
CHANGED