#![deny(missing_docs)]
extern crate self as plushie_core;
pub use plushie_core_macros::{PlushieEnum, WidgetCommand, WidgetEvent, WidgetProps, widget};
pub mod animation;
pub mod codec_safety;
pub mod diagnostic;
pub mod diagnostics;
pub mod event_type;
pub mod key;
pub mod ops;
pub mod outgoing_message;
pub mod pointer;
pub mod protocol;
pub mod scoped_id;
pub mod selector;
pub mod settings;
pub mod spec;
pub mod tree_walk;
pub mod types;
pub mod widget_builder;
pub use diagnostic::{Diagnostic, DiagnosticKind};
pub use event_type::EventType;
pub use key::{EffectKind, InteractAction, Key, KeyPress, MouseButton, PointerKind};
pub use scoped_id::ScopedId;
pub use selector::{MAX_SELECTOR_SEARCH_DEPTH, Selector};
pub use spec::{CommandSpec, EventSpec, PayloadSpec, ValueType, WidgetCommandEncode};
pub use types::{FromNode, PlushieType, WidgetEventEncode};
pub use widget_builder::WidgetBuilder;
pub const BUILTIN_TYPE_NAMES: &[&str] = &[
"button",
"canvas",
"checkbox",
"column",
"combo_box",
"container",
"float",
"floating",
"grid",
"image",
"keyed_column",
"markdown",
"overlay",
"pane_grid",
"pick_list",
"pin",
"pointer_area",
"progress_bar",
"qr_code",
"radio",
"responsive",
"rich",
"rich_text",
"row",
"rule",
"scrollable",
"sensor",
"slider",
"space",
"stack",
"svg",
"table",
"text",
"text_editor",
"text_input",
"themer",
"toggler",
"tooltip",
"vertical_slider",
"window",
];