@originallyus/feedback-rn-sdk 4.0.0-beta.14 → 4.0.0-beta.15
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
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
|
-
|
|
9
|
+
Expo QR
|
|
10
10
|
|
|
11
|
-
[👉 Try on Expo Dev](https://expo.dev/preview/update?message=Demo+sdk&updateRuntimeVersion=1.0.0&slug=exp&projectId=64be1f70-2b29-479e-8c0a-ee495f737d06&group=039531ad-99df-4480-a9f7-5856bef92096)
|
|
11
|
+
[👉 Try on Expo Dev](https://expo.dev/preview/update?message=Demo+sdk&updateRuntimeVersion=1.0.0&createdAt=2026-03-09T02%3A45%3A48.728Z&slug=exp&projectId=64be1f70-2b29-479e-8c0a-ee495f737d06&group=039531ad-99df-4480-a9f7-5856bef92096)
|
|
12
12
|
|
|
13
13
|
## 📦 Installation
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
npm
|
|
16
|
+
npm i @originallyus/feedback-rn-sdk@4.0.0-beta.15
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or yarn
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
yarn add @originallyus/feedback-rn-sdk
|
|
22
|
+
yarn add @originallyus/feedback-rn-sdk@4.0.0-beta.15
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### Peer Dependencies
|
|
@@ -65,16 +65,15 @@ The SDK works best with **Spoqa Han Sans Neo** or **OpenSans**. Please ensure yo
|
|
|
65
65
|
|
|
66
66
|
Mount the `FeedbackSDK` component at the root of your application (typically in `App.tsx`). It should be at the bottom of your root view tree to stay on top of other views.
|
|
67
67
|
|
|
68
|
-
```
|
|
68
|
+
```js
|
|
69
69
|
import {useRef} from 'react'
|
|
70
70
|
import {View} from 'react-native'
|
|
71
71
|
import {SafeAreaProvider} from 'react-native-safe-area-context'
|
|
72
72
|
import {FeedbackSDK, type FeedbackSDKRef} from '@originallyus/feedback-rn-sdk'
|
|
73
73
|
|
|
74
74
|
export default function App() {
|
|
75
|
-
const feedbackRef = useRef<FeedbackSDKRef>
|
|
76
|
-
|
|
77
|
-
const config = {
|
|
75
|
+
const feedbackRef = useRef < FeedbackSDKRef > null
|
|
76
|
+
const config = {
|
|
78
77
|
appSec: 'YOUR_APP_SEC',
|
|
79
78
|
packageId: 'YOUR_PACKAGE_ID',
|
|
80
79
|
debug: true,
|
|
@@ -87,8 +86,11 @@ export default function App() {
|
|
|
87
86
|
<SafeAreaProvider>
|
|
88
87
|
<View style={{flex: 1}}>
|
|
89
88
|
<MainApp />
|
|
90
|
-
|
|
91
|
-
{
|
|
89
|
+
|
|
90
|
+
{
|
|
91
|
+
// Please insert this mount point directly in your App.js,
|
|
92
|
+
// preferably at the bottom of your root view tree for it to stay on top of all other views
|
|
93
|
+
}
|
|
92
94
|
<FeedbackSDK
|
|
93
95
|
ref={feedbackRef}
|
|
94
96
|
{...config}
|
|
@@ -122,7 +124,7 @@ feedbackRef.current.hide()
|
|
|
122
124
|
The primary component for showing high-intrusive or triggered surveys.
|
|
123
125
|
|
|
124
126
|
| Prop | Type | Description |
|
|
125
|
-
|
|
|
127
|
+
| ----------- | ---------- | ------------------------------------------------ |
|
|
126
128
|
| `appSec` | `string` | **Required.** Your application secret. |
|
|
127
129
|
| `packageId` | `string` | **Required.** Your package/bundle ID. |
|
|
128
130
|
| `debug` | `boolean` | Enable debug logs. |
|
|
@@ -150,7 +152,7 @@ Use this for inline feedback (e.g., "Was this helpful?") inside your content scr
|
|
|
150
152
|
```
|
|
151
153
|
|
|
152
154
|
| Prop | Type | Description |
|
|
153
|
-
|
|
|
155
|
+
| ---------------- | ------------- | ----------------------------------------------- |
|
|
154
156
|
| `slug` | `string` | **Required.** The form slug from the CMS. |
|
|
155
157
|
| `options` | `InitOptions` | Configuration (same as `FeedbackSDK` props). |
|
|
156
158
|
| `style` | `ViewStyle` | Container style override. |
|
|
@@ -165,14 +167,14 @@ Use this for inline feedback (e.g., "Was this helpful?") inside your content scr
|
|
|
165
167
|
The SDK dynamically renders UI based on the configuration of the form slug in the backend. Use the following slugs for testing or integration:
|
|
166
168
|
|
|
167
169
|
| Form Type | Typical Slug | Icon | Description |
|
|
168
|
-
|
|
|
169
|
-
| **Satisfaction** | `native_rating_form` |
|
|
170
|
-
| **NPS** | `nps-1` |
|
|
171
|
-
| **CES / Effort** | `effort-1` |
|
|
172
|
-
| **Poll** | `poll-1` |
|
|
173
|
-
| **Usefulness** | `content_usefulness-1` |
|
|
174
|
-
| **Comment** | `comment-1` |
|
|
175
|
-
| **External** | `external-1` |
|
|
170
|
+
| ---------------- | ---------------------- | ---- | -------------------------------------------------- |
|
|
171
|
+
| **Satisfaction** | `native_rating_form` | ⭐ | Star rating (1-5) with optional detailed feedback. |
|
|
172
|
+
| **NPS** | `nps-1` | 📊 | Net Promoter Score scale (0-10). |
|
|
173
|
+
| **CES / Effort** | `effort-1` | ⚡ | Customer Effort Score numeric scale (1-7). |
|
|
174
|
+
| **Poll** | `poll-1` | 📝 | Multi-select tag-style buttons for quick surveys. |
|
|
175
|
+
| **Usefulness** | `content_usefulness-1` | 💡 | Inline "Yes/No" prompt for help articles. |
|
|
176
|
+
| **Comment** | `comment-1` | 🗨️ | Simple open-ended text feedback. |
|
|
177
|
+
| **External** | `external-1` | 🔗 | Triggers an external URL (App Store, Web). |
|
|
176
178
|
|
|
177
179
|
### Example: Triggering a specific form
|
|
178
180
|
|
|
@@ -14,11 +14,12 @@ export const feedbackStyles = StyleSheet.create({
|
|
|
14
14
|
splashOverlay: {
|
|
15
15
|
justifyContent: 'center',
|
|
16
16
|
alignItems: 'center',
|
|
17
|
-
paddingHorizontal:
|
|
17
|
+
paddingHorizontal: 16
|
|
18
18
|
},
|
|
19
19
|
intrusiveOverlay: {
|
|
20
20
|
backgroundColor: '#FFF',
|
|
21
|
-
justifyContent: 'flex-start'
|
|
21
|
+
justifyContent: 'flex-start',
|
|
22
|
+
paddingHorizontal: 8
|
|
22
23
|
},
|
|
23
24
|
dismissArea: {
|
|
24
25
|
flex: 1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","StyleSheet","f","feedbackStyles","create","overlay","flex","backgroundColor","justifyContent","nonBlockingOverlay","splashOverlay","alignItems","paddingHorizontal","intrusiveOverlay","dismissArea","modalContent","borderTopLeftRadius","borderTopRightRadius","width","maxHeight","minHeight","overflow","splashContent","select","ios","shadowColor","shadowOffset","height","shadowOpacity","shadowRadius","android","elevation","borderBottomLeftRadius","borderBottomRightRadius","splashTabletContent","maxWidth","borderRadius","splashInner","paddingTop","intrusiveContent","safeArea","flexShrink","flexGrow","flexDirection","flex1","header","position","headerRow","handle","closeBtn","top","right","padding","zIndex","intrusiveCloseBtn","closeText","fontSize","color","scrollContent","isTablet","paddingBottom","scrollContentInner","center","mtAuto","marginTop","w100","section","marginBottom","gap","alignSelf","secondarySection","satisfactionRating","title","fontWeight","externalIcon","question","successContainer","successTitle","textAlign","successDesc","lineHeight","mt16","mt24","splashContainer","splashTitle","splashQuestion","skipBtn","skipBtnText","textDecorationLine","successIcon","fineprint","opacity","centeredScrollContent","formRoot","formContent","submitSection","successRoot","successContentCenter","tabletOverlay","tabletIntrusive","tabletNonIntrusive","bottom","borderWidth","borderColor","errorWrap","error","mb12","divider","centeredContent","autoHeightReset","autoHeightFlexReset","autoHeightMargin"],"sourceRoot":"../../src","sources":["FeedbackSDKStyles.ts"],"mappings":";;AAAA,SAAQA,QAAQ,EAAEC,UAAU,QAAO,cAAc;AACjD,OAAO,KAAKC,CAAC;AAEb,OAAO,MAAMC,cAAc,GAAGF,UAAU,CAACG,MAAM,CAAC;EAC/CC,OAAO,EAAE;IACRC,IAAI,EAAE,CAAC;IACPC,eAAe,EAAE,uBAAuB;IACxCC,cAAc,EAAE;EACjB,CAAC;EACDC,kBAAkB,EAAE;IACnBF,eAAe,EAAE;EAClB,CAAC;EACDG,aAAa,EAAE;IACdF,cAAc,EAAE,QAAQ;IACxBG,UAAU,EAAE,QAAQ;IACpBC,iBAAiB,EAAE;EACpB,CAAC;EACDC,gBAAgB,EAAE;IACjBN,eAAe,EAAE,MAAM;IACvBC,cAAc,EAAE;
|
|
1
|
+
{"version":3,"names":["Platform","StyleSheet","f","feedbackStyles","create","overlay","flex","backgroundColor","justifyContent","nonBlockingOverlay","splashOverlay","alignItems","paddingHorizontal","intrusiveOverlay","dismissArea","modalContent","borderTopLeftRadius","borderTopRightRadius","width","maxHeight","minHeight","overflow","splashContent","select","ios","shadowColor","shadowOffset","height","shadowOpacity","shadowRadius","android","elevation","borderBottomLeftRadius","borderBottomRightRadius","splashTabletContent","maxWidth","borderRadius","splashInner","paddingTop","intrusiveContent","safeArea","flexShrink","flexGrow","flexDirection","flex1","header","position","headerRow","handle","closeBtn","top","right","padding","zIndex","intrusiveCloseBtn","closeText","fontSize","color","scrollContent","isTablet","paddingBottom","scrollContentInner","center","mtAuto","marginTop","w100","section","marginBottom","gap","alignSelf","secondarySection","satisfactionRating","title","fontWeight","externalIcon","question","successContainer","successTitle","textAlign","successDesc","lineHeight","mt16","mt24","splashContainer","splashTitle","splashQuestion","skipBtn","skipBtnText","textDecorationLine","successIcon","fineprint","opacity","centeredScrollContent","formRoot","formContent","submitSection","successRoot","successContentCenter","tabletOverlay","tabletIntrusive","tabletNonIntrusive","bottom","borderWidth","borderColor","errorWrap","error","mb12","divider","centeredContent","autoHeightReset","autoHeightFlexReset","autoHeightMargin"],"sourceRoot":"../../src","sources":["FeedbackSDKStyles.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FeedbackSDKStyles.d.ts","sourceRoot":"","sources":["../../src/FeedbackSDKStyles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"FeedbackSDKStyles.d.ts","sourceRoot":"","sources":["../../src/FeedbackSDKStyles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyTzB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@originallyus/feedback-rn-sdk",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.15",
|
|
4
4
|
"description": "A cross-platform Feedback component for React Native.",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/index.d.ts",
|
|
@@ -101,9 +101,9 @@
|
|
|
101
101
|
"react-native-haptic-feedback": ">=2.0.0",
|
|
102
102
|
"react-native-keyboard-controller": ">=1.0.0",
|
|
103
103
|
"react-native-reanimated": ">=3.0.0",
|
|
104
|
-
"react-native-worklets": ">=0.20.0",
|
|
105
104
|
"react-native-safe-area-context": ">=5.0.0",
|
|
106
|
-
"react-native-svg": ">=15.0.0"
|
|
105
|
+
"react-native-svg": ">=15.0.0",
|
|
106
|
+
"react-native-worklets": ">=0.20.0"
|
|
107
107
|
},
|
|
108
108
|
"peerDependenciesMeta": {
|
|
109
109
|
"expo-haptics": {
|