@amplitude/plugin-session-replay-react-native 0.2.6 → 0.2.8

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
@@ -69,3 +69,12 @@ import { AmpMaskView } from '@amplitude/plugin-session-replay-react-native';
69
69
  </Text>
70
70
  </AmpMaskView>
71
71
  ```
72
+
73
+ ## Tracking Web Views (Beta)
74
+ Web views are blocked by default and will not be tracked. If you'd like webviews to be tracked, you can manually unmask them by doing the following
75
+
76
+ ```js
77
+ <AmpMaskView mask="amp-unmask" style={{ flex: 1 }}>
78
+ <WebView source={{ uri: 'https://reactnative.dev/' }} style={{ flex: 1 }} />
79
+ </AmpMaskView>
80
+ ```
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.VERSION = void 0;
7
- const VERSION = '0.2.6';
7
+ const VERSION = '0.2.8';
8
8
  exports.VERSION = VERSION;
9
9
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.2.6';
1
+ export const VERSION = '0.2.8';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.2.6";
1
+ export declare const VERSION = "0.2.8";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amplitude/plugin-session-replay-react-native",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "Amplitude Session Replay plugin for React Native",
5
5
  "keywords": [
6
6
  "analytics",
@@ -92,5 +92,5 @@
92
92
  ]
93
93
  ]
94
94
  },
95
- "gitHead": "6410052111e9f45279b467d0fac011d242d1fc04"
95
+ "gitHead": "e9b1fd973f86c5f262465f2d033b73a742697219"
96
96
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.2.6';
1
+ export const VERSION = '0.2.8';