react-native-inapp-inspector 2.3.2 → 2.3.3

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.
@@ -0,0 +1,173 @@
1
+ import React, { useEffect, useRef } from 'react';
2
+ import { Animated, StyleSheet, View } from 'react-native';
3
+ import { AppColors } from '../../styles/AppColors';
4
+ export const SkeletonPlaceholder = React.memo(function SkeletonPlaceholder({ cardCount = 4, }) {
5
+ const shimmerAnim = useRef(new Animated.Value(0.35)).current;
6
+ useEffect(() => {
7
+ const animation = Animated.loop(Animated.sequence([
8
+ Animated.timing(shimmerAnim, {
9
+ toValue: 0.85,
10
+ duration: 750,
11
+ useNativeDriver: true,
12
+ }),
13
+ Animated.timing(shimmerAnim, {
14
+ toValue: 0.35,
15
+ duration: 750,
16
+ useNativeDriver: true,
17
+ }),
18
+ ]));
19
+ animation.start();
20
+ return () => animation.stop();
21
+ }, [shimmerAnim]);
22
+ return (<View style={skeletonStyles.container}>
23
+ {/* ─── Search & Scope Toolbar Skeleton ─── */}
24
+ <View style={skeletonStyles.toolbarSkeleton}>
25
+ <Animated.View style={[
26
+ skeletonStyles.searchBarSkeleton,
27
+ { opacity: shimmerAnim },
28
+ ]}/>
29
+ <View style={skeletonStyles.actionButtonsRow}>
30
+ <Animated.View style={[skeletonStyles.iconButtonSkeleton, { opacity: shimmerAnim }]}/>
31
+ <Animated.View style={[skeletonStyles.iconButtonSkeleton, { opacity: shimmerAnim }]}/>
32
+ </View>
33
+ </View>
34
+
35
+ {/* ─── Quick Filter Chips Skeleton Strip ─── */}
36
+ <View style={skeletonStyles.chipStripSkeleton}>
37
+ <Animated.View style={[skeletonStyles.chipSkeleton, { width: 48, opacity: shimmerAnim }]}/>
38
+ <Animated.View style={[skeletonStyles.chipSkeleton, { width: 68, opacity: shimmerAnim }]}/>
39
+ <Animated.View style={[skeletonStyles.chipSkeleton, { width: 76, opacity: shimmerAnim }]}/>
40
+ <Animated.View style={[skeletonStyles.chipSkeleton, { width: 58, opacity: shimmerAnim }]}/>
41
+ </View>
42
+
43
+ {/* ─── List Cards Skeleton ─── */}
44
+ {Array.from({ length: cardCount }).map((_, i) => (<Animated.View key={`skeleton_card_${i}`} style={[skeletonStyles.cardSkeleton, { opacity: shimmerAnim }]}>
45
+ {/* Top row: Status pill + Method + Time */}
46
+ <View style={skeletonStyles.cardTopRow}>
47
+ <View style={skeletonStyles.badgeGroup}>
48
+ <View style={skeletonStyles.statusBadgeSkeleton}/>
49
+ <View style={skeletonStyles.methodBadgeSkeleton}/>
50
+ </View>
51
+ <View style={skeletonStyles.timeSkeleton}/>
52
+ </View>
53
+
54
+ {/* Middle row: URL lines */}
55
+ <View style={skeletonStyles.urlLineLong}/>
56
+ <View style={skeletonStyles.urlLineShort}/>
57
+
58
+ {/* Bottom row: Latency & Size */}
59
+ <View style={skeletonStyles.cardBottomRow}>
60
+ <View style={skeletonStyles.metaPillSkeleton}/>
61
+ <View style={skeletonStyles.metaPillSkeleton}/>
62
+ </View>
63
+ </Animated.View>))}
64
+ </View>);
65
+ });
66
+ const skeletonStyles = StyleSheet.create({
67
+ container: {
68
+ flex: 1,
69
+ paddingHorizontal: 12,
70
+ paddingTop: 8,
71
+ },
72
+ toolbarSkeleton: {
73
+ flexDirection: 'row',
74
+ alignItems: 'center',
75
+ gap: 8,
76
+ marginBottom: 8,
77
+ },
78
+ searchBarSkeleton: {
79
+ flex: 1,
80
+ height: 36,
81
+ borderRadius: 8,
82
+ backgroundColor: AppColors.graySurface,
83
+ borderWidth: 1,
84
+ borderColor: AppColors.dividerColor,
85
+ },
86
+ actionButtonsRow: {
87
+ flexDirection: 'row',
88
+ gap: 6,
89
+ },
90
+ iconButtonSkeleton: {
91
+ width: 36,
92
+ height: 36,
93
+ borderRadius: 8,
94
+ backgroundColor: AppColors.graySurface,
95
+ borderWidth: 1,
96
+ borderColor: AppColors.dividerColor,
97
+ },
98
+ chipStripSkeleton: {
99
+ flexDirection: 'row',
100
+ gap: 6,
101
+ marginBottom: 10,
102
+ },
103
+ chipSkeleton: {
104
+ height: 24,
105
+ borderRadius: 6,
106
+ backgroundColor: AppColors.graySurface,
107
+ borderWidth: 1,
108
+ borderColor: AppColors.dividerColor,
109
+ },
110
+ cardSkeleton: {
111
+ backgroundColor: AppColors.primaryLight,
112
+ borderRadius: 10,
113
+ padding: 12,
114
+ marginBottom: 8,
115
+ borderWidth: 1,
116
+ borderColor: AppColors.dividerColor,
117
+ },
118
+ cardTopRow: {
119
+ flexDirection: 'row',
120
+ justifyContent: 'space-between',
121
+ alignItems: 'center',
122
+ marginBottom: 8,
123
+ },
124
+ badgeGroup: {
125
+ flexDirection: 'row',
126
+ alignItems: 'center',
127
+ gap: 6,
128
+ },
129
+ statusBadgeSkeleton: {
130
+ width: 38,
131
+ height: 18,
132
+ borderRadius: 4,
133
+ backgroundColor: AppColors.graySurface,
134
+ },
135
+ methodBadgeSkeleton: {
136
+ width: 44,
137
+ height: 18,
138
+ borderRadius: 4,
139
+ backgroundColor: AppColors.graySurface,
140
+ },
141
+ timeSkeleton: {
142
+ width: 48,
143
+ height: 12,
144
+ borderRadius: 4,
145
+ backgroundColor: AppColors.graySurface,
146
+ },
147
+ urlLineLong: {
148
+ height: 13,
149
+ borderRadius: 4,
150
+ backgroundColor: AppColors.graySurface,
151
+ marginBottom: 5,
152
+ width: '90%',
153
+ },
154
+ urlLineShort: {
155
+ height: 11,
156
+ borderRadius: 4,
157
+ backgroundColor: AppColors.graySurface,
158
+ marginBottom: 8,
159
+ width: '55%',
160
+ },
161
+ cardBottomRow: {
162
+ flexDirection: 'row',
163
+ gap: 8,
164
+ marginTop: 2,
165
+ },
166
+ metaPillSkeleton: {
167
+ width: 52,
168
+ height: 14,
169
+ borderRadius: 4,
170
+ backgroundColor: AppColors.graySurface,
171
+ },
172
+ });
173
+ export default SkeletonPlaceholder;
@@ -1,6 +1,2 @@
1
- import React from 'react';
2
- interface SkeletonPlaceholderProps {
3
- cardCount?: number;
4
- }
5
- declare const SkeletonPlaceholder: React.NamedExoticComponent<SkeletonPlaceholderProps>;
6
- export default SkeletonPlaceholder;
1
+ export * from './Inspector/SkeletonPlaceholder';
2
+ export { default } from './Inspector/SkeletonPlaceholder';
@@ -1,173 +1,2 @@
1
- import React, { useEffect, useRef } from 'react';
2
- import { Animated, StyleSheet, View } from 'react-native';
3
- import { AppColors } from '../styles/AppColors';
4
- const SkeletonPlaceholder = React.memo(function SkeletonPlaceholder({ cardCount = 4, }) {
5
- const shimmerAnim = useRef(new Animated.Value(0.35)).current;
6
- useEffect(() => {
7
- const animation = Animated.loop(Animated.sequence([
8
- Animated.timing(shimmerAnim, {
9
- toValue: 0.85,
10
- duration: 750,
11
- useNativeDriver: true,
12
- }),
13
- Animated.timing(shimmerAnim, {
14
- toValue: 0.35,
15
- duration: 750,
16
- useNativeDriver: true,
17
- }),
18
- ]));
19
- animation.start();
20
- return () => animation.stop();
21
- }, [shimmerAnim]);
22
- return (<View style={skeletonStyles.container}>
23
- {/* ─── Search & Scope Toolbar Skeleton ─── */}
24
- <View style={skeletonStyles.toolbarSkeleton}>
25
- <Animated.View style={[
26
- skeletonStyles.searchBarSkeleton,
27
- { opacity: shimmerAnim },
28
- ]}/>
29
- <View style={skeletonStyles.actionButtonsRow}>
30
- <Animated.View style={[skeletonStyles.iconButtonSkeleton, { opacity: shimmerAnim }]}/>
31
- <Animated.View style={[skeletonStyles.iconButtonSkeleton, { opacity: shimmerAnim }]}/>
32
- </View>
33
- </View>
34
-
35
- {/* ─── Quick Filter Chips Skeleton Strip ─── */}
36
- <View style={skeletonStyles.chipStripSkeleton}>
37
- <Animated.View style={[skeletonStyles.chipSkeleton, { width: 48, opacity: shimmerAnim }]}/>
38
- <Animated.View style={[skeletonStyles.chipSkeleton, { width: 68, opacity: shimmerAnim }]}/>
39
- <Animated.View style={[skeletonStyles.chipSkeleton, { width: 76, opacity: shimmerAnim }]}/>
40
- <Animated.View style={[skeletonStyles.chipSkeleton, { width: 58, opacity: shimmerAnim }]}/>
41
- </View>
42
-
43
- {/* ─── List Cards Skeleton ─── */}
44
- {Array.from({ length: cardCount }).map((_, i) => (<Animated.View key={`skeleton_card_${i}`} style={[skeletonStyles.cardSkeleton, { opacity: shimmerAnim }]}>
45
- {/* Top row: Status pill + Method + Time */}
46
- <View style={skeletonStyles.cardTopRow}>
47
- <View style={skeletonStyles.badgeGroup}>
48
- <View style={skeletonStyles.statusBadgeSkeleton}/>
49
- <View style={skeletonStyles.methodBadgeSkeleton}/>
50
- </View>
51
- <View style={skeletonStyles.timeSkeleton}/>
52
- </View>
53
-
54
- {/* Middle row: URL lines */}
55
- <View style={skeletonStyles.urlLineLong}/>
56
- <View style={skeletonStyles.urlLineShort}/>
57
-
58
- {/* Bottom row: Latency & Size */}
59
- <View style={skeletonStyles.cardBottomRow}>
60
- <View style={skeletonStyles.metaPillSkeleton}/>
61
- <View style={skeletonStyles.metaPillSkeleton}/>
62
- </View>
63
- </Animated.View>))}
64
- </View>);
65
- });
66
- const skeletonStyles = StyleSheet.create({
67
- container: {
68
- flex: 1,
69
- paddingHorizontal: 12,
70
- paddingTop: 8,
71
- },
72
- toolbarSkeleton: {
73
- flexDirection: 'row',
74
- alignItems: 'center',
75
- gap: 8,
76
- marginBottom: 8,
77
- },
78
- searchBarSkeleton: {
79
- flex: 1,
80
- height: 36,
81
- borderRadius: 8,
82
- backgroundColor: AppColors.graySurface,
83
- borderWidth: 1,
84
- borderColor: AppColors.dividerColor,
85
- },
86
- actionButtonsRow: {
87
- flexDirection: 'row',
88
- gap: 6,
89
- },
90
- iconButtonSkeleton: {
91
- width: 36,
92
- height: 36,
93
- borderRadius: 8,
94
- backgroundColor: AppColors.graySurface,
95
- borderWidth: 1,
96
- borderColor: AppColors.dividerColor,
97
- },
98
- chipStripSkeleton: {
99
- flexDirection: 'row',
100
- gap: 6,
101
- marginBottom: 10,
102
- },
103
- chipSkeleton: {
104
- height: 24,
105
- borderRadius: 6,
106
- backgroundColor: AppColors.graySurface,
107
- borderWidth: 1,
108
- borderColor: AppColors.dividerColor,
109
- },
110
- cardSkeleton: {
111
- backgroundColor: AppColors.primaryLight,
112
- borderRadius: 10,
113
- padding: 12,
114
- marginBottom: 8,
115
- borderWidth: 1,
116
- borderColor: AppColors.dividerColor,
117
- },
118
- cardTopRow: {
119
- flexDirection: 'row',
120
- justifyContent: 'space-between',
121
- alignItems: 'center',
122
- marginBottom: 8,
123
- },
124
- badgeGroup: {
125
- flexDirection: 'row',
126
- alignItems: 'center',
127
- gap: 6,
128
- },
129
- statusBadgeSkeleton: {
130
- width: 38,
131
- height: 18,
132
- borderRadius: 4,
133
- backgroundColor: AppColors.graySurface,
134
- },
135
- methodBadgeSkeleton: {
136
- width: 44,
137
- height: 18,
138
- borderRadius: 4,
139
- backgroundColor: AppColors.graySurface,
140
- },
141
- timeSkeleton: {
142
- width: 48,
143
- height: 12,
144
- borderRadius: 4,
145
- backgroundColor: AppColors.graySurface,
146
- },
147
- urlLineLong: {
148
- height: 13,
149
- borderRadius: 4,
150
- backgroundColor: AppColors.graySurface,
151
- marginBottom: 5,
152
- width: '90%',
153
- },
154
- urlLineShort: {
155
- height: 11,
156
- borderRadius: 4,
157
- backgroundColor: AppColors.graySurface,
158
- marginBottom: 8,
159
- width: '55%',
160
- },
161
- cardBottomRow: {
162
- flexDirection: 'row',
163
- gap: 8,
164
- marginTop: 2,
165
- },
166
- metaPillSkeleton: {
167
- width: 52,
168
- height: 14,
169
- borderRadius: 4,
170
- backgroundColor: AppColors.graySurface,
171
- },
172
- });
173
- export default SkeletonPlaceholder;
1
+ export * from './Inspector/SkeletonPlaceholder';
2
+ export { default } from './Inspector/SkeletonPlaceholder';
@@ -1 +1 @@
1
- export declare const LIB_VERSION = "2.3.2";
1
+ export declare const LIB_VERSION = "2.3.3";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED FILE — do not edit by hand.
2
2
  // Regenerated from package.json on every build by scripts/gen-version.js.
3
- export const LIB_VERSION = '2.3.2';
3
+ export const LIB_VERSION = '2.3.3';
@@ -8,6 +8,7 @@ export { setupAnalyticsLogger, logAnalyticsEvent, subscribeAnalyticsEvents, clea
8
8
  export { setupGlobalCrashHandler, subscribeCrashEvents, emitCrashEvent, getCrashRecords, clearCrashRecords, simulateTestCrash, exportCrashReport, parseCrashStackTrace, recordCustomCrash, addCrashBreadcrumb, recordNavigationBreadcrumb, recordNetworkBreadcrumb, recordReduxBreadcrumb, recordUserActionBreadcrumb, computeCrashFingerprint, type CrashEventPayload, } from './customHooks/crashHandler';
9
9
  export { default as CrashTab } from './components/Inspector/CrashTab';
10
10
  export { default as ErrorBoundary } from './components/ErrorBoundary';
11
+ export { default as SkeletonPlaceholder } from './components/Inspector/SkeletonPlaceholder';
11
12
  export { connectReduxStore, inspectorReduxMiddleware, getReduxState, subscribeReduxState, getActionHistory, clearActionHistory, getLastActionForReducer, } from './customHooks/reduxLogger';
12
13
  export { getEventCategory, registerGAPlugin, type GAPlugin, } from './helpers/gaAnalyticsRegistry';
13
14
  export { usePerformanceTracker, useComponentProfiler, useNavigationProfiler, trackComponentRender, trackNavigationTransition, trackHeavyTask, measureAsync, getHermesMemoryStats, registerComponentProfile, subscribeRenderProfiles, getRenderProfiles, logPerformanceEvent, clearPerformanceEvents, subscribePerformanceEvents, getPerformanceEvents, getInitialRenderProfiles, getInitialPerformanceEvents, generateFixSnippet, } from './customHooks/performanceTracker';
package/dist/esm/index.js CHANGED
@@ -1866,6 +1866,7 @@ export { setupAnalyticsLogger, logAnalyticsEvent, subscribeAnalyticsEvents, clea
1866
1866
  export { setupGlobalCrashHandler, subscribeCrashEvents, emitCrashEvent, getCrashRecords, clearCrashRecords, simulateTestCrash, exportCrashReport, parseCrashStackTrace, recordCustomCrash, addCrashBreadcrumb, recordNavigationBreadcrumb, recordNetworkBreadcrumb, recordReduxBreadcrumb, recordUserActionBreadcrumb, computeCrashFingerprint, } from './customHooks/crashHandler';
1867
1867
  export { default as CrashTab } from './components/Inspector/CrashTab';
1868
1868
  export { default as ErrorBoundary } from './components/ErrorBoundary';
1869
+ export { default as SkeletonPlaceholder } from './components/Inspector/SkeletonPlaceholder';
1869
1870
  export { connectReduxStore, inspectorReduxMiddleware, getReduxState, subscribeReduxState, getActionHistory, clearActionHistory, getLastActionForReducer, } from './customHooks/reduxLogger';
1870
1871
  export { getEventCategory, registerGAPlugin, } from './helpers/gaAnalyticsRegistry';
1871
1872
  export { usePerformanceTracker, useComponentProfiler, useNavigationProfiler, trackComponentRender, trackNavigationTransition, trackHeavyTask, measureAsync, getHermesMemoryStats, registerComponentProfile, subscribeRenderProfiles, getRenderProfiles, logPerformanceEvent, clearPerformanceEvents, subscribePerformanceEvents, getPerformanceEvents, getInitialRenderProfiles, getInitialPerformanceEvents, generateFixSnippet, } from './customHooks/performanceTracker';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-inapp-inspector",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "The zero-config, all-in-one in-app debugger for React Native & Expo. Inspect Network (fetch/axios), Console logs, Stack Traces, Redux State, Firebase Analytics, and JS Bundle size directly on device.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,7 +21,7 @@ import LogDetail from './LogDetail';
21
21
  import ConsoleTab from './ConsoleTab';
22
22
  import AnalyticsTab from './AnalyticsTab';
23
23
  import AnalyticsDetail from '../AnalyticsDetail';
24
- import SkeletonPlaceholder from '../SkeletonPlaceholder';
24
+ import SkeletonPlaceholder from './SkeletonPlaceholder';
25
25
  import ReduxTab from './ReduxTab';
26
26
  import ReduxDetail from './ReduxDetail';
27
27
  import BundleTab from './BundleTab';
@@ -0,0 +1,206 @@
1
+ import React, {useEffect, useRef} from 'react';
2
+ import {Animated, StyleSheet, View} from 'react-native';
3
+ import {AppColors} from '../../styles/AppColors';
4
+
5
+ export interface SkeletonPlaceholderProps {
6
+ cardCount?: number;
7
+ }
8
+
9
+ export const SkeletonPlaceholder = React.memo(function SkeletonPlaceholder({
10
+ cardCount = 4,
11
+ }: SkeletonPlaceholderProps) {
12
+ const shimmerAnim = useRef(new Animated.Value(0.35)).current;
13
+
14
+ useEffect(() => {
15
+ const animation = Animated.loop(
16
+ Animated.sequence([
17
+ Animated.timing(shimmerAnim, {
18
+ toValue: 0.85,
19
+ duration: 750,
20
+ useNativeDriver: true,
21
+ }),
22
+ Animated.timing(shimmerAnim, {
23
+ toValue: 0.35,
24
+ duration: 750,
25
+ useNativeDriver: true,
26
+ }),
27
+ ]),
28
+ );
29
+ animation.start();
30
+ return () => animation.stop();
31
+ }, [shimmerAnim]);
32
+
33
+ return (
34
+ <View style={skeletonStyles.container}>
35
+ {/* ─── Search & Scope Toolbar Skeleton ─── */}
36
+ <View style={skeletonStyles.toolbarSkeleton}>
37
+ <Animated.View
38
+ style={[
39
+ skeletonStyles.searchBarSkeleton,
40
+ {opacity: shimmerAnim},
41
+ ]}
42
+ />
43
+ <View style={skeletonStyles.actionButtonsRow}>
44
+ <Animated.View
45
+ style={[skeletonStyles.iconButtonSkeleton, {opacity: shimmerAnim}]}
46
+ />
47
+ <Animated.View
48
+ style={[skeletonStyles.iconButtonSkeleton, {opacity: shimmerAnim}]}
49
+ />
50
+ </View>
51
+ </View>
52
+
53
+ {/* ─── Quick Filter Chips Skeleton Strip ─── */}
54
+ <View style={skeletonStyles.chipStripSkeleton}>
55
+ <Animated.View
56
+ style={[skeletonStyles.chipSkeleton, {width: 48, opacity: shimmerAnim}]}
57
+ />
58
+ <Animated.View
59
+ style={[skeletonStyles.chipSkeleton, {width: 68, opacity: shimmerAnim}]}
60
+ />
61
+ <Animated.View
62
+ style={[skeletonStyles.chipSkeleton, {width: 76, opacity: shimmerAnim}]}
63
+ />
64
+ <Animated.View
65
+ style={[skeletonStyles.chipSkeleton, {width: 58, opacity: shimmerAnim}]}
66
+ />
67
+ </View>
68
+
69
+ {/* ─── List Cards Skeleton ─── */}
70
+ {Array.from({length: cardCount}).map((_, i) => (
71
+ <Animated.View
72
+ key={`skeleton_card_${i}`}
73
+ style={[skeletonStyles.cardSkeleton, {opacity: shimmerAnim}]}>
74
+ {/* Top row: Status pill + Method + Time */}
75
+ <View style={skeletonStyles.cardTopRow}>
76
+ <View style={skeletonStyles.badgeGroup}>
77
+ <View style={skeletonStyles.statusBadgeSkeleton} />
78
+ <View style={skeletonStyles.methodBadgeSkeleton} />
79
+ </View>
80
+ <View style={skeletonStyles.timeSkeleton} />
81
+ </View>
82
+
83
+ {/* Middle row: URL lines */}
84
+ <View style={skeletonStyles.urlLineLong} />
85
+ <View style={skeletonStyles.urlLineShort} />
86
+
87
+ {/* Bottom row: Latency & Size */}
88
+ <View style={skeletonStyles.cardBottomRow}>
89
+ <View style={skeletonStyles.metaPillSkeleton} />
90
+ <View style={skeletonStyles.metaPillSkeleton} />
91
+ </View>
92
+ </Animated.View>
93
+ ))}
94
+ </View>
95
+ );
96
+ });
97
+
98
+ const skeletonStyles = StyleSheet.create({
99
+ container: {
100
+ flex: 1,
101
+ paddingHorizontal: 12,
102
+ paddingTop: 8,
103
+ },
104
+ toolbarSkeleton: {
105
+ flexDirection: 'row',
106
+ alignItems: 'center',
107
+ gap: 8,
108
+ marginBottom: 8,
109
+ },
110
+ searchBarSkeleton: {
111
+ flex: 1,
112
+ height: 36,
113
+ borderRadius: 8,
114
+ backgroundColor: AppColors.graySurface,
115
+ borderWidth: 1,
116
+ borderColor: AppColors.dividerColor,
117
+ },
118
+ actionButtonsRow: {
119
+ flexDirection: 'row',
120
+ gap: 6,
121
+ },
122
+ iconButtonSkeleton: {
123
+ width: 36,
124
+ height: 36,
125
+ borderRadius: 8,
126
+ backgroundColor: AppColors.graySurface,
127
+ borderWidth: 1,
128
+ borderColor: AppColors.dividerColor,
129
+ },
130
+ chipStripSkeleton: {
131
+ flexDirection: 'row',
132
+ gap: 6,
133
+ marginBottom: 10,
134
+ },
135
+ chipSkeleton: {
136
+ height: 24,
137
+ borderRadius: 6,
138
+ backgroundColor: AppColors.graySurface,
139
+ borderWidth: 1,
140
+ borderColor: AppColors.dividerColor,
141
+ },
142
+ cardSkeleton: {
143
+ backgroundColor: AppColors.primaryLight,
144
+ borderRadius: 10,
145
+ padding: 12,
146
+ marginBottom: 8,
147
+ borderWidth: 1,
148
+ borderColor: AppColors.dividerColor,
149
+ },
150
+ cardTopRow: {
151
+ flexDirection: 'row',
152
+ justifyContent: 'space-between',
153
+ alignItems: 'center',
154
+ marginBottom: 8,
155
+ },
156
+ badgeGroup: {
157
+ flexDirection: 'row',
158
+ alignItems: 'center',
159
+ gap: 6,
160
+ },
161
+ statusBadgeSkeleton: {
162
+ width: 38,
163
+ height: 18,
164
+ borderRadius: 4,
165
+ backgroundColor: AppColors.graySurface,
166
+ },
167
+ methodBadgeSkeleton: {
168
+ width: 44,
169
+ height: 18,
170
+ borderRadius: 4,
171
+ backgroundColor: AppColors.graySurface,
172
+ },
173
+ timeSkeleton: {
174
+ width: 48,
175
+ height: 12,
176
+ borderRadius: 4,
177
+ backgroundColor: AppColors.graySurface,
178
+ },
179
+ urlLineLong: {
180
+ height: 13,
181
+ borderRadius: 4,
182
+ backgroundColor: AppColors.graySurface,
183
+ marginBottom: 5,
184
+ width: '90%',
185
+ },
186
+ urlLineShort: {
187
+ height: 11,
188
+ borderRadius: 4,
189
+ backgroundColor: AppColors.graySurface,
190
+ marginBottom: 8,
191
+ width: '55%',
192
+ },
193
+ cardBottomRow: {
194
+ flexDirection: 'row',
195
+ gap: 8,
196
+ marginTop: 2,
197
+ },
198
+ metaPillSkeleton: {
199
+ width: 52,
200
+ height: 14,
201
+ borderRadius: 4,
202
+ backgroundColor: AppColors.graySurface,
203
+ },
204
+ });
205
+
206
+ export default SkeletonPlaceholder;