@visulima/tui 1.0.0-alpha.1 → 1.0.0-alpha.3
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 +59 -0
- package/LICENSE.md +63 -9
- package/README.md +3 -3
- package/dist/core/index.js +3 -3
- package/dist/ink/canvas/braille.d.ts +22 -0
- package/dist/ink/canvas/buffer.d.ts +67 -0
- package/dist/ink/components/accordion.d.ts +52 -0
- package/dist/ink/components/animate-presence.d.ts +15 -0
- package/dist/ink/components/approval-prompt.d.ts +55 -0
- package/dist/ink/components/area-chart.d.ts +54 -0
- package/dist/ink/components/bar-chart.d.ts +57 -0
- package/dist/ink/components/blink-dot.d.ts +30 -0
- package/dist/ink/components/breadcrumb.d.ts +28 -0
- package/dist/ink/components/button.d.ts +38 -0
- package/dist/ink/components/calendar.d.ts +60 -0
- package/dist/ink/components/canvas.d.ts +38 -0
- package/dist/ink/components/card.d.ts +46 -0
- package/dist/ink/components/chart-utils.d.ts +54 -0
- package/dist/ink/components/checkbox.d.ts +39 -0
- package/dist/ink/components/collapsible.d.ts +43 -0
- package/dist/ink/components/command-block.d.ts +38 -0
- package/dist/ink/components/command-palette.d.ts +72 -0
- package/dist/ink/components/confirm-dialog.d.ts +63 -0
- package/dist/ink/components/content-switcher.d.ts +49 -0
- package/dist/ink/components/date-picker.d.ts +53 -0
- package/dist/ink/components/definition-list.d.ts +37 -0
- package/dist/ink/components/divider.d.ts +40 -0
- package/dist/ink/components/file-picker/{FilePicker.d.ts → file-picker.d.ts} +2 -19
- package/dist/ink/components/file-picker/types.d.ts +1 -4
- package/dist/ink/components/file-picker/use-file-system.d.ts +1 -1
- package/dist/ink/components/form.d.ts +74 -0
- package/dist/ink/components/gauge.d.ts +75 -0
- package/dist/ink/components/heading.d.ts +27 -0
- package/dist/ink/components/heatmap.d.ts +51 -0
- package/dist/ink/components/{Help.d.ts → help.d.ts} +4 -9
- package/dist/ink/components/histogram.d.ts +52 -0
- package/dist/ink/components/kbd.d.ts +27 -0
- package/dist/ink/components/line-chart.d.ts +94 -0
- package/dist/ink/components/loading-indicator.d.ts +24 -0
- package/dist/ink/components/masked-input.d.ts +41 -0
- package/dist/ink/components/menu.d.ts +70 -0
- package/dist/ink/components/message-bubble.d.ts +35 -0
- package/dist/ink/components/model-badge.d.ts +32 -0
- package/dist/ink/components/operation-tree.d.ts +46 -0
- package/dist/ink/components/option-list.d.ts +41 -0
- package/dist/ink/components/{Paginator.d.ts → paginator.d.ts} +4 -20
- package/dist/ink/components/paragraph.d.ts +31 -0
- package/dist/ink/components/placeholder.d.ts +47 -0
- package/dist/ink/components/{ProgressBar.d.ts → progress-bar.d.ts} +1 -1
- package/dist/ink/components/radio-group.d.ts +62 -0
- package/dist/ink/components/scatter-plot.d.ts +23 -0
- package/dist/ink/components/scroll/{ControlledScrollView.d.ts → controlled-scroll-view.d.ts} +1 -1
- package/dist/ink/components/scroll/index.d.ts +10 -10
- package/dist/ink/components/scroll/{ScrollBarBox.d.ts → scroll-bar-box.d.ts} +1 -1
- package/dist/ink/components/scroll/{ScrollBar.d.ts → scroll-bar.d.ts} +1 -1
- package/dist/ink/components/scroll/{ScrollList.d.ts → scroll-list.d.ts} +1 -1
- package/dist/ink/components/scroll/{ScrollView.d.ts → scroll-view.d.ts} +1 -1
- package/dist/ink/components/search-input.d.ts +46 -0
- package/dist/ink/components/{SelectInput.d.ts → select-input.d.ts} +2 -2
- package/dist/ink/components/shimmer-text.d.ts +39 -0
- package/dist/ink/components/sparkline.d.ts +30 -0
- package/dist/ink/components/{Spinner.d.ts → spinner.d.ts} +2 -4
- package/dist/ink/components/{StaticRender.d.ts → static-render.d.ts} +14 -2
- package/dist/ink/components/status-line.d.ts +30 -0
- package/dist/ink/components/stepper.d.ts +42 -0
- package/dist/ink/components/{Stopwatch.d.ts → stopwatch.d.ts} +5 -7
- package/dist/ink/components/streaming-text.d.ts +38 -0
- package/dist/ink/components/switch.d.ts +46 -0
- package/dist/ink/components/{Tabs.d.ts → tabs.d.ts} +10 -3
- package/dist/ink/components/tag.d.ts +30 -0
- package/dist/ink/components/{Timer.d.ts → timer.d.ts} +5 -7
- package/dist/ink/components/toast.d.ts +41 -0
- package/dist/ink/components/tooltip.d.ts +36 -0
- package/dist/ink/components/transition.d.ts +53 -0
- package/dist/ink/components/tree-view/theme.d.ts +2 -2
- package/dist/ink/cursor-helpers.d.ts +0 -3
- package/dist/ink/dom.d.ts +9 -8
- package/dist/ink/hooks/use-animation.d.ts +0 -2
- package/dist/ink/hooks/use-app.d.ts +1 -1
- package/dist/ink/hooks/use-focus-manager.d.ts +1 -1
- package/dist/ink/hooks/use-form.d.ts +70 -0
- package/dist/ink/hooks/use-hotkey.d.ts +37 -0
- package/dist/ink/hooks/use-interval.d.ts +25 -0
- package/dist/ink/hooks/use-key-bindings.d.ts +4 -6
- package/dist/ink/hooks/use-key-chord.d.ts +26 -0
- package/dist/ink/hooks/use-linked-scroll.d.ts +1 -1
- package/dist/ink/hooks/use-persistent-state.d.ts +56 -0
- package/dist/ink/hooks/use-stderr.d.ts +1 -1
- package/dist/ink/hooks/use-stdin.d.ts +1 -1
- package/dist/ink/hooks/use-stdout.d.ts +1 -1
- package/dist/ink/hooks/use-stopwatch.d.ts +1 -3
- package/dist/ink/hooks/use-timeout.d.ts +24 -0
- package/dist/ink/hooks/use-timer.d.ts +0 -2
- package/dist/ink/index.d.ts +228 -92
- package/dist/ink/index.js +132 -77
- package/dist/ink/ink.d.ts +7 -6
- package/dist/ink/mouse/constants.d.ts +5 -50
- package/dist/ink/mouse/index.d.ts +2 -2
- package/dist/ink/output.d.ts +2 -1
- package/dist/ink/styled-line.d.ts +10 -0
- package/dist/ink/write-synchronized.d.ts +2 -2
- package/dist/packem_shared/Accordion-BG-yfIkV.js +80 -0
- package/dist/packem_shared/{Alert-Dr3s_LD9.js → Alert-BLcwIW8V.js} +2 -2
- package/dist/packem_shared/AnimatePresence-D8nEOr_B.js +98 -0
- package/dist/packem_shared/ApprovalPrompt-BXdPros1.js +104 -0
- package/dist/packem_shared/AreaChart-CmTcxLum.js +116 -0
- package/dist/packem_shared/{Badge-Dk7EGGM6.js → Badge-CUfbXwAB.js} +1 -1
- package/dist/packem_shared/BarChart-DWRae67P.js +87 -0
- package/dist/packem_shared/{BigText-CjMdY63X.js → BigText-CVq2X7B5.js} +1 -1
- package/dist/packem_shared/BlinkDot-CrbHMR3L.js +11 -0
- package/dist/packem_shared/{Box-D_pSJ9Jp.js → Box-W1w_NGin.js} +4 -6
- package/dist/packem_shared/Breadcrumb-CPdNxVYs.js +26 -0
- package/dist/packem_shared/Button-CBmTbJ_D.js +57 -0
- package/dist/packem_shared/Calendar-C2Qxt-LA.js +139 -0
- package/dist/packem_shared/Canvas-COttmLPX.js +246 -0
- package/dist/packem_shared/Card-D3tGkNCm.js +24 -0
- package/dist/packem_shared/Checkbox-Dpy_4Lws.js +49 -0
- package/dist/packem_shared/{Code-DjQvPBD9.js → Code-CwzzbsLx.js} +3 -3
- package/dist/packem_shared/Collapsible-BMDrXf5C.js +45 -0
- package/dist/packem_shared/CommandBlock-jdOGJPjY.js +80 -0
- package/dist/packem_shared/CommandPalette-B5IfUQwi.js +146 -0
- package/dist/packem_shared/ConfirmDialog-5XJv3Cc4.js +67 -0
- package/dist/packem_shared/{ConfirmInput-85Y4kRQW.js → ConfirmInput-CxUS0XAA.js} +3 -3
- package/dist/packem_shared/{ConsoleOverlay-DBNa4vtj.js → ConsoleOverlay-BvnCEgjG.js} +2 -2
- package/dist/packem_shared/ContentSwitcher-BHFpO5Za.js +81 -0
- package/dist/packem_shared/ControlledScrollView-C2wOOlJO.js +5 -0
- package/dist/packem_shared/DatePicker-CPejKoqS.js +73 -0
- package/dist/packem_shared/DefinitionList-BAwr0l5J.js +18 -0
- package/dist/packem_shared/{DevTools-aMPIsaHx.js → DevTools-BdxRSkhL.js} +6 -4
- package/dist/packem_shared/{Dialog-DsSNAVgC.js → Dialog-S9r7Izff.js} +5 -5
- package/dist/packem_shared/{DiffView-hqaw-2S6.js → DiffView-BR4T6-Sj.js} +4 -4
- package/dist/packem_shared/Divider-DocXIqNn.js +30 -0
- package/dist/packem_shared/{FilePicker-DNwFxRhq.js → FilePicker-BZ55oF_n.js} +39 -32
- package/dist/packem_shared/FormField-BSG16cnA.js +29 -0
- package/dist/packem_shared/{Fullscreen-DrElAE1o.js → Fullscreen-DO7voOq5.js} +2 -2
- package/dist/packem_shared/Gauge-CKXUXxft.js +122 -0
- package/dist/packem_shared/{Gradient-Ql5P0GUd.js → Gradient-Dg0NezWc.js} +3 -3
- package/dist/packem_shared/Heading-BnR7McmP.js +29 -0
- package/dist/packem_shared/Heatmap-_jqISOU0.js +79 -0
- package/dist/packem_shared/{Help-6wanGG38.js → Help-0yZ_IcQg.js} +4 -11
- package/dist/packem_shared/Histogram-cgAjY5AJ.js +92 -0
- package/dist/packem_shared/{InputParser-BKHpWfvN.js → InputParser-BlsfeY9J.js} +8 -6
- package/dist/packem_shared/KEY-STOdi-nc.js +74 -0
- package/dist/packem_shared/Kbd-BNDXQgey.js +19 -0
- package/dist/packem_shared/{LayoutNode-Cjnsodiy.js → LayoutNode-DAkKg9TE.js} +5 -7
- package/dist/packem_shared/LineChart-ef3HF816.js +7 -0
- package/dist/packem_shared/{Link-COcKYfGT.js → Link-DZ2Tiq1m.js} +2 -2
- package/dist/packem_shared/LoadingIndicator-DzbLGfyJ.js +13 -0
- package/dist/packem_shared/{Markdown-y1ISztof.js → Markdown-33bpCUoe.js} +8 -8
- package/dist/packem_shared/MaskedInput-Ctr6v2dO.js +119 -0
- package/dist/packem_shared/Menu-CeKxhEix.js +112 -0
- package/dist/packem_shared/MessageBubble-BMoU8L2Q.js +26 -0
- package/dist/packem_shared/ModelBadge-CNIxPs7v.js +40 -0
- package/dist/packem_shared/{MouseProvider-Y9TSSEGl.js → MouseProvider-CekPbXCh.js} +3 -3
- package/dist/packem_shared/{MultiSelect-ChoLUcDI.js → MultiSelect-yz7-w0Zv.js} +4 -4
- package/dist/packem_shared/{NAMED_COLORS-a4QBvb5r.js → NAMED_COLORS-DcI3erCu.js} +79 -41
- package/dist/packem_shared/OperationTree-Dudx5o1o.js +67 -0
- package/dist/packem_shared/OptionList-CTyqQaZ1.js +24 -0
- package/dist/packem_shared/{OrderedList-Cp7pXr6m.js → OrderedList-VsvSmHUC.js} +2 -2
- package/dist/packem_shared/{Paginator-D1AuD-kj.js → Paginator-DmGogvEI.js} +44 -44
- package/dist/packem_shared/Paragraph-CNNhfepo.js +9 -0
- package/dist/packem_shared/Placeholder-DkM69Q8Z.js +29 -0
- package/dist/packem_shared/{ProgressBar-DOfpVagn.js → ProgressBar-B7cS4uQm.js} +2 -2
- package/dist/packem_shared/RadioGroup-B4F9PUyL.js +108 -0
- package/dist/packem_shared/{ResizeObserverEntry-Br4seLeQ.js → ResizeObserverEntry-Vr8GZ74x.js} +4 -4
- package/dist/packem_shared/ScatterPlot-CWOg4G5h.js +63 -0
- package/dist/packem_shared/{ScrollBar-EWAs2Uc7.js → ScrollBar-DFeWH43I.js} +2 -2
- package/dist/packem_shared/{ScrollBarBox-DTNNlh7R.js → ScrollBarBox-C7VL6Izd.js} +2 -2
- package/dist/packem_shared/{ScrollList-DCeIFL8M.js → ScrollList-DRcr_RrN.js} +2 -2
- package/dist/packem_shared/{ScrollView-v3MCNIyX.js → ScrollView-C6rdlGwU.js} +4 -4
- package/dist/packem_shared/SearchInput-cB8zFhSg.js +32 -0
- package/dist/packem_shared/{SelectInput-BN2TMyxp.js → SelectInput-WzZSqp72.js} +6 -6
- package/dist/packem_shared/{SelectInputIndicator-DkRMoH_b.js → SelectInputIndicator-DKeN6v5Z.js} +2 -2
- package/dist/packem_shared/{SelectInputItem-BF9LQgKu.js → SelectInputItem-CxFL3spM.js} +1 -1
- package/dist/packem_shared/ShimmerText-B2VbPUSB.js +34 -0
- package/dist/packem_shared/{Slider-BWD7xZX6.js → Slider-BOrNTOQe.js} +3 -3
- package/dist/packem_shared/{Spacer-Bs4ER-HK.js → Spacer-DhmXyTb8.js} +1 -1
- package/dist/packem_shared/Sparkline-BSbjPrwK.js +44 -0
- package/dist/packem_shared/Spinner-BcO5BCAa.js +1942 -0
- package/dist/packem_shared/StaticRender-C3XWvJdC.js +69 -0
- package/dist/packem_shared/StatusLine-DQNUstN9.js +22 -0
- package/dist/packem_shared/{StatusMessage-BtSYxzwb.js → StatusMessage-BYTL6Pl-.js} +2 -2
- package/dist/packem_shared/Stepper-CmUPRK3z.js +60 -0
- package/dist/packem_shared/Stopwatch-zqLQAxXC.js +21 -0
- package/dist/packem_shared/StreamingText-BmuoJtGu.js +38 -0
- package/dist/packem_shared/Switch-DcPdy8nm.js +59 -0
- package/dist/packem_shared/{Table-D-rSVlzb.js → Table-Bgxo87Df.js} +11 -5
- package/dist/packem_shared/{Tabs-BXpZwLWo.js → Tabs-DubuHdYV.js} +53 -35
- package/dist/packem_shared/Tag-CCqM7Ee9.js +35 -0
- package/dist/packem_shared/{Text-DvAUdZcK.js → Text-CtUwV89_.js} +2 -2
- package/dist/packem_shared/{TextInput-C79WEQ5U.js → TextInput-C9r7zT0U.js} +3 -3
- package/dist/packem_shared/{Textarea-Dj06R6Zd.js → Textarea-CGmgt-Nl.js} +5 -5
- package/dist/packem_shared/Timer-D7ZZ0_wz.js +20 -0
- package/dist/packem_shared/Toast-DXSCXFPY.js +37 -0
- package/dist/packem_shared/Tooltip-SvVjj-2k.js +32 -0
- package/dist/packem_shared/{Transform-BHxY_dAM.js → Transform-Cfyva2wd.js} +1 -1
- package/dist/packem_shared/Transition-CbNfKhaj.js +108 -0
- package/dist/packem_shared/{TreeView-C2062dtj.js → TreeView-DGlZeSsK.js} +4 -4
- package/dist/packem_shared/{TuiApp-DfxOnXqi.js → TuiApp-DtdgNRWa.js} +4 -2
- package/dist/packem_shared/{TuiContext-CqEjMyXd.js → TuiContext-lXmJFd-x.js} +6 -3
- package/dist/packem_shared/{UnorderedList-DhnadWjX.js → UnorderedList-D8RPaEAW.js} +2 -2
- package/dist/packem_shared/{ansi-parser-0BdVTKho.js → ansi-parser-BOP8fNdT.js} +6 -4
- package/dist/packem_shared/braille-BoEWoH2I.js +93 -0
- package/dist/packem_shared/{comparePoints-CGMDnd3_.js → comparePoints-CAAlhiMS.js} +2 -2
- package/dist/packem_shared/{ControlledScrollView-BlOaxcsN.js → controlled-scroll-view-DJXfdWMm.js} +2 -2
- package/dist/packem_shared/{createInlineLoop-BxMmcq9D.js → createInlineLoop-Dnfm1ZSJ.js} +19 -13
- package/dist/packem_shared/createMemoryStorage-esFJ61La.js +115 -0
- package/dist/packem_shared/createScreen-Dh0sZlQ0.js +38 -0
- package/dist/packem_shared/{dom-DvzhsAez.js → dom-CrbpQgat.js} +17 -14
- package/dist/packem_shared/{getPathToRoot-a1wbwxfL.js → getPathToRoot-BbvlppLC.js} +2 -2
- package/dist/packem_shared/{getScrollHeight-BubfU_df.js → getScrollHeight-Cz3CDQN2.js} +5 -5
- package/dist/packem_shared/line-chart-VGU2l7pu.js +139 -0
- package/dist/packem_shared/{measure-element-Reza_yfC.js → measure-element-Bc6PEaIe.js} +26 -17
- package/dist/packem_shared/{measure-text-DItZYotK.js → measure-text-BdOhbOeh.js} +74 -7
- package/dist/packem_shared/{measureElement-CTgFCmKd.js → measureElement-DTELRaij.js} +2 -2
- package/dist/packem_shared/parseSgrMouse-4hpBJBsW.js +1 -0
- package/dist/packem_shared/{processLayout-BQ9kXfd3.js → processLayout-B0Coz0Ua.js} +1 -1
- package/dist/packem_shared/{reconciler-gfmqURLy.js → reconciler-Dd7Z0A97.js} +21 -5
- package/dist/packem_shared/{reconciler-BXf6miSS.js → reconciler-mzMwSOft.js} +23 -13
- package/dist/packem_shared/{render-BAwdjfki.js → render-Bm9Oa1sG.js} +72 -79
- package/dist/packem_shared/{render-Bpjhf0lD.js → render-CjlKdg4m.js} +15 -11
- package/dist/packem_shared/{renderToString-ClIaXgrC.js → renderToString-CWYS1ZXE.js} +4 -4
- package/dist/packem_shared/{renderToString-Cfg55DRD.js → renderToString-DB3ILWFm.js} +4 -4
- package/dist/packem_shared/{renderTreeToBuffer-D3mo7M7m.js → renderTreeToBuffer-CDDTGyZn.js} +8 -5
- package/dist/packem_shared/{renderer-B3wROkeg.js → renderer-GE9OLNNM.js} +47 -41
- package/dist/packem_shared/{setEnableStyledLineCache-BpskngSJ.js → setEnableStyledLineCache-D5f4favX.js} +1 -1
- package/dist/packem_shared/{text-width-DhuarWcB.js → text-width-Db-AxMea.js} +2 -1
- package/dist/packem_shared/{token-to-elements-BRFl_rzw.js → token-to-elements-CK4s8MJd.js} +2 -2
- package/dist/packem_shared/{useAnimation-kj31sA-T.js → useAnimation-DV22qxiJ.js} +2 -2
- package/dist/packem_shared/{useApp-DPQlRzi5.js → useApp-Cbi788rV.js} +1 -1
- package/dist/packem_shared/{useBoxMetrics-rBjKc-g4.js → useBoxMetrics-_5icypir.js} +2 -2
- package/dist/packem_shared/{useClipboard-B_9-adw1.js → useClipboard-MNj6MNR-.js} +1 -1
- package/dist/packem_shared/{useCursor-BIJzc8k9.js → useCursor-DS6LjIgv.js} +1 -1
- package/dist/packem_shared/{useFocus-CNl5QHHf.js → useFocus-DLoGQJd9.js} +2 -2
- package/dist/packem_shared/{useFocusManager-BPYaUuKQ.js → useFocusManager-UeZWtnNc.js} +1 -1
- package/dist/packem_shared/useForm-sQENbEuv.js +88 -0
- package/dist/packem_shared/useHotkey-D9giUX3q.js +112 -0
- package/dist/packem_shared/{useInput-Cfp5zB2s.js → useInput-DKZbqMRc.js} +2 -2
- package/dist/packem_shared/useInterval-CSXM8c2I.js +32 -0
- package/dist/packem_shared/{useIsScreenReaderEnabled-CnGKCe0f.js → useIsScreenReaderEnabled-BeoVqo1R.js} +1 -1
- package/dist/packem_shared/{useKeyBindings-B78l1E1n.js → useKeyBindings-S4fSIEAk.js} +2 -2
- package/dist/packem_shared/useKeyChord-BmXGNuEO.js +114 -0
- package/dist/packem_shared/{usePaste-Ct8J4AGR.js → usePaste-png73gvT.js} +2 -2
- package/dist/packem_shared/{useScrollInput-D3CpBq_a.js → useScrollInput-DfzRGQFe.js} +2 -2
- package/dist/packem_shared/{useStderr-CAOVUh4E.js → useStderr-BSWerMZ7.js} +1 -1
- package/dist/packem_shared/{useStdin-X-O0kd-n.js → useStdin-Rf0zPzVA.js} +1 -1
- package/dist/packem_shared/{useStdout-DyF6DSH0.js → useStdout-B5yRcg9N.js} +1 -1
- package/dist/packem_shared/{useStopwatch-qC4Beai4.js → useStopwatch-C__Zu6hd.js} +2 -2
- package/dist/packem_shared/{useTerminalPalette-BaWO2c4Q.js → useTerminalPalette-CtFG2JTq.js} +2 -2
- package/dist/packem_shared/{useTextSelection-mXtxgsPK.js → useTextSelection-ChrYZXsn.js} +2 -2
- package/dist/packem_shared/useTimeout-DuCqgWPX.js +34 -0
- package/dist/packem_shared/{useTimer-CPQ7j827.js → useTimer-DnBtbhB5.js} +1 -1
- package/dist/packem_shared/{useTreeView-BT57P3Kx.js → useTreeView-mkN5Di7w.js} +1 -1
- package/dist/packem_shared/{useWindowSize-ugEmGZJm.js → useWindowSize-D3UU41mv.js} +1 -1
- package/dist/packem_shared/waitFor-Cv9M2jKA.js +39 -0
- package/dist/packem_shared/{wrapOrTruncateStyledLine-DN3Nogoc.js → wrapOrTruncateStyledLine-49Mne3t3.js} +1 -1
- package/dist/react/index.js +7 -7
- package/dist/react/layout.d.ts +0 -2
- package/dist/testing/index.d.ts +4 -4
- package/dist/testing/index.js +6 -114
- package/dist/testing/wait-for.d.ts +0 -1
- package/index.js +691 -539
- package/package.json +17 -17
- package/dist/ink/components/file-picker/index.d.ts +0 -3
- package/dist/ink/components/tree-view/index.d.ts +0 -11
- package/dist/packem_shared/ControlledScrollView-DfAhcufF.js +0 -5
- package/dist/packem_shared/Spinner-BuI-kN4p.js +0 -1799
- package/dist/packem_shared/StaticRender-tYwH6QXl.js +0 -33
- package/dist/packem_shared/Stopwatch-DjtTCyHn.js +0 -23
- package/dist/packem_shared/Timer-wi9zuh4n.js +0 -22
- package/dist/packem_shared/parseSgrMouse-BHVBPP9G.js +0 -1
- /package/dist/ink/components/{AccessibilityContext.d.ts → accessibility-context.d.ts} +0 -0
- /package/dist/ink/components/{Alert.d.ts → alert.d.ts} +0 -0
- /package/dist/ink/components/{AnimationContext.d.ts → animation-context.d.ts} +0 -0
- /package/dist/ink/components/{AppContext.d.ts → app-context.d.ts} +0 -0
- /package/dist/ink/components/{App.d.ts → app.d.ts} +0 -0
- /package/dist/ink/components/{BackgroundContext.d.ts → background-context.d.ts} +0 -0
- /package/dist/ink/components/{Badge.d.ts → badge.d.ts} +0 -0
- /package/dist/ink/components/{BigText.d.ts → big-text.d.ts} +0 -0
- /package/dist/ink/components/{Box.d.ts → box.d.ts} +0 -0
- /package/dist/ink/components/{Code.d.ts → code.d.ts} +0 -0
- /package/dist/ink/components/{ConfirmInput.d.ts → confirm-input.d.ts} +0 -0
- /package/dist/ink/components/{ConsoleOverlay.d.ts → console-overlay.d.ts} +0 -0
- /package/dist/ink/components/{CursorContext.d.ts → cursor-context.d.ts} +0 -0
- /package/dist/ink/components/{Cursor.d.ts → cursor.d.ts} +0 -0
- /package/dist/ink/components/{Dialog.d.ts → dialog.d.ts} +0 -0
- /package/dist/ink/components/{DiffView.d.ts → diff-view.d.ts} +0 -0
- /package/dist/ink/components/{ErrorBoundary.d.ts → error-boundary.d.ts} +0 -0
- /package/dist/ink/components/{ErrorOverview.d.ts → error-overview.d.ts} +0 -0
- /package/dist/ink/components/{FocusContext.d.ts → focus-context.d.ts} +0 -0
- /package/dist/ink/components/{Gradient.d.ts → gradient.d.ts} +0 -0
- /package/dist/ink/components/{Link.d.ts → link.d.ts} +0 -0
- /package/dist/ink/components/{Markdown.d.ts → markdown.d.ts} +0 -0
- /package/dist/ink/components/{MultiSelect.d.ts → multi-select.d.ts} +0 -0
- /package/dist/ink/components/{Newline.d.ts → newline.d.ts} +0 -0
- /package/dist/ink/components/{OrderedList.d.ts → ordered-list.d.ts} +0 -0
- /package/dist/ink/components/{SelectInputIndicator.d.ts → select-input-indicator.d.ts} +0 -0
- /package/dist/ink/components/{SelectInputItem.d.ts → select-input-item.d.ts} +0 -0
- /package/dist/ink/components/{Slider.d.ts → slider.d.ts} +0 -0
- /package/dist/ink/components/{Spacer.d.ts → spacer.d.ts} +0 -0
- /package/dist/ink/components/{Static.d.ts → static.d.ts} +0 -0
- /package/dist/ink/components/{StatusMessage.d.ts → status-message.d.ts} +0 -0
- /package/dist/ink/components/{StderrContext.d.ts → stderr-context.d.ts} +0 -0
- /package/dist/ink/components/{StdinContext.d.ts → stdin-context.d.ts} +0 -0
- /package/dist/ink/components/{StdoutContext.d.ts → stdout-context.d.ts} +0 -0
- /package/dist/ink/components/{Tab.d.ts → tab.d.ts} +0 -0
- /package/dist/ink/components/{Table.d.ts → table.d.ts} +0 -0
- /package/dist/ink/components/{TextInput.d.ts → text-input.d.ts} +0 -0
- /package/dist/ink/components/{Text.d.ts → text.d.ts} +0 -0
- /package/dist/ink/components/{Textarea.d.ts → textarea.d.ts} +0 -0
- /package/dist/ink/components/{Transform.d.ts → transform.d.ts} +0 -0
- /package/dist/ink/components/tree-view/{TreeViewNode.d.ts → tree-view-node.d.ts} +0 -0
- /package/dist/ink/components/tree-view/{TreeView.d.ts → tree-view.d.ts} +0 -0
- /package/dist/ink/components/{UnorderedList.d.ts → unordered-list.d.ts} +0 -0
- /package/dist/ink/mouse/{Fullscreen.d.ts → fullscreen.d.ts} +0 -0
- /package/dist/ink/mouse/{MouseProvider.d.ts → mouse-provider.d.ts} +0 -0
- /package/dist/packem_shared/{AccessibilityContext-BLelHhNU.js → accessibility-context-BLelHhNU.js} +0 -0
- /package/dist/packem_shared/{AnimationContext-BcJg8Jr6.js → animation-context-BcJg8Jr6.js} +0 -0
- /package/dist/packem_shared/{AppContext-CP0U6H7O.js → app-context-CP0U6H7O.js} +0 -0
- /package/dist/packem_shared/{BackgroundContext-BAUaxfOb.js → background-context-BAUaxfOb.js} +0 -0
- /package/dist/packem_shared/{CursorContext-JxRzlqAx.js → cursor-context-JxRzlqAx.js} +0 -0
- /package/dist/packem_shared/{FocusContext-CWkYtgcm.js → focus-context-CWkYtgcm.js} +0 -0
- /package/dist/packem_shared/{StderrContext-Bj4Mf7v7.js → stderr-context-Bj4Mf7v7.js} +0 -0
- /package/dist/packem_shared/{StdinContext-Bq_GNJ3z.js → stdin-context-Bq_GNJ3z.js} +0 -0
- /package/dist/packem_shared/{StdoutContext-CgjWeCdO.js → stdout-context-CgjWeCdO.js} +0 -0
package/dist/ink/index.d.ts
CHANGED
|
@@ -1,92 +1,216 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Public API for the `@visulima/tui` ink entry point.
|
|
3
|
+
*
|
|
4
|
+
* The bulk of the component and hook surface lives in dedicated barrels
|
|
5
|
+
* (`./components`, `./hooks`) — this file re-exports those and adds the
|
|
6
|
+
* lower-level primitives (DOM helpers, renderers, mouse, layout, …) that
|
|
7
|
+
* don't fit either category.
|
|
8
|
+
*/
|
|
1
9
|
export type { ClipboardTarget } from "./clipboard.d.ts";
|
|
2
10
|
export { clearOsc52, isOsc52Supported, writeOsc52 } from "./clipboard.d.ts";
|
|
3
11
|
export type { ColorBlindnessType, ColorMatrix } from "./color-matrix.d.ts";
|
|
4
12
|
export { applyColorMatrix, COLOR_BLINDNESS_COMPENSATION, COLOR_BLINDNESS_SIMULATION, hexToRgb, IDENTITY_MATRIX, rgbToHex, transformHexColor, } from "./color-matrix.d.ts";
|
|
5
|
-
export type { Props as
|
|
6
|
-
export { default as
|
|
7
|
-
export type { Props as
|
|
8
|
-
export
|
|
9
|
-
export {
|
|
10
|
-
export
|
|
11
|
-
export {
|
|
12
|
-
export type { Props as
|
|
13
|
-
export { default as
|
|
14
|
-
export type { Props as
|
|
15
|
-
export { default as
|
|
16
|
-
export type { Props as
|
|
17
|
-
export { default as
|
|
18
|
-
export type {
|
|
19
|
-
export { default as
|
|
20
|
-
export type { Props as
|
|
21
|
-
export { default as
|
|
22
|
-
export type { Props as
|
|
23
|
-
export { default as
|
|
24
|
-
export type {
|
|
25
|
-
export {
|
|
26
|
-
export type {
|
|
27
|
-
export { default as
|
|
28
|
-
export type {
|
|
29
|
-
export { default as
|
|
30
|
-
export type { Props as
|
|
31
|
-
export { default as
|
|
32
|
-
export type { Props as
|
|
33
|
-
export { default as
|
|
34
|
-
export type { Props as
|
|
35
|
-
export { default as
|
|
36
|
-
export type {
|
|
37
|
-
export { default as
|
|
38
|
-
export type { Props as
|
|
39
|
-
export { default as
|
|
40
|
-
export type {
|
|
41
|
-
export { default as
|
|
42
|
-
export type {
|
|
43
|
-
export { default as
|
|
44
|
-
export type { Props as
|
|
45
|
-
export { default as
|
|
46
|
-
export type {
|
|
47
|
-
export {
|
|
48
|
-
export type {
|
|
49
|
-
export { default as
|
|
50
|
-
export type { Props as
|
|
51
|
-
export { default as
|
|
52
|
-
export type { Props as
|
|
53
|
-
export { default as
|
|
54
|
-
export type { Props as
|
|
55
|
-
export { default as
|
|
56
|
-
export {
|
|
57
|
-
export
|
|
58
|
-
export {
|
|
59
|
-
export
|
|
60
|
-
export {
|
|
61
|
-
export
|
|
62
|
-
export {
|
|
63
|
-
export
|
|
64
|
-
export {
|
|
65
|
-
export
|
|
66
|
-
export {
|
|
67
|
-
export
|
|
68
|
-
export type {
|
|
69
|
-
export type { Props as
|
|
70
|
-
export
|
|
71
|
-
export {
|
|
72
|
-
export
|
|
73
|
-
export {
|
|
74
|
-
export
|
|
75
|
-
export {
|
|
76
|
-
export
|
|
77
|
-
export {
|
|
78
|
-
export
|
|
79
|
-
export {
|
|
80
|
-
export
|
|
81
|
-
export {
|
|
82
|
-
export
|
|
83
|
-
export {
|
|
84
|
-
export
|
|
85
|
-
export {
|
|
86
|
-
export
|
|
87
|
-
export {
|
|
88
|
-
export
|
|
89
|
-
export {
|
|
13
|
+
export type { AccordionItem, Props as AccordionProps } from "./components/accordion.d.ts";
|
|
14
|
+
export { default as Accordion } from "./components/accordion.d.ts";
|
|
15
|
+
export type { Props as AlertProps, AlertVariant } from "./components/alert.d.ts";
|
|
16
|
+
export { default as Alert } from "./components/alert.d.ts";
|
|
17
|
+
export type { Props as AnimatePresenceProps } from "./components/animate-presence.d.ts";
|
|
18
|
+
export { default as AnimatePresence } from "./components/animate-presence.d.ts";
|
|
19
|
+
export type { Props as AppProps } from "./components/app-context.d.ts";
|
|
20
|
+
export type { ApprovalDecision, Props as ApprovalPromptProps, ApprovalRisk } from "./components/approval-prompt.d.ts";
|
|
21
|
+
export { default as ApprovalPrompt } from "./components/approval-prompt.d.ts";
|
|
22
|
+
export type { Props as AreaChartProps } from "./components/area-chart.d.ts";
|
|
23
|
+
export { default as AreaChart } from "./components/area-chart.d.ts";
|
|
24
|
+
export type { Props as BadgeProps } from "./components/badge.d.ts";
|
|
25
|
+
export { default as Badge } from "./components/badge.d.ts";
|
|
26
|
+
export type { Props as BarChartProps, BarDatum } from "./components/bar-chart.d.ts";
|
|
27
|
+
export { default as BarChart } from "./components/bar-chart.d.ts";
|
|
28
|
+
export type { Align as BigTextAlign, BackgroundColor as BigTextBackgroundColor, Font as BigTextFont, Props as BigTextProps } from "./components/big-text.d.ts";
|
|
29
|
+
export { default as BigText } from "./components/big-text.d.ts";
|
|
30
|
+
export type { Props as BlinkDotProps } from "./components/blink-dot.d.ts";
|
|
31
|
+
export { default as BlinkDot } from "./components/blink-dot.d.ts";
|
|
32
|
+
export type { Props as BoxProps } from "./components/box.d.ts";
|
|
33
|
+
export { default as Box } from "./components/box.d.ts";
|
|
34
|
+
export type { BreadcrumbItem, Props as BreadcrumbProps } from "./components/breadcrumb.d.ts";
|
|
35
|
+
export { default as Breadcrumb } from "./components/breadcrumb.d.ts";
|
|
36
|
+
export type { Props as ButtonProps, ButtonVariant } from "./components/button.d.ts";
|
|
37
|
+
export { default as Button } from "./components/button.d.ts";
|
|
38
|
+
export type { Props as CalendarProps } from "./components/calendar.d.ts";
|
|
39
|
+
export { default as Calendar } from "./components/calendar.d.ts";
|
|
40
|
+
export type { CanvasColor, CanvasContext, Props as CanvasProps, CellStyle } from "./components/canvas.d.ts";
|
|
41
|
+
export { default as Canvas } from "./components/canvas.d.ts";
|
|
42
|
+
export type { Props as CardProps } from "./components/card.d.ts";
|
|
43
|
+
export { default as Card } from "./components/card.d.ts";
|
|
44
|
+
export type { Props as CheckboxProps } from "./components/checkbox.d.ts";
|
|
45
|
+
export { default as Checkbox } from "./components/checkbox.d.ts";
|
|
46
|
+
export type { Props as CodeProps } from "./components/code.d.ts";
|
|
47
|
+
export { default as Code } from "./components/code.d.ts";
|
|
48
|
+
export type { Props as CollapsibleProps } from "./components/collapsible.d.ts";
|
|
49
|
+
export { default as Collapsible } from "./components/collapsible.d.ts";
|
|
50
|
+
export type { Props as CommandBlockProps, CommandStatus } from "./components/command-block.d.ts";
|
|
51
|
+
export { default as CommandBlock } from "./components/command-block.d.ts";
|
|
52
|
+
export type { CommandEntry, Props as CommandPaletteProps } from "./components/command-palette.d.ts";
|
|
53
|
+
export { default as CommandPalette } from "./components/command-palette.d.ts";
|
|
54
|
+
export type { Props as ConfirmDialogProps, ConfirmTone } from "./components/confirm-dialog.d.ts";
|
|
55
|
+
export { default as ConfirmDialog } from "./components/confirm-dialog.d.ts";
|
|
56
|
+
export type { Props as ConfirmInputProps } from "./components/confirm-input.d.ts";
|
|
57
|
+
export { default as ConfirmInput } from "./components/confirm-input.d.ts";
|
|
58
|
+
export type { ConsoleOverlayDock, Props as ConsoleOverlayProps } from "./components/console-overlay.d.ts";
|
|
59
|
+
export { default as ConsoleOverlay } from "./components/console-overlay.d.ts";
|
|
60
|
+
export type { ContentSwitcherOption, Props as ContentSwitcherProps } from "./components/content-switcher.d.ts";
|
|
61
|
+
export { default as ContentSwitcher } from "./components/content-switcher.d.ts";
|
|
62
|
+
export type { Props as CursorProps } from "./components/cursor.d.ts";
|
|
63
|
+
export { default as Cursor } from "./components/cursor.d.ts";
|
|
64
|
+
export type { Props as DatePickerProps } from "./components/date-picker.d.ts";
|
|
65
|
+
export { default as DatePicker } from "./components/date-picker.d.ts";
|
|
66
|
+
export type { DefinitionItem, Props as DefinitionListProps } from "./components/definition-list.d.ts";
|
|
67
|
+
export { default as DefinitionList } from "./components/definition-list.d.ts";
|
|
68
|
+
export type { Props as DialogProps } from "./components/dialog.d.ts";
|
|
69
|
+
export { default as Dialog } from "./components/dialog.d.ts";
|
|
70
|
+
export type { DiffViewMode, Props as DiffViewProps, InlineDiffMode } from "./components/diff-view.d.ts";
|
|
71
|
+
export { default as DiffView } from "./components/diff-view.d.ts";
|
|
72
|
+
export type { Props as DividerProps } from "./components/divider.d.ts";
|
|
73
|
+
export { default as Divider } from "./components/divider.d.ts";
|
|
74
|
+
export type { Props as FilePickerProps } from "./components/file-picker/file-picker.d.ts";
|
|
75
|
+
export { default as FilePicker } from "./components/file-picker/file-picker.d.ts";
|
|
76
|
+
export type { FileEntry, FilePickerFilter } from "./components/file-picker/types.d.ts";
|
|
77
|
+
export type { FormFieldProps, Props as FormProps } from "./components/form.d.ts";
|
|
78
|
+
export { default as Form, FormField } from "./components/form.d.ts";
|
|
79
|
+
export type { Props as GaugeProps, GaugeSize, GaugeThreshold } from "./components/gauge.d.ts";
|
|
80
|
+
export { default as Gauge } from "./components/gauge.d.ts";
|
|
81
|
+
export type { GradientColors, GradientName, Props as GradientProps } from "./components/gradient.d.ts";
|
|
82
|
+
export { default as Gradient } from "./components/gradient.d.ts";
|
|
83
|
+
export type { HeadingLevel, Props as HeadingProps } from "./components/heading.d.ts";
|
|
84
|
+
export { default as Heading } from "./components/heading.d.ts";
|
|
85
|
+
export type { HeatmapProps } from "./components/heatmap.d.ts";
|
|
86
|
+
export { default as Heatmap } from "./components/heatmap.d.ts";
|
|
87
|
+
export type { Props as HelpProps } from "./components/help.d.ts";
|
|
88
|
+
export { default as Help } from "./components/help.d.ts";
|
|
89
|
+
export type { Props as HistogramProps } from "./components/histogram.d.ts";
|
|
90
|
+
export { default as Histogram } from "./components/histogram.d.ts";
|
|
91
|
+
export type { Props as KbdProps } from "./components/kbd.d.ts";
|
|
92
|
+
export { default as Kbd } from "./components/kbd.d.ts";
|
|
93
|
+
export type { LineChartProps, LineSeries } from "./components/line-chart.d.ts";
|
|
94
|
+
export { default as LineChart } from "./components/line-chart.d.ts";
|
|
95
|
+
export type { Props as LinkProps } from "./components/link.d.ts";
|
|
96
|
+
export { default as Link } from "./components/link.d.ts";
|
|
97
|
+
export type { Props as LoadingIndicatorProps } from "./components/loading-indicator.d.ts";
|
|
98
|
+
export { default as LoadingIndicator } from "./components/loading-indicator.d.ts";
|
|
99
|
+
export type { Props as MarkdownProps } from "./components/markdown.d.ts";
|
|
100
|
+
export { default as Markdown } from "./components/markdown.d.ts";
|
|
101
|
+
export type { Props as MaskedInputProps } from "./components/masked-input.d.ts";
|
|
102
|
+
export { default as MaskedInput } from "./components/masked-input.d.ts";
|
|
103
|
+
export type { MenuItem, Props as MenuProps, MenuSection } from "./components/menu.d.ts";
|
|
104
|
+
export { default as Menu } from "./components/menu.d.ts";
|
|
105
|
+
export type { Props as MessageBubbleProps, MessageRole } from "./components/message-bubble.d.ts";
|
|
106
|
+
export { default as MessageBubble } from "./components/message-bubble.d.ts";
|
|
107
|
+
export type { Props as ModelBadgeProps } from "./components/model-badge.d.ts";
|
|
108
|
+
export { default as ModelBadge } from "./components/model-badge.d.ts";
|
|
109
|
+
export type { MultiSelectOption, Props as MultiSelectProps } from "./components/multi-select.d.ts";
|
|
110
|
+
export { default as MultiSelect } from "./components/multi-select.d.ts";
|
|
111
|
+
export type { Props as NewlineProps } from "./components/newline.d.ts";
|
|
112
|
+
export { default as Newline } from "./components/newline.d.ts";
|
|
113
|
+
export type { OperationNode, OperationStatus, Props as OperationTreeProps } from "./components/operation-tree.d.ts";
|
|
114
|
+
export { default as OperationTree } from "./components/operation-tree.d.ts";
|
|
115
|
+
export type { OptionListEntry, Props as OptionListProps } from "./components/option-list.d.ts";
|
|
116
|
+
export { default as OptionList } from "./components/option-list.d.ts";
|
|
117
|
+
export type { OrderedListEntry, Props as OrderedListProps } from "./components/ordered-list.d.ts";
|
|
118
|
+
export { default as OrderedList } from "./components/ordered-list.d.ts";
|
|
119
|
+
export type { PageMeta, Props as PaginatorProps } from "./components/paginator.d.ts";
|
|
120
|
+
export { default as Paginator } from "./components/paginator.d.ts";
|
|
121
|
+
export type { Props as ParagraphProps } from "./components/paragraph.d.ts";
|
|
122
|
+
export { default as Paragraph } from "./components/paragraph.d.ts";
|
|
123
|
+
export type { Props as PlaceholderProps } from "./components/placeholder.d.ts";
|
|
124
|
+
export { default as Placeholder } from "./components/placeholder.d.ts";
|
|
125
|
+
export type { Props as ProgressBarProps } from "./components/progress-bar.d.ts";
|
|
126
|
+
export { default as ProgressBar } from "./components/progress-bar.d.ts";
|
|
127
|
+
export type { Props as RadioGroupProps, RadioOption } from "./components/radio-group.d.ts";
|
|
128
|
+
export { default as RadioGroup } from "./components/radio-group.d.ts";
|
|
129
|
+
export type { Props as ScatterPlotProps } from "./components/scatter-plot.d.ts";
|
|
130
|
+
export { default as ScatterPlot } from "./components/scatter-plot.d.ts";
|
|
131
|
+
export type { ControlledScrollViewProps, ControlledScrollViewRef } from "./components/scroll/controlled-scroll-view.d.ts";
|
|
132
|
+
export { ControlledScrollView } from "./components/scroll/controlled-scroll-view.d.ts";
|
|
133
|
+
export type { ScrollBarPlacement, ScrollBarProps, ScrollBarStyle } from "./components/scroll/scroll-bar.d.ts";
|
|
134
|
+
export { ScrollBar } from "./components/scroll/scroll-bar.d.ts";
|
|
135
|
+
export type { ScrollBarBoxProps } from "./components/scroll/scroll-bar-box.d.ts";
|
|
136
|
+
export { ScrollBarBox } from "./components/scroll/scroll-bar-box.d.ts";
|
|
137
|
+
export type { ScrollAlignment, ScrollListProps, ScrollListRef } from "./components/scroll/scroll-list.d.ts";
|
|
138
|
+
export { ScrollList } from "./components/scroll/scroll-list.d.ts";
|
|
139
|
+
export type { ScrollViewProps, ScrollViewRef } from "./components/scroll/scroll-view.d.ts";
|
|
140
|
+
export { ScrollView } from "./components/scroll/scroll-view.d.ts";
|
|
141
|
+
export type { Props as SearchInputProps } from "./components/search-input.d.ts";
|
|
142
|
+
export { default as SearchInput } from "./components/search-input.d.ts";
|
|
143
|
+
export type { SelectInputEntry, Item as SelectInputItemType, Props as SelectInputProps, SeparatorItem as SelectInputSeparator, } from "./components/select-input.d.ts";
|
|
144
|
+
export { default as SelectInput } from "./components/select-input.d.ts";
|
|
145
|
+
export type { Props as SelectInputIndicatorProps } from "./components/select-input-indicator.d.ts";
|
|
146
|
+
export { default as SelectInputIndicator } from "./components/select-input-indicator.d.ts";
|
|
147
|
+
export type { Props as SelectInputItemProps } from "./components/select-input-item.d.ts";
|
|
148
|
+
export { default as SelectInputItem } from "./components/select-input-item.d.ts";
|
|
149
|
+
export type { Props as ShimmerTextProps } from "./components/shimmer-text.d.ts";
|
|
150
|
+
export { default as ShimmerText } from "./components/shimmer-text.d.ts";
|
|
151
|
+
export type { Props as SliderProps } from "./components/slider.d.ts";
|
|
152
|
+
export { default as Slider } from "./components/slider.d.ts";
|
|
153
|
+
export { default as Spacer } from "./components/spacer.d.ts";
|
|
154
|
+
export type { Props as SparklineProps } from "./components/sparkline.d.ts";
|
|
155
|
+
export { default as Sparkline } from "./components/sparkline.d.ts";
|
|
156
|
+
export type { Props as SpinnerProps } from "./components/spinner.d.ts";
|
|
157
|
+
export { default as Spinner } from "./components/spinner.d.ts";
|
|
158
|
+
export type { Props as StaticProps } from "./components/static.d.ts";
|
|
159
|
+
export { default as Static } from "./components/static.d.ts";
|
|
160
|
+
export type { Props as StaticRenderProps } from "./components/static-render.d.ts";
|
|
161
|
+
export { default as StaticRender } from "./components/static-render.d.ts";
|
|
162
|
+
export type { Props as StatusLineProps } from "./components/status-line.d.ts";
|
|
163
|
+
export { default as StatusLine } from "./components/status-line.d.ts";
|
|
164
|
+
export type { Props as StatusMessageProps, StatusMessageVariant } from "./components/status-message.d.ts";
|
|
165
|
+
export { default as StatusMessage } from "./components/status-message.d.ts";
|
|
166
|
+
export type { Props as StderrProps } from "./components/stderr-context.d.ts";
|
|
167
|
+
export type { PublicProps as StdinProps } from "./components/stdin-context.d.ts";
|
|
168
|
+
export type { Props as StdoutProps } from "./components/stdout-context.d.ts";
|
|
169
|
+
export type { Props as StepperProps, StepperStep, StepStatus } from "./components/stepper.d.ts";
|
|
170
|
+
export { default as Stepper } from "./components/stepper.d.ts";
|
|
171
|
+
export type { Props as StopwatchProps, StopwatchRef } from "./components/stopwatch.d.ts";
|
|
172
|
+
export { default as Stopwatch } from "./components/stopwatch.d.ts";
|
|
173
|
+
export type { Props as StreamingTextProps } from "./components/streaming-text.d.ts";
|
|
174
|
+
export { default as StreamingText } from "./components/streaming-text.d.ts";
|
|
175
|
+
export type { Props as SwitchProps } from "./components/switch.d.ts";
|
|
176
|
+
export { default as Switch } from "./components/switch.d.ts";
|
|
177
|
+
export type { Props as TabProps } from "./components/tab.d.ts";
|
|
178
|
+
export { default as Tab } from "./components/tab.d.ts";
|
|
179
|
+
export type { ColumnConfig as TableColumnConfig, Props as TableProps, Scalar as TableScalar, ScalarDict as TableScalarDict } from "./components/table.d.ts";
|
|
180
|
+
export { default as Table } from "./components/table.d.ts";
|
|
181
|
+
export type { TabColors, KeyMap as TabsKeyMap, Props as TabsProps } from "./components/tabs.d.ts";
|
|
182
|
+
export { default as Tabs } from "./components/tabs.d.ts";
|
|
183
|
+
export type { Props as TagProps, TagVariant } from "./components/tag.d.ts";
|
|
184
|
+
export { default as Tag } from "./components/tag.d.ts";
|
|
185
|
+
export type { Props as TextProps } from "./components/text.d.ts";
|
|
186
|
+
export { default as Text } from "./components/text.d.ts";
|
|
187
|
+
export type { Props as TextInputProps } from "./components/text-input.d.ts";
|
|
188
|
+
export { default as TextInput } from "./components/text-input.d.ts";
|
|
189
|
+
export type { Props as TextareaProps } from "./components/textarea.d.ts";
|
|
190
|
+
export { default as Textarea } from "./components/textarea.d.ts";
|
|
191
|
+
export type { Props as TimerProps, TimerRef } from "./components/timer.d.ts";
|
|
192
|
+
export { default as Timer } from "./components/timer.d.ts";
|
|
193
|
+
export type { Props as ToastProps, ToastVariant } from "./components/toast.d.ts";
|
|
194
|
+
export { default as Toast } from "./components/toast.d.ts";
|
|
195
|
+
export type { TooltipPlacement, Props as TooltipProps } from "./components/tooltip.d.ts";
|
|
196
|
+
export { default as Tooltip } from "./components/tooltip.d.ts";
|
|
197
|
+
export type { Props as TransformProps } from "./components/transform.d.ts";
|
|
198
|
+
export { default as Transform } from "./components/transform.d.ts";
|
|
199
|
+
export type { TransitionPhase, TransitionPreset, Props as TransitionProps } from "./components/transition.d.ts";
|
|
200
|
+
export { default as Transition } from "./components/transition.d.ts";
|
|
201
|
+
export type { Theme as TreeViewTheme } from "./components/tree-view/theme.d.ts";
|
|
202
|
+
export { theme as treeViewTheme } from "./components/tree-view/theme.d.ts";
|
|
203
|
+
export type { FlatNode } from "./components/tree-view/tree-node-map.d.ts";
|
|
204
|
+
export { TreeNodeMap } from "./components/tree-view/tree-node-map.d.ts";
|
|
205
|
+
export type { Props as TreeViewProps } from "./components/tree-view/tree-view.d.ts";
|
|
206
|
+
export { TreeView } from "./components/tree-view/tree-view.d.ts";
|
|
207
|
+
export type { AsyncChildrenFunction, SelectionMode, TreeNode, TreeNodeRendererProps, TreeNodeState } from "./components/tree-view/types.d.ts";
|
|
208
|
+
export type { UseTreeViewProps } from "./components/tree-view/use-tree-view.d.ts";
|
|
209
|
+
export { useTreeView } from "./components/tree-view/use-tree-view.d.ts";
|
|
210
|
+
export type { TreeViewState, UseTreeViewStateProps } from "./components/tree-view/use-tree-view-state.d.ts";
|
|
211
|
+
export { useTreeViewState } from "./components/tree-view/use-tree-view-state.d.ts";
|
|
212
|
+
export type { UnorderedListEntry, Props as UnorderedListProps } from "./components/unordered-list.d.ts";
|
|
213
|
+
export { default as UnorderedList } from "./components/unordered-list.d.ts";
|
|
90
214
|
export type { DOMElement, StickyHeader } from "./dom.d.ts";
|
|
91
215
|
export { getPathToRoot, isNodeSelectable } from "./dom.d.ts";
|
|
92
216
|
export type { AnimationResult } from "./hooks/use-animation.d.ts";
|
|
@@ -103,31 +227,43 @@ export { default as useConsoleCapture } from "./hooks/use-console-capture.d.ts";
|
|
|
103
227
|
export { default as useCursor } from "./hooks/use-cursor.d.ts";
|
|
104
228
|
export { default as useFocus } from "./hooks/use-focus.d.ts";
|
|
105
229
|
export { default as useFocusManager } from "./hooks/use-focus-manager.d.ts";
|
|
230
|
+
export type { FieldConfig, FieldValidator, FormSchema, FormValues, UseFormOptions, UseFormResult, ValidationResult } from "./hooks/use-form.d.ts";
|
|
231
|
+
export { default as useForm } from "./hooks/use-form.d.ts";
|
|
232
|
+
export type { HotkeyDescriptor, UseHotkeyOptions } from "./hooks/use-hotkey.d.ts";
|
|
233
|
+
export { default as useHotkey } from "./hooks/use-hotkey.d.ts";
|
|
106
234
|
export type { Key } from "./hooks/use-input.d.ts";
|
|
107
235
|
export { default as useInput } from "./hooks/use-input.d.ts";
|
|
236
|
+
export type { UseIntervalOptions, UseIntervalResult } from "./hooks/use-interval.d.ts";
|
|
237
|
+
export { default as useInterval } from "./hooks/use-interval.d.ts";
|
|
238
|
+
export { default as useIsScreenReaderEnabled } from "./hooks/use-is-screen-reader-enabled.d.ts";
|
|
108
239
|
export type { KeyBinding, KeyBindingHandler } from "./hooks/use-key-bindings.d.ts";
|
|
109
240
|
export { default as useKeyBindings } from "./hooks/use-key-bindings.d.ts";
|
|
110
|
-
export {
|
|
241
|
+
export type { KeyChordStep, UseKeyChordOptions } from "./hooks/use-key-chord.d.ts";
|
|
242
|
+
export { default as useKeyChord } from "./hooks/use-key-chord.d.ts";
|
|
111
243
|
export type { LinkedScrollGroup, UseLinkedScrollReturn } from "./hooks/use-linked-scroll.d.ts";
|
|
112
244
|
export { default as createLinkedScrollGroup } from "./hooks/use-linked-scroll.d.ts";
|
|
113
245
|
export { default as usePaste } from "./hooks/use-paste.d.ts";
|
|
246
|
+
export type { PersistentStorage, UsePersistentStateOptions } from "./hooks/use-persistent-state.d.ts";
|
|
247
|
+
export { createFileStorage, createMemoryStorage, default as usePersistentState } from "./hooks/use-persistent-state.d.ts";
|
|
114
248
|
export type { UseScrollAccelerationOptions, UseScrollAccelerationResult } from "./hooks/use-scroll-acceleration.d.ts";
|
|
115
249
|
export { default as useScrollAcceleration } from "./hooks/use-scroll-acceleration.d.ts";
|
|
116
250
|
export type { UseScrollInputOptions, UseScrollInputReturn } from "./hooks/use-scroll-input.d.ts";
|
|
117
251
|
export { default as useScrollInput } from "./hooks/use-scroll-input.d.ts";
|
|
118
|
-
export type { UseStopwatchOptions, UseStopwatchResult } from "./hooks/use-stopwatch.d.ts";
|
|
119
|
-
export { default as useStopwatch } from "./hooks/use-stopwatch.d.ts";
|
|
120
252
|
export { default as useStderr } from "./hooks/use-stderr.d.ts";
|
|
121
253
|
export { default as useStdin } from "./hooks/use-stdin.d.ts";
|
|
122
254
|
export { default as useStdout } from "./hooks/use-stdout.d.ts";
|
|
123
|
-
export type {
|
|
124
|
-
export { default as
|
|
255
|
+
export type { UseStopwatchOptions, UseStopwatchResult } from "./hooks/use-stopwatch.d.ts";
|
|
256
|
+
export { default as useStopwatch } from "./hooks/use-stopwatch.d.ts";
|
|
125
257
|
export type { UseTerminalPaletteResult } from "./hooks/use-terminal-palette.d.ts";
|
|
126
258
|
export { default as useTerminalPalette } from "./hooks/use-terminal-palette.d.ts";
|
|
127
259
|
export type { CursorPosition as TextBufferCursorPosition, TextBufferState, UseTextBufferResult } from "./hooks/use-text-buffer.d.ts";
|
|
128
260
|
export { default as useTextBuffer } from "./hooks/use-text-buffer.d.ts";
|
|
129
261
|
export type { UseTextSelectionOptions, UseTextSelectionResult } from "./hooks/use-text-selection.d.ts";
|
|
130
262
|
export { default as useTextSelection } from "./hooks/use-text-selection.d.ts";
|
|
263
|
+
export type { UseTimeoutOptions, UseTimeoutResult } from "./hooks/use-timeout.d.ts";
|
|
264
|
+
export { default as useTimeout } from "./hooks/use-timeout.d.ts";
|
|
265
|
+
export type { UseTimerOptions, UseTimerResult } from "./hooks/use-timer.d.ts";
|
|
266
|
+
export { default as useTimer } from "./hooks/use-timer.d.ts";
|
|
131
267
|
export type { WindowSize } from "./hooks/use-window-size.d.ts";
|
|
132
268
|
export { default as useWindowSize } from "./hooks/use-window-size.d.ts";
|
|
133
269
|
export { IMECompositionBuffer, isIMEInput } from "./ime-utils.d.ts";
|
|
@@ -141,8 +277,8 @@ export { default as measureElement } from "./measure-element.d.ts";
|
|
|
141
277
|
export { calculateScrollbarLayout, calculateScrollbarThumb, collectSortedFragments, getAddedScrollHeight, getBoundingBox, getHorizontalScrollbarBoundingBox, getInnerHeight, getInnerWidth, getRelativeLeft, getRelativeTop, getText, getVerticalScrollbarBoundingBox, } from "./measure-element.d.ts";
|
|
142
278
|
export type { StringWidthFunction } from "./measure-text.d.ts";
|
|
143
279
|
export { clearStringWidthCache, clearStyledLineCache, inkCharacterWidth, setEnableStyledLineCache, setStringWidthFunction, toStyledLine } from "./measure-text.d.ts";
|
|
144
|
-
export type { MouseAction, MouseButton, MouseClickAction, MouseContextShape, MouseDragAction, MouseEvents, MousePosition, MouseScrollAction, SgrMouseEvent, UseOnMouseClickOptions, } from "./index.d.ts";
|
|
145
|
-
export { Fullscreen, isIntersecting, MouseProvider, parseSgrMouse, useElementDimensions, useElementPosition, useMouseAction, useMouseContext, useMousePosition, useOnMouseClick, useOnMouseHover, useOnMouseState, } from "./index.d.ts";
|
|
280
|
+
export type { MouseAction, MouseButton, MouseClickAction, MouseContextShape, MouseDragAction, MouseEvents, MousePosition, MouseScrollAction, SgrMouseEvent, UseOnMouseClickOptions, } from "./mouse/index.d.ts";
|
|
281
|
+
export { Fullscreen, isIntersecting, MouseProvider, parseSgrMouse, useElementDimensions, useElementPosition, useMouseAction, useMouseContext, useMousePosition, useOnMouseClick, useOnMouseHover, useOnMouseState, } from "./mouse/index.d.ts";
|
|
146
282
|
export type { Instance, RenderOptions } from "./render.d.ts";
|
|
147
283
|
export { default as render } from "./render.d.ts";
|
|
148
284
|
export type { RenderToStringOptions } from "./render-to-string.d.ts";
|