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.
- package/LICENSE +21 -0
- package/README.md +97 -0
- package/dist/commonjs/components/AnalyticsDetail.d.ts +6 -0
- package/dist/commonjs/components/AnalyticsDetail.js +558 -0
- package/dist/commonjs/components/AnalyticsEventCard.d.ts +18 -0
- package/dist/commonjs/components/AnalyticsEventCard.js +327 -0
- package/dist/commonjs/components/AnalyticsGraph.d.ts +8 -0
- package/dist/commonjs/components/AnalyticsGraph.js +416 -0
- package/dist/commonjs/components/CodeSnippet.d.ts +8 -0
- package/dist/commonjs/components/CodeSnippet.js +427 -0
- package/dist/commonjs/components/ConsoleLogCard.d.ts +10 -0
- package/dist/commonjs/components/ConsoleLogCard.js +401 -0
- package/dist/commonjs/components/CopyButton.d.ts +4 -0
- package/dist/commonjs/components/CopyButton.js +69 -0
- package/dist/commonjs/components/DiffViewer.d.ts +7 -0
- package/dist/commonjs/components/DiffViewer.js +86 -0
- package/dist/commonjs/components/DomainHeader.d.ts +18 -0
- package/dist/commonjs/components/DomainHeader.js +136 -0
- package/dist/commonjs/components/EmptyState.d.ts +5 -0
- package/dist/commonjs/components/EmptyState.js +40 -0
- package/dist/commonjs/components/HeadersSection.d.ts +4 -0
- package/dist/commonjs/components/HeadersSection.js +155 -0
- package/dist/commonjs/components/HighlightText.d.ts +3 -0
- package/dist/commonjs/components/HighlightText.js +57 -0
- package/dist/commonjs/components/JsonViewer.d.ts +7 -0
- package/dist/commonjs/components/JsonViewer.js +19 -0
- package/dist/commonjs/components/LogCard.d.ts +4 -0
- package/dist/commonjs/components/LogCard.js +179 -0
- package/dist/commonjs/components/MetaAccordion.d.ts +4 -0
- package/dist/commonjs/components/MetaAccordion.js +113 -0
- package/dist/commonjs/components/MiniBarChart.d.ts +7 -0
- package/dist/commonjs/components/MiniBarChart.js +56 -0
- package/dist/commonjs/components/MiniLineChart.d.ts +6 -0
- package/dist/commonjs/components/MiniLineChart.js +58 -0
- package/dist/commonjs/components/NetworkIcons.d.ts +31 -0
- package/dist/commonjs/components/NetworkIcons.js +245 -0
- package/dist/commonjs/components/SectionHeader.d.ts +4 -0
- package/dist/commonjs/components/SectionHeader.js +87 -0
- package/dist/commonjs/components/SourcePageCard.d.ts +4 -0
- package/dist/commonjs/components/SourcePageCard.js +132 -0
- package/dist/commonjs/components/TouchableScale.d.ts +9 -0
- package/dist/commonjs/components/TouchableScale.js +44 -0
- package/dist/commonjs/components/TreeNode.d.ts +4 -0
- package/dist/commonjs/components/TreeNode.js +140 -0
- package/dist/commonjs/constants/index.d.ts +7 -0
- package/dist/commonjs/constants/index.js +35 -0
- package/dist/commonjs/customHooks/analyticsLogger.d.ts +21 -0
- package/dist/commonjs/customHooks/analyticsLogger.js +160 -0
- package/dist/commonjs/customHooks/consoleLogger.d.ts +5 -0
- package/dist/commonjs/customHooks/consoleLogger.js +141 -0
- package/dist/commonjs/customHooks/logFilters.d.ts +5 -0
- package/dist/commonjs/customHooks/logFilters.js +34 -0
- package/dist/commonjs/customHooks/networkLogger.d.ts +20 -0
- package/dist/commonjs/customHooks/networkLogger.js +272 -0
- package/dist/commonjs/customHooks/useAccordion.d.ts +17 -0
- package/dist/commonjs/customHooks/useAccordion.js +48 -0
- package/dist/commonjs/customHooks/webViewLogger.d.ts +22 -0
- package/dist/commonjs/customHooks/webViewLogger.js +412 -0
- package/dist/commonjs/helpers/index.d.ts +20 -0
- package/dist/commonjs/helpers/index.js +229 -0
- package/dist/commonjs/index.d.ts +7 -0
- package/dist/commonjs/index.js +2668 -0
- package/dist/commonjs/styles/AppColors.d.ts +27 -0
- package/dist/commonjs/styles/AppColors.js +30 -0
- package/dist/commonjs/styles/AppFonts.d.ts +7 -0
- package/dist/commonjs/styles/AppFonts.js +10 -0
- package/dist/commonjs/styles/index.d.ts +1488 -0
- package/dist/commonjs/styles/index.js +1357 -0
- package/dist/commonjs/types/index.d.ts +127 -0
- package/dist/commonjs/types/index.js +2 -0
- package/dist/esm/components/AnalyticsDetail.d.ts +6 -0
- package/dist/esm/components/AnalyticsDetail.js +520 -0
- package/dist/esm/components/AnalyticsEventCard.d.ts +18 -0
- package/dist/esm/components/AnalyticsEventCard.js +288 -0
- package/dist/esm/components/AnalyticsGraph.d.ts +8 -0
- package/dist/esm/components/AnalyticsGraph.js +378 -0
- package/dist/esm/components/CodeSnippet.d.ts +8 -0
- package/dist/esm/components/CodeSnippet.js +392 -0
- package/dist/esm/components/ConsoleLogCard.d.ts +10 -0
- package/dist/esm/components/ConsoleLogCard.js +362 -0
- package/dist/esm/components/CopyButton.d.ts +4 -0
- package/dist/esm/components/CopyButton.js +31 -0
- package/dist/esm/components/DiffViewer.d.ts +7 -0
- package/dist/esm/components/DiffViewer.js +48 -0
- package/dist/esm/components/DomainHeader.d.ts +18 -0
- package/dist/esm/components/DomainHeader.js +98 -0
- package/dist/esm/components/EmptyState.d.ts +5 -0
- package/dist/esm/components/EmptyState.js +35 -0
- package/dist/esm/components/HeadersSection.d.ts +4 -0
- package/dist/esm/components/HeadersSection.js +117 -0
- package/dist/esm/components/HighlightText.d.ts +3 -0
- package/dist/esm/components/HighlightText.js +52 -0
- package/dist/esm/components/JsonViewer.d.ts +7 -0
- package/dist/esm/components/JsonViewer.js +14 -0
- package/dist/esm/components/LogCard.d.ts +4 -0
- package/dist/esm/components/LogCard.js +141 -0
- package/dist/esm/components/MetaAccordion.d.ts +4 -0
- package/dist/esm/components/MetaAccordion.js +108 -0
- package/dist/esm/components/MiniBarChart.d.ts +7 -0
- package/dist/esm/components/MiniBarChart.js +18 -0
- package/dist/esm/components/MiniLineChart.d.ts +6 -0
- package/dist/esm/components/MiniLineChart.js +20 -0
- package/dist/esm/components/NetworkIcons.d.ts +31 -0
- package/dist/esm/components/NetworkIcons.js +176 -0
- package/dist/esm/components/SectionHeader.d.ts +4 -0
- package/dist/esm/components/SectionHeader.js +49 -0
- package/dist/esm/components/SourcePageCard.d.ts +4 -0
- package/dist/esm/components/SourcePageCard.js +94 -0
- package/dist/esm/components/TouchableScale.d.ts +9 -0
- package/dist/esm/components/TouchableScale.js +9 -0
- package/dist/esm/components/TreeNode.d.ts +4 -0
- package/dist/esm/components/TreeNode.js +102 -0
- package/dist/esm/constants/index.d.ts +7 -0
- package/dist/esm/constants/index.js +32 -0
- package/dist/esm/customHooks/analyticsLogger.d.ts +21 -0
- package/dist/esm/customHooks/analyticsLogger.js +152 -0
- package/dist/esm/customHooks/consoleLogger.d.ts +5 -0
- package/dist/esm/customHooks/consoleLogger.js +134 -0
- package/dist/esm/customHooks/logFilters.d.ts +5 -0
- package/dist/esm/customHooks/logFilters.js +31 -0
- package/dist/esm/customHooks/networkLogger.d.ts +20 -0
- package/dist/esm/customHooks/networkLogger.js +264 -0
- package/dist/esm/customHooks/useAccordion.d.ts +17 -0
- package/dist/esm/customHooks/useAccordion.js +46 -0
- package/dist/esm/customHooks/webViewLogger.d.ts +22 -0
- package/dist/esm/customHooks/webViewLogger.js +365 -0
- package/dist/esm/helpers/index.d.ts +20 -0
- package/dist/esm/helpers/index.js +207 -0
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.js +2611 -0
- package/dist/esm/styles/AppColors.d.ts +27 -0
- package/dist/esm/styles/AppColors.js +27 -0
- package/dist/esm/styles/AppFonts.d.ts +7 -0
- package/dist/esm/styles/AppFonts.js +7 -0
- package/dist/esm/styles/index.d.ts +1488 -0
- package/dist/esm/styles/index.js +1355 -0
- package/dist/esm/types/index.d.ts +127 -0
- package/dist/esm/types/index.js +1 -0
- package/fonts/Inter/Inter.ttc +0 -0
- package/fonts/Inter/InterVariable-Italic.ttf +0 -0
- package/fonts/Inter/InterVariable.ttf +0 -0
- package/fonts/Inter/LICENSE.txt +92 -0
- package/fonts/Inter/extras/otf/Inter-Black.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-BlackItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Bold.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-BoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-ExtraBold.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-ExtraBoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-ExtraLight.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-ExtraLightItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Italic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Light.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-LightItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Medium.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-MediumItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Regular.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-SemiBold.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-SemiBoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-Thin.otf +0 -0
- package/fonts/Inter/extras/otf/Inter-ThinItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Black.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-BlackItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Bold.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-BoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-ExtraBold.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-ExtraBoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-ExtraLight.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-ExtraLightItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Italic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Light.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-LightItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Medium.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-MediumItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Regular.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-SemiBold.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-SemiBoldItalic.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-Thin.otf +0 -0
- package/fonts/Inter/extras/otf/InterDisplay-ThinItalic.otf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Black.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-BlackItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Bold.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-BoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-ExtraBold.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-ExtraBoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-ExtraLight.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-ExtraLightItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Italic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Light.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-LightItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Medium.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-MediumItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Regular.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-SemiBold.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-SemiBoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-Thin.ttf +0 -0
- package/fonts/Inter/extras/ttf/Inter-ThinItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Black.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-BlackItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Bold.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-BoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-ExtraBold.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-ExtraBoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-ExtraLight.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-ExtraLightItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Italic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Light.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-LightItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Medium.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-MediumItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Regular.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-SemiBold.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-SemiBoldItalic.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-Thin.ttf +0 -0
- package/fonts/Inter/extras/ttf/InterDisplay-ThinItalic.ttf +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Black.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-BlackItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Bold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-BoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-ExtraBold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-ExtraBoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-ExtraLight.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-ExtraLightItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Italic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Light.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-LightItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Medium.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-MediumItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Regular.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-SemiBold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-SemiBoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-Thin.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/Inter-ThinItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Black.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-BlackItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Bold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-BoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraBoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLight.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-ExtraLightItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Italic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Light.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-LightItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Medium.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-MediumItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Regular.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBold.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-SemiBoldItalic.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-Thin.woff2 +0 -0
- package/fonts/Inter/extras/woff-hinted/InterDisplay-ThinItalic.woff2 +0 -0
- package/fonts/Inter/help.txt +165 -0
- package/fonts/Inter/web/Inter-Black.woff2 +0 -0
- package/fonts/Inter/web/Inter-BlackItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Bold.woff2 +0 -0
- package/fonts/Inter/web/Inter-BoldItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-ExtraBold.woff2 +0 -0
- package/fonts/Inter/web/Inter-ExtraBoldItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-ExtraLight.woff2 +0 -0
- package/fonts/Inter/web/Inter-ExtraLightItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Italic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Light.woff2 +0 -0
- package/fonts/Inter/web/Inter-LightItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Medium.woff2 +0 -0
- package/fonts/Inter/web/Inter-MediumItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Regular.woff2 +0 -0
- package/fonts/Inter/web/Inter-SemiBold.woff2 +0 -0
- package/fonts/Inter/web/Inter-SemiBoldItalic.woff2 +0 -0
- package/fonts/Inter/web/Inter-Thin.woff2 +0 -0
- package/fonts/Inter/web/Inter-ThinItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Black.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-BlackItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Bold.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-BoldItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-ExtraBold.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-ExtraBoldItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-ExtraLight.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-ExtraLightItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Italic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Light.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-LightItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Medium.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-MediumItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Regular.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-SemiBold.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-SemiBoldItalic.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-Thin.woff2 +0 -0
- package/fonts/Inter/web/InterDisplay-ThinItalic.woff2 +0 -0
- package/fonts/Inter/web/InterVariable-Italic.woff2 +0 -0
- package/fonts/Inter/web/InterVariable.woff2 +0 -0
- package/fonts/Inter/web/inter.css +148 -0
- 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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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 & 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 & 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 & 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
|
+
}
|