react-native-inapp-inspector 1.1.20 → 1.1.22
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 +34 -10
- package/dist/commonjs/components/AnalyticsDetail.js +5 -3
- package/dist/commonjs/components/AnalyticsEventCard.d.ts +0 -1
- package/dist/commonjs/components/AnalyticsEventCard.js +85 -96
- package/dist/commonjs/components/ConsoleLogCard.js +2 -2
- package/dist/commonjs/components/DiffViewer.js +2 -2
- package/dist/commonjs/components/HeadersSection.js +2 -2
- package/dist/commonjs/components/Inspector/BundleTab.js +488 -653
- package/dist/commonjs/components/Inspector/ConsoleTab.js +2 -2
- package/dist/commonjs/components/Inspector/LogDetail.js +2 -2
- package/dist/commonjs/components/Inspector/NetworkDetail.js +2 -2
- package/dist/commonjs/components/Inspector/PerformanceTab.js +185 -244
- package/dist/commonjs/components/Inspector/ReduxDetail.js +4 -4
- package/dist/commonjs/components/Inspector/ReduxTab.js +3 -3
- package/dist/commonjs/components/JsonViewer.js +2 -2
- package/dist/commonjs/components/LogCard.js +2 -2
- package/dist/commonjs/components/MetaAccordion.js +2 -2
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/bundleAnalyzer.d.ts +115 -0
- package/dist/commonjs/customHooks/bundleAnalyzer.js +561 -0
- package/dist/commonjs/customHooks/performanceTracker.d.ts +84 -0
- package/dist/commonjs/customHooks/performanceTracker.js +541 -0
- package/dist/commonjs/helpers/index.d.ts +15 -0
- package/dist/commonjs/helpers/index.js +112 -1
- package/dist/commonjs/i18n/index.d.ts +27 -1
- package/dist/commonjs/i18n/index.js +66 -21
- package/dist/commonjs/i18n/locales/en.json +225 -2
- package/dist/commonjs/index.d.ts +2 -1
- package/dist/commonjs/index.js +8 -4
- package/dist/commonjs/styles/AppColors.d.ts +110 -0
- package/dist/commonjs/styles/AppColors.js +114 -0
- package/dist/commonjs/types/interfaces.d.ts +1 -0
- package/dist/esm/components/AnalyticsDetail.js +5 -3
- package/dist/esm/components/AnalyticsEventCard.d.ts +0 -1
- package/dist/esm/components/AnalyticsEventCard.js +85 -95
- package/dist/esm/components/ConsoleLogCard.js +1 -1
- package/dist/esm/components/DiffViewer.js +1 -1
- package/dist/esm/components/HeadersSection.js +1 -1
- package/dist/esm/components/Inspector/BundleTab.js +489 -654
- package/dist/esm/components/Inspector/ConsoleTab.js +1 -1
- package/dist/esm/components/Inspector/LogDetail.js +1 -1
- package/dist/esm/components/Inspector/NetworkDetail.js +1 -1
- package/dist/esm/components/Inspector/PerformanceTab.js +185 -244
- package/dist/esm/components/Inspector/ReduxDetail.js +3 -3
- package/dist/esm/components/Inspector/ReduxTab.js +3 -3
- package/dist/esm/components/JsonViewer.js +1 -1
- package/dist/esm/components/LogCard.js +1 -1
- package/dist/esm/components/MetaAccordion.js +1 -1
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/bundleAnalyzer.d.ts +115 -0
- package/dist/esm/customHooks/bundleAnalyzer.js +554 -0
- package/dist/esm/customHooks/performanceTracker.d.ts +84 -0
- package/dist/esm/customHooks/performanceTracker.js +537 -0
- package/dist/esm/helpers/index.d.ts +15 -0
- package/dist/esm/helpers/index.js +107 -0
- package/dist/esm/i18n/index.d.ts +27 -1
- package/dist/esm/i18n/index.js +61 -20
- package/dist/esm/i18n/locales/en.json +225 -2
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +6 -2
- package/dist/esm/styles/AppColors.d.ts +110 -0
- package/dist/esm/styles/AppColors.js +114 -0
- package/dist/esm/types/interfaces.d.ts +1 -0
- package/package.json +35 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useCallback, useMemo } from 'react';
|
|
2
2
|
import { FlatList, Pressable, ScrollView, Text, TextInput, View, } from 'react-native';
|
|
3
3
|
import { useInspector } from './InspectorContext';
|
|
4
|
-
import { useTranslation } from '
|
|
4
|
+
import { useTranslation } from '../../i18n';
|
|
5
5
|
import TouchableScale from '../TouchableScale';
|
|
6
6
|
import AnimatedEntrance from '../AnimatedEntrance';
|
|
7
7
|
import { ConsoleLogCard } from '../ConsoleLogCard';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { useMemo, useState } from 'react';
|
|
2
|
-
import { useTranslation } from '
|
|
2
|
+
import { useTranslation } from '../../i18n';
|
|
3
3
|
import { Pressable, ScrollView, StyleSheet, Text, TextInput, View, } from 'react-native';
|
|
4
4
|
import { useInspector } from './InspectorContext';
|
|
5
5
|
import HighlightText from '../HighlightText';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { useTranslation } from '
|
|
2
|
+
import { useTranslation } from '../../i18n';
|
|
3
3
|
import { Image, Linking, Pressable, ScrollView, Text, TextInput, View, } from 'react-native';
|
|
4
4
|
import Svg, { Circle } from 'react-native-svg';
|
|
5
5
|
import { animateNextLayout, useInspector } from './InspectorContext';
|