@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.
- package/CHANGELOG.md +200 -0
- package/LICENSE.md +303 -0
- package/README.md +173 -29
- package/dist/core/app.d.ts +50 -0
- package/dist/core/cell.d.ts +33 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/index.js +5 -0
- package/dist/core/inline.d.ts +22 -0
- package/dist/core/input.d.ts +18 -0
- package/dist/core/native-binding.d.ts +22 -0
- package/dist/ink/ansi-to-cell.d.ts +5 -0
- package/dist/ink/ansi-tokenizer.d.ts +38 -0
- package/dist/ink/clipboard.d.ts +29 -0
- package/dist/ink/color-matrix.d.ts +49 -0
- package/dist/ink/color-utils.d.ts +30 -0
- package/dist/ink/colorize.d.ts +4 -0
- package/dist/ink/components/AccessibilityContext.d.ts +4 -0
- package/dist/ink/components/Alert.d.ts +30 -0
- package/dist/ink/components/AnimationContext.d.ts +10 -0
- package/dist/ink/components/App.d.ts +19 -0
- package/dist/ink/components/AppContext.d.ts +38 -0
- package/dist/ink/components/BackgroundContext.d.ts +5 -0
- package/dist/ink/components/Badge.d.ts +27 -0
- package/dist/ink/components/BigText.d.ts +71 -0
- package/dist/ink/components/Box.d.ts +58 -0
- package/dist/ink/components/Code.d.ts +46 -0
- package/dist/ink/components/ConfirmInput.d.ts +40 -0
- package/dist/ink/components/ConsoleOverlay.d.ts +52 -0
- package/dist/ink/components/Cursor.d.ts +43 -0
- package/dist/ink/components/CursorContext.d.ts +12 -0
- package/dist/ink/components/Dialog.d.ts +93 -0
- package/dist/ink/components/DiffView.d.ts +71 -0
- package/dist/ink/components/ErrorBoundary.d.ts +17 -0
- package/dist/ink/components/ErrorOverview.d.ts +6 -0
- package/dist/ink/components/FocusContext.d.ts +17 -0
- package/dist/ink/components/Gradient.d.ts +38 -0
- package/dist/ink/components/Help.d.ts +49 -0
- package/dist/ink/components/Link.d.ts +34 -0
- package/dist/ink/components/Markdown.d.ts +34 -0
- package/dist/ink/components/MultiSelect.d.ts +63 -0
- package/dist/ink/components/Newline.d.ts +12 -0
- package/dist/ink/components/OrderedList.d.ts +30 -0
- package/dist/ink/components/Paginator.d.ts +75 -0
- package/dist/ink/components/ProgressBar.d.ts +51 -0
- package/dist/ink/components/SelectInput.d.ts +96 -0
- package/dist/ink/components/SelectInputIndicator.d.ts +36 -0
- package/dist/ink/components/SelectInputItem.d.ts +43 -0
- package/dist/ink/components/Slider.d.ts +92 -0
- package/dist/ink/components/Spacer.d.ts +7 -0
- package/dist/ink/components/Spinner.d.ts +42 -0
- package/dist/ink/components/Static.d.ts +24 -0
- package/dist/ink/components/StaticRender.d.ts +28 -0
- package/dist/ink/components/StatusMessage.d.ts +26 -0
- package/dist/ink/components/StderrContext.d.ts +16 -0
- package/dist/ink/components/StdinContext.d.ts +29 -0
- package/dist/ink/components/StdoutContext.d.ts +16 -0
- package/dist/ink/components/Stopwatch.d.ts +44 -0
- package/dist/ink/components/Tab.d.ts +25 -0
- package/dist/ink/components/Table.d.ts +80 -0
- package/dist/ink/components/Tabs.d.ts +104 -0
- package/dist/ink/components/Text.d.ts +63 -0
- package/dist/ink/components/TextInput.d.ts +48 -0
- package/dist/ink/components/Textarea.d.ts +62 -0
- package/dist/ink/components/Timer.d.ts +52 -0
- package/dist/ink/components/Transform.d.ts +16 -0
- package/dist/ink/components/UnorderedList.d.ts +35 -0
- package/dist/ink/components/file-picker/FilePicker.d.ts +75 -0
- package/dist/ink/components/file-picker/index.d.ts +3 -0
- package/dist/ink/components/file-picker/types.d.ts +38 -0
- package/dist/ink/components/file-picker/use-file-system.d.ts +16 -0
- package/dist/ink/components/scroll/ControlledScrollView.d.ts +43 -0
- package/dist/ink/components/scroll/ScrollBar.d.ts +20 -0
- package/dist/ink/components/scroll/ScrollBarBox.d.ts +15 -0
- package/dist/ink/components/scroll/ScrollList.d.ts +12 -0
- package/dist/ink/components/scroll/ScrollView.d.ts +98 -0
- package/dist/ink/components/scroll/index.d.ts +10 -0
- package/dist/ink/components/scroll/use-state-ref.d.ts +8 -0
- package/dist/ink/components/tree-view/TreeView.d.ts +89 -0
- package/dist/ink/components/tree-view/TreeViewNode.d.ts +29 -0
- package/dist/ink/components/tree-view/index.d.ts +11 -0
- package/dist/ink/components/tree-view/theme.d.ts +24 -0
- package/dist/ink/components/tree-view/tree-node-map.d.ts +72 -0
- package/dist/ink/components/tree-view/types.d.ts +55 -0
- package/dist/ink/components/tree-view/use-tree-view-state.d.ts +135 -0
- package/dist/ink/components/tree-view/use-tree-view.d.ts +26 -0
- package/dist/ink/components/variant-config.d.ts +10 -0
- package/dist/ink/cursor-helpers.d.ts +38 -0
- package/dist/ink/data-limited-lru-map.d.ts +21 -0
- package/dist/ink/devtools-window-polyfill.d.ts +1 -0
- package/dist/ink/devtools.d.ts +1 -0
- package/dist/ink/dom.d.ts +213 -0
- package/dist/ink/get-max-width.d.ts +3 -0
- package/dist/ink/highlighter.d.ts +28 -0
- package/dist/ink/hooks/use-animation.d.ts +43 -0
- package/dist/ink/hooks/use-app.d.ts +6 -0
- package/dist/ink/hooks/use-box-metrics.d.ts +58 -0
- package/dist/ink/hooks/use-clipboard.d.ts +29 -0
- package/dist/ink/hooks/use-color-blindness.d.ts +33 -0
- package/dist/ink/hooks/use-console-capture.d.ts +43 -0
- package/dist/ink/hooks/use-cursor.d.ts +12 -0
- package/dist/ink/hooks/use-focus-manager.d.ts +42 -0
- package/dist/ink/hooks/use-focus.d.ts +30 -0
- package/dist/ink/hooks/use-input.d.ts +149 -0
- package/dist/ink/hooks/use-is-screen-reader-enabled.d.ts +6 -0
- package/dist/ink/hooks/use-key-bindings.d.ts +61 -0
- package/dist/ink/hooks/use-linked-scroll.d.ts +41 -0
- package/dist/ink/hooks/use-paste.d.ts +44 -0
- package/dist/ink/hooks/use-scroll-acceleration.d.ts +47 -0
- package/dist/ink/hooks/use-scroll-input.d.ts +34 -0
- package/dist/ink/hooks/use-stderr.d.ts +6 -0
- package/dist/ink/hooks/use-stdin.d.ts +7 -0
- package/dist/ink/hooks/use-stdout.d.ts +6 -0
- package/dist/ink/hooks/use-stopwatch.d.ts +40 -0
- package/dist/ink/hooks/use-terminal-palette.d.ts +19 -0
- package/dist/ink/hooks/use-text-buffer.d.ts +42 -0
- package/dist/ink/hooks/use-text-selection.d.ts +45 -0
- package/dist/ink/hooks/use-timer.d.ts +49 -0
- package/dist/ink/hooks/use-window-size.d.ts +18 -0
- package/dist/ink/ime-utils.d.ts +25 -0
- package/dist/ink/index.d.ts +159 -0
- package/dist/ink/index.js +100 -0
- package/dist/ink/ink.d.ts +189 -0
- package/dist/ink/input-parser.d.ts +10 -0
- package/dist/ink/input-utils.d.ts +16 -0
- package/dist/ink/instances.d.ts +3 -0
- package/dist/ink/kitty-keyboard.d.ts +23 -0
- package/dist/ink/layout.d.ts +26 -0
- package/dist/ink/log-update-native.d.ts +14 -0
- package/dist/ink/log-update.d.ts +21 -0
- package/dist/ink/measure-element.d.ts +147 -0
- package/dist/ink/measure-text.d.ts +56 -0
- package/dist/ink/mouse/Fullscreen.d.ts +8 -0
- package/dist/ink/mouse/MouseProvider.d.ts +11 -0
- package/dist/ink/mouse/ansi-parser.d.ts +37 -0
- package/dist/ink/mouse/constants.d.ts +59 -0
- package/dist/ink/mouse/index.d.ts +20 -0
- package/dist/ink/mouse/is-intersecting.d.ts +18 -0
- package/dist/ink/mouse/mouse-context.d.ts +36 -0
- package/dist/ink/mouse/use-element-position.d.ts +29 -0
- package/dist/ink/mouse/use-mouse-action.d.ts +7 -0
- package/dist/ink/mouse/use-mouse-position.d.ts +7 -0
- package/dist/ink/mouse/use-mouse.d.ts +7 -0
- package/dist/ink/mouse/use-on-mouse-click.d.ts +14 -0
- package/dist/ink/mouse/use-on-mouse-hover.d.ts +8 -0
- package/dist/ink/mouse/use-on-mouse-state.d.ts +11 -0
- package/dist/ink/output.d.ts +74 -0
- package/dist/ink/parse-keypress.d.ts +22 -0
- package/dist/ink/reconciler.d.ts +3 -0
- package/dist/ink/region.d.ts +99 -0
- package/dist/ink/render-background.d.ts +4 -0
- package/dist/ink/render-border.d.ts +4 -0
- package/dist/ink/render-node-to-output.d.ts +38 -0
- package/dist/ink/render-scrollbar.d.ts +9 -0
- package/dist/ink/render-sticky.d.ts +44 -0
- package/dist/ink/render-to-string.d.ts +37 -0
- package/dist/ink/render.d.ts +191 -0
- package/dist/ink/renderer.d.ts +17 -0
- package/dist/ink/resize-observer.d.ts +44 -0
- package/dist/ink/sanitize-ansi.d.ts +2 -0
- package/dist/ink/scroll.d.ts +23 -0
- package/dist/ink/selection.d.ts +70 -0
- package/dist/ink/squash-text-nodes.d.ts +18 -0
- package/dist/ink/style-flags.d.ts +17 -0
- package/dist/ink/styled-line-factory.d.ts +25 -0
- package/dist/ink/styled-line-serializer.d.ts +18 -0
- package/dist/ink/styled-line.d.ts +109 -0
- package/dist/ink/styles.d.ts +369 -0
- package/dist/ink/terminal-palette.d.ts +25 -0
- package/dist/ink/text-wrap.d.ts +10 -0
- package/dist/ink/token-to-elements.d.ts +22 -0
- package/dist/ink/utils/format-time.d.ts +4 -0
- package/dist/ink/utils.d.ts +9 -0
- package/dist/ink/wrap-text.d.ts +3 -0
- package/dist/ink/write-synchronized.d.ts +4 -0
- package/dist/packem_chunks/devtools.js +27 -0
- package/dist/packem_shared/AccessibilityContext-BLelHhNU.js +7 -0
- package/dist/packem_shared/Alert-Dr3s_LD9.js +17 -0
- package/dist/packem_shared/AnimationContext-BcJg8Jr6.js +15 -0
- package/dist/packem_shared/AppContext-CP0U6H7O.js +11 -0
- package/dist/packem_shared/BackgroundContext-BAUaxfOb.js +5 -0
- package/dist/packem_shared/Badge-Dk7EGGM6.js +13 -0
- package/dist/packem_shared/BigText-CjMdY63X.js +24 -0
- package/dist/packem_shared/Box-D_pSJ9Jp.js +73 -0
- package/dist/packem_shared/COLOR_BLINDNESS_SIMULATION-BsMy5Ewl.js +81 -0
- package/dist/packem_shared/Cell-DCg1kJY-.js +48 -0
- package/dist/packem_shared/Code-DjQvPBD9.js +53 -0
- package/dist/packem_shared/ConfirmInput-85Y4kRQW.js +44 -0
- package/dist/packem_shared/ConsoleOverlay-DBNa4vtj.js +57 -0
- package/dist/packem_shared/ControlledScrollView-BlOaxcsN.js +286 -0
- package/dist/packem_shared/ControlledScrollView-DfAhcufF.js +5 -0
- package/dist/packem_shared/Cursor-DiW7YoSK.js +18 -0
- package/dist/packem_shared/CursorContext-JxRzlqAx.js +9 -0
- package/dist/packem_shared/DevTools-aMPIsaHx.js +61 -0
- package/dist/packem_shared/Dialog-DsSNAVgC.js +71 -0
- package/dist/packem_shared/DiffView-hqaw-2S6.js +329 -0
- package/dist/packem_shared/FilePicker-DNwFxRhq.js +254 -0
- package/dist/packem_shared/FocusContext-CWkYtgcm.js +26 -0
- package/dist/packem_shared/FocusContext-D5wFxSRz.js +153 -0
- package/dist/packem_shared/Fullscreen-DrElAE1o.js +11 -0
- package/dist/packem_shared/Gradient-Ql5P0GUd.js +136 -0
- package/dist/packem_shared/Help-6wanGG38.js +112 -0
- package/dist/packem_shared/IMECompositionBuffer-Dl3S0KnF.js +55 -0
- package/dist/packem_shared/InputParser-BKHpWfvN.js +156 -0
- package/dist/packem_shared/LayoutNode-Cjnsodiy.js +131 -0
- package/dist/packem_shared/Link-COcKYfGT.js +66 -0
- package/dist/packem_shared/Markdown-y1ISztof.js +212 -0
- package/dist/packem_shared/MouseProvider-Y9TSSEGl.js +136 -0
- package/dist/packem_shared/MultiSelect-ChoLUcDI.js +129 -0
- package/dist/packem_shared/NAMED_COLORS-a4QBvb5r.js +262 -0
- package/dist/packem_shared/Newline-DBtYEg8x.js +7 -0
- package/dist/packem_shared/OrderedList-Cp7pXr6m.js +26 -0
- package/dist/packem_shared/Paginator-D1AuD-kj.js +104 -0
- package/dist/packem_shared/ProgressBar-DOfpVagn.js +22 -0
- package/dist/packem_shared/Renderer-zZ5O3vxc.js +31 -0
- package/dist/packem_shared/ResizeObserverEntry-Br4seLeQ.js +102 -0
- package/dist/packem_shared/ScrollBar-EWAs2Uc7.js +106 -0
- package/dist/packem_shared/ScrollBarBox-DTNNlh7R.js +72 -0
- package/dist/packem_shared/ScrollList-DCeIFL8M.js +227 -0
- package/dist/packem_shared/ScrollView-v3MCNIyX.js +196 -0
- package/dist/packem_shared/SelectInput-BN2TMyxp.js +260 -0
- package/dist/packem_shared/SelectInputIndicator-DkRMoH_b.js +9 -0
- package/dist/packem_shared/SelectInputItem-BF9LQgKu.js +8 -0
- package/dist/packem_shared/Slider-BWD7xZX6.js +116 -0
- package/dist/packem_shared/Spacer-Bs4ER-HK.js +8 -0
- package/dist/packem_shared/Spinner-BuI-kN4p.js +1799 -0
- package/dist/packem_shared/Static-DpTd6Eed.js +22 -0
- package/dist/packem_shared/Static-xmD9giJj.js +18 -0
- package/dist/packem_shared/StaticRender-tYwH6QXl.js +33 -0
- package/dist/packem_shared/StatusMessage-BtSYxzwb.js +14 -0
- package/dist/packem_shared/StderrContext-Bj4Mf7v7.js +17 -0
- package/dist/packem_shared/StdinContext-Bq_GNJ3z.js +38 -0
- package/dist/packem_shared/StdoutContext-CgjWeCdO.js +17 -0
- package/dist/packem_shared/Stopwatch-DjtTCyHn.js +23 -0
- package/dist/packem_shared/Tab-C6r5q4hR.js +7 -0
- package/dist/packem_shared/Table-D-rSVlzb.js +82 -0
- package/dist/packem_shared/Tabs-hki-KRnx.js +153 -0
- package/dist/packem_shared/Text-DvAUdZcK.js +65 -0
- package/dist/packem_shared/TextInput-C79WEQ5U.js +137 -0
- package/dist/packem_shared/Textarea-Dj06R6Zd.js +272 -0
- package/dist/packem_shared/Timer-wi9zuh4n.js +22 -0
- package/dist/packem_shared/Transform-BHxY_dAM.js +14 -0
- package/dist/packem_shared/TreeNodeMap-CtJUvBnd.js +155 -0
- package/dist/packem_shared/TreeView-C2062dtj.js +148 -0
- package/dist/packem_shared/TuiApp-DfxOnXqi.js +120 -0
- package/dist/packem_shared/TuiContext-CqEjMyXd.js +415 -0
- package/dist/packem_shared/UnorderedList-DhnadWjX.js +33 -0
- package/dist/packem_shared/ansi-parser-0BdVTKho.js +41 -0
- package/dist/packem_shared/ansi-tokenizer-LHq2LUWA.js +307 -0
- package/dist/packem_shared/boxes-oi3WUbyR.js +92 -0
- package/dist/packem_shared/colorize-88_Vk8cn.js +48 -0
- package/dist/packem_shared/comparePoints-CGMDnd3_.js +287 -0
- package/dist/packem_shared/createInlineLoop-BxMmcq9D.js +93 -0
- package/dist/packem_shared/createLinkedScrollGroup-Djw4Ceo0.js +44 -0
- package/dist/packem_shared/dom-DvzhsAez.js +225 -0
- package/dist/packem_shared/format-time-BGmnDukX.js +12 -0
- package/dist/packem_shared/getPathToRoot-a1wbwxfL.js +4 -0
- package/dist/packem_shared/getScrollHeight-BubfU_df.js +63 -0
- package/dist/packem_shared/input-utils-ViAEXa0Z.js +19 -0
- package/dist/packem_shared/isIntersecting-fEXHJN5R.js +10 -0
- package/dist/packem_shared/isOsc52Supported-G0k4sXJx.js +36 -0
- package/dist/packem_shared/isTerminalPaletteQuerySupported-EeiwMKbr.js +93 -0
- package/dist/packem_shared/kittyFlags-bNNf_9kX.js +26 -0
- package/dist/packem_shared/measure-element-Reza_yfC.js +396 -0
- package/dist/packem_shared/measure-text-DItZYotK.js +1189 -0
- package/dist/packem_shared/measureElement-CTgFCmKd.js +4 -0
- package/dist/packem_shared/mouse-context-BUHWKEIe.js +6 -0
- package/dist/packem_shared/parseSgrMouse-BHVBPP9G.js +1 -0
- package/dist/packem_shared/processLayout-BQ9kXfd3.js +2 -0
- package/dist/packem_shared/reconciler-BXf6miSS.js +211 -0
- package/dist/packem_shared/reconciler-gfmqURLy.js +680 -0
- package/dist/packem_shared/render-BAwdjfki.js +2806 -0
- package/dist/packem_shared/render-Bpjhf0lD.js +195 -0
- package/dist/packem_shared/renderToString-Cfg55DRD.js +62 -0
- package/dist/packem_shared/renderToString-ClIaXgrC.js +86 -0
- package/dist/packem_shared/renderTreeToBuffer-D3mo7M7m.js +308 -0
- package/dist/packem_shared/renderer-B3wROkeg.js +1431 -0
- package/dist/packem_shared/setEnableStyledLineCache-BpskngSJ.js +2 -0
- package/dist/packem_shared/squashTextNodesWithMap-iqm6OMMT.js +100 -0
- package/dist/packem_shared/text-width-DhuarWcB.js +42 -0
- package/dist/packem_shared/token-to-elements-BRFl_rzw.js +249 -0
- package/dist/packem_shared/treeViewTheme-BpSw9TMf.js +52 -0
- package/dist/packem_shared/useAnimation-kj31sA-T.js +62 -0
- package/dist/packem_shared/useApp-DPQlRzi5.js +6 -0
- package/dist/packem_shared/useBoxMetrics-rBjKc-g4.js +54 -0
- package/dist/packem_shared/useClipboard-B_9-adw1.js +23 -0
- package/dist/packem_shared/useColorBlindness-D_sTIhcb.js +30 -0
- package/dist/packem_shared/useConsoleCapture-Dvt7G1W1.js +61 -0
- package/dist/packem_shared/useCursor-BIJzc8k9.js +19 -0
- package/dist/packem_shared/useElementDimensions-CAoKitVD.js +67 -0
- package/dist/packem_shared/useFocus-CNl5QHHf.js +37 -0
- package/dist/packem_shared/useFocusManager-BPYaUuKQ.js +16 -0
- package/dist/packem_shared/useInput-Cfp5zB2s.js +594 -0
- package/dist/packem_shared/useIsScreenReaderEnabled-CnGKCe0f.js +9 -0
- package/dist/packem_shared/useKeyBindings-B78l1E1n.js +66 -0
- package/dist/packem_shared/useMouseAction-C5gZ2nj7.js +29 -0
- package/dist/packem_shared/useMouseContext-D-rFy60Q.js +12 -0
- package/dist/packem_shared/useMousePosition-BHBJ-kBk.js +25 -0
- package/dist/packem_shared/useOnMouseClick--ZIyBOBO.js +35 -0
- package/dist/packem_shared/useOnMouseHover-26diuXUC.js +32 -0
- package/dist/packem_shared/useOnMouseState-NO_Kda_C.js +13 -0
- package/dist/packem_shared/usePaste-Ct8J4AGR.js +35 -0
- package/dist/packem_shared/useScrollAcceleration-R9LfrPVG.js +73 -0
- package/dist/packem_shared/useScrollInput-D3CpBq_a.js +72 -0
- package/dist/packem_shared/useStderr-CAOVUh4E.js +6 -0
- package/dist/packem_shared/useStdin-X-O0kd-n.js +7 -0
- package/dist/packem_shared/useStdout-DyF6DSH0.js +6 -0
- package/dist/packem_shared/useStopwatch-qC4Beai4.js +33 -0
- package/dist/packem_shared/useTerminalPalette-BaWO2c4Q.js +38 -0
- package/dist/packem_shared/useTextBuffer-C8fEe9Ly.js +398 -0
- package/dist/packem_shared/useTextSelection-mXtxgsPK.js +50 -0
- package/dist/packem_shared/useTimer-CPQ7j827.js +46 -0
- package/dist/packem_shared/useTreeView-BT57P3Kx.js +101 -0
- package/dist/packem_shared/useTreeViewState-BpS_KZ-K.js +502 -0
- package/dist/packem_shared/useWindowSize-ugEmGZJm.js +20 -0
- package/dist/packem_shared/utils-BgdlrbOH.js +140 -0
- package/dist/packem_shared/variant-config-DSZoX5TM.js +8 -0
- package/dist/packem_shared/wrapOrTruncateStyledLine-DN3Nogoc.js +147 -0
- package/dist/react/devtools.d.ts +27 -0
- package/dist/react/focus.d.ts +39 -0
- package/dist/react/hooks.d.ts +238 -0
- package/dist/react/index.d.ts +8 -0
- package/dist/react/index.js +9 -0
- package/dist/react/layout.d.ts +35 -0
- package/dist/react/react.d.ts +57 -0
- package/dist/react/reconciler.d.ts +4 -0
- package/dist/react/render-to-string.d.ts +21 -0
- package/dist/react/renderer.d.ts +2 -0
- package/dist/react/scene.d.ts +3 -0
- package/dist/react/static.d.ts +39 -0
- package/dist/react/styles.d.ts +83 -0
- package/dist/react/text-width.d.ts +20 -0
- package/dist/testing/index.d.ts +144 -0
- package/dist/testing/index.js +260 -0
- package/dist/testing/keys.d.ts +89 -0
- package/dist/testing/screen.d.ts +35 -0
- package/dist/testing/wait-for.d.ts +21 -0
- package/index.js +585 -0
- package/package.json +117 -7
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
import Yoga from 'yoga-layout';
|
|
2
|
+
|
|
3
|
+
const NAMED_COLORS = {
|
|
4
|
+
black: 0,
|
|
5
|
+
// bright variants
|
|
6
|
+
blackBright: 8,
|
|
7
|
+
blue: 4,
|
|
8
|
+
blueBright: 12,
|
|
9
|
+
cyan: 6,
|
|
10
|
+
cyanBright: 14,
|
|
11
|
+
gray: 8,
|
|
12
|
+
green: 2,
|
|
13
|
+
greenBright: 10,
|
|
14
|
+
grey: 8,
|
|
15
|
+
magenta: 5,
|
|
16
|
+
magentaBright: 13,
|
|
17
|
+
red: 1,
|
|
18
|
+
redBright: 9,
|
|
19
|
+
white: 7,
|
|
20
|
+
whiteBright: 15,
|
|
21
|
+
yellow: 3,
|
|
22
|
+
yellowBright: 11
|
|
23
|
+
};
|
|
24
|
+
function rgbToAnsi256(r, g, b) {
|
|
25
|
+
const ri = Math.round(r / 51);
|
|
26
|
+
const gi = Math.round(g / 51);
|
|
27
|
+
const bi = Math.round(b / 51);
|
|
28
|
+
return 16 + 36 * ri + 6 * gi + bi;
|
|
29
|
+
}
|
|
30
|
+
function resolveColor(color) {
|
|
31
|
+
if (color === void 0) {
|
|
32
|
+
return 255;
|
|
33
|
+
}
|
|
34
|
+
if (typeof color === "number") {
|
|
35
|
+
return color;
|
|
36
|
+
}
|
|
37
|
+
if (color in NAMED_COLORS) {
|
|
38
|
+
return NAMED_COLORS[color];
|
|
39
|
+
}
|
|
40
|
+
const ansiMatch = /^ansi256\(\s*(\d+)\s*\)$/.exec(color);
|
|
41
|
+
if (ansiMatch) {
|
|
42
|
+
return Number(ansiMatch[1]);
|
|
43
|
+
}
|
|
44
|
+
const hex3Match = /^#([0-9a-f])([0-9a-f])([0-9a-f])$/i.exec(color);
|
|
45
|
+
if (hex3Match) {
|
|
46
|
+
return rgbToAnsi256(
|
|
47
|
+
Number.parseInt(hex3Match[1] + hex3Match[1], 16),
|
|
48
|
+
Number.parseInt(hex3Match[2] + hex3Match[2], 16),
|
|
49
|
+
Number.parseInt(hex3Match[3] + hex3Match[3], 16)
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
const hexMatch = /^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i.exec(color);
|
|
53
|
+
if (hexMatch) {
|
|
54
|
+
return rgbToAnsi256(Number.parseInt(hexMatch[1], 16), Number.parseInt(hexMatch[2], 16), Number.parseInt(hexMatch[3], 16));
|
|
55
|
+
}
|
|
56
|
+
const rgbMatch = /^rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)$/.exec(color);
|
|
57
|
+
if (rgbMatch) {
|
|
58
|
+
return rgbToAnsi256(Number(rgbMatch[1]), Number(rgbMatch[2]), Number(rgbMatch[3]));
|
|
59
|
+
}
|
|
60
|
+
return 255;
|
|
61
|
+
}
|
|
62
|
+
const positionEdges = [
|
|
63
|
+
["top", Yoga.EDGE_TOP],
|
|
64
|
+
["right", Yoga.EDGE_RIGHT],
|
|
65
|
+
["bottom", Yoga.EDGE_BOTTOM],
|
|
66
|
+
["left", Yoga.EDGE_LEFT]
|
|
67
|
+
];
|
|
68
|
+
const applyPositionStyles = (node, style) => {
|
|
69
|
+
if ("position" in style) {
|
|
70
|
+
node.setPositionType(
|
|
71
|
+
style.position === "absolute" ? Yoga.POSITION_TYPE_ABSOLUTE : (
|
|
72
|
+
// static maps to relative because there is no static conceptually
|
|
73
|
+
Yoga.POSITION_TYPE_RELATIVE
|
|
74
|
+
)
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
for (const [property, edge] of positionEdges) {
|
|
78
|
+
if (property in style) {
|
|
79
|
+
const value = style[property];
|
|
80
|
+
if (typeof value === "string") {
|
|
81
|
+
node.setPositionPercent(edge, Number.parseFloat(value));
|
|
82
|
+
} else {
|
|
83
|
+
node.setPosition(edge, value);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
const applyMarginStyles = (node, style) => {
|
|
89
|
+
if ("margin" in style)
|
|
90
|
+
node.setMargin(Yoga.EDGE_ALL, style.margin ?? 0);
|
|
91
|
+
if ("marginX" in style)
|
|
92
|
+
node.setMargin(Yoga.EDGE_HORIZONTAL, style.marginX ?? 0);
|
|
93
|
+
if ("marginY" in style)
|
|
94
|
+
node.setMargin(Yoga.EDGE_VERTICAL, style.marginY ?? 0);
|
|
95
|
+
if ("marginLeft" in style)
|
|
96
|
+
node.setMargin(Yoga.EDGE_LEFT, style.marginLeft ?? 0);
|
|
97
|
+
if ("marginRight" in style)
|
|
98
|
+
node.setMargin(Yoga.EDGE_RIGHT, style.marginRight ?? 0);
|
|
99
|
+
if ("marginTop" in style)
|
|
100
|
+
node.setMargin(Yoga.EDGE_TOP, style.marginTop ?? 0);
|
|
101
|
+
if ("marginBottom" in style)
|
|
102
|
+
node.setMargin(Yoga.EDGE_BOTTOM, style.marginBottom ?? 0);
|
|
103
|
+
};
|
|
104
|
+
const applyPaddingStyles = (node, style) => {
|
|
105
|
+
if ("padding" in style)
|
|
106
|
+
node.setPadding(Yoga.EDGE_ALL, style.padding ?? 0);
|
|
107
|
+
if ("paddingX" in style)
|
|
108
|
+
node.setPadding(Yoga.EDGE_HORIZONTAL, style.paddingX ?? 0);
|
|
109
|
+
if ("paddingY" in style)
|
|
110
|
+
node.setPadding(Yoga.EDGE_VERTICAL, style.paddingY ?? 0);
|
|
111
|
+
if ("paddingLeft" in style)
|
|
112
|
+
node.setPadding(Yoga.EDGE_LEFT, style.paddingLeft ?? 0);
|
|
113
|
+
if ("paddingRight" in style)
|
|
114
|
+
node.setPadding(Yoga.EDGE_RIGHT, style.paddingRight ?? 0);
|
|
115
|
+
if ("paddingTop" in style)
|
|
116
|
+
node.setPadding(Yoga.EDGE_TOP, style.paddingTop ?? 0);
|
|
117
|
+
if ("paddingBottom" in style)
|
|
118
|
+
node.setPadding(Yoga.EDGE_BOTTOM, style.paddingBottom ?? 0);
|
|
119
|
+
};
|
|
120
|
+
const applyFlexStyles = (node, style) => {
|
|
121
|
+
if ("flexGrow" in style)
|
|
122
|
+
node.setFlexGrow(style.flexGrow ?? 0);
|
|
123
|
+
if ("flexShrink" in style)
|
|
124
|
+
node.setFlexShrink(style.flexShrink ?? 1);
|
|
125
|
+
if ("flexWrap" in style) {
|
|
126
|
+
node.setFlexWrap(style.flexWrap === "nowrap" ? Yoga.WRAP_NO_WRAP : style.flexWrap === "wrap" ? Yoga.WRAP_WRAP : Yoga.WRAP_WRAP_REVERSE);
|
|
127
|
+
}
|
|
128
|
+
if ("flexDirection" in style) {
|
|
129
|
+
if (style.flexDirection === "row")
|
|
130
|
+
node.setFlexDirection(Yoga.FLEX_DIRECTION_ROW);
|
|
131
|
+
if (style.flexDirection === "row-reverse")
|
|
132
|
+
node.setFlexDirection(Yoga.FLEX_DIRECTION_ROW_REVERSE);
|
|
133
|
+
if (style.flexDirection === "column")
|
|
134
|
+
node.setFlexDirection(Yoga.FLEX_DIRECTION_COLUMN);
|
|
135
|
+
if (style.flexDirection === "column-reverse")
|
|
136
|
+
node.setFlexDirection(Yoga.FLEX_DIRECTION_COLUMN_REVERSE);
|
|
137
|
+
}
|
|
138
|
+
if ("flexBasis" in style) {
|
|
139
|
+
if (typeof style.flexBasis === "number")
|
|
140
|
+
node.setFlexBasis(style.flexBasis);
|
|
141
|
+
else if (typeof style.flexBasis === "string")
|
|
142
|
+
node.setFlexBasisPercent(Number.parseInt(style.flexBasis, 10));
|
|
143
|
+
else node.setFlexBasis(Number.NaN);
|
|
144
|
+
}
|
|
145
|
+
if ("alignItems" in style) {
|
|
146
|
+
const map = {
|
|
147
|
+
baseline: Yoga.ALIGN_BASELINE,
|
|
148
|
+
center: Yoga.ALIGN_CENTER,
|
|
149
|
+
"flex-end": Yoga.ALIGN_FLEX_END,
|
|
150
|
+
"flex-start": Yoga.ALIGN_FLEX_START,
|
|
151
|
+
stretch: Yoga.ALIGN_STRETCH
|
|
152
|
+
};
|
|
153
|
+
node.setAlignItems(map[style.alignItems || "stretch"]);
|
|
154
|
+
}
|
|
155
|
+
if ("alignSelf" in style) {
|
|
156
|
+
const map = {
|
|
157
|
+
auto: Yoga.ALIGN_AUTO,
|
|
158
|
+
baseline: Yoga.ALIGN_BASELINE,
|
|
159
|
+
center: Yoga.ALIGN_CENTER,
|
|
160
|
+
"flex-end": Yoga.ALIGN_FLEX_END,
|
|
161
|
+
"flex-start": Yoga.ALIGN_FLEX_START,
|
|
162
|
+
stretch: Yoga.ALIGN_STRETCH
|
|
163
|
+
};
|
|
164
|
+
node.setAlignSelf(map[style.alignSelf || "auto"]);
|
|
165
|
+
}
|
|
166
|
+
if ("alignContent" in style) {
|
|
167
|
+
const map = {
|
|
168
|
+
center: Yoga.ALIGN_CENTER,
|
|
169
|
+
"flex-end": Yoga.ALIGN_FLEX_END,
|
|
170
|
+
"flex-start": Yoga.ALIGN_FLEX_START,
|
|
171
|
+
"space-around": Yoga.ALIGN_SPACE_AROUND,
|
|
172
|
+
"space-between": Yoga.ALIGN_SPACE_BETWEEN,
|
|
173
|
+
stretch: Yoga.ALIGN_STRETCH
|
|
174
|
+
};
|
|
175
|
+
node.setAlignContent(map[style.alignContent || "flex-start"]);
|
|
176
|
+
}
|
|
177
|
+
if ("justifyContent" in style) {
|
|
178
|
+
const map = {
|
|
179
|
+
center: Yoga.JUSTIFY_CENTER,
|
|
180
|
+
"flex-end": Yoga.JUSTIFY_FLEX_END,
|
|
181
|
+
"flex-start": Yoga.JUSTIFY_FLEX_START,
|
|
182
|
+
"space-around": Yoga.JUSTIFY_SPACE_AROUND,
|
|
183
|
+
"space-between": Yoga.JUSTIFY_SPACE_BETWEEN,
|
|
184
|
+
"space-evenly": Yoga.JUSTIFY_SPACE_EVENLY
|
|
185
|
+
};
|
|
186
|
+
node.setJustifyContent(map[style.justifyContent || "flex-start"]);
|
|
187
|
+
}
|
|
188
|
+
};
|
|
189
|
+
const applyDimensionStyles = (node, style) => {
|
|
190
|
+
if ("width" in style) {
|
|
191
|
+
if (typeof style.width === "number")
|
|
192
|
+
node.setWidth(style.width);
|
|
193
|
+
else if (typeof style.width === "string")
|
|
194
|
+
node.setWidthPercent(Number.parseInt(style.width, 10));
|
|
195
|
+
else node.setWidthAuto();
|
|
196
|
+
}
|
|
197
|
+
if ("height" in style) {
|
|
198
|
+
if (typeof style.height === "number")
|
|
199
|
+
node.setHeight(style.height);
|
|
200
|
+
else if (typeof style.height === "string")
|
|
201
|
+
node.setHeightPercent(Number.parseInt(style.height, 10));
|
|
202
|
+
else node.setHeightAuto();
|
|
203
|
+
}
|
|
204
|
+
if ("minWidth" in style) {
|
|
205
|
+
if (typeof style.minWidth === "string")
|
|
206
|
+
node.setMinWidthPercent(Number.parseInt(style.minWidth, 10));
|
|
207
|
+
else node.setMinWidth(style.minWidth ?? 0);
|
|
208
|
+
}
|
|
209
|
+
if ("minHeight" in style) {
|
|
210
|
+
if (typeof style.minHeight === "string")
|
|
211
|
+
node.setMinHeightPercent(Number.parseInt(style.minHeight, 10));
|
|
212
|
+
else node.setMinHeight(style.minHeight ?? 0);
|
|
213
|
+
}
|
|
214
|
+
if ("maxWidth" in style) {
|
|
215
|
+
if (typeof style.maxWidth === "string")
|
|
216
|
+
node.setMaxWidthPercent(Number.parseInt(style.maxWidth, 10));
|
|
217
|
+
else node.setMaxWidth(style.maxWidth);
|
|
218
|
+
}
|
|
219
|
+
if ("maxHeight" in style) {
|
|
220
|
+
if (typeof style.maxHeight === "string")
|
|
221
|
+
node.setMaxHeightPercent(Number.parseInt(style.maxHeight, 10));
|
|
222
|
+
else node.setMaxHeight(style.maxHeight);
|
|
223
|
+
}
|
|
224
|
+
if ("aspectRatio" in style)
|
|
225
|
+
node.setAspectRatio(style.aspectRatio);
|
|
226
|
+
};
|
|
227
|
+
const applyDisplayStyles = (node, style) => {
|
|
228
|
+
if ("display" in style) {
|
|
229
|
+
node.setDisplay(style.display === "flex" ? Yoga.DISPLAY_FLEX : Yoga.DISPLAY_NONE);
|
|
230
|
+
}
|
|
231
|
+
};
|
|
232
|
+
const applyBorderStyles = (node, style, currentStyle) => {
|
|
233
|
+
const hasBorderChanges = "borderStyle" in style || "borderTop" in style || "borderBottom" in style || "borderLeft" in style || "borderRight" in style;
|
|
234
|
+
if (!hasBorderChanges) {
|
|
235
|
+
return;
|
|
236
|
+
}
|
|
237
|
+
const borderWidth = currentStyle.borderStyle ? 1 : 0;
|
|
238
|
+
node.setBorder(Yoga.EDGE_TOP, currentStyle.borderTop === false ? 0 : borderWidth);
|
|
239
|
+
node.setBorder(Yoga.EDGE_BOTTOM, currentStyle.borderBottom === false ? 0 : borderWidth);
|
|
240
|
+
node.setBorder(Yoga.EDGE_LEFT, currentStyle.borderLeft === false ? 0 : borderWidth);
|
|
241
|
+
node.setBorder(Yoga.EDGE_RIGHT, currentStyle.borderRight === false ? 0 : borderWidth);
|
|
242
|
+
};
|
|
243
|
+
const applyGapStyles = (node, style) => {
|
|
244
|
+
if ("gap" in style)
|
|
245
|
+
node.setGap(Yoga.GUTTER_ALL, style.gap ?? 0);
|
|
246
|
+
if ("columnGap" in style)
|
|
247
|
+
node.setGap(Yoga.GUTTER_COLUMN, style.columnGap ?? 0);
|
|
248
|
+
if ("rowGap" in style)
|
|
249
|
+
node.setGap(Yoga.GUTTER_ROW, style.rowGap ?? 0);
|
|
250
|
+
};
|
|
251
|
+
const applyStyles = (node, style = {}, currentStyle = style) => {
|
|
252
|
+
applyPositionStyles(node, style);
|
|
253
|
+
applyMarginStyles(node, style);
|
|
254
|
+
applyPaddingStyles(node, style);
|
|
255
|
+
applyFlexStyles(node, style);
|
|
256
|
+
applyDimensionStyles(node, style);
|
|
257
|
+
applyDisplayStyles(node, style);
|
|
258
|
+
applyBorderStyles(node, style, currentStyle);
|
|
259
|
+
applyGapStyles(node, style);
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
export { NAMED_COLORS, applyStyles, resolveColor };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
3
|
+
import Text from './Text-DvAUdZcK.js';
|
|
4
|
+
|
|
5
|
+
const renderList = (items, parentMarker) => {
|
|
6
|
+
const maxWidth = String(items.length).length;
|
|
7
|
+
return jsx(Box, { flexDirection: "column", children: items.map((item, index) => {
|
|
8
|
+
const paddedNumber = `${String(index + 1).padStart(maxWidth)}.`;
|
|
9
|
+
const marker = `${parentMarker}${paddedNumber}`;
|
|
10
|
+
return (
|
|
11
|
+
// eslint-disable-next-line react-x/no-array-index-key -- list entries have no unique key
|
|
12
|
+
jsxs(Box, { gap: 1, children: [
|
|
13
|
+
jsx(Text, { dimColor: true, children: marker }),
|
|
14
|
+
jsxs(Box, { flexDirection: "column", children: [
|
|
15
|
+
jsx(Text, { children: item.label }),
|
|
16
|
+
item.children ? renderList(item.children, marker) : void 0
|
|
17
|
+
] })
|
|
18
|
+
] }, index)
|
|
19
|
+
);
|
|
20
|
+
}) });
|
|
21
|
+
};
|
|
22
|
+
function OrderedList({ items }) {
|
|
23
|
+
return renderList(items, "");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export { OrderedList as default };
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useEffect, useCallback } from 'react';
|
|
3
|
+
import useInput from './useInput-Cfp5zB2s.js';
|
|
4
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
5
|
+
import Text from './Text-DvAUdZcK.js';
|
|
6
|
+
|
|
7
|
+
function Paginator({
|
|
8
|
+
children,
|
|
9
|
+
defaultPage = 0,
|
|
10
|
+
indicatorColor = "cyan",
|
|
11
|
+
isFocused = true,
|
|
12
|
+
items,
|
|
13
|
+
onChange,
|
|
14
|
+
page: controlledPage,
|
|
15
|
+
pageSize,
|
|
16
|
+
style = "dots"
|
|
17
|
+
}) {
|
|
18
|
+
const isControlled = controlledPage !== void 0;
|
|
19
|
+
const [internalPage, setInternalPage] = useState(defaultPage);
|
|
20
|
+
const currentPage = isControlled ? controlledPage : internalPage;
|
|
21
|
+
const totalPages = Math.max(1, Math.ceil(items.length / pageSize));
|
|
22
|
+
const safePage = Math.max(0, Math.min(currentPage, totalPages - 1));
|
|
23
|
+
useEffect(() => {
|
|
24
|
+
if (isControlled) {
|
|
25
|
+
setInternalPage(controlledPage);
|
|
26
|
+
}
|
|
27
|
+
}, [isControlled, controlledPage]);
|
|
28
|
+
const setPage = useCallback(
|
|
29
|
+
(newPage) => {
|
|
30
|
+
const clamped = Math.max(0, Math.min(newPage, totalPages - 1));
|
|
31
|
+
if (!isControlled) {
|
|
32
|
+
setInternalPage(clamped);
|
|
33
|
+
}
|
|
34
|
+
onChange?.(clamped);
|
|
35
|
+
},
|
|
36
|
+
[totalPages, isControlled, onChange]
|
|
37
|
+
);
|
|
38
|
+
useInput(
|
|
39
|
+
useCallback(
|
|
40
|
+
(_input, key) => {
|
|
41
|
+
if (key.leftArrow || key.pageUp) {
|
|
42
|
+
setPage(safePage - 1);
|
|
43
|
+
} else if (key.rightArrow || key.pageDown) {
|
|
44
|
+
setPage(safePage + 1);
|
|
45
|
+
} else if (key.home) {
|
|
46
|
+
setPage(0);
|
|
47
|
+
} else if (key.end) {
|
|
48
|
+
setPage(totalPages - 1);
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
[safePage, totalPages, setPage]
|
|
52
|
+
),
|
|
53
|
+
{ isActive: isFocused }
|
|
54
|
+
);
|
|
55
|
+
const startIndex = safePage * pageSize;
|
|
56
|
+
const endIndex = Math.min(startIndex + pageSize, items.length);
|
|
57
|
+
const pageItems = items.slice(startIndex, endIndex);
|
|
58
|
+
const meta = {
|
|
59
|
+
currentPage: safePage,
|
|
60
|
+
endIndex,
|
|
61
|
+
isFirstPage: safePage === 0,
|
|
62
|
+
isLastPage: safePage === totalPages - 1,
|
|
63
|
+
startIndex,
|
|
64
|
+
totalPages
|
|
65
|
+
};
|
|
66
|
+
return jsxs(Box, { flexDirection: "column", children: [
|
|
67
|
+
children(pageItems, meta),
|
|
68
|
+
totalPages > 1 && jsx(Indicator, { color: indicatorColor, currentPage: safePage, style, totalPages })
|
|
69
|
+
] });
|
|
70
|
+
}
|
|
71
|
+
function Indicator({
|
|
72
|
+
color,
|
|
73
|
+
currentPage,
|
|
74
|
+
style,
|
|
75
|
+
totalPages
|
|
76
|
+
}) {
|
|
77
|
+
if (style === "fraction") {
|
|
78
|
+
return jsxs(Text, { children: [
|
|
79
|
+
jsx(Text, { color, children: currentPage + 1 }),
|
|
80
|
+
jsxs(Text, { dimColor: true, children: [
|
|
81
|
+
"/",
|
|
82
|
+
totalPages
|
|
83
|
+
] })
|
|
84
|
+
] });
|
|
85
|
+
}
|
|
86
|
+
if (style === "numeric") {
|
|
87
|
+
return jsxs(Box, { children: [
|
|
88
|
+
currentPage > 0 ? jsx(Text, { color, children: "‹ " }) : jsx(Text, { dimColor: true, children: "‹ " }),
|
|
89
|
+
jsx(Text, { color, children: currentPage + 1 }),
|
|
90
|
+
jsxs(Text, { dimColor: true, children: [
|
|
91
|
+
" / ",
|
|
92
|
+
totalPages
|
|
93
|
+
] }),
|
|
94
|
+
currentPage < totalPages - 1 ? jsx(Text, { color, children: " ›" }) : jsx(Text, { dimColor: true, children: " ›" })
|
|
95
|
+
] });
|
|
96
|
+
}
|
|
97
|
+
const dots = Array.from(
|
|
98
|
+
{ length: totalPages },
|
|
99
|
+
(_, i) => i === currentPage ? jsx(Text, { color, children: "●" }, i) : jsx(Text, { dimColor: true, children: "○" }, i)
|
|
100
|
+
);
|
|
101
|
+
return jsx(Box, { gap: 1, children: dots });
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export { Paginator as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import useWindowSize from './useWindowSize-ugEmGZJm.js';
|
|
3
|
+
import Text from './Text-DvAUdZcK.js';
|
|
4
|
+
|
|
5
|
+
function ProgressBar({
|
|
6
|
+
character = "█",
|
|
7
|
+
columns: columnsProp = 0,
|
|
8
|
+
left = 0,
|
|
9
|
+
percent = 1,
|
|
10
|
+
right = 0,
|
|
11
|
+
rightPad = false,
|
|
12
|
+
...textProps
|
|
13
|
+
}) {
|
|
14
|
+
const { columns: terminalColumns } = useWindowSize();
|
|
15
|
+
const screen = columnsProp || terminalColumns || 80;
|
|
16
|
+
const space = Math.max(0, screen - right - left);
|
|
17
|
+
const filled = Math.min(Math.floor(space * Math.max(0, Math.min(1, percent))), space);
|
|
18
|
+
const bar = character.repeat(filled) + (rightPad ? " ".repeat(space - filled) : "");
|
|
19
|
+
return jsx(Text, { ...textProps, children: bar });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { ProgressBar as default };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { createRequire as __cjs_createRequire } from "node:module";
|
|
2
|
+
|
|
3
|
+
const __cjs_require = __cjs_createRequire(import.meta.url);
|
|
4
|
+
|
|
5
|
+
const __cjs_getProcess = typeof globalThis !== "undefined" && typeof globalThis.process !== "undefined" ? globalThis.process : process;
|
|
6
|
+
|
|
7
|
+
const __cjs_getBuiltinModule = (module) => {
|
|
8
|
+
// Check if we're in Node.js and version supports getBuiltinModule
|
|
9
|
+
if (typeof __cjs_getProcess !== "undefined" && __cjs_getProcess.versions && __cjs_getProcess.versions.node) {
|
|
10
|
+
const [major, minor] = __cjs_getProcess.versions.node.split(".").map(Number);
|
|
11
|
+
// Node.js 20.16.0+ and 22.3.0+
|
|
12
|
+
if (major > 22 || (major === 22 && minor >= 3) || (major === 20 && minor >= 16)) {
|
|
13
|
+
return __cjs_getProcess.getBuiltinModule(module);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
// Fallback to createRequire
|
|
17
|
+
return __cjs_require(module);
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const {
|
|
21
|
+
createRequire
|
|
22
|
+
} = __cjs_getBuiltinModule("node:module");
|
|
23
|
+
|
|
24
|
+
const require$1 = createRequire(import.meta.url);
|
|
25
|
+
const native = require$1("../../index.js");
|
|
26
|
+
const _native = native;
|
|
27
|
+
const Renderer = _native.Renderer;
|
|
28
|
+
const TerminalGuard = _native.TerminalGuard;
|
|
29
|
+
const terminalSize = _native.terminalSize;
|
|
30
|
+
|
|
31
|
+
export { Renderer, TerminalGuard, terminalSize };
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
class ResizeObserverEntry {
|
|
2
|
+
constructor(target, contentRect) {
|
|
3
|
+
this.target = target;
|
|
4
|
+
this.contentRect = contentRect;
|
|
5
|
+
}
|
|
6
|
+
target;
|
|
7
|
+
contentRect;
|
|
8
|
+
}
|
|
9
|
+
class ResizeObserver {
|
|
10
|
+
callback;
|
|
11
|
+
observedElements = /* @__PURE__ */ new Set();
|
|
12
|
+
constructor(callback) {
|
|
13
|
+
this.callback = callback;
|
|
14
|
+
}
|
|
15
|
+
observe(element) {
|
|
16
|
+
if (this.observedElements.has(element)) {
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
this.observedElements.add(element);
|
|
20
|
+
element.resizeObservers ??= /* @__PURE__ */ new Set();
|
|
21
|
+
element.resizeObservers.add(this);
|
|
22
|
+
let lastMeasuredSize = element.internal_lastMeasuredSize;
|
|
23
|
+
if (lastMeasuredSize === void 0 && element.yogaNode) {
|
|
24
|
+
const width = element.yogaNode.getComputedWidth();
|
|
25
|
+
const height = element.yogaNode.getComputedHeight();
|
|
26
|
+
if (!Number.isNaN(width) && !Number.isNaN(height)) {
|
|
27
|
+
lastMeasuredSize = { height, width };
|
|
28
|
+
element.internal_lastMeasuredSize = lastMeasuredSize;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
if (lastMeasuredSize) {
|
|
32
|
+
const entry = new ResizeObserverEntry(element, lastMeasuredSize);
|
|
33
|
+
try {
|
|
34
|
+
this.callback([entry], this);
|
|
35
|
+
} catch (error) {
|
|
36
|
+
console.error(error);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
unobserve(element) {
|
|
41
|
+
this.observedElements.delete(element);
|
|
42
|
+
element.resizeObservers?.delete(this);
|
|
43
|
+
}
|
|
44
|
+
disconnect() {
|
|
45
|
+
for (const element of this.observedElements) {
|
|
46
|
+
element.resizeObservers?.delete(this);
|
|
47
|
+
}
|
|
48
|
+
this.observedElements.clear();
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Internal method called by the layout engine after computing layout.
|
|
52
|
+
*/
|
|
53
|
+
internalTrigger(entries) {
|
|
54
|
+
try {
|
|
55
|
+
this.callback(entries, this);
|
|
56
|
+
} catch (error) {
|
|
57
|
+
console.error(error);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function measureAndExtractObservers(node, observerEntries, forceCache = false) {
|
|
62
|
+
const hasObservers = node.resizeObservers && node.resizeObservers.size > 0;
|
|
63
|
+
if ((hasObservers || forceCache) && node.yogaNode) {
|
|
64
|
+
const width = node.yogaNode.getComputedWidth();
|
|
65
|
+
const height = node.yogaNode.getComputedHeight();
|
|
66
|
+
if (!Number.isNaN(width) && !Number.isNaN(height)) {
|
|
67
|
+
const lastSize = node.internal_lastMeasuredSize;
|
|
68
|
+
if (lastSize?.width !== width || lastSize.height !== height) {
|
|
69
|
+
node.internal_lastMeasuredSize = { height, width };
|
|
70
|
+
if (hasObservers) {
|
|
71
|
+
const entry = new ResizeObserverEntry(node, { height, width });
|
|
72
|
+
for (const observer of node.resizeObservers) {
|
|
73
|
+
if (!observerEntries.has(observer)) {
|
|
74
|
+
observerEntries.set(observer, []);
|
|
75
|
+
}
|
|
76
|
+
observerEntries.get(observer).push(entry);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
function triggerResizeObservers(node, forceCache = false) {
|
|
84
|
+
const observerEntries = /* @__PURE__ */ new Map();
|
|
85
|
+
function traverse(n) {
|
|
86
|
+
measureAndExtractObservers(n, observerEntries, forceCache);
|
|
87
|
+
if (n.internal_static) {
|
|
88
|
+
return;
|
|
89
|
+
}
|
|
90
|
+
for (const child of n.childNodes) {
|
|
91
|
+
if (child.nodeName !== "#text") {
|
|
92
|
+
traverse(child);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
traverse(node);
|
|
97
|
+
for (const [observer, entries] of observerEntries) {
|
|
98
|
+
observer.internalTrigger(entries);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export { ResizeObserverEntry, ResizeObserver as default, measureAndExtractObservers, triggerResizeObservers };
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useMemo } from 'react';
|
|
3
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
4
|
+
import Text from './Text-DvAUdZcK.js';
|
|
5
|
+
|
|
6
|
+
const STYLE_CHARS = {
|
|
7
|
+
arrow: { lowerThumb: "╽", thumb: "┃", track: "|", upperThumb: "╿" },
|
|
8
|
+
block: { thumb: "█", track: "░" },
|
|
9
|
+
bold: { lowerThumb: "╿", thumb: "│", track: "┃", upperThumb: "╽" },
|
|
10
|
+
classic: { thumb: "┃", track: "|" },
|
|
11
|
+
dots: { thumb: "●", track: "·" },
|
|
12
|
+
double: { thumb: "┃", track: "║" },
|
|
13
|
+
doubleSingle: { lowerThumb: "╽", thumb: "┃", track: "│", upperThumb: "╿" },
|
|
14
|
+
line: { thumb: "│", track: " " },
|
|
15
|
+
round: { lowerThumb: "╽", thumb: "┃", track: "│", upperThumb: "╿" },
|
|
16
|
+
single: { lowerThumb: "╽", thumb: "┃", track: "│", upperThumb: "╿" },
|
|
17
|
+
singleDouble: { thumb: "┃", track: "║" },
|
|
18
|
+
thick: { thumb: "┃", track: "╏" }
|
|
19
|
+
};
|
|
20
|
+
const CORNER_CHARS = {
|
|
21
|
+
arrow: { bottomLeft: "└", bottomRight: "┘", topLeft: "┌", topRight: "┐" },
|
|
22
|
+
bold: { bottomLeft: "┗", bottomRight: "┛", topLeft: "┏", topRight: "┓" },
|
|
23
|
+
classic: { bottomLeft: "+", bottomRight: "+", topLeft: "+", topRight: "+" },
|
|
24
|
+
double: { bottomLeft: "╚", bottomRight: "╝", topLeft: "╔", topRight: "╗" },
|
|
25
|
+
doubleSingle: { bottomLeft: "╘", bottomRight: "╛", topLeft: "╒", topRight: "╕" },
|
|
26
|
+
round: { bottomLeft: "╰", bottomRight: "╯", topLeft: "╭", topRight: "╮" },
|
|
27
|
+
single: { bottomLeft: "└", bottomRight: "┘", topLeft: "┌", topRight: "┐" },
|
|
28
|
+
singleDouble: { bottomLeft: "╙", bottomRight: "╜", topLeft: "╓", topRight: "╖" }
|
|
29
|
+
};
|
|
30
|
+
const getStyleChars = (style) => {
|
|
31
|
+
const key = typeof style === "string" ? style : "single";
|
|
32
|
+
return STYLE_CHARS[key] ?? STYLE_CHARS["single"] ?? { thumb: "┃", track: "│" };
|
|
33
|
+
};
|
|
34
|
+
const getCornerChars = (style) => {
|
|
35
|
+
const key = typeof style === "string" ? style : "single";
|
|
36
|
+
return CORNER_CHARS[key] ?? CORNER_CHARS["single"] ?? { bottomLeft: "└", bottomRight: "┘", topLeft: "┌", topRight: "┐" };
|
|
37
|
+
};
|
|
38
|
+
const ScrollBar = ({
|
|
39
|
+
autoHide = false,
|
|
40
|
+
color,
|
|
41
|
+
contentHeight,
|
|
42
|
+
dimColor,
|
|
43
|
+
placement = "right",
|
|
44
|
+
scrollOffset,
|
|
45
|
+
style,
|
|
46
|
+
thumbChar,
|
|
47
|
+
trackChar,
|
|
48
|
+
viewportHeight
|
|
49
|
+
}) => {
|
|
50
|
+
const chars = useMemo(() => {
|
|
51
|
+
const effectiveContentHeight = Math.max(contentHeight, viewportHeight);
|
|
52
|
+
if (autoHide && effectiveContentHeight <= viewportHeight) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
const styleChars = getStyleChars(style);
|
|
56
|
+
const resolvedThumbChar = thumbChar ?? styleChars.thumb;
|
|
57
|
+
const resolvedTrackChar = trackChar ?? styleChars.track;
|
|
58
|
+
const totalHalfSteps = viewportHeight * 2;
|
|
59
|
+
const viewportRatio = Math.min(viewportHeight / effectiveContentHeight, 1);
|
|
60
|
+
const thumbLengthHalf = Math.max(2, Math.round(totalHalfSteps * viewportRatio));
|
|
61
|
+
const maxScrollOffset = effectiveContentHeight - viewportHeight;
|
|
62
|
+
const scrollProgress = maxScrollOffset > 0 ? Math.min(Math.max(scrollOffset / maxScrollOffset, 0), 1) : 0;
|
|
63
|
+
const maxThumbStartHalf = totalHalfSteps - thumbLengthHalf;
|
|
64
|
+
const thumbStartHalf = Math.round(scrollProgress * maxThumbStartHalf);
|
|
65
|
+
const thumbEndHalf = thumbStartHalf + thumbLengthHalf;
|
|
66
|
+
const result = [];
|
|
67
|
+
for (let row = 0; row < viewportHeight; row += 1) {
|
|
68
|
+
const upperHalf = row * 2;
|
|
69
|
+
const lowerHalf = row * 2 + 1;
|
|
70
|
+
const upperIsThumb = upperHalf >= thumbStartHalf && upperHalf < thumbEndHalf;
|
|
71
|
+
const lowerIsThumb = lowerHalf >= thumbStartHalf && lowerHalf < thumbEndHalf;
|
|
72
|
+
if (upperIsThumb && lowerIsThumb) {
|
|
73
|
+
result.push(resolvedThumbChar);
|
|
74
|
+
} else if (upperIsThumb && !lowerIsThumb) {
|
|
75
|
+
result.push(styleChars.lowerThumb ?? resolvedThumbChar);
|
|
76
|
+
} else if (!upperIsThumb && lowerIsThumb) {
|
|
77
|
+
result.push(styleChars.upperThumb ?? resolvedThumbChar);
|
|
78
|
+
} else {
|
|
79
|
+
result.push(resolvedTrackChar);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return result;
|
|
83
|
+
}, [contentHeight, viewportHeight, scrollOffset, style, thumbChar, trackChar, autoHide]);
|
|
84
|
+
if (chars === null) {
|
|
85
|
+
return null;
|
|
86
|
+
}
|
|
87
|
+
if (placement === "inset") {
|
|
88
|
+
return jsx(Box, { flexDirection: "column", flexShrink: 0, width: 1, children: chars.map((char, index) => (
|
|
89
|
+
// eslint-disable-next-line react-x/no-array-index-key
|
|
90
|
+
jsx(Text, { color, dimColor, children: char }, index)
|
|
91
|
+
)) });
|
|
92
|
+
}
|
|
93
|
+
const cornerChars = getCornerChars(style);
|
|
94
|
+
const topCorner = placement === "left" ? cornerChars.topLeft : cornerChars.topRight;
|
|
95
|
+
const bottomCorner = placement === "left" ? cornerChars.bottomLeft : cornerChars.bottomRight;
|
|
96
|
+
return jsxs(Box, { flexDirection: "column", flexShrink: 0, width: 1, children: [
|
|
97
|
+
jsx(Text, { color, dimColor, children: topCorner }),
|
|
98
|
+
chars.map((char, index) => (
|
|
99
|
+
// eslint-disable-next-line react-x/no-array-index-key
|
|
100
|
+
jsx(Text, { color, dimColor, children: char }, index)
|
|
101
|
+
)),
|
|
102
|
+
jsx(Text, { color, dimColor, children: bottomCorner })
|
|
103
|
+
] });
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export { ScrollBar, ScrollBar as default };
|