spawn-term 3.0.4 → 3.0.6

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.
Files changed (57) hide show
  1. package/dist/cjs/components/App.js +28 -56
  2. package/dist/cjs/components/App.js.map +1 -1
  3. package/dist/cjs/components/ErrorFooter.js +120 -0
  4. package/dist/cjs/components/ErrorFooter.js.map +1 -0
  5. package/dist/cjs/components/ExpandedOutput.js +0 -2
  6. package/dist/cjs/components/ExpandedOutput.js.map +1 -1
  7. package/dist/cjs/components/StatusBar.js +22 -33
  8. package/dist/cjs/components/StatusBar.js.map +1 -1
  9. package/dist/cjs/index-esm.js +4 -0
  10. package/dist/cjs/index-esm.js.map +1 -1
  11. package/dist/cjs/lib/TerminalBuffer.js +139 -0
  12. package/dist/cjs/lib/TerminalBuffer.js.map +1 -0
  13. package/dist/cjs/session.js +129 -56
  14. package/dist/cjs/session.js.map +1 -1
  15. package/dist/cjs/src/components/ErrorFooter.d.ts +11 -0
  16. package/dist/cjs/src/index-esm.d.ts +1 -0
  17. package/dist/cjs/src/lib/TerminalBuffer.d.ts +32 -0
  18. package/dist/cjs/src/state/processStore.d.ts +14 -7
  19. package/dist/cjs/src/types.d.ts +2 -0
  20. package/dist/cjs/state/processStore.js +79 -26
  21. package/dist/cjs/state/processStore.js.map +1 -1
  22. package/dist/cjs/types.js.map +1 -1
  23. package/dist/esm/components/App.js +28 -56
  24. package/dist/esm/components/App.js.map +1 -1
  25. package/dist/esm/components/ErrorFooter.js +95 -0
  26. package/dist/esm/components/ErrorFooter.js.map +1 -0
  27. package/dist/esm/components/ExpandedOutput.js +0 -2
  28. package/dist/esm/components/ExpandedOutput.js.map +1 -1
  29. package/dist/esm/components/StatusBar.js +22 -33
  30. package/dist/esm/components/StatusBar.js.map +1 -1
  31. package/dist/esm/index-esm.js +1 -0
  32. package/dist/esm/index-esm.js.map +1 -1
  33. package/dist/esm/lib/TerminalBuffer.js +62 -0
  34. package/dist/esm/lib/TerminalBuffer.js.map +1 -0
  35. package/dist/esm/session.js +112 -35
  36. package/dist/esm/session.js.map +1 -1
  37. package/dist/esm/src/components/ErrorFooter.d.ts +11 -0
  38. package/dist/esm/src/index-esm.d.ts +1 -0
  39. package/dist/esm/src/lib/TerminalBuffer.d.ts +32 -0
  40. package/dist/esm/src/state/processStore.d.ts +14 -7
  41. package/dist/esm/src/types.d.ts +2 -0
  42. package/dist/esm/state/processStore.js +53 -22
  43. package/dist/esm/state/processStore.js.map +1 -1
  44. package/dist/esm/types.js.map +1 -1
  45. package/package.json +2 -1
  46. package/dist/cjs/components/ErrorDetailModal.js +0 -115
  47. package/dist/cjs/components/ErrorDetailModal.js.map +0 -1
  48. package/dist/cjs/components/ErrorListModal.js +0 -135
  49. package/dist/cjs/components/ErrorListModal.js.map +0 -1
  50. package/dist/cjs/src/components/ErrorDetailModal.d.ts +0 -8
  51. package/dist/cjs/src/components/ErrorListModal.d.ts +0 -8
  52. package/dist/esm/components/ErrorDetailModal.js +0 -99
  53. package/dist/esm/components/ErrorDetailModal.js.map +0 -1
  54. package/dist/esm/components/ErrorListModal.js +0 -116
  55. package/dist/esm/components/ErrorListModal.js.map +0 -1
  56. package/dist/esm/src/components/ErrorDetailModal.d.ts +0 -8
  57. package/dist/esm/src/components/ErrorListModal.d.ts +0 -8
@@ -1,99 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Box, Text, useStdout } from 'ink';
3
- import { memo } from 'react';
4
- import { LineType } from '../types.js';
5
- export default /*#__PURE__*/ memo(function ErrorDetailModal({ error, currentIndex, totalErrors }) {
6
- const { stdout } = useStdout();
7
- const width = (stdout === null || stdout === void 0 ? void 0 : stdout.columns) || 80;
8
- const borderH = '─'.repeat(width - 2);
9
- const title = ` Error Detail (${currentIndex + 1}/${totalErrors}) `;
10
- const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;
11
- const name = error.group || error.title;
12
- const stderrLines = error.lines.filter((l)=>l.type === LineType.stderr);
13
- return /*#__PURE__*/ _jsxs(Box, {
14
- flexDirection: "column",
15
- children: [
16
- /*#__PURE__*/ _jsx(Text, {
17
- children: titleBorder
18
- }),
19
- /*#__PURE__*/ _jsx(Box, {
20
- paddingX: 1,
21
- children: /*#__PURE__*/ _jsx(Text, {
22
- bold: true,
23
- children: name
24
- })
25
- }),
26
- /*#__PURE__*/ _jsxs(Box, {
27
- paddingX: 1,
28
- children: [
29
- /*#__PURE__*/ _jsx(Text, {
30
- dimColor: true,
31
- children: "Command: "
32
- }),
33
- /*#__PURE__*/ _jsx(Text, {
34
- children: error.title
35
- })
36
- ]
37
- }),
38
- /*#__PURE__*/ _jsx(Box, {
39
- paddingX: 1,
40
- children: /*#__PURE__*/ _jsx(Text, {
41
- dimColor: true,
42
- children: '─'.repeat(width - 4)
43
- })
44
- }),
45
- /*#__PURE__*/ _jsx(Box, {
46
- paddingX: 1,
47
- children: /*#__PURE__*/ _jsx(Text, {
48
- dimColor: true,
49
- children: "stderr:"
50
- })
51
- }),
52
- /*#__PURE__*/ _jsx(Box, {
53
- flexDirection: "column",
54
- paddingX: 2,
55
- children: stderrLines.length === 0 ? /*#__PURE__*/ _jsx(Text, {
56
- dimColor: true,
57
- children: "(no stderr output)"
58
- }) : stderrLines.map((line, index)=>/*#__PURE__*/ _jsx(Text, {
59
- color: "red",
60
- children: line.text
61
- }, `stderr-${index}-${line.text.slice(0, 20)}`))
62
- }),
63
- /*#__PURE__*/ _jsx(Box, {
64
- paddingX: 1,
65
- children: /*#__PURE__*/ _jsx(Text, {
66
- children: " "
67
- })
68
- }),
69
- /*#__PURE__*/ _jsxs(Text, {
70
- children: [
71
- "├",
72
- borderH,
73
- "┤"
74
- ]
75
- }),
76
- /*#__PURE__*/ _jsxs(Box, {
77
- paddingX: 1,
78
- justifyContent: "space-between",
79
- children: [
80
- /*#__PURE__*/ _jsx(Text, {
81
- dimColor: true,
82
- children: "[↑↓] prev/next error"
83
- }),
84
- /*#__PURE__*/ _jsx(Text, {
85
- dimColor: true,
86
- children: "[Esc] back to list"
87
- })
88
- ]
89
- }),
90
- /*#__PURE__*/ _jsxs(Text, {
91
- children: [
92
- "└",
93
- borderH,
94
- "┘"
95
- ]
96
- })
97
- ]
98
- });
99
- });
@@ -1 +0,0 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/node/spawn-term/src/components/ErrorDetailModal.tsx"],"sourcesContent":["import { Box, Text, useStdout } from 'ink';\nimport { memo } from 'react';\nimport type { ChildProcess } from '../types.ts';\nimport { LineType } from '../types.ts';\n\ntype Props = {\n error: ChildProcess;\n currentIndex: number;\n totalErrors: number;\n};\n\nexport default memo(function ErrorDetailModal({ error, currentIndex, totalErrors }: Props) {\n const { stdout } = useStdout();\n const width = stdout?.columns || 80;\n\n const borderH = '─'.repeat(width - 2);\n const title = ` Error Detail (${currentIndex + 1}/${totalErrors}) `;\n const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;\n\n const name = error.group || error.title;\n const stderrLines = error.lines.filter((l) => l.type === LineType.stderr);\n\n return (\n <Box flexDirection=\"column\">\n {/* Top border with title */}\n <Text>{titleBorder}</Text>\n\n {/* Process name */}\n <Box paddingX={1}>\n <Text bold>{name}</Text>\n </Box>\n\n {/* Command */}\n <Box paddingX={1}>\n <Text dimColor>Command: </Text>\n <Text>{error.title}</Text>\n </Box>\n\n {/* Separator */}\n <Box paddingX={1}>\n <Text dimColor>{'─'.repeat(width - 4)}</Text>\n </Box>\n\n {/* Error output */}\n <Box paddingX={1}>\n <Text dimColor>stderr:</Text>\n </Box>\n\n {/* Error lines in a box */}\n <Box flexDirection=\"column\" paddingX={2}>\n {stderrLines.length === 0 ? (\n <Text dimColor>(no stderr output)</Text>\n ) : (\n stderrLines.map((line, index) => (\n <Text key={`stderr-${index}-${line.text.slice(0, 20)}`} color=\"red\">\n {line.text}\n </Text>\n ))\n )}\n </Box>\n\n {/* Empty line for padding */}\n <Box paddingX={1}>\n <Text> </Text>\n </Box>\n\n {/* Bottom border with hints */}\n <Text>├{borderH}┤</Text>\n <Box paddingX={1} justifyContent=\"space-between\">\n <Text dimColor>[↑↓] prev/next error</Text>\n <Text dimColor>[Esc] back to list</Text>\n </Box>\n <Text>└{borderH}┘</Text>\n </Box>\n );\n});\n"],"names":["Box","Text","useStdout","memo","LineType","ErrorDetailModal","error","currentIndex","totalErrors","stdout","width","columns","borderH","repeat","title","titleBorder","slice","length","name","group","stderrLines","lines","filter","l","type","stderr","flexDirection","paddingX","bold","dimColor","map","line","index","color","text","justifyContent"],"mappings":";AAAA,SAASA,GAAG,EAAEC,IAAI,EAAEC,SAAS,QAAQ,MAAM;AAC3C,SAASC,IAAI,QAAQ,QAAQ;AAE7B,SAASC,QAAQ,QAAQ,cAAc;AAQvC,6BAAeD,KAAK,SAASE,iBAAiB,EAAEC,KAAK,EAAEC,YAAY,EAAEC,WAAW,EAAS;IACvF,MAAM,EAAEC,MAAM,EAAE,GAAGP;IACnB,MAAMQ,QAAQD,CAAAA,mBAAAA,6BAAAA,OAAQE,OAAO,KAAI;IAEjC,MAAMC,UAAU,IAAIC,MAAM,CAACH,QAAQ;IACnC,MAAMI,QAAQ,CAAC,eAAe,EAAEP,eAAe,EAAE,CAAC,EAAEC,YAAY,EAAE,CAAC;IACnE,MAAMO,cAAc,CAAC,CAAC,EAAED,QAAQF,QAAQI,KAAK,CAACF,MAAMG,MAAM,GAAG,GAAG,CAAC,CAAC;IAElE,MAAMC,OAAOZ,MAAMa,KAAK,IAAIb,MAAMQ,KAAK;IACvC,MAAMM,cAAcd,MAAMe,KAAK,CAACC,MAAM,CAAC,CAACC,IAAMA,EAAEC,IAAI,KAAKpB,SAASqB,MAAM;IAExE,qBACE,MAACzB;QAAI0B,eAAc;;0BAEjB,KAACzB;0BAAMc;;0BAGP,KAACf;gBAAI2B,UAAU;0BACb,cAAA,KAAC1B;oBAAK2B,IAAI;8BAAEV;;;0BAId,MAAClB;gBAAI2B,UAAU;;kCACb,KAAC1B;wBAAK4B,QAAQ;kCAAC;;kCACf,KAAC5B;kCAAMK,MAAMQ,KAAK;;;;0BAIpB,KAACd;gBAAI2B,UAAU;0BACb,cAAA,KAAC1B;oBAAK4B,QAAQ;8BAAE,IAAIhB,MAAM,CAACH,QAAQ;;;0BAIrC,KAACV;gBAAI2B,UAAU;0BACb,cAAA,KAAC1B;oBAAK4B,QAAQ;8BAAC;;;0BAIjB,KAAC7B;gBAAI0B,eAAc;gBAASC,UAAU;0BACnCP,YAAYH,MAAM,KAAK,kBACtB,KAAChB;oBAAK4B,QAAQ;8BAAC;qBAEfT,YAAYU,GAAG,CAAC,CAACC,MAAMC,sBACrB,KAAC/B;wBAAuDgC,OAAM;kCAC3DF,KAAKG,IAAI;uBADD,CAAC,OAAO,EAAEF,MAAM,CAAC,EAAED,KAAKG,IAAI,CAAClB,KAAK,CAAC,GAAG,KAAK;;0BAQ5D,KAAChB;gBAAI2B,UAAU;0BACb,cAAA,KAAC1B;8BAAK;;;0BAIR,MAACA;;oBAAK;oBAAEW;oBAAQ;;;0BAChB,MAACZ;gBAAI2B,UAAU;gBAAGQ,gBAAe;;kCAC/B,KAAClC;wBAAK4B,QAAQ;kCAAC;;kCACf,KAAC5B;wBAAK4B,QAAQ;kCAAC;;;;0BAEjB,MAAC5B;;oBAAK;oBAAEW;oBAAQ;;;;;AAGtB,GAAG"}
@@ -1,116 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Box, Text, useStdout } from 'ink';
3
- import { memo } from 'react';
4
- import figures from '../lib/figures.js';
5
- import { LineType } from '../types.js';
6
- function truncate(str, maxLength) {
7
- if (str.length <= maxLength) return str;
8
- return `${str.slice(0, maxLength - 1)}…`;
9
- }
10
- function getErrorLineCount(process) {
11
- return process.lines.filter((l)=>l.type === LineType.stderr).length;
12
- }
13
- export default /*#__PURE__*/ memo(function ErrorListModal({ errors, selectedIndex, totalErrorLines }) {
14
- const { stdout } = useStdout();
15
- const width = (stdout === null || stdout === void 0 ? void 0 : stdout.columns) || 80;
16
- const innerWidth = width - 4; // 2 chars padding each side
17
- const borderH = '─'.repeat(width - 2);
18
- const title = ' Errors ';
19
- const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;
20
- return /*#__PURE__*/ _jsxs(Box, {
21
- flexDirection: "column",
22
- children: [
23
- /*#__PURE__*/ _jsx(Text, {
24
- children: titleBorder
25
- }),
26
- /*#__PURE__*/ _jsx(Box, {
27
- paddingX: 1,
28
- children: /*#__PURE__*/ _jsxs(Text, {
29
- children: [
30
- errors.length,
31
- " process",
32
- errors.length !== 1 ? 'es' : '',
33
- " failed (",
34
- totalErrorLines,
35
- " error line",
36
- totalErrorLines !== 1 ? 's' : '',
37
- " total)"
38
- ]
39
- })
40
- }),
41
- /*#__PURE__*/ _jsx(Box, {
42
- paddingX: 1,
43
- children: /*#__PURE__*/ _jsx(Text, {
44
- children: " "
45
- })
46
- }),
47
- errors.map((error, index)=>{
48
- const isSelected = index === selectedIndex;
49
- const indicator = isSelected ? figures.pointer : ' ';
50
- const name = error.group || error.title;
51
- const lineCount = getErrorLineCount(error);
52
- const lineText = `${lineCount} line${lineCount !== 1 ? 's' : ''}`;
53
- // Calculate available space for name
54
- const prefixLen = 3; // indicator + space + space
55
- const suffixLen = lineText.length + 2; // space + lineText
56
- const maxNameLen = innerWidth - prefixLen - suffixLen;
57
- const truncatedName = truncate(name, maxNameLen);
58
- return /*#__PURE__*/ _jsxs(Box, {
59
- paddingX: 1,
60
- children: [
61
- /*#__PURE__*/ _jsxs(Text, {
62
- color: isSelected ? 'cyan' : undefined,
63
- bold: isSelected,
64
- children: [
65
- indicator,
66
- " ",
67
- truncatedName
68
- ]
69
- }),
70
- /*#__PURE__*/ _jsx(Box, {
71
- flexGrow: 1
72
- }),
73
- /*#__PURE__*/ _jsx(Text, {
74
- dimColor: true,
75
- children: lineText
76
- })
77
- ]
78
- }, error.id);
79
- }),
80
- /*#__PURE__*/ _jsx(Box, {
81
- paddingX: 1,
82
- children: /*#__PURE__*/ _jsx(Text, {
83
- children: " "
84
- })
85
- }),
86
- /*#__PURE__*/ _jsxs(Text, {
87
- children: [
88
- "├",
89
- borderH,
90
- "┤"
91
- ]
92
- }),
93
- /*#__PURE__*/ _jsxs(Box, {
94
- paddingX: 1,
95
- justifyContent: "space-between",
96
- children: [
97
- /*#__PURE__*/ _jsx(Text, {
98
- dimColor: true,
99
- children: "[↑↓] navigate [Enter] view details"
100
- }),
101
- /*#__PURE__*/ _jsx(Text, {
102
- dimColor: true,
103
- children: "[Esc] close"
104
- })
105
- ]
106
- }),
107
- /*#__PURE__*/ _jsxs(Text, {
108
- children: [
109
- "└",
110
- borderH,
111
- "┘"
112
- ]
113
- })
114
- ]
115
- });
116
- });
@@ -1 +0,0 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/node/spawn-term/src/components/ErrorListModal.tsx"],"sourcesContent":["import { Box, Text, useStdout } from 'ink';\nimport { memo } from 'react';\nimport figures from '../lib/figures.ts';\nimport type { ChildProcess } from '../types.ts';\nimport { LineType } from '../types.ts';\n\ntype Props = {\n errors: ChildProcess[];\n selectedIndex: number;\n totalErrorLines: number;\n};\n\nfunction truncate(str: string, maxLength: number): string {\n if (str.length <= maxLength) return str;\n return `${str.slice(0, maxLength - 1)}…`;\n}\n\nfunction getErrorLineCount(process: ChildProcess): number {\n return process.lines.filter((l) => l.type === LineType.stderr).length;\n}\n\nexport default memo(function ErrorListModal({ errors, selectedIndex, totalErrorLines }: Props) {\n const { stdout } = useStdout();\n const width = stdout?.columns || 80;\n const innerWidth = width - 4; // 2 chars padding each side\n\n const borderH = '─'.repeat(width - 2);\n const title = ' Errors ';\n const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;\n\n return (\n <Box flexDirection=\"column\">\n {/* Top border with title */}\n <Text>{titleBorder}</Text>\n\n {/* Summary */}\n <Box paddingX={1}>\n <Text>\n {errors.length} process{errors.length !== 1 ? 'es' : ''} failed ({totalErrorLines} error line\n {totalErrorLines !== 1 ? 's' : ''} total)\n </Text>\n </Box>\n\n {/* Empty line */}\n <Box paddingX={1}>\n <Text> </Text>\n </Box>\n\n {/* Error list */}\n {errors.map((error, index) => {\n const isSelected = index === selectedIndex;\n const indicator = isSelected ? figures.pointer : ' ';\n const name = error.group || error.title;\n const lineCount = getErrorLineCount(error);\n const lineText = `${lineCount} line${lineCount !== 1 ? 's' : ''}`;\n\n // Calculate available space for name\n const prefixLen = 3; // indicator + space + space\n const suffixLen = lineText.length + 2; // space + lineText\n const maxNameLen = innerWidth - prefixLen - suffixLen;\n const truncatedName = truncate(name, maxNameLen);\n\n return (\n <Box key={error.id} paddingX={1}>\n <Text color={isSelected ? 'cyan' : undefined} bold={isSelected}>\n {indicator} {truncatedName}\n </Text>\n <Box flexGrow={1} />\n <Text dimColor>{lineText}</Text>\n </Box>\n );\n })}\n\n {/* Empty line for padding */}\n <Box paddingX={1}>\n <Text> </Text>\n </Box>\n\n {/* Bottom border with hints */}\n <Text>├{borderH}┤</Text>\n <Box paddingX={1} justifyContent=\"space-between\">\n <Text dimColor>[↑↓] navigate [Enter] view details</Text>\n <Text dimColor>[Esc] close</Text>\n </Box>\n <Text>└{borderH}┘</Text>\n </Box>\n );\n});\n"],"names":["Box","Text","useStdout","memo","figures","LineType","truncate","str","maxLength","length","slice","getErrorLineCount","process","lines","filter","l","type","stderr","ErrorListModal","errors","selectedIndex","totalErrorLines","stdout","width","columns","innerWidth","borderH","repeat","title","titleBorder","flexDirection","paddingX","map","error","index","isSelected","indicator","pointer","name","group","lineCount","lineText","prefixLen","suffixLen","maxNameLen","truncatedName","color","undefined","bold","flexGrow","dimColor","id","justifyContent"],"mappings":";AAAA,SAASA,GAAG,EAAEC,IAAI,EAAEC,SAAS,QAAQ,MAAM;AAC3C,SAASC,IAAI,QAAQ,QAAQ;AAC7B,OAAOC,aAAa,oBAAoB;AAExC,SAASC,QAAQ,QAAQ,cAAc;AAQvC,SAASC,SAASC,GAAW,EAAEC,SAAiB;IAC9C,IAAID,IAAIE,MAAM,IAAID,WAAW,OAAOD;IACpC,OAAO,GAAGA,IAAIG,KAAK,CAAC,GAAGF,YAAY,GAAG,CAAC,CAAC;AAC1C;AAEA,SAASG,kBAAkBC,OAAqB;IAC9C,OAAOA,QAAQC,KAAK,CAACC,MAAM,CAAC,CAACC,IAAMA,EAAEC,IAAI,KAAKX,SAASY,MAAM,EAAER,MAAM;AACvE;AAEA,6BAAeN,KAAK,SAASe,eAAe,EAAEC,MAAM,EAAEC,aAAa,EAAEC,eAAe,EAAS;IAC3F,MAAM,EAAEC,MAAM,EAAE,GAAGpB;IACnB,MAAMqB,QAAQD,CAAAA,mBAAAA,6BAAAA,OAAQE,OAAO,KAAI;IACjC,MAAMC,aAAaF,QAAQ,GAAG,4BAA4B;IAE1D,MAAMG,UAAU,IAAIC,MAAM,CAACJ,QAAQ;IACnC,MAAMK,QAAQ;IACd,MAAMC,cAAc,CAAC,CAAC,EAAED,QAAQF,QAAQhB,KAAK,CAACkB,MAAMnB,MAAM,GAAG,GAAG,CAAC,CAAC;IAElE,qBACE,MAACT;QAAI8B,eAAc;;0BAEjB,KAAC7B;0BAAM4B;;0BAGP,KAAC7B;gBAAI+B,UAAU;0BACb,cAAA,MAAC9B;;wBACEkB,OAAOV,MAAM;wBAAC;wBAASU,OAAOV,MAAM,KAAK,IAAI,OAAO;wBAAG;wBAAUY;wBAAgB;wBACjFA,oBAAoB,IAAI,MAAM;wBAAG;;;;0BAKtC,KAACrB;gBAAI+B,UAAU;0BACb,cAAA,KAAC9B;8BAAK;;;YAIPkB,OAAOa,GAAG,CAAC,CAACC,OAAOC;gBAClB,MAAMC,aAAaD,UAAUd;gBAC7B,MAAMgB,YAAYD,aAAa/B,QAAQiC,OAAO,GAAG;gBACjD,MAAMC,OAAOL,MAAMM,KAAK,IAAIN,MAAML,KAAK;gBACvC,MAAMY,YAAY7B,kBAAkBsB;gBACpC,MAAMQ,WAAW,GAAGD,UAAU,KAAK,EAAEA,cAAc,IAAI,MAAM,IAAI;gBAEjE,qCAAqC;gBACrC,MAAME,YAAY,GAAG,4BAA4B;gBACjD,MAAMC,YAAYF,SAAShC,MAAM,GAAG,GAAG,mBAAmB;gBAC1D,MAAMmC,aAAanB,aAAaiB,YAAYC;gBAC5C,MAAME,gBAAgBvC,SAASgC,MAAMM;gBAErC,qBACE,MAAC5C;oBAAmB+B,UAAU;;sCAC5B,MAAC9B;4BAAK6C,OAAOX,aAAa,SAASY;4BAAWC,MAAMb;;gCACjDC;gCAAU;gCAAES;;;sCAEf,KAAC7C;4BAAIiD,UAAU;;sCACf,KAAChD;4BAAKiD,QAAQ;sCAAET;;;mBALRR,MAAMkB,EAAE;YAQtB;0BAGA,KAACnD;gBAAI+B,UAAU;0BACb,cAAA,KAAC9B;8BAAK;;;0BAIR,MAACA;;oBAAK;oBAAEyB;oBAAQ;;;0BAChB,MAAC1B;gBAAI+B,UAAU;gBAAGqB,gBAAe;;kCAC/B,KAACnD;wBAAKiD,QAAQ;kCAAC;;kCACf,KAACjD;wBAAKiD,QAAQ;kCAAC;;;;0BAEjB,MAACjD;;oBAAK;oBAAEyB;oBAAQ;;;;;AAGtB,GAAG"}
@@ -1,8 +0,0 @@
1
- import type { ChildProcess } from '../types.js';
2
- type Props = {
3
- error: ChildProcess;
4
- currentIndex: number;
5
- totalErrors: number;
6
- };
7
- declare const _default: import("react").NamedExoticComponent<Props>;
8
- export default _default;
@@ -1,8 +0,0 @@
1
- import type { ChildProcess } from '../types.js';
2
- type Props = {
3
- errors: ChildProcess[];
4
- selectedIndex: number;
5
- totalErrorLines: number;
6
- };
7
- declare const _default: import("react").NamedExoticComponent<Props>;
8
- export default _default;