Skip to main content

promkit_widgets/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3pub use promkit_core as core;
4
5pub mod cursor;
6
7#[cfg(feature = "checkbox")]
8#[cfg_attr(docsrs, doc(cfg(feature = "checkbox")))]
9pub mod checkbox;
10
11#[cfg(feature = "jsonstream")]
12#[cfg_attr(docsrs, doc(cfg(feature = "jsonstream")))]
13pub mod jsonstream;
14#[cfg(feature = "jsonstream")]
15#[cfg_attr(docsrs, doc(cfg(feature = "jsonstream")))]
16pub use serde_json;
17
18#[cfg(feature = "listbox")]
19#[cfg_attr(docsrs, doc(cfg(feature = "listbox")))]
20pub mod listbox;
21
22#[cfg(feature = "text")]
23#[cfg_attr(docsrs, doc(cfg(feature = "text")))]
24pub mod text;
25
26#[cfg(feature = "texteditor")]
27#[cfg_attr(docsrs, doc(cfg(feature = "texteditor")))]
28pub mod text_editor;
29
30#[cfg(feature = "tree")]
31#[cfg_attr(docsrs, doc(cfg(feature = "tree")))]
32pub mod tree;
33
34#[cfg(feature = "spinner")]
35#[cfg_attr(docsrs, doc(cfg(feature = "spinner")))]
36pub mod spinner;