react-native-inapp-inspector 2.5.10 → 2.5.12
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.ar.md +0 -8
- package/README.de.md +0 -8
- package/README.es.md +0 -8
- package/README.fr.md +0 -8
- package/README.hi.md +0 -8
- package/README.ja.md +0 -8
- package/README.ko.md +0 -8
- package/README.md +54 -26
- package/README.pt-BR.md +0 -8
- package/README.ru.md +0 -8
- package/README.zh-CN.md +0 -8
- package/dist/commonjs/components/ConsoleLogCard.js +32 -26
- package/dist/commonjs/components/ErrorBoundary.js +1 -1
- package/dist/commonjs/components/Inspector/ConsoleTab.js +19 -14
- package/dist/commonjs/components/Inspector/FloatingCaptureWidget.js +4 -4
- package/dist/commonjs/components/Inspector/InspectorHeader.js +73 -65
- package/dist/commonjs/components/Inspector/MainScreen.js +9 -6
- package/dist/commonjs/components/Inspector/MediaGalleryTab.js +187 -90
- package/dist/commonjs/components/Inspector/NetworkDetail.js +11 -8
- package/dist/commonjs/components/Inspector/NetworkTab.js +33 -31
- package/dist/commonjs/components/Inspector/PerformanceTab.d.ts +2 -0
- package/dist/commonjs/components/Inspector/PerformanceTab.js +652 -0
- package/dist/commonjs/components/Inspector/SettingsPanel.js +346 -245
- package/dist/commonjs/components/Inspector/TabBar.js +17 -16
- package/dist/commonjs/components/LogCard.js +11 -8
- package/dist/commonjs/components/ModuleErrorBoundary.js +1 -1
- package/dist/commonjs/components/NetworkIcons.d.ts +9 -0
- package/dist/commonjs/components/NetworkIcons.js +51 -6
- package/dist/commonjs/constants/index.d.ts +1 -0
- package/dist/commonjs/constants/index.js +1 -1
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/crashHandler.d.ts +9 -1
- package/dist/commonjs/customHooks/crashHandler.js +4 -4
- package/dist/commonjs/helpers/index.d.ts +3 -0
- package/dist/commonjs/helpers/index.js +8 -6
- package/dist/commonjs/helpers/performanceSampler.d.ts +88 -0
- package/dist/commonjs/helpers/performanceSampler.js +1 -0
- package/dist/commonjs/helpers/remoteConfig.d.ts +6 -0
- package/dist/commonjs/helpers/remoteConfig.js +1 -1
- package/dist/commonjs/helpers/telemetry.js +1 -1
- package/dist/commonjs/i18n/locales/ar.json +1 -1
- package/dist/commonjs/i18n/locales/bn.json +1 -1
- package/dist/commonjs/i18n/locales/de.json +1 -1
- package/dist/commonjs/i18n/locales/en.json +1 -1
- package/dist/commonjs/i18n/locales/es.json +1 -1
- package/dist/commonjs/i18n/locales/fr.json +1 -1
- package/dist/commonjs/i18n/locales/gu.json +1 -1
- package/dist/commonjs/i18n/locales/hi.json +1 -1
- package/dist/commonjs/i18n/locales/id.json +1 -1
- package/dist/commonjs/i18n/locales/it.json +1 -1
- package/dist/commonjs/i18n/locales/ja.json +1 -1
- package/dist/commonjs/i18n/locales/kn.json +1 -1
- package/dist/commonjs/i18n/locales/ko.json +1 -1
- package/dist/commonjs/i18n/locales/ml.json +1 -1
- package/dist/commonjs/i18n/locales/mr.json +1 -1
- package/dist/commonjs/i18n/locales/nl.json +1 -1
- package/dist/commonjs/i18n/locales/pa.json +1 -1
- package/dist/commonjs/i18n/locales/pl.json +1 -1
- package/dist/commonjs/i18n/locales/pt.json +1 -1
- package/dist/commonjs/i18n/locales/ru.json +1 -1
- package/dist/commonjs/i18n/locales/ta.json +1 -1
- package/dist/commonjs/i18n/locales/te.json +1 -1
- package/dist/commonjs/i18n/locales/tr.json +1 -1
- package/dist/commonjs/i18n/locales/vi.json +1 -1
- package/dist/commonjs/i18n/locales/zh.json +1 -1
- package/dist/commonjs/index.d.ts +4 -2
- package/dist/commonjs/index.js +3 -3
- package/dist/commonjs/styles/index.js +1 -1
- package/dist/commonjs/types/enums.d.ts +1 -0
- package/dist/commonjs/types/enums.js +1 -1
- package/dist/commonjs/types/interfaces.d.ts +28 -0
- package/dist/esm/components/ConsoleLogCard.js +67 -61
- package/dist/esm/components/ErrorBoundary.js +10 -10
- package/dist/esm/components/Inspector/ConsoleTab.js +33 -28
- package/dist/esm/components/Inspector/FloatingCaptureWidget.js +22 -22
- package/dist/esm/components/Inspector/InspectorHeader.js +194 -186
- package/dist/esm/components/Inspector/MainScreen.js +61 -58
- package/dist/esm/components/Inspector/MediaGalleryTab.js +254 -157
- package/dist/esm/components/Inspector/NetworkDetail.js +62 -59
- package/dist/esm/components/Inspector/NetworkTab.js +39 -37
- package/dist/esm/components/Inspector/PerformanceTab.d.ts +2 -0
- package/dist/esm/components/Inspector/PerformanceTab.js +652 -0
- package/dist/esm/components/Inspector/SettingsPanel.js +407 -306
- package/dist/esm/components/Inspector/TabBar.js +4 -3
- package/dist/esm/components/LogCard.js +37 -34
- package/dist/esm/components/ModuleErrorBoundary.js +1 -1
- package/dist/esm/components/NetworkIcons.d.ts +9 -0
- package/dist/esm/components/NetworkIcons.js +48 -3
- package/dist/esm/constants/index.d.ts +1 -0
- package/dist/esm/constants/index.js +1 -1
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/crashHandler.d.ts +9 -1
- package/dist/esm/customHooks/crashHandler.js +6 -6
- package/dist/esm/helpers/index.d.ts +3 -0
- package/dist/esm/helpers/index.js +8 -6
- package/dist/esm/helpers/performanceSampler.d.ts +88 -0
- package/dist/esm/helpers/performanceSampler.js +1 -0
- package/dist/esm/helpers/remoteConfig.d.ts +6 -0
- package/dist/esm/helpers/remoteConfig.js +1 -1
- package/dist/esm/helpers/telemetry.js +1 -1
- package/dist/esm/i18n/locales/ar.json +1 -1
- package/dist/esm/i18n/locales/bn.json +1 -1
- package/dist/esm/i18n/locales/de.json +1 -1
- package/dist/esm/i18n/locales/en.json +1 -1
- package/dist/esm/i18n/locales/es.json +1 -1
- package/dist/esm/i18n/locales/fr.json +1 -1
- package/dist/esm/i18n/locales/gu.json +1 -1
- package/dist/esm/i18n/locales/hi.json +1 -1
- package/dist/esm/i18n/locales/id.json +1 -1
- package/dist/esm/i18n/locales/it.json +1 -1
- package/dist/esm/i18n/locales/ja.json +1 -1
- package/dist/esm/i18n/locales/kn.json +1 -1
- package/dist/esm/i18n/locales/ko.json +1 -1
- package/dist/esm/i18n/locales/ml.json +1 -1
- package/dist/esm/i18n/locales/mr.json +1 -1
- package/dist/esm/i18n/locales/nl.json +1 -1
- package/dist/esm/i18n/locales/pa.json +1 -1
- package/dist/esm/i18n/locales/pl.json +1 -1
- package/dist/esm/i18n/locales/pt.json +1 -1
- package/dist/esm/i18n/locales/ru.json +1 -1
- package/dist/esm/i18n/locales/ta.json +1 -1
- package/dist/esm/i18n/locales/te.json +1 -1
- package/dist/esm/i18n/locales/tr.json +1 -1
- package/dist/esm/i18n/locales/vi.json +1 -1
- package/dist/esm/i18n/locales/zh.json +1 -1
- package/dist/esm/index.d.ts +4 -2
- package/dist/esm/index.js +8 -8
- package/dist/esm/styles/index.js +1 -1
- package/dist/esm/types/enums.d.ts +1 -0
- package/dist/esm/types/enums.js +1 -1
- package/dist/esm/types/interfaces.d.ts +28 -0
- package/package.json +24 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import se,{useEffect as
|
|
2
|
-
{(q.OS==="ios"||q.OS==="android")&&oe&&!
|
|
1
|
+
import se,{useEffect as A,useRef as L}from"react";import{Animated as o,Modal as Se,Platform as q,Pressable as Be,StatusBar as Ce,StyleSheet as T,View as B}from"react-native";import{useInspector as Ve}from"./InspectorContext";import Me from"../ErrorBoundary";import S from"../ModuleErrorBoundary";import Ne from"./FabLauncher";import Re from"./InspectorHeader";import{SecondaryTelemetryStrip as De}from"./SecondaryTelemetryStrip";import Te from"./TabBar";import Ee from"./NetworkTab";import Pe from"./NetworkDetail";import Ae from"./LogDetail";import Le from"./ConsoleTab";import{PerformanceTab as Ie}from"./PerformanceTab";import Oe from"./AnalyticsTab";import Fe from"../AnalyticsDetail";import We from"./ReduxTab";import Ge from"./ReduxDetail";import He from"./CrashTab";import Ye from"./CrashDetail";import Ue from"./PushTab";import _e from"./PushDetail";import $e from"./SocketTab";import Je from"./SocketDetail";import Ke from"./DeviceInfoTab";import Qe from"./StorageTab";import Xe from"./DebuggingTab";import{MediaGalleryTab as Ze}from"./MediaGalleryTab";import So from"./SettingsPanel";import Bo from"./AboutModal";import{SupportPage as Co}from"./SupportPage";import{ConfirmationModal as Vo}from"./ConfirmationModal";import{FloatingCaptureWidget as Mo}from"./FloatingCaptureWidget";import No from"./NpmUpdateToast";import Ro from"./NpmStarPrompt";import Do from"../Toast";import H from"../../styles";import{AppColors as C}from"../../styles/AppColors";import To from"./NavigationTracker";import{isLocalDebugEnvironment as Eo}from"../../helpers";const xo=()=>{const{visible:I,modalAnimationType:V,closeModal:M,modalHeightPercent:O,selected:Y,selectedEvent:F,selectedLog:U,selectedReduxSlice:j,selectedReduxAction:J,selectedCrash:_,selectedPush:W,setSelectedPush:K,selectedSocket:z,setSelectedSocket:Q,settingsPage:v,isAboutOpen:R,setIsAboutOpen:X,isSupportOpen:D,setIsSupportOpen:Z,activeTab:e,isReady:ee,enabled:oe,isDismissed:re,hasNavigationContext:te,setNavState:ae,confirmModal:N,setConfirmModal:ie,peekMode:le,peekOpacity:$}=Ve(),G=e==="apis"&&Y!=null||e==="analytics"&&F!=null||e==="logs"&&U!=null||e==="redux"&&(j!=null||J!=null)||e==="crash"&&_!=null||e==="push"&&W!=null||e==="socket"&&z!=null,E=L(new o.Value(0)).current;A(()=>{v!==null&&(E.setValue(0),o.spring(E,{toValue:1,friction:8,tension:65,useNativeDriver:!1}).start())},[v!==null]);const x=L(new o.Value(0)).current;A(()=>{R&&(x.setValue(0),o.spring(x,{toValue:1,friction:8,tension:65,useNativeDriver:!1}).start())},[R]);const P=L(new o.Value(0)).current;return A(()=>{D&&(P.setValue(0),o.spring(P,{toValue:1,friction:8,tension:65,useNativeDriver:!1}).start())},[D]),<>
|
|
2
|
+
{(q.OS==="ios"||q.OS==="android")&&oe&&!re&&!I&&<Ne/>}
|
|
3
3
|
<Se visible={I}animationType={V}transparent statusBarTranslucent={!0}onRequestClose={M}>
|
|
4
4
|
<Me onClose={M}>
|
|
5
5
|
<B style={[H.modalBackdrop,{zIndex:999999,elevation:999999}]}>
|
|
@@ -8,11 +8,11 @@ import se,{useEffect as P,useRef as L}from"react";import{Animated as o,Modal as
|
|
|
8
8
|
<Ce translucent backgroundColor="transparent"barStyle="light-content"/>
|
|
9
9
|
|
|
10
10
|
<Re/>
|
|
11
|
-
{!G&&
|
|
11
|
+
{!G&&v===null&&!R&&!D&&<De/>}
|
|
12
12
|
|
|
13
13
|
<B style={{flex:1,overflow:"hidden",backgroundColor:C.grayBackground}}>
|
|
14
14
|
|
|
15
|
-
<B style={{flex:1}}pointerEvents={G||
|
|
15
|
+
<B style={{flex:1}}pointerEvents={G||v!==null||R||D?"none":"auto"}>
|
|
16
16
|
<Te/>
|
|
17
17
|
{ee?<B style={{flex:1}}>
|
|
18
18
|
{e==="apis"&&<S moduleName="Network API Monitor">
|
|
@@ -21,134 +21,137 @@ import se,{useEffect as P,useRef as L}from"react";import{Animated as o,Modal as
|
|
|
21
21
|
{e==="logs"&&<S moduleName="Console Logs Monitor">
|
|
22
22
|
<Le/>
|
|
23
23
|
</S>}
|
|
24
|
-
{e==="
|
|
24
|
+
{e==="perf"&&<S moduleName="Performance & FPS Profiler">
|
|
25
25
|
<Ie/>
|
|
26
26
|
</S>}
|
|
27
|
+
{e==="analytics"&&<S moduleName="Analytics Event Tracker">
|
|
28
|
+
<Oe/>
|
|
29
|
+
</S>}
|
|
27
30
|
{e==="redux"&&<S moduleName="Redux State Inspector">
|
|
28
31
|
<We/>
|
|
29
32
|
</S>}
|
|
30
33
|
{e==="crash"&&<S moduleName="Crash Reporter">
|
|
31
|
-
<
|
|
34
|
+
<He/>
|
|
32
35
|
</S>}
|
|
33
36
|
{e==="push"&&<S moduleName="Push Notifications">
|
|
34
|
-
<
|
|
37
|
+
<Ue/>
|
|
35
38
|
</S>}
|
|
36
39
|
{e==="socket"&&<S moduleName="WebSocket & Socket.IO">
|
|
37
|
-
|
|
40
|
+
<$e/>
|
|
38
41
|
</S>}
|
|
39
42
|
{e==="device"&&<S moduleName="Device Diagnostics">
|
|
40
|
-
<
|
|
43
|
+
<Ke/>
|
|
41
44
|
</S>}
|
|
42
45
|
{e==="storage"&&<S moduleName="Storage Inspector">
|
|
43
|
-
<
|
|
46
|
+
<Qe/>
|
|
44
47
|
</S>}
|
|
45
48
|
{e==="media"&&<S moduleName="Media Gallery">
|
|
46
|
-
<
|
|
49
|
+
<Ze/>
|
|
47
50
|
</S>}
|
|
48
|
-
{q.OS==="android"&&
|
|
49
|
-
<
|
|
51
|
+
{q.OS==="android"&&Eo()&&e==="debugging"&&<S moduleName="Debugging Utilities">
|
|
52
|
+
<Xe/>
|
|
50
53
|
</S>}
|
|
51
|
-
</B>:<
|
|
54
|
+
</B>:<Po/>}
|
|
52
55
|
</B>
|
|
53
56
|
|
|
54
57
|
|
|
55
58
|
{G&&<B style={[T.absoluteFill,{backgroundColor:C.contentBg,zIndex:10}]}>
|
|
56
59
|
{e==="apis"&&Y!=null&&<S moduleName="Network Request Details">
|
|
57
|
-
<
|
|
60
|
+
<Pe/>
|
|
58
61
|
</S>}
|
|
59
|
-
{e==="analytics"&&
|
|
60
|
-
<
|
|
62
|
+
{e==="analytics"&&F!=null&&<S moduleName="Analytics Event Details">
|
|
63
|
+
<Fe event={F}/>
|
|
61
64
|
</S>}
|
|
62
65
|
{e==="logs"&&U!=null&&<S moduleName="Console Log Details">
|
|
63
|
-
<
|
|
66
|
+
<Ae/>
|
|
64
67
|
</S>}
|
|
65
68
|
{e==="redux"&&<S moduleName="Redux Action & State Details">
|
|
66
|
-
<
|
|
69
|
+
<Ge/>
|
|
67
70
|
</S>}
|
|
68
71
|
{e==="crash"&&_!=null&&<S moduleName="Crash Log Details">
|
|
69
|
-
<
|
|
72
|
+
<Ye/>
|
|
70
73
|
</S>}
|
|
71
|
-
{e==="push"&&
|
|
72
|
-
<
|
|
74
|
+
{e==="push"&&W!=null&&<S moduleName="Push Notification Details">
|
|
75
|
+
<_e item={W}onClose={()=>K(null)}/>
|
|
73
76
|
</S>}
|
|
74
77
|
{e==="socket"&&z!=null&&<S moduleName="WebSocket & Socket.IO Details">
|
|
75
|
-
|
|
78
|
+
<Je item={z}onClose={()=>Q(null)}/>
|
|
76
79
|
</S>}
|
|
77
80
|
</B>}
|
|
78
81
|
|
|
79
82
|
|
|
80
|
-
{
|
|
83
|
+
{v!==null&&<o.View style={[T.absoluteFill,{backgroundColor:C.grayBackground,opacity:E,transform:[{translateY:E.interpolate({inputRange:[0,1],outputRange:[24,0]})}]}]}>
|
|
81
84
|
<S moduleName="Settings Panel">
|
|
82
|
-
<
|
|
85
|
+
<So/>
|
|
83
86
|
</S>
|
|
84
87
|
</o.View>}
|
|
85
88
|
|
|
86
89
|
|
|
87
|
-
{R&&<o.View style={[T.absoluteFill,{backgroundColor:C.primaryLight,opacity:
|
|
90
|
+
{R&&<o.View style={[T.absoluteFill,{backgroundColor:C.primaryLight,opacity:x,transform:[{translateY:x.interpolate({inputRange:[0,1],outputRange:[24,0]})}]}]}>
|
|
88
91
|
<S moduleName="About & Diagnostics">
|
|
89
|
-
<
|
|
92
|
+
<Bo onClose={()=>X(!1)}/>
|
|
90
93
|
</S>
|
|
91
94
|
</o.View>}
|
|
92
95
|
|
|
93
96
|
|
|
94
|
-
{D&&<o.View style={[T.absoluteFill,{backgroundColor:C.primaryLight,opacity:
|
|
97
|
+
{D&&<o.View style={[T.absoluteFill,{backgroundColor:C.primaryLight,opacity:P,transform:[{translateY:P.interpolate({inputRange:[0,1],outputRange:[24,0]})}]}]}>
|
|
95
98
|
<S moduleName="Support & Community">
|
|
96
|
-
<
|
|
99
|
+
<Co onClose={()=>Z(!1)}/>
|
|
97
100
|
</S>
|
|
98
101
|
</o.View>}
|
|
99
102
|
</B>
|
|
100
103
|
|
|
101
104
|
|
|
102
|
-
<
|
|
105
|
+
<Do/>
|
|
103
106
|
|
|
104
107
|
|
|
105
|
-
<
|
|
108
|
+
<No/>
|
|
106
109
|
|
|
107
110
|
|
|
108
|
-
<
|
|
111
|
+
<Ro/>
|
|
109
112
|
|
|
110
113
|
|
|
111
|
-
<
|
|
114
|
+
<Mo/>
|
|
112
115
|
|
|
113
116
|
|
|
114
|
-
<
|
|
117
|
+
<Vo visible={N.visible}title={N.title}message={N.message}confirmText={N.confirmText}cancelText={N.cancelText}isDestructive={!0}icon="trash"onConfirm={N.onConfirm}onCancel={()=>ie(ne=>({...ne,visible:!1}))}/>
|
|
115
118
|
</B>
|
|
116
119
|
</B>
|
|
117
120
|
</Me>
|
|
118
|
-
{
|
|
121
|
+
{te&&<To onStateChange={ae}/>}
|
|
119
122
|
</Se>
|
|
120
|
-
</>},
|
|
123
|
+
</>},Po=se.memo(function(){const V=L(new o.Value(.35)).current;return A(()=>{const M=o.loop(o.sequence([o.timing(V,{toValue:.85,duration:750,useNativeDriver:!1}),o.timing(V,{toValue:.35,duration:750,useNativeDriver:!1})]));return M.start(),()=>M.stop()},[V]),<B style={k.container}>
|
|
121
124
|
|
|
122
|
-
<B style={
|
|
123
|
-
<o.View style={[
|
|
124
|
-
<B style={
|
|
125
|
-
<o.View style={[
|
|
126
|
-
<o.View style={[
|
|
125
|
+
<B style={k.toolbarSkeleton}>
|
|
126
|
+
<o.View style={[k.searchBarSkeleton,{opacity:V}]}/>
|
|
127
|
+
<B style={k.actionButtonsRow}>
|
|
128
|
+
<o.View style={[k.iconButtonSkeleton,{opacity:V}]}/>
|
|
129
|
+
<o.View style={[k.iconButtonSkeleton,{opacity:V}]}/>
|
|
127
130
|
</B>
|
|
128
131
|
</B>
|
|
129
132
|
|
|
130
133
|
|
|
131
|
-
<B style={
|
|
132
|
-
<o.View style={[
|
|
133
|
-
<o.View style={[
|
|
134
|
-
<o.View style={[
|
|
135
|
-
<o.View style={[
|
|
134
|
+
<B style={k.chipStripSkeleton}>
|
|
135
|
+
<o.View style={[k.chipSkeleton,{width:48,opacity:V}]}/>
|
|
136
|
+
<o.View style={[k.chipSkeleton,{width:68,opacity:V}]}/>
|
|
137
|
+
<o.View style={[k.chipSkeleton,{width:76,opacity:V}]}/>
|
|
138
|
+
<o.View style={[k.chipSkeleton,{width:58,opacity:V}]}/>
|
|
136
139
|
</B>
|
|
137
140
|
|
|
138
141
|
|
|
139
|
-
{[0,1,2,3].map(M=><o.View key={`skeleton_card_${M}`}style={[
|
|
140
|
-
<B style={
|
|
141
|
-
<B style={
|
|
142
|
-
<B style={
|
|
143
|
-
<B style={
|
|
142
|
+
{[0,1,2,3].map(M=><o.View key={`skeleton_card_${M}`}style={[k.cardSkeleton,{opacity:V}]}>
|
|
143
|
+
<B style={k.cardTopRow}>
|
|
144
|
+
<B style={k.badgeGroup}>
|
|
145
|
+
<B style={k.statusBadgeSkeleton}/>
|
|
146
|
+
<B style={k.methodBadgeSkeleton}/>
|
|
144
147
|
</B>
|
|
145
|
-
<B style={
|
|
148
|
+
<B style={k.timeSkeleton}/>
|
|
146
149
|
</B>
|
|
147
|
-
<B style={
|
|
148
|
-
<B style={
|
|
149
|
-
<B style={
|
|
150
|
-
<B style={
|
|
151
|
-
<B style={
|
|
150
|
+
<B style={k.urlLineLong}/>
|
|
151
|
+
<B style={k.urlLineShort}/>
|
|
152
|
+
<B style={k.cardBottomRow}>
|
|
153
|
+
<B style={k.metaPillSkeleton}/>
|
|
154
|
+
<B style={k.metaPillSkeleton}/>
|
|
152
155
|
</B>
|
|
153
156
|
</o.View>)}
|
|
154
|
-
</B>}),
|
|
157
|
+
</B>}),k=T.create({container:{flex:1,paddingHorizontal:12,paddingTop:8},toolbarSkeleton:{flexDirection:"row",alignItems:"center",gap:8,marginBottom:8},searchBarSkeleton:{flex:1,height:36,borderRadius:8,backgroundColor:C.graySurface,borderWidth:1,borderColor:C.dividerColor},actionButtonsRow:{flexDirection:"row",gap:6},iconButtonSkeleton:{width:36,height:36,borderRadius:8,backgroundColor:C.graySurface,borderWidth:1,borderColor:C.dividerColor},chipStripSkeleton:{flexDirection:"row",gap:6,marginBottom:10},chipSkeleton:{height:24,borderRadius:6,backgroundColor:C.graySurface,borderWidth:1,borderColor:C.dividerColor},cardSkeleton:{backgroundColor:C.primaryLight,borderRadius:10,padding:12,marginBottom:8,borderWidth:1,borderColor:C.dividerColor},cardTopRow:{flexDirection:"row",justifyContent:"space-between",alignItems:"center",marginBottom:8},badgeGroup:{flexDirection:"row",alignItems:"center",gap:6},statusBadgeSkeleton:{width:38,height:18,borderRadius:4,backgroundColor:C.graySurface},methodBadgeSkeleton:{width:44,height:18,borderRadius:4,backgroundColor:C.graySurface},timeSkeleton:{width:48,height:12,borderRadius:4,backgroundColor:C.graySurface},urlLineLong:{height:13,borderRadius:4,backgroundColor:C.graySurface,marginBottom:5,width:"90%"},urlLineShort:{height:11,borderRadius:4,backgroundColor:C.graySurface,marginBottom:8,width:"55%"},cardBottomRow:{flexDirection:"row",gap:8,marginTop:2},metaPillSkeleton:{width:52,height:14,borderRadius:4,backgroundColor:C.graySurface}});export default xo;
|