ratatui/examples/demo
Josh McKinney 84cb16483a
fix(terminal)!: make terminal module private (#1260)
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
2024-08-02 04:18:00 -07:00
..
app.rs refactor(lint): fix new lint warnings (#1178) 2024-06-14 11:26:57 +02:00
crossterm.rs fix(terminal)!: make terminal module private (#1260) 2024-08-02 04:18:00 -07:00
main.rs docs(examples): add note about example versions to all examples (#871) 2024-01-24 11:50:18 -08:00
termion.rs fix(terminal)!: make terminal module private (#1260) 2024-08-02 04:18:00 -07:00
termwiz.rs fix(terminal)!: make terminal module private (#1260) 2024-08-02 04:18:00 -07:00
ui.rs fix(terminal)!: make terminal module private (#1260) 2024-08-02 04:18:00 -07:00