react-native-xenon 2.2.0 → 2.4.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/lib/module/core/constants.js +2 -0
- package/lib/module/core/constants.js.map +1 -1
- package/lib/module/core/refs.js +11 -1
- package/lib/module/core/refs.js.map +1 -1
- package/lib/module/core/utils.js +7 -2
- package/lib/module/core/utils.js.map +1 -1
- package/lib/module/ui/Xenon.js +1 -1
- package/lib/module/ui/Xenon.js.map +1 -1
- package/lib/module/ui/components/bubble/Bubble.js +5 -7
- package/lib/module/ui/components/bubble/Bubble.js.map +1 -1
- package/lib/module/ui/components/common/IndexedStack.js +5 -6
- package/lib/module/ui/components/common/IndexedStack.js.map +1 -1
- package/lib/module/ui/components/details/LogMessageDetails.js +10 -9
- package/lib/module/ui/components/details/LogMessageDetails.js.map +1 -1
- package/lib/module/ui/components/details/NetworkRequestDetails.js +6 -6
- package/lib/module/ui/components/details/NetworkRequestDetails.js.map +1 -1
- package/lib/module/ui/components/handle/Handle.js +63 -0
- package/lib/module/ui/components/handle/Handle.js.map +1 -0
- package/lib/module/ui/components/headers/ConsoleHeader.js +5 -6
- package/lib/module/ui/components/headers/ConsoleHeader.js.map +1 -1
- package/lib/module/ui/components/headers/DebuggerHeader.js +9 -8
- package/lib/module/ui/components/headers/DebuggerHeader.js.map +1 -1
- package/lib/module/ui/components/headers/HeaderComponents.js +6 -5
- package/lib/module/ui/components/headers/HeaderComponents.js.map +1 -1
- package/lib/module/ui/components/headers/NetworkHeader.js +6 -6
- package/lib/module/ui/components/headers/NetworkHeader.js.map +1 -1
- package/lib/module/ui/components/items/ConsolePanelItem.js +24 -12
- package/lib/module/ui/components/items/ConsolePanelItem.js.map +1 -1
- package/lib/module/ui/components/items/DebuggerHeaderItem.js +2 -1
- package/lib/module/ui/components/items/DebuggerHeaderItem.js.map +1 -1
- package/lib/module/ui/components/items/NetworkPanelItem.js +48 -38
- package/lib/module/ui/components/items/NetworkPanelItem.js.map +1 -1
- package/lib/module/ui/components/panels/ConsolePanel.js +15 -18
- package/lib/module/ui/components/panels/ConsolePanel.js.map +1 -1
- package/lib/module/ui/components/panels/NetworkPanel.js +15 -16
- package/lib/module/ui/components/panels/NetworkPanel.js.map +1 -1
- package/lib/module/ui/components/panels/Panel.js +28 -18
- package/lib/module/ui/components/panels/Panel.js.map +1 -1
- package/lib/module/ui/components/search-bar/SearchBar.js +4 -6
- package/lib/module/ui/components/search-bar/SearchBar.js.map +1 -1
- package/lib/typescript/src/core/constants.d.ts +2 -0
- package/lib/typescript/src/core/constants.d.ts.map +1 -1
- package/lib/typescript/src/core/refs.d.ts +2 -1
- package/lib/typescript/src/core/refs.d.ts.map +1 -1
- package/lib/typescript/src/core/utils.d.ts +2 -1
- package/lib/typescript/src/core/utils.d.ts.map +1 -1
- package/lib/typescript/src/ui/Xenon.d.ts +16 -14
- package/lib/typescript/src/ui/Xenon.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/bubble/Bubble.d.ts +4 -2
- package/lib/typescript/src/ui/components/bubble/Bubble.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/common/IndexedStack.d.ts +4 -3
- package/lib/typescript/src/ui/components/common/IndexedStack.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/details/LogMessageDetails.d.ts +6 -3
- package/lib/typescript/src/ui/components/details/LogMessageDetails.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/details/NetworkRequestDetails.d.ts +6 -3
- package/lib/typescript/src/ui/components/details/NetworkRequestDetails.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/handle/Handle.d.ts +2 -0
- package/lib/typescript/src/ui/components/handle/Handle.d.ts.map +1 -0
- package/lib/typescript/src/ui/components/headers/ConsoleHeader.d.ts +5 -3
- package/lib/typescript/src/ui/components/headers/ConsoleHeader.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/headers/DebuggerHeader.d.ts +4 -2
- package/lib/typescript/src/ui/components/headers/DebuggerHeader.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/headers/HeaderComponents.d.ts +6 -5
- package/lib/typescript/src/ui/components/headers/HeaderComponents.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/headers/NetworkHeader.d.ts +4 -2
- package/lib/typescript/src/ui/components/headers/NetworkHeader.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/items/ConsolePanelItem.d.ts +2 -2
- package/lib/typescript/src/ui/components/items/ConsolePanelItem.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/items/NetworkPanelItem.d.ts +2 -2
- package/lib/typescript/src/ui/components/items/NetworkPanelItem.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/panels/ConsolePanel.d.ts +6 -3
- package/lib/typescript/src/ui/components/panels/ConsolePanel.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/panels/NetworkPanel.d.ts +7 -5
- package/lib/typescript/src/ui/components/panels/NetworkPanel.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/panels/Panel.d.ts +5 -3
- package/lib/typescript/src/ui/components/panels/Panel.d.ts.map +1 -1
- package/lib/typescript/src/ui/components/search-bar/SearchBar.d.ts +4 -2
- package/lib/typescript/src/ui/components/search-bar/SearchBar.d.ts.map +1 -1
- package/package.json +2 -1
- package/src/core/constants.ts +2 -0
- package/src/core/refs.ts +10 -1
- package/src/core/utils.ts +8 -2
- package/src/ui/Xenon.tsx +18 -15
- package/src/ui/components/bubble/Bubble.tsx +97 -100
- package/src/ui/components/common/IndexedStack.tsx +8 -20
- package/src/ui/components/details/LogMessageDetails.tsx +25 -27
- package/src/ui/components/details/NetworkRequestDetails.tsx +152 -151
- package/src/ui/components/handle/Handle.tsx +60 -0
- package/src/ui/components/headers/ConsoleHeader.tsx +13 -16
- package/src/ui/components/headers/DebuggerHeader.tsx +82 -82
- package/src/ui/components/headers/HeaderComponents.tsx +18 -16
- package/src/ui/components/headers/NetworkHeader.tsx +47 -50
- package/src/ui/components/items/ConsolePanelItem.tsx +28 -14
- package/src/ui/components/items/DebuggerHeaderItem.tsx +1 -0
- package/src/ui/components/items/NetworkPanelItem.tsx +67 -57
- package/src/ui/components/panels/ConsolePanel.tsx +18 -14
- package/src/ui/components/panels/NetworkPanel.tsx +22 -19
- package/src/ui/components/panels/Panel.tsx +33 -14
- package/src/ui/components/search-bar/SearchBar.tsx +7 -7
|
@@ -1,54 +1,65 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { Platform, StyleSheet
|
|
4
|
-
import refs, { PanelState } from "../../../core/refs.js";
|
|
3
|
+
import { Animated, Platform, StyleSheet } from 'react-native';
|
|
4
|
+
import refs, { HeaderState, PanelState } from "../../../core/refs.js";
|
|
5
5
|
import IndexedStack from "../common/IndexedStack.js";
|
|
6
6
|
import LogMessageDetails from "../details/LogMessageDetails.js";
|
|
7
7
|
import NetworkRequestDetails from "../details/NetworkRequestDetails.js";
|
|
8
8
|
import ConsolePanel from "./ConsolePanel.js";
|
|
9
9
|
import NetworkPanel from "./NetworkPanel.js";
|
|
10
10
|
import colors from "../../../theme/colors.js";
|
|
11
|
-
import {
|
|
11
|
+
import { useContext, useEffect, useMemo } from 'react';
|
|
12
12
|
import Header from "../headers/Header.js";
|
|
13
13
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
14
14
|
import SafeArea from "../common/SafeArea.js";
|
|
15
15
|
import { MainContext } from "../../../contexts/index.js";
|
|
16
|
+
import Handle from "../handle/Handle.js";
|
|
17
|
+
import { DebuggerPanel } from "../../../types/index.js";
|
|
16
18
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
17
|
-
|
|
19
|
+
export default function Panel({
|
|
18
20
|
style,
|
|
19
21
|
...props
|
|
20
|
-
}
|
|
22
|
+
}) {
|
|
21
23
|
const {
|
|
22
24
|
debuggerState: {
|
|
23
|
-
position
|
|
24
|
-
|
|
25
|
-
dimensions: {
|
|
26
|
-
width: screenWidth,
|
|
27
|
-
height: screenHeight
|
|
25
|
+
position,
|
|
26
|
+
detailsData
|
|
28
27
|
}
|
|
29
28
|
} = useContext(MainContext);
|
|
30
29
|
const containerStyle = useMemo(() => [styles.container, {
|
|
31
30
|
[position]: 0,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
width: refs.panelSize.current?.x,
|
|
32
|
+
height: refs.panelSize.current?.y
|
|
33
|
+
}], [position]);
|
|
34
|
+
useEffect(() => {
|
|
35
|
+
switch (detailsData?.type) {
|
|
36
|
+
case DebuggerPanel.Network:
|
|
37
|
+
refs.header.current?.setCurrentIndex(HeaderState.Network);
|
|
38
|
+
refs.panel.current?.setCurrentIndex(PanelState.NetworkDetail);
|
|
39
|
+
break;
|
|
40
|
+
case DebuggerPanel.Console:
|
|
41
|
+
refs.header.current?.setCurrentIndex(HeaderState.Console);
|
|
42
|
+
refs.panel.current?.setCurrentIndex(PanelState.ConsoleDetail);
|
|
43
|
+
break;
|
|
44
|
+
}
|
|
45
|
+
}, [detailsData?.type]);
|
|
46
|
+
return /*#__PURE__*/_jsx(Animated.View, {
|
|
35
47
|
style: [containerStyle, style],
|
|
36
|
-
ref: ref,
|
|
37
48
|
...props,
|
|
38
49
|
children: /*#__PURE__*/_jsxs(SafeAreaProvider, {
|
|
39
|
-
children: [position === 'top' && /*#__PURE__*/_jsx(SafeArea, {
|
|
50
|
+
children: [position === 'bottom' && /*#__PURE__*/_jsx(Handle, {}), position === 'top' && /*#__PURE__*/_jsx(SafeArea, {
|
|
40
51
|
inset: "top"
|
|
41
52
|
}), /*#__PURE__*/_jsx(Header, {}), /*#__PURE__*/_jsxs(IndexedStack, {
|
|
42
53
|
defaultIndex: PanelState.Network,
|
|
43
54
|
id: "debugger-panel",
|
|
44
55
|
ref: refs.panel,
|
|
45
56
|
children: [/*#__PURE__*/_jsx(NetworkPanel, {}), /*#__PURE__*/_jsx(ConsolePanel, {}), /*#__PURE__*/_jsx(NetworkRequestDetails, {}), /*#__PURE__*/_jsx(LogMessageDetails, {})]
|
|
46
|
-
}), position === 'bottom' && /*#__PURE__*/_jsx(SafeArea, {
|
|
57
|
+
}), position === 'top' && /*#__PURE__*/_jsx(Handle, {}), position === 'bottom' && /*#__PURE__*/_jsx(SafeArea, {
|
|
47
58
|
inset: "bottom"
|
|
48
59
|
})]
|
|
49
60
|
})
|
|
50
61
|
});
|
|
51
|
-
}
|
|
62
|
+
}
|
|
52
63
|
const styles = StyleSheet.create({
|
|
53
64
|
container: {
|
|
54
65
|
flex: 1,
|
|
@@ -64,5 +75,4 @@ const styles = StyleSheet.create({
|
|
|
64
75
|
borderBottomWidth: StyleSheet.hairlineWidth
|
|
65
76
|
}
|
|
66
77
|
});
|
|
67
|
-
export default Panel;
|
|
68
78
|
//# sourceMappingURL=Panel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Platform","StyleSheet","
|
|
1
|
+
{"version":3,"names":["Animated","Platform","StyleSheet","refs","HeaderState","PanelState","IndexedStack","LogMessageDetails","NetworkRequestDetails","ConsolePanel","NetworkPanel","colors","useContext","useEffect","useMemo","Header","SafeAreaProvider","SafeArea","MainContext","Handle","DebuggerPanel","jsx","_jsx","jsxs","_jsxs","Panel","style","props","debuggerState","position","detailsData","containerStyle","styles","container","width","panelSize","current","x","height","y","type","Network","header","setCurrentIndex","panel","NetworkDetail","Console","ConsoleDetail","View","children","inset","defaultIndex","id","ref","create","flex","absoluteFillObject","pointerEvents","OS","zIndex","top","undefined","bottom","backgroundColor","lightGray","borderBottomColor","gray","borderBottomWidth","hairlineWidth"],"sourceRoot":"../../../../../src","sources":["ui/components/panels/Panel.tsx"],"mappings":";;AAAA,SAASA,QAAQ,EAAEC,QAAQ,EAAEC,UAAU,QAA8B,cAAc;AACnF,OAAOC,IAAI,IAAIC,WAAW,EAAEC,UAAU,QAAQ,uBAAoB;AAClE,OAAOC,YAAY,MAAM,2BAAwB;AACjD,OAAOC,iBAAiB,MAAM,iCAA8B;AAC5D,OAAOC,qBAAqB,MAAM,qCAAkC;AACpE,OAAOC,YAAY,MAAM,mBAAgB;AACzC,OAAOC,YAAY,MAAM,mBAAgB;AACzC,OAAOC,MAAM,MAAM,0BAAuB;AAC1C,SAASC,UAAU,EAAEC,SAAS,EAAEC,OAAO,QAAkB,OAAO;AAChE,OAAOC,MAAM,MAAM,sBAAmB;AACtC,SAASC,gBAAgB,QAAQ,gCAAgC;AACjE,OAAOC,QAAQ,MAAM,uBAAoB;AACzC,SAASC,WAAW,QAAQ,4BAAmB;AAC/C,OAAOC,MAAM,MAAM,qBAAkB;AACrC,SAASC,aAAa,QAAQ,yBAAgB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAM/C,eAAe,SAASC,KAAKA,CAAC;EAAEC,KAAK;EAAE,GAAGC;AAA2B,CAAC,EAAE;EACtE,MAAM;IACJC,aAAa,EAAE;MAAEC,QAAQ;MAAEC;IAAY;EACzC,CAAC,GAAGlB,UAAU,CAACM,WAAW,CAAE;EAE5B,MAAMa,cAAc,GAAGjB,OAAO,CAC5B,MAAM,CACJkB,MAAM,CAACC,SAAS,EAChB;IAAE,CAACJ,QAAQ,GAAG,CAAC;IAAEK,KAAK,EAAE/B,IAAI,CAACgC,SAAS,CAACC,OAAO,EAAEC,CAAC;IAAEC,MAAM,EAAEnC,IAAI,CAACgC,SAAS,CAACC,OAAO,EAAEG;EAAE,CAAC,CACvF,EACD,CAACV,QAAQ,CACX,CAAC;EAEDhB,SAAS,CAAC,MAAM;IACd,QAAQiB,WAAW,EAAEU,IAAI;MACvB,KAAKpB,aAAa,CAACqB,OAAO;QACxBtC,IAAI,CAACuC,MAAM,CAACN,OAAO,EAAEO,eAAe,CAACvC,WAAW,CAACqC,OAAO,CAAC;QACzDtC,IAAI,CAACyC,KAAK,CAACR,OAAO,EAAEO,eAAe,CAACtC,UAAU,CAACwC,aAAa,CAAC;QAC7D;MACF,KAAKzB,aAAa,CAAC0B,OAAO;QACxB3C,IAAI,CAACuC,MAAM,CAACN,OAAO,EAAEO,eAAe,CAACvC,WAAW,CAAC0C,OAAO,CAAC;QACzD3C,IAAI,CAACyC,KAAK,CAACR,OAAO,EAAEO,eAAe,CAACtC,UAAU,CAAC0C,aAAa,CAAC;QAC7D;IACJ;EACF,CAAC,EAAE,CAACjB,WAAW,EAAEU,IAAI,CAAC,CAAC;EAEvB,oBACElB,IAAA,CAACtB,QAAQ,CAACgD,IAAI;IAACtB,KAAK,EAAE,CAACK,cAAc,EAAEL,KAAK,CAAE;IAAA,GAAKC,KAAK;IAAAsB,QAAA,eACtDzB,KAAA,CAACR,gBAAgB;MAAAiC,QAAA,GACdpB,QAAQ,KAAK,QAAQ,iBAAIP,IAAA,CAACH,MAAM,IAAE,CAAC,EACnCU,QAAQ,KAAK,KAAK,iBAAIP,IAAA,CAACL,QAAQ;QAACiC,KAAK,EAAC;MAAK,CAAE,CAAC,eAE/C5B,IAAA,CAACP,MAAM,IAAE,CAAC,eAEVS,KAAA,CAAClB,YAAY;QAAC6C,YAAY,EAAE9C,UAAU,CAACoC,OAAQ;QAACW,EAAE,EAAC,gBAAgB;QAACC,GAAG,EAAElD,IAAI,CAACyC,KAAM;QAAAK,QAAA,gBAClF3B,IAAA,CAACZ,YAAY,IAAE,CAAC,eAChBY,IAAA,CAACb,YAAY,IAAE,CAAC,eAChBa,IAAA,CAACd,qBAAqB,IAAE,CAAC,eACzBc,IAAA,CAACf,iBAAiB,IAAE,CAAC;MAAA,CACT,CAAC,EAEdsB,QAAQ,KAAK,KAAK,iBAAIP,IAAA,CAACH,MAAM,IAAE,CAAC,EAChCU,QAAQ,KAAK,QAAQ,iBAAIP,IAAA,CAACL,QAAQ;QAACiC,KAAK,EAAC;MAAQ,CAAE,CAAC;IAAA,CACrC;EAAC,CACN,CAAC;AAEpB;AAEA,MAAMlB,MAAM,GAAG9B,UAAU,CAACoD,MAAM,CAAC;EAC/BrB,SAAS,EAAE;IACTsB,IAAI,EAAE,CAAC;IACP,GAAGrD,UAAU,CAACsD,kBAAkB;IAChCC,aAAa,EAAE,UAAU;IACzB,IAAIxD,QAAQ,CAACyD,EAAE,KAAK,SAAS,GAAG;MAAEC,MAAM,EAAE;IAAK,CAAC,GAAG,CAAC,CAAC,CAAC;IACtDC,GAAG,EAAEC,SAAS;IACdC,MAAM,EAAED,SAAS;IACjBE,eAAe,EAAEpD,MAAM,CAACqD,SAAS;IACjCC,iBAAiB,EAAEtD,MAAM,CAACuD,IAAI;IAC9BC,iBAAiB,EAAEjE,UAAU,CAACkE;EAChC;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { useContext, useState } from 'react';
|
|
4
4
|
import { Keyboard, Platform, StyleSheet, TextInput, View } from 'react-native';
|
|
5
5
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
6
6
|
import { MainContext } from "../../../contexts/index.js";
|
|
@@ -12,10 +12,10 @@ import Touchable from "../common/Touchable.js";
|
|
|
12
12
|
import SafeArea from "../common/SafeArea.js";
|
|
13
13
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
14
|
const ICON_SIZE = 20;
|
|
15
|
-
|
|
15
|
+
export default function SearchBar({
|
|
16
16
|
style,
|
|
17
17
|
...props
|
|
18
|
-
}
|
|
18
|
+
}) {
|
|
19
19
|
const {
|
|
20
20
|
debuggerState: {
|
|
21
21
|
searchQuery
|
|
@@ -41,7 +41,6 @@ const SearchBar = /*#__PURE__*/forwardRef(({
|
|
|
41
41
|
refs.debugger.current?.setCurrentIndex(DebuggerVisibility.Panel);
|
|
42
42
|
};
|
|
43
43
|
return /*#__PURE__*/_jsx(View, {
|
|
44
|
-
ref: ref,
|
|
45
44
|
style: [styles.container, style],
|
|
46
45
|
...props,
|
|
47
46
|
children: /*#__PURE__*/_jsxs(SafeAreaProvider, {
|
|
@@ -85,7 +84,7 @@ const SearchBar = /*#__PURE__*/forwardRef(({
|
|
|
85
84
|
})]
|
|
86
85
|
})
|
|
87
86
|
});
|
|
88
|
-
}
|
|
87
|
+
}
|
|
89
88
|
const styles = StyleSheet.create({
|
|
90
89
|
container: {
|
|
91
90
|
...StyleSheet.absoluteFillObject,
|
|
@@ -120,5 +119,4 @@ const styles = StyleSheet.create({
|
|
|
120
119
|
flex: 1
|
|
121
120
|
}
|
|
122
121
|
});
|
|
123
|
-
export default SearchBar;
|
|
124
122
|
//# sourceMappingURL=SearchBar.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["useContext","useState","Keyboard","Platform","StyleSheet","TextInput","View","SafeAreaProvider","MainContext","refs","DebuggerVisibility","colors","icons","Icon","Touchable","SafeArea","jsx","_jsx","jsxs","_jsxs","ICON_SIZE","SearchBar","style","props","debuggerState","searchQuery","setDebuggerState","value","setValue","onHideSearchInput","dismiss","debugger","current","setCurrentIndex","Panel","onClear","onSubmitEditing","nativeEvent","text","draft","styles","container","children","barView","inset","inputWrapper","source","search","size","autoCapitalize","autoCorrect","inputMode","returnKeyType","selectionColor","black","ref","searchInput","autoFocus","input","onChangeText","placeholder","placeholderTextColor","gray","length","hitSlop","onPress","close","color","background","create","absoluteFillObject","OS","zIndex","backgroundColor","lightGray","padding","flex","white","borderRadius","paddingHorizontal","columnGap","flexDirection","alignItems","height","margin","lineHeight","fontSize"],"sourceRoot":"../../../../../src","sources":["ui/components/search-bar/SearchBar.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/core/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,yBAAyB,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/core/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,yBAAyB,CAAC;AAC7D,eAAO,MAAM,mBAAmB,KAAK,CAAC;AACtC,eAAO,MAAM,mBAAmB,KAAK,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IndexedStackMethods } from '../ui/components/common/IndexedStack';
|
|
2
|
-
import type
|
|
2
|
+
import { Animated, type TextInput } from 'react-native';
|
|
3
3
|
export declare enum DebuggerVisibility {
|
|
4
4
|
Hidden = -1,
|
|
5
5
|
Bubble = 0,
|
|
@@ -22,6 +22,7 @@ declare const refs: {
|
|
|
22
22
|
panel: import("react").RefObject<IndexedStackMethods<PanelState> | null>;
|
|
23
23
|
header: import("react").RefObject<IndexedStackMethods<HeaderState> | null>;
|
|
24
24
|
searchInput: import("react").RefObject<TextInput | null>;
|
|
25
|
+
panelSize: import("react").RefObject<Animated.ValueXY | null>;
|
|
25
26
|
};
|
|
26
27
|
export default refs;
|
|
27
28
|
//# sourceMappingURL=refs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"refs.d.ts","sourceRoot":"","sources":["../../../../src/core/refs.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"refs.d.ts","sourceRoot":"","sources":["../../../../src/core/refs.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAChF,OAAO,EAAE,QAAQ,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEpE,oBAAY,kBAAkB;IAC5B,MAAM,KAAK;IACX,MAAM,IAAI;IACV,KAAK,IAAI;IACT,MAAM,IAAI;CACX;AAED,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,aAAa,IAAI;IACjB,aAAa,IAAI;CAClB;AAED,oBAAY,WAAW;IACrB,QAAQ,IAAI;IACZ,OAAO,IAAI;IACX,OAAO,IAAI;CACZ;AAED,QAAA,MAAM,IAAI;;;;;;CAcT,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -20,7 +20,7 @@ export declare const getNetworkUtils: (data?: HttpRequest | WebSocketRequest) =>
|
|
|
20
20
|
};
|
|
21
21
|
export declare const getConsoleTypeColor: (type: LogMessage["type"]) => string;
|
|
22
22
|
export declare const getVerticalSafeMargin: (screenHeight: number) => number;
|
|
23
|
-
export declare const clamp: (
|
|
23
|
+
export declare const clamp: (min: number, max: number, value: number) => number;
|
|
24
24
|
export declare const getHttpInterceptorId: () => string;
|
|
25
25
|
export declare const showNewLine: (when: boolean) => "\n" | "";
|
|
26
26
|
export declare const keyValueToString: (key: string, value: any, newLine?: "leading" | "trailing" | null) => string;
|
|
@@ -30,6 +30,7 @@ export declare const formatRequestStatusCode: (statusCode?: number) => string;
|
|
|
30
30
|
export declare const formatLogMessage: (values: any[]) => any;
|
|
31
31
|
export declare const beautify: (data: any, beautified: boolean) => string;
|
|
32
32
|
export declare const convertToCurl: (method: HttpRequest["method"], url: HttpRequest["url"], headers: HttpRequest["requestHeaders"], body: HttpRequest["body"]) => string;
|
|
33
|
+
export declare const formatCount: (count: number) => string;
|
|
33
34
|
export declare function frozen(_target: Object): void;
|
|
34
35
|
export declare function singleton<T extends {
|
|
35
36
|
new (...args: any[]): {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;AAChD,OAAO,EAAe,KAAK,WAAW,EAAE,KAAK,UAAU,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAOjG,eAAO,MAAM,SAAS,GAAU,MAAM,MAAM,kBAgB3C,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,OAAO,WAAW,GAAG,gBAAgB;;;;;;;;;;;;;;;;CAuBpE,CAAC;AAKF,eAAO,MAAM,mBAAmB,GAAI,MAAM,UAAU,CAAC,MAAM,CAAC,WAsB3D,CAAC;AAGF,eAAO,MAAM,qBAAqB,GAAI,cAAc,MAAM,WAAqB,CAAC;AAEhF,eAAO,MAAM,KAAK,GAAI,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;AAChD,OAAO,EAAe,KAAK,WAAW,EAAE,KAAK,UAAU,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAOjG,eAAO,MAAM,SAAS,GAAU,MAAM,MAAM,kBAgB3C,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,OAAO,WAAW,GAAG,gBAAgB;;;;;;;;;;;;;;;;CAuBpE,CAAC;AAKF,eAAO,MAAM,mBAAmB,GAAI,MAAM,UAAU,CAAC,MAAM,CAAC,WAsB3D,CAAC;AAGF,eAAO,MAAM,qBAAqB,GAAI,cAAc,MAAM,WAAqB,CAAC;AAEhF,eAAO,MAAM,KAAK,GAAI,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,OAAO,MAAM,WACxB,CAAC;AAEtC,eAAO,MAAM,oBAAoB,cAIhC,CAAC;AAIF,eAAO,MAAM,WAAW,GAAI,MAAM,OAAO,cAAuB,CAAC;AAUjE,eAAO,MAAM,gBAAgB,GAC3B,KAAK,MAAM,EACX,OAAO,GAAG,EACV,UAAS,SAAS,GAAG,UAAU,GAAG,IAAiB,KAClD,MACsG,CAAC;AAE1G,eAAO,MAAM,mBAAmB,GAAI,SAAS,MAAM,WAAoB,CAAC;AAExE,eAAO,MAAM,qBAAqB,GAAI,YAAY,MAAM,EAAE,UAAU,MAAM,WAGzE,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,aAAa,MAAM,WAAiC,CAAC;AAE7F,eAAO,MAAM,gBAAgB,GAAI,QAAQ,GAAG,EAAE,QAE7C,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,MAAM,GAAG,EAAE,YAAY,OAAO,WAStD,CAAC;AAEF,eAAO,MAAM,aAAa,GACxB,QAAQ,WAAW,CAAC,QAAQ,CAAC,EAC7B,KAAK,WAAW,CAAC,KAAK,CAAC,EACvB,SAAS,WAAW,CAAC,gBAAgB,CAAC,EACtC,MAAM,WAAW,CAAC,MAAM,CAAC,WAgB1B,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,OAAO,MAAM,WAIxC,CAAC;AAIF,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,QAIrC;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS;IAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,CAAA;CAAE,EAAE,WAAW,EAAE,CAAC;kBAIvD,GAAG,EAAE;;MAS7B"}
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import { type JSX, type ReactNode } from 'react';
|
|
2
2
|
declare namespace Xenon {
|
|
3
|
+
interface Methods {
|
|
4
|
+
isVisible(): boolean;
|
|
5
|
+
show(): void;
|
|
6
|
+
hide(): void;
|
|
7
|
+
}
|
|
3
8
|
interface Props {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
/**
|
|
11
|
+
* If true, completely disables the debugger by rendering only the children components without any debugging functionality.
|
|
12
|
+
* @default false
|
|
13
|
+
*/
|
|
14
|
+
disabled?: boolean;
|
|
4
15
|
/**
|
|
5
16
|
* Determines whether the network inspector is automatically enabled upon initialization.
|
|
6
17
|
* @default true
|
|
@@ -28,34 +39,25 @@ declare namespace Xenon {
|
|
|
28
39
|
*/
|
|
29
40
|
includeDomains?: string[];
|
|
30
41
|
}
|
|
31
|
-
interface WrapperProps extends Props {
|
|
32
|
-
/**
|
|
33
|
-
* If true, completely disables the debugger by rendering only the children components without any debugging functionality.
|
|
34
|
-
* @default false
|
|
35
|
-
*/
|
|
36
|
-
disabled?: boolean;
|
|
37
|
-
children: ReactNode;
|
|
38
|
-
}
|
|
39
42
|
/**
|
|
40
43
|
* Checks whether the debugger is currently visible.
|
|
41
44
|
* @returns `true` if the debugger is currently visible, otherwise `false`.
|
|
42
45
|
*/
|
|
43
|
-
|
|
46
|
+
const isVisible: () => boolean;
|
|
44
47
|
/**
|
|
45
48
|
* Makes the debugger visible. If it is already visible, this method has no additional effect.
|
|
46
49
|
* @returns `void`
|
|
47
50
|
*/
|
|
48
|
-
|
|
51
|
+
const show: () => void;
|
|
49
52
|
/**
|
|
50
53
|
* Hides the debugger. If it is already hidden, this method has no additional effect.
|
|
51
54
|
* @returns `void`
|
|
52
55
|
*/
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
+
const hide: () => void;
|
|
57
|
+
function Wrapper({ disabled, children, ...props }: Props): JSX.Element;
|
|
58
|
+
namespace Wrapper {
|
|
56
59
|
var displayName: string;
|
|
57
60
|
}
|
|
58
|
-
export {};
|
|
59
61
|
}
|
|
60
62
|
export default Xenon;
|
|
61
63
|
//# sourceMappingURL=Xenon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Xenon.d.ts","sourceRoot":"","sources":["../../../../src/ui/Xenon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAwC,KAAK,GAAG,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAUvF,kBAAU,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"Xenon.d.ts","sourceRoot":"","sources":["../../../../src/ui/Xenon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAwC,KAAK,GAAG,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAUvF,kBAAU,KAAK,CAAC;IACd,UAAiB,OAAO;QACtB,SAAS,IAAI,OAAO,CAAC;QACrB,IAAI,IAAI,IAAI,CAAC;QACb,IAAI,IAAI,IAAI,CAAC;KACd;IAED,UAAiB,KAAK;QACpB,QAAQ,EAAE,SAAS,CAAC;QACpB;;;WAGG;QACH,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB;;;WAGG;QACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;QACpC;;;WAGG;QACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;QACpC;;;WAGG;QACH,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB;;;WAGG;QACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAC3B;;;;WAIG;QACH,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;KAC3B;IAKD;;;OAGG;IACI,MAAM,SAAS,QAAO,OAA4C,CAAC;IAE1E;;;OAGG;IACI,MAAM,IAAI,QAAO,IAA2B,CAAC;IAEpD;;;OAGG;IACI,MAAM,IAAI,QAAO,IAA2B,CAAC;IA6EpD,SAAgB,OAAO,CAAC,EAAE,QAAgB,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,KAAK,GAAG,GAAG,CAAC,OAAO,CAepF;cAfe,OAAO;;;CAkBxB;AAED,eAAe,KAAK,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import { View, type ViewProps } from 'react-native';
|
|
2
3
|
interface BubbleProps extends ViewProps {
|
|
3
4
|
bubbleSize: number;
|
|
4
5
|
idleBubbleOpacity: number;
|
|
6
|
+
ref?: Ref<View>;
|
|
5
7
|
}
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
+
export default function Bubble({ bubbleSize, idleBubbleOpacity, style, ...props }: BubbleProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
8
10
|
//# sourceMappingURL=Bubble.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Bubble.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/bubble/Bubble.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Bubble.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/bubble/Bubble.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAyC,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AACxE,OAAO,EAIL,IAAI,EAEJ,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAQtB,UAAU,WAAY,SAAQ,SAAS;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAAE,UAAU,EAAE,iBAAiB,EAAE,KAAK,EAAE,GAAG,KAAK,EAAE,EAAE,WAAW,2CA+F7F"}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { type JSX, type
|
|
1
|
+
import { type JSX, type Ref } from 'react';
|
|
2
2
|
interface IndexedStackProps<T extends number> {
|
|
3
3
|
children: JSX.Element[];
|
|
4
4
|
id: string;
|
|
5
5
|
defaultIndex: T;
|
|
6
|
+
ref: Ref<IndexedStackMethods<T>>;
|
|
6
7
|
}
|
|
7
8
|
export type IndexedStackMethods<T extends number> = {
|
|
8
9
|
getCurrentIndex: () => T;
|
|
9
10
|
setCurrentIndex: (index: T) => void;
|
|
10
11
|
};
|
|
11
|
-
|
|
12
|
-
export
|
|
12
|
+
export default function IndexedStack<T extends number>({ children, defaultIndex, id, ref, }: IndexedStackProps<T>): import("react").CElement<any, import("react").Component<any, any, any>>[];
|
|
13
|
+
export {};
|
|
13
14
|
//# sourceMappingURL=IndexedStack.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IndexedStack.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/common/IndexedStack.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"IndexedStack.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/common/IndexedStack.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwD,KAAK,GAAG,EAAE,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAGjG,UAAU,iBAAiB,CAAC,CAAC,SAAS,MAAM;IAC1C,QAAQ,EAAE,GAAG,CAAC,OAAO,EAAE,CAAC;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,CAAC,CAAC;IAChB,GAAG,EAAE,GAAG,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC;CAClC;AAED,MAAM,MAAM,mBAAmB,CAAC,CAAC,SAAS,MAAM,IAAI;IAClD,eAAe,EAAE,MAAM,CAAC,CAAC;IACzB,eAAe,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;CACrC,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,CAAC,SAAS,MAAM,EAAE,EACrD,QAAQ,EACR,YAAY,EACZ,EAAE,EACF,GAAG,GACJ,EAAE,iBAAiB,CAAC,CAAC,CAAC,6EA6BtB"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import { ScrollView, type StyleProp, type ViewStyle } from 'react-native';
|
|
2
|
-
|
|
3
|
+
interface LogMessageDetailsProps {
|
|
3
4
|
style?: StyleProp<ViewStyle>;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
ref?: Ref<ScrollView>;
|
|
6
|
+
}
|
|
7
|
+
export default function LogMessageDetails({ style, ref }: LogMessageDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
6
9
|
//# sourceMappingURL=LogMessageDetails.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogMessageDetails.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/details/LogMessageDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"LogMessageDetails.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/details/LogMessageDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAc,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAOtF,UAAU,sBAAsB;IAC9B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,sBAAsB,2CAgB/E"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import { View, type StyleProp, type ViewStyle } from 'react-native';
|
|
2
|
-
|
|
3
|
+
interface NetworkRequestDetailsProps {
|
|
3
4
|
style?: StyleProp<ViewStyle>;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
ref?: Ref<View>;
|
|
6
|
+
}
|
|
7
|
+
export default function NetworkRequestDetails({ style, ref }: NetworkRequestDetailsProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
6
9
|
//# sourceMappingURL=NetworkRequestDetails.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkRequestDetails.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/details/NetworkRequestDetails.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NetworkRequestDetails.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/details/NetworkRequestDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgD,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAC/E,OAAO,EAA0B,IAAI,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE5F,UAAU,0BAA0B;IAClC,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;CACjB;AAoBD,MAAM,CAAC,OAAO,UAAU,qBAAqB,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,0BAA0B,2CA2JvF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Handle.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/handle/Handle.tsx"],"names":[],"mappings":"AAOA,MAAM,CAAC,OAAO,UAAU,MAAM,4CAmC7B"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Ref } from 'react';
|
|
2
2
|
import type { ScrollView, StyleProp, ViewStyle } from 'react-native';
|
|
3
|
+
import type { PanelState } from '../../../core/refs';
|
|
3
4
|
interface ConsoleHeaderProps {
|
|
4
5
|
selectedPanel: PanelState;
|
|
5
6
|
style?: StyleProp<ViewStyle>;
|
|
7
|
+
ref?: Ref<ScrollView>;
|
|
6
8
|
}
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
+
export default function ConsoleHeader({ selectedPanel, style, ref }: ConsoleHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
9
11
|
//# sourceMappingURL=ConsoleHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsoleHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/ConsoleHeader.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConsoleHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/ConsoleHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AACjC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAIrD,UAAU,kBAAkB;IAC1B,aAAa,EAAE,UAAU,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,aAAa,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,kBAAkB,2CAStF"}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import type { ScrollView, StyleProp, ViewStyle } from 'react-native';
|
|
2
3
|
import { PanelState } from '../../../core/refs';
|
|
3
4
|
interface DebuggerHeaderProps {
|
|
4
5
|
selectedPanel: PanelState;
|
|
5
6
|
setSelectedPanel: React.Dispatch<React.SetStateAction<PanelState>>;
|
|
6
7
|
style?: StyleProp<ViewStyle>;
|
|
8
|
+
ref?: Ref<ScrollView>;
|
|
7
9
|
}
|
|
8
|
-
|
|
9
|
-
export
|
|
10
|
+
export default function DebuggerHeader({ selectedPanel, setSelectedPanel, style, ref, }: DebuggerHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
10
12
|
//# sourceMappingURL=DebuggerHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebuggerHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/DebuggerHeader.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DebuggerHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/DebuggerHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAErE,OAAa,EAAsB,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAO1E,UAAU,mBAAmB;IAC3B,aAAa,EAAE,UAAU,CAAC;IAC1B,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC;IACnE,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,cAAc,CAAC,EACrC,aAAa,EACb,gBAAgB,EAChB,KAAK,EACL,GAAG,GACJ,EAAE,mBAAmB,2CAyErB"}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
+
import { type PropsWithChildren, type Ref } from 'react';
|
|
1
2
|
import { ScrollView, type StyleProp, type ViewStyle } from 'react-native';
|
|
2
3
|
import { PanelState } from '../../../core/refs';
|
|
3
4
|
import type { DetailTab } from '../../../types';
|
|
5
|
+
declare function Wrapper({ children, style, ref, }: PropsWithChildren<{
|
|
6
|
+
style?: StyleProp<ViewStyle>;
|
|
7
|
+
ref?: Ref<ScrollView>;
|
|
8
|
+
}>): import("react/jsx-runtime").JSX.Element;
|
|
4
9
|
declare const HeaderComponents: {
|
|
5
10
|
Back: ({ selectedPanel }: {
|
|
6
11
|
selectedPanel: PanelState;
|
|
@@ -10,11 +15,7 @@ declare const HeaderComponents: {
|
|
|
10
15
|
label: string;
|
|
11
16
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
12
17
|
MainButtons: () => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
Wrapper:
|
|
14
|
-
style?: StyleProp<ViewStyle>;
|
|
15
|
-
} & {
|
|
16
|
-
children?: import("react").ReactNode | undefined;
|
|
17
|
-
} & import("react").RefAttributes<ScrollView>>;
|
|
18
|
+
Wrapper: typeof Wrapper;
|
|
18
19
|
};
|
|
19
20
|
export default HeaderComponents;
|
|
20
21
|
//# sourceMappingURL=HeaderComponents.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderComponents.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/HeaderComponents.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HeaderComponents.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/HeaderComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,iBAAiB,EAAE,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AACrE,OAAO,EAAE,UAAU,EAAc,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,OAAa,EAAmC,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGvF,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AA6DhD,iBAAS,OAAO,CAAC,EACf,QAAQ,EACR,KAAK,EACL,GAAG,GACJ,EAAE,iBAAiB,CAAC;IAAE,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAAC,GAAG,CAAC,EAAE,GAAG,CAAC,UAAU,CAAC,CAAA;CAAE,CAAC,2CAY5E;AAgBD,QAAA,MAAM,gBAAgB;8BA1FW;QAAE,aAAa,EAAE,UAAU,CAAA;KAAE;oCAiBvB;QAAE,GAAG,EAAE,SAAS,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE;;;CAyEF,CAAC;AAEvE,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import { type ScrollView, type StyleProp, type ViewStyle } from 'react-native';
|
|
2
3
|
import { type PanelState } from '../../../core/refs';
|
|
3
4
|
interface NetworkHeaderProps {
|
|
4
5
|
selectedPanel: PanelState;
|
|
5
6
|
style?: StyleProp<ViewStyle>;
|
|
7
|
+
ref?: Ref<ScrollView>;
|
|
6
8
|
}
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
+
export default function NetworkHeader({ selectedPanel, style, ref }: NetworkHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
9
11
|
//# sourceMappingURL=NetworkHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/NetworkHeader.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NetworkHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/headers/NetworkHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAE,KAAK,UAAU,EAAE,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE/E,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,oBAAoB,CAAC;AASrD,UAAU,kBAAkB;IAC1B,aAAa,EAAE,UAAU,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,aAAa,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,kBAAkB,2CAmDtF"}
|
|
@@ -2,6 +2,6 @@ import type { LogMessage } from '../../../types';
|
|
|
2
2
|
interface ConsolePanelItemProps extends LogMessage {
|
|
3
3
|
onPress: () => void;
|
|
4
4
|
}
|
|
5
|
-
|
|
6
|
-
export
|
|
5
|
+
declare const ConsolePanelItem: import("react").NamedExoticComponent<ConsolePanelItemProps>;
|
|
6
|
+
export default ConsolePanelItem;
|
|
7
7
|
//# sourceMappingURL=ConsolePanelItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsolePanelItem.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/items/ConsolePanelItem.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConsolePanelItem.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/items/ConsolePanelItem.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAGjD,UAAU,qBAAsB,SAAQ,UAAU;IAChD,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,QAAA,MAAM,gBAAgB,6DAerB,CAAC;AAoBF,eAAe,gBAAgB,CAAC"}
|
|
@@ -7,6 +7,6 @@ interface NetworkPanelItemProps {
|
|
|
7
7
|
status?: NetworkRequest['status'];
|
|
8
8
|
onPress: () => void;
|
|
9
9
|
}
|
|
10
|
-
|
|
11
|
-
export
|
|
10
|
+
declare const NetworkPanelItem: import("react").NamedExoticComponent<NetworkPanelItemProps>;
|
|
11
|
+
export default NetworkPanelItem;
|
|
12
12
|
//# sourceMappingURL=NetworkPanelItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkPanelItem.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/items/NetworkPanelItem.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NetworkPanelItem.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/items/NetworkPanelItem.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAIlE,UAAU,qBAAqB;IAC7B,MAAM,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC;IAC/B,IAAI,EAAE,cAAc,CAAC,KAAK,CAAC,CAAC;IAC5B,SAAS,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,CAAC;IACxC,OAAO,CAAC,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;IACpC,MAAM,CAAC,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;IAClC,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAsBD,QAAA,MAAM,gBAAgB,6DAkErB,CAAC;AAwCF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { type Ref } from 'react';
|
|
1
2
|
import { FlatList, type StyleProp, type ViewStyle } from 'react-native';
|
|
2
|
-
|
|
3
|
+
interface ConsolePanelProps {
|
|
3
4
|
style?: StyleProp<ViewStyle>;
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
ref?: Ref<FlatList<any>>;
|
|
6
|
+
}
|
|
7
|
+
export default function ConsolePanel({ style, ref }: ConsolePanelProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
6
9
|
//# sourceMappingURL=ConsolePanel.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConsolePanel.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/panels/ConsolePanel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConsolePanel.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/panels/ConsolePanel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAoC,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AACnE,OAAO,EACL,QAAQ,EAGR,KAAK,SAAS,EACd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AAQtB,UAAU,iBAAiB;IACzB,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1B;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,iBAAiB,2CA8DrE"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { type Ref } from 'react';
|
|
2
|
+
import { FlatList, type ViewProps } from 'react-native';
|
|
3
|
+
interface NetworkPanelProps extends ViewProps {
|
|
4
|
+
ref?: Ref<FlatList<any>>;
|
|
5
|
+
}
|
|
6
|
+
export default function NetworkPanel({ style, ref }: NetworkPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
6
8
|
//# sourceMappingURL=NetworkPanel.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetworkPanel.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/panels/NetworkPanel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NetworkPanel.d.ts","sourceRoot":"","sources":["../../../../../../src/ui/components/panels/NetworkPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAoC,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AACnE,OAAO,EAAE,QAAQ,EAAmC,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAazF,UAAU,iBAAkB,SAAQ,SAAS;IAC3C,GAAG,CAAC,EAAE,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC;CAC1B;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,iBAAiB,2CAoErE"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { View, type ViewProps } from 'react-native';
|
|
2
|
-
|
|
2
|
+
import { type Ref } from 'react';
|
|
3
|
+
interface PanelComponentProps extends ViewProps {
|
|
4
|
+
ref?: Ref<View>;
|
|
3
5
|
}
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
+
export default function Panel({ style, ...props }: PanelComponentProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
6
8
|
//# sourceMappingURL=Panel.d.ts.map
|