From 3b7a186b6b86e6305e8f8608b8ee41edb6dfae4e Mon Sep 17 00:00:00 2001 From: Preston Date: Wed, 24 Jun 2026 15:52:25 -0500 Subject: [PATCH] Export TerminalCanvas, BorderStyle, and AsciiLayoutEngine --- lib/nocterm.dart | 1 + lib/src/components/ascii_text.dart | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/nocterm.dart b/lib/nocterm.dart index 3e8ad908..dd09b16c 100644 --- a/lib/nocterm.dart +++ b/lib/nocterm.dart @@ -35,6 +35,7 @@ export 'src/components/terminal_xterm.dart'; export 'nocterm_test.dart'; export 'src/framework/framework.dart'; export 'src/framework/axis.dart'; +export 'src/framework/terminal_canvas.dart' show TerminalCanvas, BorderStyle; export 'src/components/spacer.dart'; export 'src/components/divider.dart'; diff --git a/lib/src/components/ascii_text.dart b/lib/src/components/ascii_text.dart index 6312098d..ff86d43c 100644 --- a/lib/src/components/ascii_text.dart +++ b/lib/src/components/ascii_text.dart @@ -5,7 +5,8 @@ import 'render_text.dart' show TextAlign; // Re-export for convenience export 'ascii_font.dart' show AsciiFont, AsciiGlyph; -export 'render_ascii_text.dart' show AsciiLayoutConfig, AsciiLayoutResult; +export 'render_ascii_text.dart' + show AsciiLayoutConfig, AsciiLayoutResult, AsciiLayoutEngine; /// A component that displays text as ASCII art using customizable fonts. ///