perspective 2.0.0

A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2018, the Perspective Authors.
//
// This file is part of the Perspective library, distributed under the terms
// of the Apache License 2.0.  The full license can be found in the LICENSE
// file.

//! `components` contains all Yew `Component` types, but only exports the 4
//! necessary for public Custom Elements.  The rest are internal components of
//! these 4.

pub mod column_dropdown;
mod column_selector;
mod containers;
mod copy_dropdown;
pub mod datetime_column_style;
pub mod export_dropdown;
pub mod expression_editor;
pub mod filter_dropdown;
mod font_loader;
mod form;
pub mod function_dropdown;
mod modal;
pub mod number_column_style;
mod plugin_selector;
mod render_warning;
mod status_bar;
mod status_bar_counter;
pub mod string_column_style;
mod style;
mod viewer;

#[cfg(test)]
mod tests;

pub use self::column_selector::InPlaceColumn;
pub use self::copy_dropdown::*;
pub use self::modal::*;
pub use self::style::*;
pub use self::viewer::*;