Add Button.value Event parameter
Add test
Small fix
1 |
"""
|
|
2 |
The pane module contains PaneBase objects which may render any type of
|
|
3 |
object as a bokeh model so it can be embedded in a panel. The pane
|
|
4 |
objects are one of three main components in panel the other two being
|
|
5 |
layouts and widgets. Panes may render anything including plots, text,
|
|
6 |
images, equations etc.
|
|
7 |
"""
|
|
8 | 7 |
from __future__ import absolute_import, division, unicode_literals |
9 |
|
|
10 | 7 |
from .ace import Ace # noqa |
11 | 7 |
from .alert import Alert # noqa |
12 | 7 |
from .base import PaneBase, Pane, panel # noqa |
13 | 7 |
from .equation import LaTeX # noqa |
14 | 7 |
from .deckgl import DeckGL # noqa |
15 | 7 |
from .echarts import ECharts # noqa |
16 | 7 |
from .holoviews import HoloViews, Interactive # noqa |
17 | 7 |
from .ipywidget import IPyWidget # noqa |
18 | 7 |
from .image import GIF, JPG, PNG, SVG # noqa |
19 | 7 |
from .markup import DataFrame, HTML, JSON, Markdown, Str # noqa |
20 | 7 |
from .media import Audio, Video # noqa |
21 | 7 |
from .plotly import Plotly # noqa |
22 | 7 |
from .plot import Bokeh, Matplotlib, RGGPlot, YT # noqa |
23 | 7 |
from .streamz import Streamz # noqa |
24 | 7 |
from .vega import Vega # noqa |
25 | 7 |
from .vtk import VTKVolume, VTK # noqa |
Read our documentation on viewing source code .