@visulima/tui 0.0.1 → 1.0.0-alpha.2

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 (338) hide show
  1. package/CHANGELOG.md +200 -0
  2. package/LICENSE.md +303 -0
  3. package/README.md +173 -29
  4. package/dist/core/app.d.ts +50 -0
  5. package/dist/core/cell.d.ts +33 -0
  6. package/dist/core/index.d.ts +5 -0
  7. package/dist/core/index.js +5 -0
  8. package/dist/core/inline.d.ts +22 -0
  9. package/dist/core/input.d.ts +18 -0
  10. package/dist/core/native-binding.d.ts +22 -0
  11. package/dist/ink/ansi-to-cell.d.ts +5 -0
  12. package/dist/ink/ansi-tokenizer.d.ts +38 -0
  13. package/dist/ink/clipboard.d.ts +29 -0
  14. package/dist/ink/color-matrix.d.ts +49 -0
  15. package/dist/ink/color-utils.d.ts +30 -0
  16. package/dist/ink/colorize.d.ts +4 -0
  17. package/dist/ink/components/AccessibilityContext.d.ts +4 -0
  18. package/dist/ink/components/Alert.d.ts +30 -0
  19. package/dist/ink/components/AnimationContext.d.ts +10 -0
  20. package/dist/ink/components/App.d.ts +19 -0
  21. package/dist/ink/components/AppContext.d.ts +38 -0
  22. package/dist/ink/components/BackgroundContext.d.ts +5 -0
  23. package/dist/ink/components/Badge.d.ts +27 -0
  24. package/dist/ink/components/BigText.d.ts +71 -0
  25. package/dist/ink/components/Box.d.ts +58 -0
  26. package/dist/ink/components/Code.d.ts +46 -0
  27. package/dist/ink/components/ConfirmInput.d.ts +40 -0
  28. package/dist/ink/components/ConsoleOverlay.d.ts +52 -0
  29. package/dist/ink/components/Cursor.d.ts +43 -0
  30. package/dist/ink/components/CursorContext.d.ts +12 -0
  31. package/dist/ink/components/Dialog.d.ts +93 -0
  32. package/dist/ink/components/DiffView.d.ts +71 -0
  33. package/dist/ink/components/ErrorBoundary.d.ts +17 -0
  34. package/dist/ink/components/ErrorOverview.d.ts +6 -0
  35. package/dist/ink/components/FocusContext.d.ts +17 -0
  36. package/dist/ink/components/Gradient.d.ts +38 -0
  37. package/dist/ink/components/Help.d.ts +49 -0
  38. package/dist/ink/components/Link.d.ts +34 -0
  39. package/dist/ink/components/Markdown.d.ts +34 -0
  40. package/dist/ink/components/MultiSelect.d.ts +63 -0
  41. package/dist/ink/components/Newline.d.ts +12 -0
  42. package/dist/ink/components/OrderedList.d.ts +30 -0
  43. package/dist/ink/components/Paginator.d.ts +75 -0
  44. package/dist/ink/components/ProgressBar.d.ts +51 -0
  45. package/dist/ink/components/SelectInput.d.ts +96 -0
  46. package/dist/ink/components/SelectInputIndicator.d.ts +36 -0
  47. package/dist/ink/components/SelectInputItem.d.ts +43 -0
  48. package/dist/ink/components/Slider.d.ts +92 -0
  49. package/dist/ink/components/Spacer.d.ts +7 -0
  50. package/dist/ink/components/Spinner.d.ts +42 -0
  51. package/dist/ink/components/Static.d.ts +24 -0
  52. package/dist/ink/components/StaticRender.d.ts +28 -0
  53. package/dist/ink/components/StatusMessage.d.ts +26 -0
  54. package/dist/ink/components/StderrContext.d.ts +16 -0
  55. package/dist/ink/components/StdinContext.d.ts +29 -0
  56. package/dist/ink/components/StdoutContext.d.ts +16 -0
  57. package/dist/ink/components/Stopwatch.d.ts +44 -0
  58. package/dist/ink/components/Tab.d.ts +25 -0
  59. package/dist/ink/components/Table.d.ts +80 -0
  60. package/dist/ink/components/Tabs.d.ts +104 -0
  61. package/dist/ink/components/Text.d.ts +63 -0
  62. package/dist/ink/components/TextInput.d.ts +48 -0
  63. package/dist/ink/components/Textarea.d.ts +62 -0
  64. package/dist/ink/components/Timer.d.ts +52 -0
  65. package/dist/ink/components/Transform.d.ts +16 -0
  66. package/dist/ink/components/UnorderedList.d.ts +35 -0
  67. package/dist/ink/components/file-picker/FilePicker.d.ts +75 -0
  68. package/dist/ink/components/file-picker/index.d.ts +3 -0
  69. package/dist/ink/components/file-picker/types.d.ts +38 -0
  70. package/dist/ink/components/file-picker/use-file-system.d.ts +16 -0
  71. package/dist/ink/components/scroll/ControlledScrollView.d.ts +43 -0
  72. package/dist/ink/components/scroll/ScrollBar.d.ts +20 -0
  73. package/dist/ink/components/scroll/ScrollBarBox.d.ts +15 -0
  74. package/dist/ink/components/scroll/ScrollList.d.ts +12 -0
  75. package/dist/ink/components/scroll/ScrollView.d.ts +98 -0
  76. package/dist/ink/components/scroll/index.d.ts +10 -0
  77. package/dist/ink/components/scroll/use-state-ref.d.ts +8 -0
  78. package/dist/ink/components/tree-view/TreeView.d.ts +89 -0
  79. package/dist/ink/components/tree-view/TreeViewNode.d.ts +29 -0
  80. package/dist/ink/components/tree-view/index.d.ts +11 -0
  81. package/dist/ink/components/tree-view/theme.d.ts +24 -0
  82. package/dist/ink/components/tree-view/tree-node-map.d.ts +72 -0
  83. package/dist/ink/components/tree-view/types.d.ts +55 -0
  84. package/dist/ink/components/tree-view/use-tree-view-state.d.ts +135 -0
  85. package/dist/ink/components/tree-view/use-tree-view.d.ts +26 -0
  86. package/dist/ink/components/variant-config.d.ts +10 -0
  87. package/dist/ink/cursor-helpers.d.ts +38 -0
  88. package/dist/ink/data-limited-lru-map.d.ts +21 -0
  89. package/dist/ink/devtools-window-polyfill.d.ts +1 -0
  90. package/dist/ink/devtools.d.ts +1 -0
  91. package/dist/ink/dom.d.ts +213 -0
  92. package/dist/ink/get-max-width.d.ts +3 -0
  93. package/dist/ink/highlighter.d.ts +28 -0
  94. package/dist/ink/hooks/use-animation.d.ts +43 -0
  95. package/dist/ink/hooks/use-app.d.ts +6 -0
  96. package/dist/ink/hooks/use-box-metrics.d.ts +58 -0
  97. package/dist/ink/hooks/use-clipboard.d.ts +29 -0
  98. package/dist/ink/hooks/use-color-blindness.d.ts +33 -0
  99. package/dist/ink/hooks/use-console-capture.d.ts +43 -0
  100. package/dist/ink/hooks/use-cursor.d.ts +12 -0
  101. package/dist/ink/hooks/use-focus-manager.d.ts +42 -0
  102. package/dist/ink/hooks/use-focus.d.ts +30 -0
  103. package/dist/ink/hooks/use-input.d.ts +149 -0
  104. package/dist/ink/hooks/use-is-screen-reader-enabled.d.ts +6 -0
  105. package/dist/ink/hooks/use-key-bindings.d.ts +61 -0
  106. package/dist/ink/hooks/use-linked-scroll.d.ts +41 -0
  107. package/dist/ink/hooks/use-paste.d.ts +44 -0
  108. package/dist/ink/hooks/use-scroll-acceleration.d.ts +47 -0
  109. package/dist/ink/hooks/use-scroll-input.d.ts +34 -0
  110. package/dist/ink/hooks/use-stderr.d.ts +6 -0
  111. package/dist/ink/hooks/use-stdin.d.ts +7 -0
  112. package/dist/ink/hooks/use-stdout.d.ts +6 -0
  113. package/dist/ink/hooks/use-stopwatch.d.ts +40 -0
  114. package/dist/ink/hooks/use-terminal-palette.d.ts +19 -0
  115. package/dist/ink/hooks/use-text-buffer.d.ts +42 -0
  116. package/dist/ink/hooks/use-text-selection.d.ts +45 -0
  117. package/dist/ink/hooks/use-timer.d.ts +49 -0
  118. package/dist/ink/hooks/use-window-size.d.ts +18 -0
  119. package/dist/ink/ime-utils.d.ts +25 -0
  120. package/dist/ink/index.d.ts +159 -0
  121. package/dist/ink/index.js +100 -0
  122. package/dist/ink/ink.d.ts +189 -0
  123. package/dist/ink/input-parser.d.ts +10 -0
  124. package/dist/ink/input-utils.d.ts +16 -0
  125. package/dist/ink/instances.d.ts +3 -0
  126. package/dist/ink/kitty-keyboard.d.ts +23 -0
  127. package/dist/ink/layout.d.ts +26 -0
  128. package/dist/ink/log-update-native.d.ts +14 -0
  129. package/dist/ink/log-update.d.ts +21 -0
  130. package/dist/ink/measure-element.d.ts +147 -0
  131. package/dist/ink/measure-text.d.ts +56 -0
  132. package/dist/ink/mouse/Fullscreen.d.ts +8 -0
  133. package/dist/ink/mouse/MouseProvider.d.ts +11 -0
  134. package/dist/ink/mouse/ansi-parser.d.ts +37 -0
  135. package/dist/ink/mouse/constants.d.ts +59 -0
  136. package/dist/ink/mouse/index.d.ts +20 -0
  137. package/dist/ink/mouse/is-intersecting.d.ts +18 -0
  138. package/dist/ink/mouse/mouse-context.d.ts +36 -0
  139. package/dist/ink/mouse/use-element-position.d.ts +29 -0
  140. package/dist/ink/mouse/use-mouse-action.d.ts +7 -0
  141. package/dist/ink/mouse/use-mouse-position.d.ts +7 -0
  142. package/dist/ink/mouse/use-mouse.d.ts +7 -0
  143. package/dist/ink/mouse/use-on-mouse-click.d.ts +14 -0
  144. package/dist/ink/mouse/use-on-mouse-hover.d.ts +8 -0
  145. package/dist/ink/mouse/use-on-mouse-state.d.ts +11 -0
  146. package/dist/ink/output.d.ts +74 -0
  147. package/dist/ink/parse-keypress.d.ts +22 -0
  148. package/dist/ink/reconciler.d.ts +3 -0
  149. package/dist/ink/region.d.ts +99 -0
  150. package/dist/ink/render-background.d.ts +4 -0
  151. package/dist/ink/render-border.d.ts +4 -0
  152. package/dist/ink/render-node-to-output.d.ts +38 -0
  153. package/dist/ink/render-scrollbar.d.ts +9 -0
  154. package/dist/ink/render-sticky.d.ts +44 -0
  155. package/dist/ink/render-to-string.d.ts +37 -0
  156. package/dist/ink/render.d.ts +191 -0
  157. package/dist/ink/renderer.d.ts +17 -0
  158. package/dist/ink/resize-observer.d.ts +44 -0
  159. package/dist/ink/sanitize-ansi.d.ts +2 -0
  160. package/dist/ink/scroll.d.ts +23 -0
  161. package/dist/ink/selection.d.ts +70 -0
  162. package/dist/ink/squash-text-nodes.d.ts +18 -0
  163. package/dist/ink/style-flags.d.ts +17 -0
  164. package/dist/ink/styled-line-factory.d.ts +25 -0
  165. package/dist/ink/styled-line-serializer.d.ts +18 -0
  166. package/dist/ink/styled-line.d.ts +109 -0
  167. package/dist/ink/styles.d.ts +369 -0
  168. package/dist/ink/terminal-palette.d.ts +25 -0
  169. package/dist/ink/text-wrap.d.ts +10 -0
  170. package/dist/ink/token-to-elements.d.ts +22 -0
  171. package/dist/ink/utils/format-time.d.ts +4 -0
  172. package/dist/ink/utils.d.ts +9 -0
  173. package/dist/ink/wrap-text.d.ts +3 -0
  174. package/dist/ink/write-synchronized.d.ts +4 -0
  175. package/dist/packem_chunks/devtools.js +27 -0
  176. package/dist/packem_shared/AccessibilityContext-BLelHhNU.js +7 -0
  177. package/dist/packem_shared/Alert-Dr3s_LD9.js +17 -0
  178. package/dist/packem_shared/AnimationContext-BcJg8Jr6.js +15 -0
  179. package/dist/packem_shared/AppContext-CP0U6H7O.js +11 -0
  180. package/dist/packem_shared/BackgroundContext-BAUaxfOb.js +5 -0
  181. package/dist/packem_shared/Badge-Dk7EGGM6.js +13 -0
  182. package/dist/packem_shared/BigText-CjMdY63X.js +24 -0
  183. package/dist/packem_shared/Box-D_pSJ9Jp.js +73 -0
  184. package/dist/packem_shared/COLOR_BLINDNESS_SIMULATION-BsMy5Ewl.js +81 -0
  185. package/dist/packem_shared/Cell-DCg1kJY-.js +48 -0
  186. package/dist/packem_shared/Code-DjQvPBD9.js +53 -0
  187. package/dist/packem_shared/ConfirmInput-85Y4kRQW.js +44 -0
  188. package/dist/packem_shared/ConsoleOverlay-DBNa4vtj.js +57 -0
  189. package/dist/packem_shared/ControlledScrollView-BlOaxcsN.js +286 -0
  190. package/dist/packem_shared/ControlledScrollView-DfAhcufF.js +5 -0
  191. package/dist/packem_shared/Cursor-DiW7YoSK.js +18 -0
  192. package/dist/packem_shared/CursorContext-JxRzlqAx.js +9 -0
  193. package/dist/packem_shared/DevTools-aMPIsaHx.js +61 -0
  194. package/dist/packem_shared/Dialog-DsSNAVgC.js +71 -0
  195. package/dist/packem_shared/DiffView-hqaw-2S6.js +329 -0
  196. package/dist/packem_shared/FilePicker-DNwFxRhq.js +254 -0
  197. package/dist/packem_shared/FocusContext-CWkYtgcm.js +26 -0
  198. package/dist/packem_shared/FocusContext-D5wFxSRz.js +153 -0
  199. package/dist/packem_shared/Fullscreen-DrElAE1o.js +11 -0
  200. package/dist/packem_shared/Gradient-Ql5P0GUd.js +136 -0
  201. package/dist/packem_shared/Help-6wanGG38.js +112 -0
  202. package/dist/packem_shared/IMECompositionBuffer-Dl3S0KnF.js +55 -0
  203. package/dist/packem_shared/InputParser-BKHpWfvN.js +156 -0
  204. package/dist/packem_shared/LayoutNode-Cjnsodiy.js +131 -0
  205. package/dist/packem_shared/Link-COcKYfGT.js +66 -0
  206. package/dist/packem_shared/Markdown-y1ISztof.js +212 -0
  207. package/dist/packem_shared/MouseProvider-Y9TSSEGl.js +136 -0
  208. package/dist/packem_shared/MultiSelect-ChoLUcDI.js +129 -0
  209. package/dist/packem_shared/NAMED_COLORS-a4QBvb5r.js +262 -0
  210. package/dist/packem_shared/Newline-DBtYEg8x.js +7 -0
  211. package/dist/packem_shared/OrderedList-Cp7pXr6m.js +26 -0
  212. package/dist/packem_shared/Paginator-D1AuD-kj.js +104 -0
  213. package/dist/packem_shared/ProgressBar-DOfpVagn.js +22 -0
  214. package/dist/packem_shared/Renderer-zZ5O3vxc.js +31 -0
  215. package/dist/packem_shared/ResizeObserverEntry-Br4seLeQ.js +102 -0
  216. package/dist/packem_shared/ScrollBar-EWAs2Uc7.js +106 -0
  217. package/dist/packem_shared/ScrollBarBox-DTNNlh7R.js +72 -0
  218. package/dist/packem_shared/ScrollList-DCeIFL8M.js +227 -0
  219. package/dist/packem_shared/ScrollView-v3MCNIyX.js +196 -0
  220. package/dist/packem_shared/SelectInput-BN2TMyxp.js +260 -0
  221. package/dist/packem_shared/SelectInputIndicator-DkRMoH_b.js +9 -0
  222. package/dist/packem_shared/SelectInputItem-BF9LQgKu.js +8 -0
  223. package/dist/packem_shared/Slider-BWD7xZX6.js +116 -0
  224. package/dist/packem_shared/Spacer-Bs4ER-HK.js +8 -0
  225. package/dist/packem_shared/Spinner-BuI-kN4p.js +1799 -0
  226. package/dist/packem_shared/Static-DpTd6Eed.js +22 -0
  227. package/dist/packem_shared/Static-xmD9giJj.js +18 -0
  228. package/dist/packem_shared/StaticRender-tYwH6QXl.js +33 -0
  229. package/dist/packem_shared/StatusMessage-BtSYxzwb.js +14 -0
  230. package/dist/packem_shared/StderrContext-Bj4Mf7v7.js +17 -0
  231. package/dist/packem_shared/StdinContext-Bq_GNJ3z.js +38 -0
  232. package/dist/packem_shared/StdoutContext-CgjWeCdO.js +17 -0
  233. package/dist/packem_shared/Stopwatch-DjtTCyHn.js +23 -0
  234. package/dist/packem_shared/Tab-C6r5q4hR.js +7 -0
  235. package/dist/packem_shared/Table-D-rSVlzb.js +82 -0
  236. package/dist/packem_shared/Tabs-hki-KRnx.js +153 -0
  237. package/dist/packem_shared/Text-DvAUdZcK.js +65 -0
  238. package/dist/packem_shared/TextInput-C79WEQ5U.js +137 -0
  239. package/dist/packem_shared/Textarea-Dj06R6Zd.js +272 -0
  240. package/dist/packem_shared/Timer-wi9zuh4n.js +22 -0
  241. package/dist/packem_shared/Transform-BHxY_dAM.js +14 -0
  242. package/dist/packem_shared/TreeNodeMap-CtJUvBnd.js +155 -0
  243. package/dist/packem_shared/TreeView-C2062dtj.js +148 -0
  244. package/dist/packem_shared/TuiApp-DfxOnXqi.js +120 -0
  245. package/dist/packem_shared/TuiContext-CqEjMyXd.js +415 -0
  246. package/dist/packem_shared/UnorderedList-DhnadWjX.js +33 -0
  247. package/dist/packem_shared/ansi-parser-0BdVTKho.js +41 -0
  248. package/dist/packem_shared/ansi-tokenizer-LHq2LUWA.js +307 -0
  249. package/dist/packem_shared/boxes-oi3WUbyR.js +92 -0
  250. package/dist/packem_shared/colorize-88_Vk8cn.js +48 -0
  251. package/dist/packem_shared/comparePoints-CGMDnd3_.js +287 -0
  252. package/dist/packem_shared/createInlineLoop-BxMmcq9D.js +93 -0
  253. package/dist/packem_shared/createLinkedScrollGroup-Djw4Ceo0.js +44 -0
  254. package/dist/packem_shared/dom-DvzhsAez.js +225 -0
  255. package/dist/packem_shared/format-time-BGmnDukX.js +12 -0
  256. package/dist/packem_shared/getPathToRoot-a1wbwxfL.js +4 -0
  257. package/dist/packem_shared/getScrollHeight-BubfU_df.js +63 -0
  258. package/dist/packem_shared/input-utils-ViAEXa0Z.js +19 -0
  259. package/dist/packem_shared/isIntersecting-fEXHJN5R.js +10 -0
  260. package/dist/packem_shared/isOsc52Supported-G0k4sXJx.js +36 -0
  261. package/dist/packem_shared/isTerminalPaletteQuerySupported-EeiwMKbr.js +93 -0
  262. package/dist/packem_shared/kittyFlags-bNNf_9kX.js +26 -0
  263. package/dist/packem_shared/measure-element-Reza_yfC.js +396 -0
  264. package/dist/packem_shared/measure-text-DItZYotK.js +1189 -0
  265. package/dist/packem_shared/measureElement-CTgFCmKd.js +4 -0
  266. package/dist/packem_shared/mouse-context-BUHWKEIe.js +6 -0
  267. package/dist/packem_shared/parseSgrMouse-BHVBPP9G.js +1 -0
  268. package/dist/packem_shared/processLayout-BQ9kXfd3.js +2 -0
  269. package/dist/packem_shared/reconciler-BXf6miSS.js +211 -0
  270. package/dist/packem_shared/reconciler-gfmqURLy.js +680 -0
  271. package/dist/packem_shared/render-BAwdjfki.js +2806 -0
  272. package/dist/packem_shared/render-Bpjhf0lD.js +195 -0
  273. package/dist/packem_shared/renderToString-Cfg55DRD.js +62 -0
  274. package/dist/packem_shared/renderToString-ClIaXgrC.js +86 -0
  275. package/dist/packem_shared/renderTreeToBuffer-D3mo7M7m.js +308 -0
  276. package/dist/packem_shared/renderer-B3wROkeg.js +1431 -0
  277. package/dist/packem_shared/setEnableStyledLineCache-BpskngSJ.js +2 -0
  278. package/dist/packem_shared/squashTextNodesWithMap-iqm6OMMT.js +100 -0
  279. package/dist/packem_shared/text-width-DhuarWcB.js +42 -0
  280. package/dist/packem_shared/token-to-elements-BRFl_rzw.js +249 -0
  281. package/dist/packem_shared/treeViewTheme-BpSw9TMf.js +52 -0
  282. package/dist/packem_shared/useAnimation-kj31sA-T.js +62 -0
  283. package/dist/packem_shared/useApp-DPQlRzi5.js +6 -0
  284. package/dist/packem_shared/useBoxMetrics-rBjKc-g4.js +54 -0
  285. package/dist/packem_shared/useClipboard-B_9-adw1.js +23 -0
  286. package/dist/packem_shared/useColorBlindness-D_sTIhcb.js +30 -0
  287. package/dist/packem_shared/useConsoleCapture-Dvt7G1W1.js +61 -0
  288. package/dist/packem_shared/useCursor-BIJzc8k9.js +19 -0
  289. package/dist/packem_shared/useElementDimensions-CAoKitVD.js +67 -0
  290. package/dist/packem_shared/useFocus-CNl5QHHf.js +37 -0
  291. package/dist/packem_shared/useFocusManager-BPYaUuKQ.js +16 -0
  292. package/dist/packem_shared/useInput-Cfp5zB2s.js +594 -0
  293. package/dist/packem_shared/useIsScreenReaderEnabled-CnGKCe0f.js +9 -0
  294. package/dist/packem_shared/useKeyBindings-B78l1E1n.js +66 -0
  295. package/dist/packem_shared/useMouseAction-C5gZ2nj7.js +29 -0
  296. package/dist/packem_shared/useMouseContext-D-rFy60Q.js +12 -0
  297. package/dist/packem_shared/useMousePosition-BHBJ-kBk.js +25 -0
  298. package/dist/packem_shared/useOnMouseClick--ZIyBOBO.js +35 -0
  299. package/dist/packem_shared/useOnMouseHover-26diuXUC.js +32 -0
  300. package/dist/packem_shared/useOnMouseState-NO_Kda_C.js +13 -0
  301. package/dist/packem_shared/usePaste-Ct8J4AGR.js +35 -0
  302. package/dist/packem_shared/useScrollAcceleration-R9LfrPVG.js +73 -0
  303. package/dist/packem_shared/useScrollInput-D3CpBq_a.js +72 -0
  304. package/dist/packem_shared/useStderr-CAOVUh4E.js +6 -0
  305. package/dist/packem_shared/useStdin-X-O0kd-n.js +7 -0
  306. package/dist/packem_shared/useStdout-DyF6DSH0.js +6 -0
  307. package/dist/packem_shared/useStopwatch-qC4Beai4.js +33 -0
  308. package/dist/packem_shared/useTerminalPalette-BaWO2c4Q.js +38 -0
  309. package/dist/packem_shared/useTextBuffer-C8fEe9Ly.js +398 -0
  310. package/dist/packem_shared/useTextSelection-mXtxgsPK.js +50 -0
  311. package/dist/packem_shared/useTimer-CPQ7j827.js +46 -0
  312. package/dist/packem_shared/useTreeView-BT57P3Kx.js +101 -0
  313. package/dist/packem_shared/useTreeViewState-BpS_KZ-K.js +502 -0
  314. package/dist/packem_shared/useWindowSize-ugEmGZJm.js +20 -0
  315. package/dist/packem_shared/utils-BgdlrbOH.js +140 -0
  316. package/dist/packem_shared/variant-config-DSZoX5TM.js +8 -0
  317. package/dist/packem_shared/wrapOrTruncateStyledLine-DN3Nogoc.js +147 -0
  318. package/dist/react/devtools.d.ts +27 -0
  319. package/dist/react/focus.d.ts +39 -0
  320. package/dist/react/hooks.d.ts +238 -0
  321. package/dist/react/index.d.ts +8 -0
  322. package/dist/react/index.js +9 -0
  323. package/dist/react/layout.d.ts +35 -0
  324. package/dist/react/react.d.ts +57 -0
  325. package/dist/react/reconciler.d.ts +4 -0
  326. package/dist/react/render-to-string.d.ts +21 -0
  327. package/dist/react/renderer.d.ts +2 -0
  328. package/dist/react/scene.d.ts +3 -0
  329. package/dist/react/static.d.ts +39 -0
  330. package/dist/react/styles.d.ts +83 -0
  331. package/dist/react/text-width.d.ts +20 -0
  332. package/dist/testing/index.d.ts +144 -0
  333. package/dist/testing/index.js +260 -0
  334. package/dist/testing/keys.d.ts +89 -0
  335. package/dist/testing/screen.d.ts +35 -0
  336. package/dist/testing/wait-for.d.ts +21 -0
  337. package/index.js +585 -0
  338. package/package.json +117 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,200 @@
1
+ ## @visulima/tui [1.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/tui@1.0.0-alpha.1...@visulima/tui@1.0.0-alpha.2) (2026-04-09)
2
+
3
+ ### Features
4
+
5
+ * **tui:** add controlled value prop to Tabs component ([df1158d](https://github.com/visulima/visulima/commit/df1158dc036f7159ef909f497453e2e5dd1058df))
6
+
7
+ ## @visulima/tui 1.0.0-alpha.1 (2026-04-08)
8
+
9
+ ### Features
10
+
11
+ * Add screen, keys, and waitFor helpers to TUI testing API ([#604](https://github.com/visulima/visulima/issues/604)) ([a98c6a1](https://github.com/visulima/visulima/commit/a98c6a18421ee4a1f23f57bbe3eb39b5ba6c6788))
12
+ * **string): native indent implementation; refactor(tui:** replace indent-string and is-fullwidth-code-point ([1368488](https://github.com/visulima/visulima/commit/136848850242ddeae91320dd21d6fdeb0760768c))
13
+ * **tui:** add @visulima/tui package with native Rust diff engine ([85fa477](https://github.com/visulima/visulima/commit/85fa477cf7060dcec51e252afee17e655fa53ace))
14
+ * **tui:** add Badge, StatusMessage, Alert, UnorderedList, and OrderedList components ([142fbae](https://github.com/visulima/visulima/commit/142fbae1700088f2bb676b594607afcc04157174))
15
+ * **tui:** add BigText component ported from ink-big-text ([6af0bf3](https://github.com/visulima/visulima/commit/6af0bf38d334734b0e2d4a45d1ce8c1e25cfeb45))
16
+ * **tui:** add border title support to Box component ([e9f35dc](https://github.com/visulima/visulima/commit/e9f35dc37c9ebb624ca370b54504695103fd8cbb))
17
+ * **tui:** add Code, Markdown, and DiffView components with syntax highlighting ([7bd6b51](https://github.com/visulima/visulima/commit/7bd6b517f490a31f052cc513e045cbf8b6bf2f6d))
18
+ * **tui:** add Cursor component with inline mode and fix incremental rendering ([9899187](https://github.com/visulima/visulima/commit/98991878cf3222e86e853dbb173b92f1902aa622))
19
+ * **tui:** add cursor-input example entry point ([5f4342c](https://github.com/visulima/visulima/commit/5f4342c18412006efc81165b74ebb2172b98cdb2))
20
+ * **tui:** add getBackgroundColorEscape helper and background cache test ([889e314](https://github.com/visulima/visulima/commit/889e3148c7f827302ee77f8f2bbb0e270be1d6c1))
21
+ * **tui:** add Gradient component ported from ink-gradient ([92e0113](https://github.com/visulima/visulima/commit/92e0113f67fe14e3a44929ffe5269ab5b091c3ff))
22
+ * **tui:** add Link component ported from ink-link, fix screen reader docs ([86f3f40](https://github.com/visulima/visulima/commit/86f3f400820b0996dca4c46fbb557688bc962fa7))
23
+ * **tui:** add mouse support for ink layer, ported from @zenobius/ink-mouse ([a25352d](https://github.com/visulima/visulima/commit/a25352d569afa181002ff5ee98dbdac03a9b5cec))
24
+ * **tui:** add native Rust renderer bridge, audit fixes, and selection pipeline ([afc8743](https://github.com/visulima/visulima/commit/afc8743cc5561d4948abaa02610f10557c327ab6))
25
+ * **tui:** add ProgressBar component ported from ink-progress-bar ([4c7a648](https://github.com/visulima/visulima/commit/4c7a6489c40f4901536782a1a6ad0d3cfb810b69))
26
+ * **tui:** add scroll acceleration, color blindness, terminal palette, and console overlay ([27d478d](https://github.com/visulima/visulima/commit/27d478dd8655d8943b03101aebf59a847dadd176))
27
+ * **tui:** add scrollbar prop to ScrollView and document scroll approaches ([eb78557](https://github.com/visulima/visulima/commit/eb785578ad4f1e7bb1648872e5f3ec1254219113))
28
+ * **tui:** add SelectInput component ported from ink-select-input ([0d2a7fc](https://github.com/visulima/visulima/commit/0d2a7fc06126a899884a556e1cd42693264fd3f4)), closes [#13](https://github.com/visulima/visulima/issues/13) [#13](https://github.com/visulima/visulima/issues/13) [#38](https://github.com/visulima/visulima/issues/38) [#39](https://github.com/visulima/visulima/issues/39) [#22](https://github.com/visulima/visulima/issues/22) [#22](https://github.com/visulima/visulima/issues/22) [#3](https://github.com/visulima/visulima/issues/3) [#4](https://github.com/visulima/visulima/issues/4)
29
+ * **tui:** add Slider, Textarea, clipboard, and text selection primitives ([eb0edfb](https://github.com/visulima/visulima/commit/eb0edfbe72d0f6b6bfc5b80104b6124d2688f9da))
30
+ * **tui:** add Spinner component, IME tests, and migrate deps to pnpm catalogs ([e117ba6](https://github.com/visulima/visulima/commit/e117ba6c93881d2bd1fb395d2c7405c09b90bcff))
31
+ * **tui:** add StyledChar text pipeline, Selection API, and examples ([b7d6fa8](https://github.com/visulima/visulima/commit/b7d6fa8e38a57648f3c57169c1286a9e8c9f341d))
32
+ * **tui:** add StyledLine columnar data structure and migrate Output grid ([b497554](https://github.com/visulima/visulima/commit/b49755438290600f3b483e10dfcff2ad991b849f))
33
+ * **tui:** add StyledLine.writeFrom() bulk write method ([8accc25](https://github.com/visulima/visulima/commit/8accc25505c82322aa0d31580048a38e4a4b9849))
34
+ * **tui:** add Tab and Tabs components ported from ink-tab ([5d4c439](https://github.com/visulima/visulima/commit/5d4c439dc26fabf8a68cc99d3ae795e035fdc37f))
35
+ * **tui:** add Table component ported from ink-table ([f1bb95c](https://github.com/visulima/visulima/commit/f1bb95c2dc5599f9f22eb585573aac52423fb50f))
36
+ * **tui:** add TextInput, ConfirmInput, and MultiSelect components ([00fa435](https://github.com/visulima/visulima/commit/00fa4356a9309e49ba752a9bdfb244241b16eecb))
37
+ * **tui:** add Timer, Stopwatch, Help, Paginator, FilePicker components and consolidate exports ([4b2a98f](https://github.com/visulima/visulima/commit/4b2a98f8b6a882763cae4980db402438785cd455))
38
+ * **tui:** add TreeView component with keyboard navigation and selection ([f3421e3](https://github.com/visulima/visulima/commit/f3421e36540f8c7a229e0176c683cb94c0d46e0f))
39
+ * **tui:** add useAnimation hook with shared-timer architecture ([129c036](https://github.com/visulima/visulima/commit/129c036cf1debc76650d97ad5da00ee5a03d5fc1))
40
+ * **tui:** add wrap-anywhere, wrap-preserve-words, and wrap-strict text wrap modes ([e850c12](https://github.com/visulima/visulima/commit/e850c12e866d11ab1a20ec39f7e0c2f624c87d41))
41
+ * **tui:** apply StaticRender render-function pattern from jacob314/ink[#99](https://github.com/visulima/visulima/issues/99) ([d8f03ce](https://github.com/visulima/visulima/commit/d8f03ce3f4b5be784b5993bd28458cd24a8e6830))
42
+ * **tui:** native StyledLine word-wrapping in text-wrap.ts ([187daf5](https://github.com/visulima/visulima/commit/187daf51a5d9ae0441968712661aaffe46cc4936))
43
+ * **tui:** Phase 6 — addRegionTree() and cachedRender activation ([6eedf67](https://github.com/visulima/visulima/commit/6eedf6798ce6b30c8766a6b545fe210933969961))
44
+ * **tui:** Phase 6 complete — Region-based Output with startChildRegion/endChildRegion ([f7d5e3c](https://github.com/visulima/visulima/commit/f7d5e3c59f029dd58cabee901c23b61c84721bbd))
45
+ * **tui:** Phase 6 scaffolding — Region type, setCachedRender, render-cached ([417ede8](https://github.com/visulima/visulima/commit/417ede80e707a925e34b6ff2c0830a6999d7d49e))
46
+ * **tui:** Phase 7 complete — Render caching with StaticRender component ([64cb21f](https://github.com/visulima/visulima/commit/64cb21fbae6f27ed5f4d1df1535ffdd3ee9bae65))
47
+ * **tui:** port scroll, sticky headers, and ResizeObserver from jacob314/ink ([7676c7c](https://github.com/visulima/visulima/commit/7676c7c2d446f3d288e8ab6515059fbd0e2b82e2))
48
+ * **tui:** re-export ink-scroll-view, ink-scroll-bar, and ink-scroll-list ([67e6cae](https://github.com/visulima/visulima/commit/67e6caef326ae0f7b9d540ab0b976ad3fa750545))
49
+ * **tui:** support nested StaticRender and cache trimmed length ([05ec31c](https://github.com/visulima/visulima/commit/05ec31c5b9b02e9cb5e658b0ec077a7c1feec66f))
50
+ * **vis:** add interactive progress bar and replace CI detection with is-in-ci ([255a1b1](https://github.com/visulima/visulima/commit/255a1b100d0dd4bc614094f292b61fc88bc4ad62))
51
+ * **vis:** expand devcontainer command with templates, validation, and config properties ([807e730](https://github.com/visulima/visulima/commit/807e730a43f0ea644d016b4f5506706972d2ff41))
52
+ * **vis:** replace inline TUI with full-screen Nx-style interactive task runner ([1409aad](https://github.com/visulima/visulima/commit/1409aad879c713051bba12298a3feb1d5ba852f2))
53
+ * **vis:** set terminal title to project name on startup ([204622a](https://github.com/visulima/visulima/commit/204622acd943ccad738b33f5e945190e38f5839f))
54
+
55
+ ### Bug Fixes
56
+
57
+ * **ci:** make native-binding tests work with and without compiled binary ([9a40fb4](https://github.com/visulima/visulima/commit/9a40fb40d5cba9fcd2e0176eea8b7bf8d9792c7d))
58
+ * remove deprecated baseUrl and downlevelIteration from tsconfigs ([a708366](https://github.com/visulima/visulima/commit/a708366b5c3bc73cfde480a712ed397bd921fb93))
59
+ * **task-runner,tui:** guard null native events and increase CI test timeout ([e76a791](https://github.com/visulima/visulima/commit/e76a791d90043537e08be0545f706e35acaa555d))
60
+ * **task-runner:** use JS fallback for onEvent streaming, fix StaticRender ref ([1a7165c](https://github.com/visulima/visulima/commit/1a7165cd9eb71472895cd08682983fa25703dc93))
61
+ * **tsconfig:** add node types and fix implicit any parameter ([1744d82](https://github.com/visulima/visulima/commit/1744d82a07fca03f2e6ff660b918e9b2623acf69))
62
+ * **tui:** add explicit return type to useStateRef for isolatedDeclarations ([cf17127](https://github.com/visulima/visulima/commit/cf1712704faea841b8503b02420bad42519badde))
63
+ * **tui:** add missing arrow in bench file arrow functions ([a1b524f](https://github.com/visulima/visulima/commit/a1b524ff44db381d573c3967d5b2e2674ae72564))
64
+ * **tui:** address code review findings ([d4e02c3](https://github.com/visulima/visulima/commit/d4e02c373736b77779021a394c41c573291c2abd))
65
+ * **tui:** address review findings across ported components ([cb727de](https://github.com/visulima/visulima/commit/cb727dec62ad67a16b279bdee96b6e8d48f11b62))
66
+ * **tui:** address SelectInput code review findings ([5a7cf1c](https://github.com/visulima/visulima/commit/5a7cf1ceb4080701d3576aa7b13060b176b380ee))
67
+ * **tui:** apply upstream ResizeObserver NaN guard and measurement extraction ([bcd4fd1](https://github.com/visulima/visulima/commit/bcd4fd16e7e0fda7d3de09657dfe76ce46fa370a))
68
+ * **tui:** benchmarks now use production dist/ build, not tsx source ([b84eb43](https://github.com/visulima/visulima/commit/b84eb436793a0e0e89d406215ef28a20885eb754))
69
+ * **tui:** calculate scroll state in renderToString and add Box scroll tests ([888f8e1](https://github.com/visulima/visulima/commit/888f8e10044073c3558bf4b947f341515c66fba2))
70
+ * **tui:** filter ctrl/meta chord characters in TextInput insertion ([3531b35](https://github.com/visulima/visulima/commit/3531b35dcc79e7a1954136b37f0a6220c8856eee))
71
+ * **tui:** fix alternate-screen tests in CI and increase retry count ([1330266](https://github.com/visulima/visulima/commit/13302665d2c0f1c7ade0f7c73d52db8ca206f384))
72
+ * **tui:** fix beforeExit handler and output clipping for wide content ([1752ed3](https://github.com/visulima/visulima/commit/1752ed3088af025d0a271a97ce1180882f8abd93))
73
+ * **tui:** fix cursor suspense test failing in CI ([14372c7](https://github.com/visulima/visulima/commit/14372c7b0a102eb20c8da4870b3c0bc899e2c08c))
74
+ * **tui:** fix flaky useInput discrete-priority test race condition ([4221e96](https://github.com/visulima/visulima/commit/4221e96dd33fe5a4e0c00939ed1a83853be499ec))
75
+ * **tui:** fix remaining test lint issues ([74c5ec0](https://github.com/visulima/visulima/commit/74c5ec0afb6a108c86fcb22b21bf4d3f8143cd90))
76
+ * **tui:** fix rendering bugs, add edge-case tests and layout snapshots ([ecaff75](https://github.com/visulima/visulima/commit/ecaff75ea6c7d2c41c8c84eeaa1870d1d6cf83d7)), closes [#RGB](https://github.com/visulima/visulima/issues/RGB)
77
+ * **tui:** fix Select All keybinding, scroll double-emit, and type safety issues ([234a164](https://github.com/visulima/visulima/commit/234a1641956693870de4d8e116bd3ed535fd59f4))
78
+ * **tui:** fix StaticRender isolatedDeclarations error ([5a156d1](https://github.com/visulima/visulima/commit/5a156d18e662e9a7123b27fb40f0847e67af91c0))
79
+ * **tui:** fix StyledLine serializer escape code ordering and dim/bold interaction ([434bb42](https://github.com/visulima/visulima/commit/434bb428f6cafa6cb6bf2781c255fd4f4c5c3a25))
80
+ * **tui:** fix test failures and add missing ime-utils module ([6d20130](https://github.com/visulima/visulima/commit/6d201304274c48380895706abfc2cef2e350dbdf))
81
+ * **tui:** fix test mock stdin setup and incorrect assertions ([4f6d877](https://github.com/visulima/visulima/commit/4f6d8774e37e3fc276f1163e00d464908115e9b3))
82
+ * **tui:** improve test reliability for PTY and timing-sensitive tests ([d66d68e](https://github.com/visulima/visulima/commit/d66d68eb48ecb93adb8c00b1e9247c2a474d3d76))
83
+ * **tui:** make interactive tests CI-safe by setting interactive: true ([477b003](https://github.com/visulima/visulima/commit/477b00334e6722e1f2de1bf8149d7000a0be93c3))
84
+ * **tui:** map 0x7F to backspace instead of delete in key parser ([bd111a5](https://github.com/visulima/visulima/commit/bd111a5884758317b4bd6ca6a7b87e2b182f2590)), closes [ink-rs/ink#634](https://github.com/ink-rs/ink/issues/634)
85
+ * **tui:** prevent interactive apps from exiting on beforeExit ([449e84c](https://github.com/visulima/visulima/commit/449e84ca739d9dd48728f40ad9514359306f9527))
86
+ * **tui:** properly fix eslint errors in code ([6fc67aa](https://github.com/visulima/visulima/commit/6fc67aa9d6381e7d8763e0dab8acec272f16f763))
87
+ * **tui:** remove 16-bit offset limit from StyledLine and guard negative border sizes ([526bd35](https://github.com/visulima/visulima/commit/526bd357b4ec2512271612bdcc0e24d5da9ebc7c))
88
+ * **tui:** resolve all StyledLine serializer edge cases ([445d798](https://github.com/visulima/visulima/commit/445d7983f791593507c70a70314a3ea658cb780e))
89
+ * **tui:** resolve all TypeScript and ESLint errors ([c623c2a](https://github.com/visulima/visulima/commit/c623c2a17842a7bea29c1cac4daa770cda87dc4a))
90
+ * **tui:** resolve isolatedDeclarations build errors and runtime bugs ([2c0f2bb](https://github.com/visulima/visulima/commit/2c0f2bba384e50ddca975ea5df83149585fbd016))
91
+ * **tui:** resolve remaining ESLint errors across all source files ([4f996cb](https://github.com/visulima/visulima/commit/4f996cb546f81d2925a71b5c04d0f85dbc5d3a9c))
92
+ * **tui:** revert write-path slice+combine optimization ([56a2e63](https://github.com/visulima/visulima/commit/56a2e63bce941d70823a105bbd7e30411d89461f))
93
+ * **tui:** skip flaky IME flush test on Linux PTY ([9dec064](https://github.com/visulima/visulima/commit/9dec064ac7795341abd0e34200791c2a60a56fb7))
94
+ * **vis,tui:** fix 10 code review issues across TUI components ([3410347](https://github.com/visulima/visulima/commit/34103473cb661cca4187661e59b396eecff1bdec))
95
+ * **vis,tui:** validate directory in detectPm and use useLayoutEffect in StaticRender ([de53e9b](https://github.com/visulima/visulima/commit/de53e9b7a944a3778f0d10f1daa1653a1063d9b3))
96
+
97
+ ### Performance Improvements
98
+
99
+ * **tui:** add setCharFast() to StyledLine and use in Output hot path ([61e507f](https://github.com/visulima/visulima/commit/61e507f3a5e3a0d852e4c18fc68d87d7aa8d5188))
100
+ * **tui:** batch StyledChar-to-StyledLine conversion in processStyledWriteOperation ([6035dbc](https://github.com/visulima/visulima/commit/6035dbc2e68085f4f2fa1022fd3a34fa0ce1a03d))
101
+ * **tui:** optimize ink components for re-render performance and fix pre-existing type errors ([8803a2f](https://github.com/visulima/visulima/commit/8803a2f4e3c705b93266d9814744c06412e6f1a2))
102
+ * **tui:** optimize render pipeline and defer kitty keyboard auto-detection ([946ab50](https://github.com/visulima/visulima/commit/946ab5058bfeb49daabe0f56fa1f9ffacf3c9a70))
103
+ * **tui:** Phase 4 — StyledLine fast path in text pipeline ([7c36e92](https://github.com/visulima/visulima/commit/7c36e929a5c0c5dd4526e6934df43cfe551a01ab))
104
+ * **tui:** port jacob314/ink micro-optimizations ([cc0131d](https://github.com/visulima/visulima/commit/cc0131d3efa832330e6eb129ec3d61e0d8be3887))
105
+ * **tui:** remove autoBind overhead and optimize App component ([b0c4f36](https://github.com/visulima/visulima/commit/b0c4f36e0f0ac44a11942973c6cca9c3e3faa72e))
106
+ * **tui:** remove autoBind overhead and optimize App component ([d2adf6b](https://github.com/visulima/visulima/commit/d2adf6bdac1a8f5316bdd0aa6b402ddd054f2146))
107
+ * **tui:** remove callBeforeRender tree walk from hot path ([0c18e06](https://github.com/visulima/visulima/commit/0c18e0681091ec13fa904bdafe6aba8c6ca6483f))
108
+ * **tui:** remove performance.now() from render hot path ([acb4150](https://github.com/visulima/visulima/commit/acb4150c117677c9634bda7e482da126ed3ec73d))
109
+ * **tui:** revert ref-caching in App back to ink's direct dependency pattern ([073f3ef](https://github.com/visulima/visulima/commit/073f3efffb63f52c4b53b92e57977e87dcbb3ea9))
110
+ * **tui:** rewrite wrapStyledLine with index-based tracking ([8de898e](https://github.com/visulima/visulima/commit/8de898e9ca429a15e258137d791391100613006e))
111
+ * **tui:** simplify and optimize hot path after code review ([b937d4e](https://github.com/visulima/visulima/commit/b937d4efdca0d7691ccacc59afbf67c21d255cb5))
112
+ * **tui:** span-walk serializer with getTextRange for O(spans) output ([d5c5e0d](https://github.com/visulima/visulima/commit/d5c5e0d80733edd1a7a5f07432860e390d8d690f))
113
+ * **vis:** wrap immutable TUI components with StaticRender ([00e47e9](https://github.com/visulima/visulima/commit/00e47e9f7a6c562570e0b090b7940389451aa1ef))
114
+
115
+ ### Documentation
116
+
117
+ * **tui:** add ink-ui component examples, media, and examples.mdx updates ([926ca3e](https://github.com/visulima/visulima/commit/926ca3e5b8ce0d0907f0ace22f93e184d6ef9993))
118
+ * **tui:** add performance visuals and media from ratatat ([6868e6c](https://github.com/visulima/visulima/commit/6868e6c55b03cad968efd9d67b88b8fc8a009d4e))
119
+ * **tui:** add TODO for StyledLine-native measureTextNode ([e5d0407](https://github.com/visulima/visulima/commit/e5d04076cac7244538f88f84ac196e0d575bdf7a))
120
+ * **tui:** all 7 phases complete ([a463916](https://github.com/visulima/visulima/commit/a4639169b7efb199d8b4685ba5a3c6ea907c2641))
121
+ * **tui:** document border background color support and fix table formatting ([a12cb57](https://github.com/visulima/visulima/commit/a12cb5786fb5885ea7a747fc254528f08a6cbb93))
122
+ * **tui:** document Cursor component and useCursor hook ([67606c5](https://github.com/visulima/visulima/commit/67606c5fc93c15f0c20c1c6290d3dfa51f566d81))
123
+ * **tui:** restructure README, link to visulima.com for full docs ([00e0de1](https://github.com/visulima/visulima/commit/00e0de199b0f6d496ccd3db27d12d839bfa361db))
124
+ * **tui:** update LICENSE.md with complete attribution ([b89b9bd](https://github.com/visulima/visulima/commit/b89b9bd368a7c52458a584787bb4b5bfadc342b3))
125
+ * **tui:** update migration plan — Phase 6 scaffolding done ([8b7ca9c](https://github.com/visulima/visulima/commit/8b7ca9c05abf9d3a5836856844b1de3eaf50d612))
126
+ * **tui:** update StyledLine migration plan with completion status ([db6b452](https://github.com/visulima/visulima/commit/db6b452622f1bc8e97a1c4878732652ead1f5106))
127
+
128
+ ### Styles
129
+
130
+ * cs fixs ([0666662](https://github.com/visulima/visulima/commit/066666293c50cde41c796dc38b4b62c48531a3c0))
131
+
132
+ ### Miscellaneous Chores
133
+
134
+ * added og images ([02d9d1e](https://github.com/visulima/visulima/commit/02d9d1e47be3ce75679ea89e857dc4e4bfe4946b))
135
+ * clean up ([c9f395a](https://github.com/visulima/visulima/commit/c9f395a1c80877f5dfa40eefc2fda58837244668))
136
+ * path update ([42f4097](https://github.com/visulima/visulima/commit/42f4097b9287be1e70dbfb348626ec21f599fd70))
137
+ * remove not needed file ([1944cee](https://github.com/visulima/visulima/commit/1944cee9e6b8083acc728ed69ee2ca2b2a240bc3))
138
+ * **tui:** apply linter auto-fixes and formatting ([18b2361](https://github.com/visulima/visulima/commit/18b23617980b889c9bc2568c95de8d863411805d))
139
+ * **tui:** apply prettier formatting ([586f156](https://github.com/visulima/visulima/commit/586f1564befa31ce55948836bf9cf504bbfb58a0))
140
+ * **tui:** clean up ink.tsx — document React.memo limitation ([55bf3f0](https://github.com/visulima/visulima/commit/55bf3f09e21730e0ccd0c9825edb8c0a8b333880))
141
+ * **tui:** configure eslint defaultProject for tsconfig resolution ([a5996e7](https://github.com/visulima/visulima/commit/a5996e7cdbfd9d67b9a56baac1cbb7fb62eeb66a))
142
+ * **tui:** configure eslint with typescript-aware linting ([dfeacdb](https://github.com/visulima/visulima/commit/dfeacdb5f546174c419dbad77438ca6be6135005))
143
+ * **tui:** expand inline if-return to block syntax ([a89cda6](https://github.com/visulima/visulima/commit/a89cda6171bd53e99bd623e96b56d901d75dae3c))
144
+ * **tui:** expand inline if-return to block syntax ([20f1494](https://github.com/visulima/visulima/commit/20f1494b88a22f519cc9d09e955b463dd5dec0cc))
145
+ * **tui:** fix all remaining eslint code errors (709 → 218) ([84ad020](https://github.com/visulima/visulima/commit/84ad02027383fc90c10074dbcc8a9b57fe2d64cb))
146
+ * **tui:** fix eslint errors and add eslint-disable directives ([d72a525](https://github.com/visulima/visulima/commit/d72a525114502053f059c614c3e82da3c0abd2c0))
147
+ * **tui:** migrate .prettierrc.cjs to prettier.config.js ([bbcc819](https://github.com/visulima/visulima/commit/bbcc8193a672a2df80ba3bf5cedadf716db04636))
148
+ * **tui:** move scroll media to docs/media, update lockfile and snapshots ([2b30bde](https://github.com/visulima/visulima/commit/2b30bde2e126febdc669fd5dc6d98dbddc6aef99))
149
+ * **tui:** remove stale migration comments from styled-line-bridge ([0f371c2](https://github.com/visulima/visulima/commit/0f371c2b97e541e9ef2f18c37f95c5af934a7f16))
150
+ * **tui:** resolve TODOs and update migration plan ([5795d2b](https://github.com/visulima/visulima/commit/5795d2ba7038c307ef01a834ca636a09e9cba9b6))
151
+ * **tui:** update bundled dependency license formatting ([78637fd](https://github.com/visulima/visulima/commit/78637fd2dd415cc34283f6eab8efa7836f920149))
152
+ * update examples ([431fadc](https://github.com/visulima/visulima/commit/431fadc784b9099aa019f15da0dc564eb34f31b4))
153
+ * update examples ([51c37c2](https://github.com/visulima/visulima/commit/51c37c2d14e864cb91cf82c6cc59df55ef7c9191))
154
+ * update license ([ee53d3f](https://github.com/visulima/visulima/commit/ee53d3f42d0952a793acac0bbe933cc8a4212e05))
155
+
156
+ ### Code Refactoring
157
+
158
+ * **tui:** apply linting and formatting fixes ([db8f922](https://github.com/visulima/visulima/commit/db8f9226b35a629ef403ac9c0800469bd08a1d08))
159
+ * **tui:** apply Vercel React best practices to App component ([f36f02b](https://github.com/visulima/visulima/commit/f36f02b3e0b8b2b8e3c65e661cfb0ddb1a218e6b))
160
+ * **tui:** convert Output from operation queue to immediate writes ([cce0a90](https://github.com/visulima/visulima/commit/cce0a90b61b14e43f42cc628340462e107ac7ff4))
161
+ * **tui:** extract shared color-utils and unify span mutation ([291a81f](https://github.com/visulima/visulima/commit/291a81fcfb0c14e5c2ee394b25495c6b0a8f2726))
162
+ * **tui:** fix additional test lint issues from background agent ([b733b5b](https://github.com/visulima/visulima/commit/b733b5b3449038e5a338f7ddee3277fa6a03b4f0))
163
+ * **tui:** fix eslint errors in source files ([69daaa6](https://github.com/visulima/visulima/commit/69daaa66ff53893ac21ca5bfac3f77cd286d173c))
164
+ * **tui:** fix eslint errors in test and example files ([11d07ce](https://github.com/visulima/visulima/commit/11d07ce4ff5fd99dd5e3bdd1ea749e372e126464))
165
+ * **tui:** fix lint issues in fixtures, tests, and source files ([1935312](https://github.com/visulima/visulima/commit/19353126a86ed8f48e9275c5c69dd2a5b3b31c73))
166
+ * **tui:** merge examples-raw/ into examples/raw/ ([180ea9c](https://github.com/visulima/visulima/commit/180ea9c76e2919286c5c8138461aaead29e44d58))
167
+ * **tui:** port scroll components, remove ink peer dep ([d8acb7c](https://github.com/visulima/visulima/commit/d8acb7ceb5725ccff96ce20afef928209698db5f))
168
+ * **tui:** remove @alcalzone/ansi-tokenize dependency ([dab87d8](https://github.com/visulima/visulima/commit/dab87d8c4d0b2168d0028f8065b1bce5af703a18))
169
+ * **tui:** replace chalk and boxen with visulima packages ([a5fb042](https://github.com/visulima/visulima/commit/a5fb0421333840f6e1a823b3d708a2741a059845))
170
+ * **tui:** replace external deps with visulima packages ([5a6ecf8](https://github.com/visulima/visulima/commit/5a6ecf8a1c63d44c59756e9ba8053c85de68a2a1))
171
+ * **tui:** revert Output from region stack to flat clip model ([d2b13aa](https://github.com/visulima/visulima/commit/d2b13aa3ef53bdc75b9cca4cda780ff149aa71be))
172
+ * **tui:** simplify code, add missing tests, improve type safety ([d1035ce](https://github.com/visulima/visulima/commit/d1035ceea25d0778be576bf0c8dc06b26b44a0ad))
173
+ * **vis:** unify TUI style across run and update commands ([2c85520](https://github.com/visulima/visulima/commit/2c855204a1972596e079a42e12b3a79aba6c657c))
174
+
175
+ ### Tests
176
+
177
+ * adjusted test ([7b734cb](https://github.com/visulima/visulima/commit/7b734cbaf684acb38332adf7d6e6ed5cb585a5fb))
178
+ * **tui, find-ai-runner:** fix CI-flaky tests with polling and retry ([8f574f5](https://github.com/visulima/visulima/commit/8f574f5cac421fdd7090eb059d4c1d82af3c1f6a))
179
+ * **tui:** add @jrichman/ink render benchmark comparison ([0cd8576](https://github.com/visulima/visulima/commit/0cd85769ce51490a4bfe1b2cca39226009b3512e))
180
+ * **tui:** add benchmarks for new components and utilities ([dac6310](https://github.com/visulima/visulima/commit/dac63103fe08fc23542ab0331e895c3062a8b96a))
181
+ * **tui:** add border background color example and tests ([6b6ee05](https://github.com/visulima/visulima/commit/6b6ee052c1de8e1fdb3522141bd7e7cf6c088eac))
182
+ * **tui:** add CJK text truncation tests from ink upstream ([#598](https://github.com/visulima/visulima/issues/598)) ([e8e5002](https://github.com/visulima/visulima/commit/e8e5002b278dc337b280ba8f470c0e4c6223a822))
183
+ * **tui:** add ink v6.8.0 test suite converted from Ava to Vitest ([60c9679](https://github.com/visulima/visulima/commit/60c9679fd7e326203f94857cb8a97cb54a460725))
184
+ * **tui:** add native-binding test for CI build-native workflow ([b3bffc4](https://github.com/visulima/visulima/commit/b3bffc4f0a5892e2219dc9fe7e395ac761249640))
185
+ * **tui:** add scroll component tests and docs with demo SVGs ([2a86ee1](https://github.com/visulima/visulima/commit/2a86ee15a8498e8032ccb187fa18bb654afa547b))
186
+ * **tui:** replace expect.hasAssertions with exact expect.assertions counts ([d3fe122](https://github.com/visulima/visulima/commit/d3fe1228e40ee7d030edef7168c49b50c1d780fd))
187
+
188
+ ### Build System
189
+
190
+ * regenerate NAPI-RS bindings as ESM ([f202caf](https://github.com/visulima/visulima/commit/f202caf3dc383a2ec24815c4935d8d68c29f33d0))
191
+ * switch NAPI-RS native builds to ESM output ([3d7cd61](https://github.com/visulima/visulima/commit/3d7cd615ad830392005915735c11771e0247ef3f))
192
+
193
+
194
+ ### Dependencies
195
+
196
+ * **@visulima/ansi:** upgraded to 4.0.0-alpha.8
197
+ * **@visulima/colorize:** upgraded to 2.0.0-alpha.8
198
+ * **@visulima/string:** upgraded to 3.0.0-alpha.9
199
+ * **@visulima/tabular:** upgraded to 4.0.0-alpha.9
200
+ * **@visulima/boxen:** upgraded to 3.0.0-alpha.9
package/LICENSE.md ADDED
@@ -0,0 +1,303 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 visulima
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ MIT License
26
+
27
+ Copyright (c) Vadym Demedes <vadimdemedes@hey.com> (https://github.com/vadimdemedes)
28
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
29
+
30
+ The BigText component is ported from ink-big-text (https://github.com/sindresorhus/ink-big-text)
31
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
32
+
33
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
34
+
35
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38
+
39
+ ---
40
+
41
+ The ScrollView and ControlledScrollView components are ported from ink-scroll-view (https://github.com/ByteLandTechnology/ink-scroll-view)
42
+ The ScrollBar and ScrollBarBox components are ported from @byteland/ink-scroll-bar (https://github.com/ByteLandTechnology/ink-scroll-bar)
43
+ The ScrollList component is ported from ink-scroll-list (https://github.com/ByteLandTechnology/ink-scroll-list)
44
+ Copyright (c) 2025 ByteLand Technology Limited
45
+
46
+ ---
47
+
48
+ The following components are ported from jacob314/ink (https://github.com/jacob314/ink):
49
+ CSS-level scroll system (overflow:'scroll', scrollbar rendering, scroll calculations),
50
+ ResizeObserver API, DataLimitedLruMap, enhanced measureElement APIs, StyledLine columnar
51
+ data structure, style flags, styled-line serializer, Region type, render caching
52
+ (setCachedRender, StaticRender), reconciler cleanup (cleanupNodeTree), text wrapping
53
+ (wrapStyledLine), text measurement, selection handling, render-text-node pipeline,
54
+ layout utilities, and squash-text-nodes.
55
+ Copyright 2025 Google LLC
56
+ Licensed under the Apache License, Version 2.0
57
+
58
+ ---
59
+
60
+ The mouse event system (MouseProvider, useMousePosition, useMouse, useMouseAction,
61
+ useOnMouseState, useOnMouseHover, useOnMouseClick, useElementPosition, Fullscreen,
62
+ isIntersecting, ANSI mouse parser, mouse constants) is ported from
63
+ ink-mouse (https://github.com/nickhudkins/ink-mouse)
64
+ Copyright Zeno Jiricek
65
+ Licensed under the Apache License, Version 2.0
66
+
67
+ <!-- DEPENDENCIES -->
68
+
69
+ # Licenses of bundled dependencies
70
+ The published @visulima/tui artifact additionally contains code with the following licenses:
71
+ ISC, MIT
72
+
73
+ # Bundled dependencies:
74
+ ## cli-boxes
75
+ License: MIT
76
+ By: Sindre Sorhus
77
+ Repository: sindresorhus/cli-boxes
78
+
79
+ > MIT License
80
+ >
81
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
82
+ >
83
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
84
+ >
85
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
86
+ >
87
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
88
+
89
+ ---------------------------------------
90
+
91
+ ## cli-spinners
92
+ License: MIT
93
+ By: Sindre Sorhus
94
+ Repository: sindresorhus/cli-spinners
95
+
96
+ > MIT License
97
+ >
98
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
99
+ >
100
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
101
+ >
102
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
103
+ >
104
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
105
+
106
+ ---------------------------------------
107
+
108
+ ## code-excerpt
109
+ License: MIT
110
+ By: vdemedes
111
+ Repository: vadimdemedes/code-excerpt
112
+
113
+ > The MIT License (MIT)
114
+ >
115
+ > Copyright (c) Vadim Demedes <vdemedes@gmail.com> (github.com/vadimdemedes)
116
+ >
117
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
118
+ > of this software and associated documentation files (the "Software"), to deal
119
+ > in the Software without restriction, including without limitation the rights
120
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
121
+ > copies of the Software, and to permit persons to whom the Software is
122
+ > furnished to do so, subject to the following conditions:
123
+ >
124
+ > The above copyright notice and this permission notice shall be included in
125
+ > all copies or substantial portions of the Software.
126
+ >
127
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
128
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
129
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
130
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
131
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
132
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
133
+ > THE SOFTWARE.
134
+
135
+ ---------------------------------------
136
+
137
+ ## convert-to-spaces
138
+ License: MIT
139
+ By: Vadim Demedes
140
+ Repository: vadimdemedes/convert-to-spaces
141
+
142
+ > The MIT License (MIT)
143
+ >
144
+ > Copyright (c) Vadim Demedes <vdemedes@gmail.com> (https://vadimdemedes.com)
145
+ >
146
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
147
+ > of this software and associated documentation files (the "Software"), to deal
148
+ > in the Software without restriction, including without limitation the rights
149
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
150
+ > copies of the Software, and to permit persons to whom the Software is
151
+ > furnished to do so, subject to the following conditions:
152
+ >
153
+ > The above copyright notice and this permission notice shall be included in
154
+ > all copies or substantial portions of the Software.
155
+ >
156
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
157
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
158
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
159
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
160
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
161
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
162
+ > THE SOFTWARE.
163
+
164
+ ---------------------------------------
165
+
166
+ ## es-toolkit
167
+ License: MIT
168
+ Repository: https://github.com/toss/es-toolkit.git
169
+
170
+ > MIT License
171
+ >
172
+ > Copyright (c) 2024 Viva Republica, Inc
173
+ >
174
+ > Copyright OpenJS Foundation and other contributors
175
+ >
176
+ > Parts of the test suite and compatibility layer in `es-toolkit/compat` are derived from Lodash (https://github.com/lodash/lodash) by the OpenJS Foundation (https://openjsf.org/) and Underscore.js by Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors (http://underscorejs.org/)
177
+ >
178
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
179
+ > of this software and associated documentation files (the "Software"), to deal
180
+ > in the Software without restriction, including without limitation the rights
181
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
182
+ > copies of the Software, and to permit persons to whom the Software is
183
+ > furnished to do so, subject to the following conditions:
184
+ >
185
+ > The above copyright notice and this permission notice shall be included in all
186
+ > copies or substantial portions of the Software.
187
+ >
188
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
189
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
190
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
191
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
192
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
193
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
194
+ > SOFTWARE.
195
+
196
+ ---------------------------------------
197
+
198
+ ## escape-string-regexp
199
+ License: MIT
200
+ By: Sindre Sorhus, Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com), Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)
201
+ Repository: sindresorhus/escape-string-regexp
202
+
203
+ > MIT License
204
+ >
205
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
206
+ >
207
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
208
+ >
209
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
210
+ >
211
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
212
+
213
+ ---------------------------------------
214
+
215
+ ## is-in-ci
216
+ License: MIT
217
+ By: Sindre Sorhus
218
+ Repository: sindresorhus/is-in-ci
219
+
220
+ > MIT License
221
+ >
222
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
223
+ >
224
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
225
+ >
226
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
227
+ >
228
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
229
+
230
+ ---------------------------------------
231
+
232
+ ## signal-exit
233
+ License: ISC
234
+ By: Ben Coe
235
+ Repository: https://github.com/tapjs/signal-exit.git
236
+
237
+ > The ISC License
238
+ >
239
+ > Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors
240
+ >
241
+ > Permission to use, copy, modify, and/or distribute this software
242
+ > for any purpose with or without fee is hereby granted, provided
243
+ > that the above copyright notice and this permission notice
244
+ > appear in all copies.
245
+ >
246
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
247
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
248
+ > OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
249
+ > LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
250
+ > OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
251
+ > WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
252
+ > ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
253
+
254
+ ---------------------------------------
255
+
256
+ ## stack-utils
257
+ License: MIT
258
+ By: James Talmage
259
+ Repository: tapjs/stack-utils
260
+
261
+ > The MIT License (MIT)
262
+ >
263
+ > Copyright (c) 2016-2022 Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
264
+ >
265
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
266
+ > of this software and associated documentation files (the "Software"), to deal
267
+ > in the Software without restriction, including without limitation the rights
268
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
269
+ > copies of the Software, and to permit persons to whom the Software is
270
+ > furnished to do so, subject to the following conditions:
271
+ >
272
+ > The above copyright notice and this permission notice shall be included in
273
+ > all copies or substantial portions of the Software.
274
+ >
275
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
276
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
277
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
278
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
279
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
280
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
281
+ > THE SOFTWARE.
282
+
283
+ ---------------------------------------
284
+
285
+ ## terminal-size
286
+ License: MIT
287
+ By: Sindre Sorhus
288
+ Repository: sindresorhus/terminal-size
289
+
290
+ > MIT License
291
+ >
292
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
293
+ >
294
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
295
+ >
296
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
297
+ >
298
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
299
+
300
+ <!-- /DEPENDENCIES -->
301
+
302
+ <!-- TYPE_DEPENDENCIES -->
303
+ <!-- /TYPE_DEPENDENCIES -->