1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! # Zellij Sheets
//!
//! A terminal-based spreadsheet viewer powered by Zellij.
//! This library provides spreadsheet viewing functionality for both Zellij plugins
//! and native CLI applications.
//!
//! ## Features
//!
//! - View CSV and Excel files in the terminal
//! - Configurable themes and display settings
//! - Search and filter support (planned)
//! - Sort functionality (planned)
//! - Parquet preview (planned)
//!
//! ## Usage
//!
//! For Zellij plugin:
//! ```kdl
//! plugins {
//! zellij-sheets location="file:/path/to/zellij-sheets.wasm"
//! }
//! ```
//!
//! For native CLI:
//! ```bash
//! zellij-sheets --input /path/to/file.csv
//! ```
/// Configuration and display settings for the spreadsheet viewer
pub use ;
/// Utility functions for file operations and data loading
pub use ;
/// Core spreadsheet state and data types
pub use ;
/// Layout and rendering engine
pub use ;
/// UI rendering types
pub use ;