react-native-inapp-inspector 1.0.0

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 (291) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +97 -0
  3. package/dist/commonjs/components/AnalyticsDetail.d.ts +6 -0
  4. package/dist/commonjs/components/AnalyticsDetail.js +558 -0
  5. package/dist/commonjs/components/AnalyticsEventCard.d.ts +18 -0
  6. package/dist/commonjs/components/AnalyticsEventCard.js +327 -0
  7. package/dist/commonjs/components/AnalyticsGraph.d.ts +8 -0
  8. package/dist/commonjs/components/AnalyticsGraph.js +416 -0
  9. package/dist/commonjs/components/CodeSnippet.d.ts +8 -0
  10. package/dist/commonjs/components/CodeSnippet.js +427 -0
  11. package/dist/commonjs/components/ConsoleLogCard.d.ts +10 -0
  12. package/dist/commonjs/components/ConsoleLogCard.js +401 -0
  13. package/dist/commonjs/components/CopyButton.d.ts +4 -0
  14. package/dist/commonjs/components/CopyButton.js +69 -0
  15. package/dist/commonjs/components/DiffViewer.d.ts +7 -0
  16. package/dist/commonjs/components/DiffViewer.js +86 -0
  17. package/dist/commonjs/components/DomainHeader.d.ts +18 -0
  18. package/dist/commonjs/components/DomainHeader.js +136 -0
  19. package/dist/commonjs/components/EmptyState.d.ts +5 -0
  20. package/dist/commonjs/components/EmptyState.js +40 -0
  21. package/dist/commonjs/components/HeadersSection.d.ts +4 -0
  22. package/dist/commonjs/components/HeadersSection.js +155 -0
  23. package/dist/commonjs/components/HighlightText.d.ts +3 -0
  24. package/dist/commonjs/components/HighlightText.js +57 -0
  25. package/dist/commonjs/components/JsonViewer.d.ts +7 -0
  26. package/dist/commonjs/components/JsonViewer.js +19 -0
  27. package/dist/commonjs/components/LogCard.d.ts +4 -0
  28. package/dist/commonjs/components/LogCard.js +179 -0
  29. package/dist/commonjs/components/MetaAccordion.d.ts +4 -0
  30. package/dist/commonjs/components/MetaAccordion.js +113 -0
  31. package/dist/commonjs/components/MiniBarChart.d.ts +7 -0
  32. package/dist/commonjs/components/MiniBarChart.js +56 -0
  33. package/dist/commonjs/components/MiniLineChart.d.ts +6 -0
  34. package/dist/commonjs/components/MiniLineChart.js +58 -0
  35. package/dist/commonjs/components/NetworkIcons.d.ts +31 -0
  36. package/dist/commonjs/components/NetworkIcons.js +245 -0
  37. package/dist/commonjs/components/SectionHeader.d.ts +4 -0
  38. package/dist/commonjs/components/SectionHeader.js +87 -0
  39. package/dist/commonjs/components/SourcePageCard.d.ts +4 -0
  40. package/dist/commonjs/components/SourcePageCard.js +132 -0
  41. package/dist/commonjs/components/TouchableScale.d.ts +9 -0
  42. package/dist/commonjs/components/TouchableScale.js +44 -0
  43. package/dist/commonjs/components/TreeNode.d.ts +4 -0
  44. package/dist/commonjs/components/TreeNode.js +140 -0
  45. package/dist/commonjs/constants/index.d.ts +7 -0
  46. package/dist/commonjs/constants/index.js +35 -0
  47. package/dist/commonjs/customHooks/analyticsLogger.d.ts +21 -0
  48. package/dist/commonjs/customHooks/analyticsLogger.js +160 -0
  49. package/dist/commonjs/customHooks/consoleLogger.d.ts +5 -0
  50. package/dist/commonjs/customHooks/consoleLogger.js +141 -0
  51. package/dist/commonjs/customHooks/logFilters.d.ts +5 -0
  52. package/dist/commonjs/customHooks/logFilters.js +34 -0
  53. package/dist/commonjs/customHooks/networkLogger.d.ts +20 -0
  54. package/dist/commonjs/customHooks/networkLogger.js +272 -0
  55. package/dist/commonjs/customHooks/useAccordion.d.ts +17 -0
  56. package/dist/commonjs/customHooks/useAccordion.js +48 -0
  57. package/dist/commonjs/customHooks/webViewLogger.d.ts +22 -0
  58. package/dist/commonjs/customHooks/webViewLogger.js +412 -0
  59. package/dist/commonjs/helpers/index.d.ts +20 -0
  60. package/dist/commonjs/helpers/index.js +229 -0
  61. package/dist/commonjs/index.d.ts +7 -0
  62. package/dist/commonjs/index.js +2668 -0
  63. package/dist/commonjs/styles/AppColors.d.ts +27 -0
  64. package/dist/commonjs/styles/AppColors.js +30 -0
  65. package/dist/commonjs/styles/AppFonts.d.ts +7 -0
  66. package/dist/commonjs/styles/AppFonts.js +10 -0
  67. package/dist/commonjs/styles/index.d.ts +1488 -0
  68. package/dist/commonjs/styles/index.js +1357 -0
  69. package/dist/commonjs/types/index.d.ts +127 -0
  70. package/dist/commonjs/types/index.js +2 -0
  71. package/dist/esm/components/AnalyticsDetail.d.ts +6 -0
  72. package/dist/esm/components/AnalyticsDetail.js +520 -0
  73. package/dist/esm/components/AnalyticsEventCard.d.ts +18 -0
  74. package/dist/esm/components/AnalyticsEventCard.js +288 -0
  75. package/dist/esm/components/AnalyticsGraph.d.ts +8 -0
  76. package/dist/esm/components/AnalyticsGraph.js +378 -0
  77. package/dist/esm/components/CodeSnippet.d.ts +8 -0
  78. package/dist/esm/components/CodeSnippet.js +392 -0
  79. package/dist/esm/components/ConsoleLogCard.d.ts +10 -0
  80. package/dist/esm/components/ConsoleLogCard.js +362 -0
  81. package/dist/esm/components/CopyButton.d.ts +4 -0
  82. package/dist/esm/components/CopyButton.js +31 -0
  83. package/dist/esm/components/DiffViewer.d.ts +7 -0
  84. package/dist/esm/components/DiffViewer.js +48 -0
  85. package/dist/esm/components/DomainHeader.d.ts +18 -0
  86. package/dist/esm/components/DomainHeader.js +98 -0
  87. package/dist/esm/components/EmptyState.d.ts +5 -0
  88. package/dist/esm/components/EmptyState.js +35 -0
  89. package/dist/esm/components/HeadersSection.d.ts +4 -0
  90. package/dist/esm/components/HeadersSection.js +117 -0
  91. package/dist/esm/components/HighlightText.d.ts +3 -0
  92. package/dist/esm/components/HighlightText.js +52 -0
  93. package/dist/esm/components/JsonViewer.d.ts +7 -0
  94. package/dist/esm/components/JsonViewer.js +14 -0
  95. package/dist/esm/components/LogCard.d.ts +4 -0
  96. package/dist/esm/components/LogCard.js +141 -0
  97. package/dist/esm/components/MetaAccordion.d.ts +4 -0
  98. package/dist/esm/components/MetaAccordion.js +108 -0
  99. package/dist/esm/components/MiniBarChart.d.ts +7 -0
  100. package/dist/esm/components/MiniBarChart.js +18 -0
  101. package/dist/esm/components/MiniLineChart.d.ts +6 -0
  102. package/dist/esm/components/MiniLineChart.js +20 -0
  103. package/dist/esm/components/NetworkIcons.d.ts +31 -0
  104. package/dist/esm/components/NetworkIcons.js +176 -0
  105. package/dist/esm/components/SectionHeader.d.ts +4 -0
  106. package/dist/esm/components/SectionHeader.js +49 -0
  107. package/dist/esm/components/SourcePageCard.d.ts +4 -0
  108. package/dist/esm/components/SourcePageCard.js +94 -0
  109. package/dist/esm/components/TouchableScale.d.ts +9 -0
  110. package/dist/esm/components/TouchableScale.js +9 -0
  111. package/dist/esm/components/TreeNode.d.ts +4 -0
  112. package/dist/esm/components/TreeNode.js +102 -0
  113. package/dist/esm/constants/index.d.ts +7 -0
  114. package/dist/esm/constants/index.js +32 -0
  115. package/dist/esm/customHooks/analyticsLogger.d.ts +21 -0
  116. package/dist/esm/customHooks/analyticsLogger.js +152 -0
  117. package/dist/esm/customHooks/consoleLogger.d.ts +5 -0
  118. package/dist/esm/customHooks/consoleLogger.js +134 -0
  119. package/dist/esm/customHooks/logFilters.d.ts +5 -0
  120. package/dist/esm/customHooks/logFilters.js +31 -0
  121. package/dist/esm/customHooks/networkLogger.d.ts +20 -0
  122. package/dist/esm/customHooks/networkLogger.js +264 -0
  123. package/dist/esm/customHooks/useAccordion.d.ts +17 -0
  124. package/dist/esm/customHooks/useAccordion.js +46 -0
  125. package/dist/esm/customHooks/webViewLogger.d.ts +22 -0
  126. package/dist/esm/customHooks/webViewLogger.js +365 -0
  127. package/dist/esm/helpers/index.d.ts +20 -0
  128. package/dist/esm/helpers/index.js +207 -0
  129. package/dist/esm/index.d.ts +7 -0
  130. package/dist/esm/index.js +2611 -0
  131. package/dist/esm/styles/AppColors.d.ts +27 -0
  132. package/dist/esm/styles/AppColors.js +27 -0
  133. package/dist/esm/styles/AppFonts.d.ts +7 -0
  134. package/dist/esm/styles/AppFonts.js +7 -0
  135. package/dist/esm/styles/index.d.ts +1488 -0
  136. package/dist/esm/styles/index.js +1355 -0
  137. package/dist/esm/types/index.d.ts +127 -0
  138. package/dist/esm/types/index.js +1 -0
  139. package/fonts/Inter/Inter.ttc +0 -0
  140. package/fonts/Inter/InterVariable-Italic.ttf +0 -0
  141. package/fonts/Inter/InterVariable.ttf +0 -0
  142. package/fonts/Inter/LICENSE.txt +92 -0
  143. package/fonts/Inter/extras/otf/Inter-Black.otf +0 -0
  144. package/fonts/Inter/extras/otf/Inter-BlackItalic.otf +0 -0
  145. package/fonts/Inter/extras/otf/Inter-Bold.otf +0 -0
  146. package/fonts/Inter/extras/otf/Inter-BoldItalic.otf +0 -0
  147. package/fonts/Inter/extras/otf/Inter-ExtraBold.otf +0 -0
  148. package/fonts/Inter/extras/otf/Inter-ExtraBoldItalic.otf +0 -0
  149. package/fonts/Inter/extras/otf/Inter-ExtraLight.otf +0 -0
  150. package/fonts/Inter/extras/otf/Inter-ExtraLightItalic.otf +0 -0
  151. package/fonts/Inter/extras/otf/Inter-Italic.otf +0 -0
  152. package/fonts/Inter/extras/otf/Inter-Light.otf +0 -0
  153. package/fonts/Inter/extras/otf/Inter-LightItalic.otf +0 -0
  154. package/fonts/Inter/extras/otf/Inter-Medium.otf +0 -0
  155. package/fonts/Inter/extras/otf/Inter-MediumItalic.otf +0 -0
  156. package/fonts/Inter/extras/otf/Inter-Regular.otf +0 -0
  157. package/fonts/Inter/extras/otf/Inter-SemiBold.otf +0 -0
  158. package/fonts/Inter/extras/otf/Inter-SemiBoldItalic.otf +0 -0
  159. package/fonts/Inter/extras/otf/Inter-Thin.otf +0 -0
  160. package/fonts/Inter/extras/otf/Inter-ThinItalic.otf +0 -0
  161. package/fonts/Inter/extras/otf/InterDisplay-Black.otf +0 -0
  162. package/fonts/Inter/extras/otf/InterDisplay-BlackItalic.otf +0 -0
  163. package/fonts/Inter/extras/otf/InterDisplay-Bold.otf +0 -0
  164. package/fonts/Inter/extras/otf/InterDisplay-BoldItalic.otf +0 -0
  165. package/fonts/Inter/extras/otf/InterDisplay-ExtraBold.otf +0 -0
  166. package/fonts/Inter/extras/otf/InterDisplay-ExtraBoldItalic.otf +0 -0
  167. package/fonts/Inter/extras/otf/InterDisplay-ExtraLight.otf +0 -0
  168. package/fonts/Inter/extras/otf/InterDisplay-ExtraLightItalic.otf +0 -0
  169. package/fonts/Inter/extras/otf/InterDisplay-Italic.otf +0 -0
  170. package/fonts/Inter/extras/otf/InterDisplay-Light.otf +0 -0
  171. package/fonts/Inter/extras/otf/InterDisplay-LightItalic.otf +0 -0
  172. package/fonts/Inter/extras/otf/InterDisplay-Medium.otf +0 -0
  173. package/fonts/Inter/extras/otf/InterDisplay-MediumItalic.otf +0 -0
  174. package/fonts/Inter/extras/otf/InterDisplay-Regular.otf +0 -0
  175. package/fonts/Inter/extras/otf/InterDisplay-SemiBold.otf +0 -0
  176. package/fonts/Inter/extras/otf/InterDisplay-SemiBoldItalic.otf +0 -0
  177. package/fonts/Inter/extras/otf/InterDisplay-Thin.otf +0 -0
  178. package/fonts/Inter/extras/otf/InterDisplay-ThinItalic.otf +0 -0
  179. package/fonts/Inter/extras/ttf/Inter-Black.ttf +0 -0
  180. package/fonts/Inter/extras/ttf/Inter-BlackItalic.ttf +0 -0
  181. package/fonts/Inter/extras/ttf/Inter-Bold.ttf +0 -0
  182. package/fonts/Inter/extras/ttf/Inter-BoldItalic.ttf +0 -0
  183. package/fonts/Inter/extras/ttf/Inter-ExtraBold.ttf +0 -0
  184. package/fonts/Inter/extras/ttf/Inter-ExtraBoldItalic.ttf +0 -0
  185. package/fonts/Inter/extras/ttf/Inter-ExtraLight.ttf +0 -0
  186. package/fonts/Inter/extras/ttf/Inter-ExtraLightItalic.ttf +0 -0
  187. package/fonts/Inter/extras/ttf/Inter-Italic.ttf +0 -0
  188. package/fonts/Inter/extras/ttf/Inter-Light.ttf +0 -0
  189. package/fonts/Inter/extras/ttf/Inter-LightItalic.ttf +0 -0
  190. package/fonts/Inter/extras/ttf/Inter-Medium.ttf +0 -0
  191. package/fonts/Inter/extras/ttf/Inter-MediumItalic.ttf +0 -0
  192. package/fonts/Inter/extras/ttf/Inter-Regular.ttf +0 -0
  193. package/fonts/Inter/extras/ttf/Inter-SemiBold.ttf +0 -0
  194. package/fonts/Inter/extras/ttf/Inter-SemiBoldItalic.ttf +0 -0
  195. package/fonts/Inter/extras/ttf/Inter-Thin.ttf +0 -0
  196. package/fonts/Inter/extras/ttf/Inter-ThinItalic.ttf +0 -0
  197. package/fonts/Inter/extras/ttf/InterDisplay-Black.ttf +0 -0
  198. package/fonts/Inter/extras/ttf/InterDisplay-BlackItalic.ttf +0 -0
  199. package/fonts/Inter/extras/ttf/InterDisplay-Bold.ttf +0 -0
  200. package/fonts/Inter/extras/ttf/InterDisplay-BoldItalic.ttf +0 -0
  201. package/fonts/Inter/extras/ttf/InterDisplay-ExtraBold.ttf +0 -0
  202. package/fonts/Inter/extras/ttf/InterDisplay-ExtraBoldItalic.ttf +0 -0
  203. package/fonts/Inter/extras/ttf/InterDisplay-ExtraLight.ttf +0 -0
  204. package/fonts/Inter/extras/ttf/InterDisplay-ExtraLightItalic.ttf +0 -0
  205. package/fonts/Inter/extras/ttf/InterDisplay-Italic.ttf +0 -0
  206. package/fonts/Inter/extras/ttf/InterDisplay-Light.ttf +0 -0
  207. package/fonts/Inter/extras/ttf/InterDisplay-LightItalic.ttf +0 -0
  208. package/fonts/Inter/extras/ttf/InterDisplay-Medium.ttf +0 -0
  209. package/fonts/Inter/extras/ttf/InterDisplay-MediumItalic.ttf +0 -0
  210. package/fonts/Inter/extras/ttf/InterDisplay-Regular.ttf +0 -0
  211. package/fonts/Inter/extras/ttf/InterDisplay-SemiBold.ttf +0 -0
  212. package/fonts/Inter/extras/ttf/InterDisplay-SemiBoldItalic.ttf +0 -0
  213. package/fonts/Inter/extras/ttf/InterDisplay-Thin.ttf +0 -0
  214. package/fonts/Inter/extras/ttf/InterDisplay-ThinItalic.ttf +0 -0
  215. package/fonts/Inter/extras/woff-hinted/Inter-Black.woff2 +0 -0
  216. package/fonts/Inter/extras/woff-hinted/Inter-BlackItalic.woff2 +0 -0
  217. package/fonts/Inter/extras/woff-hinted/Inter-Bold.woff2 +0 -0
  218. package/fonts/Inter/extras/woff-hinted/Inter-BoldItalic.woff2 +0 -0
  219. package/fonts/Inter/extras/woff-hinted/Inter-ExtraBold.woff2 +0 -0
  220. package/fonts/Inter/extras/woff-hinted/Inter-ExtraBoldItalic.woff2 +0 -0
  221. package/fonts/Inter/extras/woff-hinted/Inter-ExtraLight.woff2 +0 -0
  222. package/fonts/Inter/extras/woff-hinted/Inter-ExtraLightItalic.woff2 +0 -0
  223. package/fonts/Inter/extras/woff-hinted/Inter-Italic.woff2 +0 -0
  224. package/fonts/Inter/extras/woff-hinted/Inter-Light.woff2 +0 -0
  225. package/fonts/Inter/extras/woff-hinted/Inter-LightItalic.woff2 +0 -0
  226. package/fonts/Inter/extras/woff-hinted/Inter-Medium.woff2 +0 -0
  227. package/fonts/Inter/extras/woff-hinted/Inter-MediumItalic.woff2 +0 -0
  228. package/fonts/Inter/extras/woff-hinted/Inter-Regular.woff2 +0 -0
  229. package/fonts/Inter/extras/woff-hinted/Inter-SemiBold.woff2 +0 -0
  230. package/fonts/Inter/extras/woff-hinted/Inter-SemiBoldItalic.woff2 +0 -0
  231. package/fonts/Inter/extras/woff-hinted/Inter-Thin.woff2 +0 -0
  232. package/fonts/Inter/extras/woff-hinted/Inter-ThinItalic.woff2 +0 -0
  233. package/fonts/Inter/extras/woff-hinted/InterDisplay-Black.woff2 +0 -0
  234. package/fonts/Inter/extras/woff-hinted/InterDisplay-BlackItalic.woff2 +0 -0
  235. package/fonts/Inter/extras/woff-hinted/InterDisplay-Bold.woff2 +0 -0
  236. package/fonts/Inter/extras/woff-hinted/InterDisplay-BoldItalic.woff2 +0 -0
  237. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBold.woff2 +0 -0
  238. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBoldItalic.woff2 +0 -0
  239. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLight.woff2 +0 -0
  240. package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLightItalic.woff2 +0 -0
  241. package/fonts/Inter/extras/woff-hinted/InterDisplay-Italic.woff2 +0 -0
  242. package/fonts/Inter/extras/woff-hinted/InterDisplay-Light.woff2 +0 -0
  243. package/fonts/Inter/extras/woff-hinted/InterDisplay-LightItalic.woff2 +0 -0
  244. package/fonts/Inter/extras/woff-hinted/InterDisplay-Medium.woff2 +0 -0
  245. package/fonts/Inter/extras/woff-hinted/InterDisplay-MediumItalic.woff2 +0 -0
  246. package/fonts/Inter/extras/woff-hinted/InterDisplay-Regular.woff2 +0 -0
  247. package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBold.woff2 +0 -0
  248. package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBoldItalic.woff2 +0 -0
  249. package/fonts/Inter/extras/woff-hinted/InterDisplay-Thin.woff2 +0 -0
  250. package/fonts/Inter/extras/woff-hinted/InterDisplay-ThinItalic.woff2 +0 -0
  251. package/fonts/Inter/help.txt +165 -0
  252. package/fonts/Inter/web/Inter-Black.woff2 +0 -0
  253. package/fonts/Inter/web/Inter-BlackItalic.woff2 +0 -0
  254. package/fonts/Inter/web/Inter-Bold.woff2 +0 -0
  255. package/fonts/Inter/web/Inter-BoldItalic.woff2 +0 -0
  256. package/fonts/Inter/web/Inter-ExtraBold.woff2 +0 -0
  257. package/fonts/Inter/web/Inter-ExtraBoldItalic.woff2 +0 -0
  258. package/fonts/Inter/web/Inter-ExtraLight.woff2 +0 -0
  259. package/fonts/Inter/web/Inter-ExtraLightItalic.woff2 +0 -0
  260. package/fonts/Inter/web/Inter-Italic.woff2 +0 -0
  261. package/fonts/Inter/web/Inter-Light.woff2 +0 -0
  262. package/fonts/Inter/web/Inter-LightItalic.woff2 +0 -0
  263. package/fonts/Inter/web/Inter-Medium.woff2 +0 -0
  264. package/fonts/Inter/web/Inter-MediumItalic.woff2 +0 -0
  265. package/fonts/Inter/web/Inter-Regular.woff2 +0 -0
  266. package/fonts/Inter/web/Inter-SemiBold.woff2 +0 -0
  267. package/fonts/Inter/web/Inter-SemiBoldItalic.woff2 +0 -0
  268. package/fonts/Inter/web/Inter-Thin.woff2 +0 -0
  269. package/fonts/Inter/web/Inter-ThinItalic.woff2 +0 -0
  270. package/fonts/Inter/web/InterDisplay-Black.woff2 +0 -0
  271. package/fonts/Inter/web/InterDisplay-BlackItalic.woff2 +0 -0
  272. package/fonts/Inter/web/InterDisplay-Bold.woff2 +0 -0
  273. package/fonts/Inter/web/InterDisplay-BoldItalic.woff2 +0 -0
  274. package/fonts/Inter/web/InterDisplay-ExtraBold.woff2 +0 -0
  275. package/fonts/Inter/web/InterDisplay-ExtraBoldItalic.woff2 +0 -0
  276. package/fonts/Inter/web/InterDisplay-ExtraLight.woff2 +0 -0
  277. package/fonts/Inter/web/InterDisplay-ExtraLightItalic.woff2 +0 -0
  278. package/fonts/Inter/web/InterDisplay-Italic.woff2 +0 -0
  279. package/fonts/Inter/web/InterDisplay-Light.woff2 +0 -0
  280. package/fonts/Inter/web/InterDisplay-LightItalic.woff2 +0 -0
  281. package/fonts/Inter/web/InterDisplay-Medium.woff2 +0 -0
  282. package/fonts/Inter/web/InterDisplay-MediumItalic.woff2 +0 -0
  283. package/fonts/Inter/web/InterDisplay-Regular.woff2 +0 -0
  284. package/fonts/Inter/web/InterDisplay-SemiBold.woff2 +0 -0
  285. package/fonts/Inter/web/InterDisplay-SemiBoldItalic.woff2 +0 -0
  286. package/fonts/Inter/web/InterDisplay-Thin.woff2 +0 -0
  287. package/fonts/Inter/web/InterDisplay-ThinItalic.woff2 +0 -0
  288. package/fonts/Inter/web/InterVariable-Italic.woff2 +0 -0
  289. package/fonts/Inter/web/InterVariable.woff2 +0 -0
  290. package/fonts/Inter/web/inter.css +148 -0
  291. package/package.json +52 -0
@@ -0,0 +1,165 @@
1
+ Installing & using the Inter fonts
2
+
3
+ Contents:
4
+ 1. Installing font files
5
+ 1.1. Installing on Apple macOS
6
+ 1.2. Installing on Microsoft Windows
7
+ 1.3. Installing on Ubuntu Linux
8
+ 2. Using Inter in Web content
9
+ 3. Hinted TrueType fonts
10
+ 4. Extras
11
+ 5. License (can I use Inter for x?)
12
+
13
+ File index:
14
+ Inter.ttc Complete font family "Inter"
15
+ InterVariable*.ttf Complete font family "Inter Variable"
16
+ web/* Web fonts and CSS
17
+ extras/ Alternative formats (see "Extras")
18
+
19
+ ---------------------------------------------------------------------
20
+
21
+ 1. Installing font files
22
+
23
+ Inter fonts comes in two flavors: Variable and Static
24
+ (InterVariable*.ttf and Inter.ttc, respectively)
25
+
26
+ Variable fonts is a new format which allows you to choose any
27
+ weight and optical size. Variable fonts is a relatively new
28
+ technology and may not yet be supported by all your software.
29
+ Inter's variable font is called "Inter Variable" to avoid
30
+ confusion and to allow use alongside the traditional static fonts.
31
+
32
+ Static fonts works with older software and uses a fixed set of
33
+ predefined mixtures of weight and optical size. For example
34
+ "Inter Display Medium" is Inter with maximum optical size and a
35
+ weight of 500.
36
+
37
+ You will be installing both of these flavors.
38
+
39
+
40
+ 1.1. Installing on Apple macOS
41
+
42
+ 1. Open the "Font Book" application.
43
+ 2. In the main menu, select "File" → "Add Fonts..."
44
+ 3. Select "Inter.ttc", "InterVariable.ttf" and "InterVariable-Italic.ttf"
45
+ 4. Press the "Open" button
46
+
47
+ Alternatively, if you prefer not to use Font Book, you can move or
48
+ copy the font files directly into ~/Library/Fonts/
49
+
50
+
51
+ 1.2. Installing on Microsoft Windows
52
+
53
+ 1. Open the zip file you downloaded
54
+ 2. Select "Inter.ttc", "InterVariable.ttf" and "InterVariable-Italic.ttf"
55
+ 3. Right-click the selected files, choose "Install for all users"
56
+
57
+ If you have a previous installation of Inter, you should make sure
58
+ to remove those fonts files before installing new ones. You need to
59
+ install the font for all users, as some software requires fonts to
60
+ be global.
61
+
62
+
63
+ 1.3. Installing on Ubuntu Linux
64
+
65
+ 1. Create a ".fonts" directory in your home. (mkdir -p ~/.fonts)
66
+ 2. Copy "Inter.ttc", "InterVariable.ttf" and "InterVariable-Italic.ttf"
67
+ into your .fonts directory (cp Inter.ttc *.ttf ~/.fonts/)
68
+
69
+ You may have to restart apps and/or your window server session.
70
+
71
+ ---------------------------------------------------------------------
72
+
73
+ 2. Using Inter in Web content
74
+
75
+ 1. Copy all woff2 files and the inter.css file from the "Web"
76
+ directory to your web server
77
+
78
+ 2. Add the following into your HTML <head>:
79
+
80
+ <link rel="preconnect" href="https://your-domain/">
81
+ <link rel="stylesheet" href="https://your-domain/inter.css">
82
+
83
+ Replace "your-domain" with the actual domain name where you host
84
+ the woff2 font files.
85
+
86
+ 3. If you are using a CDN, disable any automatic compression for
87
+ the woff2 files (they are already compressed) and set the
88
+ following HTTP headers for the woff2 files:
89
+
90
+ Content-Type: font/woff2
91
+ Cache-Control: max-age=31536000
92
+
93
+ The CSS contains specific version information in the URLs used
94
+ to load the fonts, so this is safe for upgrading to newer
95
+ versions of Inter.
96
+
97
+ 4. In your main document's CSS, add the following to use Inter:
98
+
99
+ :root { font-family: 'Inter', sans-serif; }
100
+ @supports (font-variation-settings: normal) {
101
+ :root { font-family: 'Inter var', sans-serif; }
102
+ }
103
+
104
+ There are many other ways of using Inter on the Web platform.
105
+ The instructions above is simply one way.
106
+
107
+ If you prefer to not host the fonts yourself, you can use the
108
+ official Inter CDN, which as a bonus means you are always serving
109
+ the latest version of Inter to your users:
110
+
111
+ <link rel="preconnect" href="https://rsms.me/">
112
+ <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
113
+
114
+ ---------------------------------------------------------------------
115
+
116
+ 3. Hinted TrueType fonts
117
+
118
+ This distribution contains TrueType fonts with hints in "Inter.ttc"
119
+
120
+ Microsoft Windows uses a technology called ClearType which alters
121
+ the shape of letters to increase sharpness, in particular for low-
122
+ density displays. This requires a font to have little programs
123
+ built into them, called TrueType hinting instructions, which lets
124
+ ClearType knows how to alter each character.
125
+
126
+ The variable font is currently not available with TrueType hints,
127
+ only the traditional "static" font files are. This will hopefully
128
+ change in a future release.
129
+
130
+ Note that the web fonts does not contain hints to minimize file
131
+ size. You can get hinted web fonts from the "extras/woff-hinted"
132
+ directory.
133
+
134
+ ---------------------------------------------------------------------
135
+
136
+ 4. Extras
137
+
138
+ The "extras" directory contains some additional "bonus" content:
139
+
140
+ otf/ Static font files in CFF format
141
+ ttf/ Static font files with TrueType hints
142
+ woff-hinted/ Web fonts with TrueType hints
143
+
144
+ ---------------------------------------------------------------------
145
+
146
+ 5. License (can I use Inter for x?)
147
+
148
+ Inter is a completely free-to-use typeface, including commercial
149
+ use. It is licensed under the SIL Open Font License 1.1, which
150
+ you have received a copy of in the separate file LICENSE.txt
151
+
152
+ Here is a brief outline of permissions, limitations and conditions:
153
+
154
+ Permissions Limitations Conditions
155
+ - Private use - No liability - License & copyright
156
+ - Commercial use - No warranty - Same license
157
+ - Modification
158
+ - Distribution
159
+
160
+ Please read the complete LICENSE.txt carefully!
161
+
162
+
163
+ ---------------------------------------------------------------------
164
+
165
+ Learn more about Inter at https://rsms.me/inter/
Binary file
Binary file
@@ -0,0 +1,148 @@
1
+ /* Variable fonts usage:
2
+ :root { font-family: "Inter", sans-serif; }
3
+ @supports (font-variation-settings: normal) {
4
+ :root { font-family: "InterVariable", sans-serif; font-optical-sizing: auto; }
5
+ } */
6
+ @font-face {
7
+ font-family: InterVariable;
8
+ font-style: normal;
9
+ font-weight: 100 900;
10
+ font-display: swap;
11
+ src: url("InterVariable.woff2") format("woff2");
12
+ }
13
+ @font-face {
14
+ font-family: InterVariable;
15
+ font-style: italic;
16
+ font-weight: 100 900;
17
+ font-display: swap;
18
+ src: url("InterVariable-Italic.woff2") format("woff2");
19
+ }
20
+
21
+ /* static fonts */
22
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 100; font-display: swap; src: url("Inter-Thin.woff2") format("woff2"); }
23
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 100; font-display: swap; src: url("Inter-ThinItalic.woff2") format("woff2"); }
24
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 200; font-display: swap; src: url("Inter-ExtraLight.woff2") format("woff2"); }
25
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 200; font-display: swap; src: url("Inter-ExtraLightItalic.woff2") format("woff2"); }
26
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 300; font-display: swap; src: url("Inter-Light.woff2") format("woff2"); }
27
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 300; font-display: swap; src: url("Inter-LightItalic.woff2") format("woff2"); }
28
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("Inter-Regular.woff2") format("woff2"); }
29
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 400; font-display: swap; src: url("Inter-Italic.woff2") format("woff2"); }
30
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("Inter-Medium.woff2") format("woff2"); }
31
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 500; font-display: swap; src: url("Inter-MediumItalic.woff2") format("woff2"); }
32
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("Inter-SemiBold.woff2") format("woff2"); }
33
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 600; font-display: swap; src: url("Inter-SemiBoldItalic.woff2") format("woff2"); }
34
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("Inter-Bold.woff2") format("woff2"); }
35
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 700; font-display: swap; src: url("Inter-BoldItalic.woff2") format("woff2"); }
36
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("Inter-ExtraBold.woff2") format("woff2"); }
37
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 800; font-display: swap; src: url("Inter-ExtraBoldItalic.woff2") format("woff2"); }
38
+ @font-face { font-family: "Inter"; font-style: normal; font-weight: 900; font-display: swap; src: url("Inter-Black.woff2") format("woff2"); }
39
+ @font-face { font-family: "Inter"; font-style: italic; font-weight: 900; font-display: swap; src: url("Inter-BlackItalic.woff2") format("woff2"); }
40
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 100; font-display: swap; src: url("InterDisplay-Thin.woff2") format("woff2"); }
41
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 100; font-display: swap; src: url("InterDisplay-ThinItalic.woff2") format("woff2"); }
42
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 200; font-display: swap; src: url("InterDisplay-ExtraLight.woff2") format("woff2"); }
43
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 200; font-display: swap; src: url("InterDisplay-ExtraLightItalic.woff2") format("woff2"); }
44
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 300; font-display: swap; src: url("InterDisplay-Light.woff2") format("woff2"); }
45
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 300; font-display: swap; src: url("InterDisplay-LightItalic.woff2") format("woff2"); }
46
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 400; font-display: swap; src: url("InterDisplay-Regular.woff2") format("woff2"); }
47
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 400; font-display: swap; src: url("InterDisplay-Italic.woff2") format("woff2"); }
48
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 500; font-display: swap; src: url("InterDisplay-Medium.woff2") format("woff2"); }
49
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 500; font-display: swap; src: url("InterDisplay-MediumItalic.woff2") format("woff2"); }
50
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 600; font-display: swap; src: url("InterDisplay-SemiBold.woff2") format("woff2"); }
51
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 600; font-display: swap; src: url("InterDisplay-SemiBoldItalic.woff2") format("woff2"); }
52
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 700; font-display: swap; src: url("InterDisplay-Bold.woff2") format("woff2"); }
53
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 700; font-display: swap; src: url("InterDisplay-BoldItalic.woff2") format("woff2"); }
54
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 800; font-display: swap; src: url("InterDisplay-ExtraBold.woff2") format("woff2"); }
55
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 800; font-display: swap; src: url("InterDisplay-ExtraBoldItalic.woff2") format("woff2"); }
56
+ @font-face { font-family: "InterDisplay"; font-style: normal; font-weight: 900; font-display: swap; src: url("InterDisplay-Black.woff2") format("woff2"); }
57
+ @font-face { font-family: "InterDisplay"; font-style: italic; font-weight: 900; font-display: swap; src: url("InterDisplay-BlackItalic.woff2") format("woff2"); }
58
+
59
+ @font-feature-values InterVariable {
60
+ @character-variant {
61
+ cv01: 1; cv02: 2; cv03: 3; cv04: 4; cv05: 5; cv06: 6; cv07: 7; cv08: 8;
62
+ cv09: 9; cv10: 10; cv11: 11; cv12: 12; cv13: 13;
63
+ alt-1: 1; /* Alternate one */
64
+ alt-3: 9; /* Flat-top three */
65
+ open-4: 2; /* Open four */
66
+ open-6: 3; /* Open six */
67
+ open-9: 4; /* Open nine */
68
+ lc-l-with-tail: 5; /* Lower-case L with tail */
69
+ simplified-u: 6; /* Simplified u */
70
+ alt-double-s: 7; /* Alternate German double s */
71
+ uc-i-with-serif: 8; /* Upper-case i with serif */
72
+ uc-g-with-spur: 10; /* Capital G with spur */
73
+ single-story-a: 11; /* Single-story a */
74
+ compact-lc-f: 12; /* Compact f */
75
+ compact-lc-t: 13; /* Compact t */
76
+ }
77
+ @styleset {
78
+ ss01: 1; ss02: 2; ss03: 3; ss04: 4; ss05: 5; ss06: 6; ss07: 7; ss08: 8;
79
+ open-digits: 1; /* Open digits */
80
+ disambiguation: 2; /* Disambiguation (with zero) */
81
+ disambiguation-except-zero: 4; /* Disambiguation (no zero) */
82
+ round-quotes-and-commas: 3; /* Round quotes &amp; commas */
83
+ square-punctuation: 7; /* Square punctuation */
84
+ square-quotes: 8; /* Square quotes */
85
+ circled-characters: 5; /* Circled characters */
86
+ squared-characters: 6; /* Squared characters */
87
+ }
88
+ }
89
+ @font-feature-values Inter {
90
+ @character-variant {
91
+ cv01: 1; cv02: 2; cv03: 3; cv04: 4; cv05: 5; cv06: 6; cv07: 7; cv08: 8;
92
+ cv09: 9; cv10: 10; cv11: 11; cv12: 12; cv13: 13;
93
+ alt-1: 1; /* Alternate one */
94
+ alt-3: 9; /* Flat-top three */
95
+ open-4: 2; /* Open four */
96
+ open-6: 3; /* Open six */
97
+ open-9: 4; /* Open nine */
98
+ lc-l-with-tail: 5; /* Lower-case L with tail */
99
+ simplified-u: 6; /* Simplified u */
100
+ alt-double-s: 7; /* Alternate German double s */
101
+ uc-i-with-serif: 8; /* Upper-case i with serif */
102
+ uc-g-with-spur: 10; /* Capital G with spur */
103
+ single-story-a: 11; /* Single-story a */
104
+ compact-lc-f: 12; /* Compact f */
105
+ compact-lc-t: 13; /* Compact t */
106
+ }
107
+ @styleset {
108
+ ss01: 1; ss02: 2; ss03: 3; ss04: 4; ss05: 5; ss06: 6; ss07: 7; ss08: 8;
109
+ open-digits: 1; /* Open digits */
110
+ disambiguation: 2; /* Disambiguation (with zero) */
111
+ disambiguation-except-zero: 4; /* Disambiguation (no zero) */
112
+ round-quotes-and-commas: 3; /* Round quotes &amp; commas */
113
+ square-punctuation: 7; /* Square punctuation */
114
+ square-quotes: 8; /* Square quotes */
115
+ circled-characters: 5; /* Circled characters */
116
+ squared-characters: 6; /* Squared characters */
117
+ }
118
+ }
119
+ @font-feature-values InterDisplay {
120
+ @character-variant {
121
+ cv01: 1; cv02: 2; cv03: 3; cv04: 4; cv05: 5; cv06: 6; cv07: 7; cv08: 8;
122
+ cv09: 9; cv10: 10; cv11: 11; cv12: 12; cv13: 13;
123
+ alt-1: 1; /* Alternate one */
124
+ alt-3: 9; /* Flat-top three */
125
+ open-4: 2; /* Open four */
126
+ open-6: 3; /* Open six */
127
+ open-9: 4; /* Open nine */
128
+ lc-l-with-tail: 5; /* Lower-case L with tail */
129
+ simplified-u: 6; /* Simplified u */
130
+ alt-double-s: 7; /* Alternate German double s */
131
+ uc-i-with-serif: 8; /* Upper-case i with serif */
132
+ uc-g-with-spur: 10; /* Capital G with spur */
133
+ single-story-a: 11; /* Single-story a */
134
+ compact-lc-f: 12; /* Compact f */
135
+ compact-lc-t: 13; /* Compact t */
136
+ }
137
+ @styleset {
138
+ ss01: 1; ss02: 2; ss03: 3; ss04: 4; ss05: 5; ss06: 6; ss07: 7; ss08: 8;
139
+ open-digits: 1; /* Open digits */
140
+ disambiguation: 2; /* Disambiguation (with zero) */
141
+ disambiguation-except-zero: 4; /* Disambiguation (no zero) */
142
+ round-quotes-and-commas: 3; /* Round quotes &amp; commas */
143
+ square-punctuation: 7; /* Square punctuation */
144
+ square-quotes: 8; /* Square quotes */
145
+ circled-characters: 5; /* Circled characters */
146
+ squared-characters: 6; /* Squared characters */
147
+ }
148
+ }
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "react-native-inapp-inspector",
3
+ "version": "1.0.0",
4
+ "description": "A self-contained network, console, analytics, and webview inspector for React Native applications.",
5
+ "main": "dist/commonjs/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/commonjs/index.d.ts",
8
+ "sideEffects": false,
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/commonjs/index.d.ts",
12
+ "import": "./dist/esm/index.js",
13
+ "require": "./dist/commonjs/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "fonts"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsc && tsc -p tsconfig.esm.json",
22
+ "watch": "tsc -w",
23
+ "prepack": "npm run build"
24
+ },
25
+ "keywords": [
26
+ "react-native",
27
+ "network-logger",
28
+ "network-inspector",
29
+ "analytics-logger",
30
+ "webview-logger",
31
+ "debug-tool"
32
+ ],
33
+ "author": "Vengateswaran Balakrishnan",
34
+ "license": "MIT",
35
+ "peerDependencies": {
36
+ "@react-navigation/native": ">=6.0.0",
37
+ "react": ">=18.0.0",
38
+ "react-native": ">=0.60.0",
39
+ "react-native-linear-gradient": ">=2.0.0",
40
+ "react-native-svg": ">=12.0.0"
41
+ },
42
+ "devDependencies": {
43
+ "@react-navigation/native": "^6.1.9",
44
+ "@types/react": "^19.1.0",
45
+ "@types/react-native": "^0.72.0",
46
+ "react": "19.1.0",
47
+ "react-native": "0.81.4",
48
+ "react-native-linear-gradient": "^2.8.3",
49
+ "react-native-svg": "^15.14.0",
50
+ "typescript": "^5.8.3"
51
+ }
52
+ }