react-native-inapp-inspector 1.0.4 → 1.0.6
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 -3
- package/dist/commonjs/components/AnalyticsEventCard.js +10 -10
- package/dist/commonjs/components/CodeSnippet.js +233 -10
- package/dist/commonjs/components/ConsoleLogCard.js +55 -9
- package/dist/commonjs/components/CopyButton.js +2 -1
- package/dist/commonjs/components/ErrorBoundary.d.ts +20 -0
- package/dist/commonjs/components/ErrorBoundary.js +332 -0
- package/dist/commonjs/components/NetworkIcons.d.ts +5 -0
- package/dist/commonjs/components/NetworkIcons.js +45 -1
- package/dist/commonjs/customHooks/reduxLogger.d.ts +4 -0
- package/dist/commonjs/customHooks/reduxLogger.js +30 -0
- package/dist/commonjs/customHooks/webViewLogger.d.ts +2 -0
- package/dist/commonjs/customHooks/webViewLogger.js +281 -246
- package/dist/commonjs/helpers/index.js +2 -1
- package/dist/commonjs/index.d.ts +5 -3
- package/dist/commonjs/index.js +685 -911
- package/dist/commonjs/styles/AppColors.d.ts +29 -1
- package/dist/commonjs/styles/AppColors.js +38 -2
- package/dist/commonjs/styles/index.d.ts +438 -229
- package/dist/commonjs/styles/index.js +448 -209
- package/dist/commonjs/types/index.d.ts +2 -2
- package/dist/esm/components/AnalyticsEventCard.js +10 -10
- package/dist/esm/components/CodeSnippet.js +232 -12
- package/dist/esm/components/ConsoleLogCard.js +55 -9
- package/dist/esm/components/CopyButton.js +2 -1
- package/dist/esm/components/ErrorBoundary.d.ts +20 -0
- package/dist/esm/components/ErrorBoundary.js +295 -0
- package/dist/esm/components/NetworkIcons.d.ts +5 -0
- package/dist/esm/components/NetworkIcons.js +39 -0
- package/dist/esm/customHooks/reduxLogger.d.ts +4 -0
- package/dist/esm/customHooks/reduxLogger.js +23 -0
- package/dist/esm/customHooks/webViewLogger.d.ts +2 -0
- package/dist/esm/customHooks/webViewLogger.js +281 -246
- package/dist/esm/helpers/index.js +2 -1
- package/dist/esm/index.d.ts +5 -3
- package/dist/esm/index.js +683 -914
- package/dist/esm/styles/AppColors.d.ts +29 -1
- package/dist/esm/styles/AppColors.js +35 -1
- package/dist/esm/styles/index.d.ts +438 -229
- package/dist/esm/styles/index.js +412 -209
- package/dist/esm/types/index.d.ts +2 -2
- package/example/App.tsx +351 -127
- package/example/ios/Podfile.lock +26 -0
- package/example/package-lock.json +20 -4
- package/example/package.json +4 -3
- package/package.json +11 -1
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"@react-navigation/native-stack": "^7.16.0",
|
|
14
14
|
"react": "19.2.3",
|
|
15
15
|
"react-native": "0.85.3",
|
|
16
|
-
"react-native-inapp-inspector": "file:..",
|
|
17
16
|
"react-native-linear-gradient": "^2.8.3",
|
|
18
17
|
"react-native-safe-area-context": "^5.5.2",
|
|
19
18
|
"react-native-screens": "^4.25.2",
|
|
20
|
-
"react-native-svg": "^15.15.5"
|
|
19
|
+
"react-native-svg": "^15.15.5",
|
|
20
|
+
"react-native-webview": "^13.13.2"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@babel/core": "^7.25.2",
|
|
@@ -37,15 +37,17 @@
|
|
|
37
37
|
"eslint": "^8.19.0",
|
|
38
38
|
"jest": "^29.6.3",
|
|
39
39
|
"prettier": "2.8.8",
|
|
40
|
+
"react-native-inapp-inspector": "file:..",
|
|
40
41
|
"react-test-renderer": "19.2.3",
|
|
41
42
|
"typescript": "^5.8.3"
|
|
42
43
|
},
|
|
43
44
|
"engines": {
|
|
44
|
-
"node": ">=
|
|
45
|
+
"node": ">= 18.0.0"
|
|
45
46
|
}
|
|
46
47
|
},
|
|
47
48
|
"..": {
|
|
48
|
-
"version": "1.0.
|
|
49
|
+
"version": "1.0.4",
|
|
50
|
+
"dev": true,
|
|
49
51
|
"license": "MIT",
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@react-navigation/native": "^6.1.9",
|
|
@@ -10617,6 +10619,20 @@
|
|
|
10617
10619
|
"react-native": "*"
|
|
10618
10620
|
}
|
|
10619
10621
|
},
|
|
10622
|
+
"node_modules/react-native-webview": {
|
|
10623
|
+
"version": "13.16.1",
|
|
10624
|
+
"resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.16.1.tgz",
|
|
10625
|
+
"integrity": "sha512-If0eHhoEdOYDcHsX+xBFwHMbWBGK1BvGDQDQdVkwtSIXiq1uiqjkpWVP2uQ1as94J0CzvFE9PUNDuhiX0Z6ubw==",
|
|
10626
|
+
"license": "MIT",
|
|
10627
|
+
"dependencies": {
|
|
10628
|
+
"escape-string-regexp": "^4.0.0",
|
|
10629
|
+
"invariant": "2.2.4"
|
|
10630
|
+
},
|
|
10631
|
+
"peerDependencies": {
|
|
10632
|
+
"react": "*",
|
|
10633
|
+
"react-native": "*"
|
|
10634
|
+
}
|
|
10635
|
+
},
|
|
10620
10636
|
"node_modules/react-native/node_modules/commander": {
|
|
10621
10637
|
"version": "12.1.0",
|
|
10622
10638
|
"resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
|
package/example/package.json
CHANGED
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"@react-navigation/native-stack": "^7.16.0",
|
|
16
16
|
"react": "19.2.3",
|
|
17
17
|
"react-native": "0.85.3",
|
|
18
|
-
"react-native-inapp-inspector": "file:..",
|
|
19
18
|
"react-native-linear-gradient": "^2.8.3",
|
|
20
19
|
"react-native-safe-area-context": "^5.5.2",
|
|
21
20
|
"react-native-screens": "^4.25.2",
|
|
22
|
-
"react-native-svg": "^15.15.5"
|
|
21
|
+
"react-native-svg": "^15.15.5",
|
|
22
|
+
"react-native-webview": "^13.13.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@babel/core": "^7.25.2",
|
|
@@ -39,10 +39,11 @@
|
|
|
39
39
|
"eslint": "^8.19.0",
|
|
40
40
|
"jest": "^29.6.3",
|
|
41
41
|
"prettier": "2.8.8",
|
|
42
|
+
"react-native-inapp-inspector": "file:..",
|
|
42
43
|
"react-test-renderer": "19.2.3",
|
|
43
44
|
"typescript": "^5.8.3"
|
|
44
45
|
},
|
|
45
46
|
"engines": {
|
|
46
|
-
"node": ">=
|
|
47
|
+
"node": ">= 18.0.0"
|
|
47
48
|
}
|
|
48
49
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-inapp-inspector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A self-contained network, console, analytics, and webview inspector for React Native applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,7 +40,17 @@
|
|
|
40
40
|
"debug-tool"
|
|
41
41
|
],
|
|
42
42
|
"author": "Vengateswaran Balakrishnan",
|
|
43
|
+
"contributors": [
|
|
44
|
+
{
|
|
45
|
+
"name": "Vengateswaran Balakrishnan",
|
|
46
|
+
"url": "https://github.com/vengatmacuser"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
43
49
|
"license": "MIT",
|
|
50
|
+
"funding": {
|
|
51
|
+
"type": "github",
|
|
52
|
+
"url": "https://github.com/sponsors/vengatmacuser"
|
|
53
|
+
},
|
|
44
54
|
"peerDependencies": {
|
|
45
55
|
"@react-navigation/native": ">=6.0.0",
|
|
46
56
|
"react": ">=18.0.0",
|