rn-backstage 1.4.2 → 1.4.4

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.
Files changed (2) hide show
  1. package/README.md +1 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -104,7 +104,6 @@ Pass a `storageAdapter` to render a **Storage** tab that lets you browse, edit,
104
104
 
105
105
  ```tsx
106
106
  import AsyncStorage from '@react-native-async-storage/async-storage'
107
-
108
107
  ;<Backstage
109
108
  storageAdapter={{
110
109
  getAllKeys: () => AsyncStorage.getAllKeys(),
@@ -119,7 +118,6 @@ MMKV example:
119
118
 
120
119
  ```tsx
121
120
  import { storage } from './mmkv'
122
-
123
121
  ;<Backstage
124
122
  storageAdapter={{
125
123
  getAllKeys: () => Promise.resolve(storage.getAllKeys()),
@@ -181,7 +179,7 @@ Add a `bugReport` config to enable one-tap bug reporting. Tapping the 🐛 butto
181
179
  | `pillWidth` | `number` | `60` | Width of the floating pill |
182
180
  | `pillHeight` | `number` | `32` | Height of the floating pill |
183
181
  | `extraTabs` | `BackstageTab[]` | `[]` | Additional custom tabs |
184
- | `bugReport` | `BugReportConfig` | `undefined` | Bug report config (shows 🐛 button in header) |
182
+ | `bugReport` | `BugReportConfig` | `undefined` | Bug report config (shows 🐛 button in header) |
185
183
  | `styles` | `BackstageStyleOverrides` | `undefined` | Custom style overrides |
186
184
  | `children` | `ReactNode` | `undefined` | Extra content in InfoTab |
187
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-backstage",
3
- "version": "1.4.2",
3
+ "version": "1.4.4",
4
4
  "description": "A zero-dependency developer/QA debug panel for React Native apps",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",