mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-22 04:33:13 +00:00
84cb16483a
This is a simplification of the public API that is helpful for new users that are not familiar with how rust re-exports work, and helps avoid clashes with other modules in the backends that are named terminal. BREAKING CHANGE: The `terminal` module is now private and can not be used directly. The types under this module are exported from the root of the crate. ```diff - use ratatui::terminal::{CompletedFrame, Frame, Terminal, TerminalOptions, ViewPort}; + use ratatui::{CompletedFrame, Frame, Terminal, TerminalOptions, ViewPort}; ``` Fixes: https://github.com/ratatui-org/ratatui/issues/1210 |
||
---|---|---|
.. | ||
app.rs | ||
crossterm.rs | ||
main.rs | ||
termion.rs | ||
termwiz.rs | ||
ui.rs |