Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSkovMadsen committed Oct 19, 2023
0 parents commit 9202ca1
Show file tree
Hide file tree
Showing 2,147 changed files with 1,221,501 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 50110f9877f954aab6c32aebd82ca28e
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added .nojekyll
Empty file.
1,126 changes: 1,126 additions & 0 deletions FAQ.html

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions PyodideServiceWorker.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
const appName = 'Panel'
const appCacheName = 'Panel-1.3.0rc1';

const preCacheFiles = [];

const cachePatterns = ['https://cdn.holoviz.org/panel/1.3.0-rc.1/dist/', 'https://cdn.bokeh.org/bokeh/', 'https://cdn.jsdelivr.net/pyodide/', 'https://files.pythonhosted.org/packages/', 'https://pypi.org/pypi/'];

self.addEventListener('install', (e) => {
console.log('[Service Worker] Install');
self.skipWaiting();
e.waitUntil((async () => {
const cacheNames = await caches.keys();
for (const cacheName of cacheNames) {
if (cacheName.startsWith(appName) && cacheName !== appCacheName) {
console.log(`[Service Worker] Delete old cache ${cacheName}`);
caches.delete(cacheName);
}
}
const cache = await caches.open(appCacheName);
if (preCacheFiles.length) {
console.log('[Service Worker] Precaching ');
}
preCacheFiles.forEach(async (cacheFile) => {
const request = new Request(cacheFile);
const response = await fetch(request);
if (response.ok || response.type == 'opaque') {
cache.put(request, response);
}
})
})());
});

self.addEventListener('activate', (event) => {
console.log('[Service Worker] Activating');
return self.clients.claim();
});

self.addEventListener('fetch', (e) => {
if (e.request.method !== 'GET') {
return
}
e.respondWith((async () => {
const cache = await caches.open(appCacheName);
let response = await cache.match(e.request);
console.log(`[Service Worker] Fetching resource: ${e.request.url}`);
if (response) {
return response;
}
response = await fetch(e.request);
if (!response.ok && !(response.type == 'opaque')) {
throw Error(`[Service Worker] Fetching resource ${e.request.url} failed with response: ${response.status}`);
}
console.log(`[Service Worker] Caching new resource: ${e.request.url}`);
cache.put(e.request, response.clone());
return response;
})());
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"Panel App": {
"prefix": "import panel",
"body": [
"import panel as pn",
"",
"pn.extension(sizing_mode=\"stretch_width\")",
"",
"TEXT = \"Panel\"",
"",
"length = pn.widgets.IntSlider(value=len(TEXT), end=len(TEXT), name=\"length\")",
"",
"def text(value):",
" return TEXT[:value]",
"",
"layout = pn.Column(length, pn.bind(text, length))",
"",
"pn.template.FastListTemplate(site=\"Panel\", title=\"App\", sidebar=[length], main=[layout]).servable()"
]
},
"Panel ReactiveHTML component": {
"prefix": [
"import panel",
"from panel.reactive"
],
"body": [
"import panel as pn",
"import param",
"from panel.reactive import ReactiveHTML",
"",
"pn.extension()",
"",
"",
"class CustomComponent(ReactiveHTML):",
" index = param.Integer(default=0)",
"",
" _template = '<img id=\"slideshow\" src=\"https://picsum.photos/800/300?image=${index}\" onclick=\"${_img_click}\"></img>'",
"",
" def _img_click(self, event):",
" self.index += 1",
"",
"CustomComponent(width=500, height=200).servable()"
]
},
"Panel Viewer component": {
"prefix": [
"import panel",
"from panel.viewable"
],
"body": [
"import param",
"import panel as pn",
"",
"from panel.viewable import Viewer",
"",
"class CustomComponent(Viewer):",
"",
" value = param.Parameter()",
"",
" def __init__(self, **params):",
" super().__init__(**params)",
" self._layout = None",
" ",
"",
" def __panel__(self):",
" if not self._layout:",
" self._layout = self._get_layout()",
" ",
" return self._layout",
"",
" def _get_layout(self):",
" return pn.Column(\"# Custom Component\", self.param.value)",
"",
"if pn.state.served:",
" pn.extension(sizing_mode=\"stretch_width\")",
" ",
" pn.Column(",
" CustomComponent",
" ).servable()"
]
}
}
Binary file added _images/Accordion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Alert.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ArrayInput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Audio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/AutocompleteInput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Bokeh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/BooleanStatus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Bootstrap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ChatBox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ChatFeed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ChatInterface.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ChatMessage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/CheckBoxGroup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/CheckButtonGroup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Checkbox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/CodeEditor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ColorMap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/ColorPicker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/Column.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/CrossSelector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/DataFrame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/DataFrame1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/DatePicker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _images/DateRangeSlider.png
Binary file added _images/DateSlider.png
Binary file added _images/DatetimeInput.png
Binary file added _images/DatetimePicker.png
Binary file added _images/DatetimeRangeInput.png
Binary file added _images/DatetimeRangePicker.png
Binary file added _images/DatetimeRangeSlider.png
Binary file added _images/Debugger.png
Binary file added _images/DeckGL.png
Binary file added _images/Dial.png
Binary file added _images/DiscretePlayer.png
Binary file added _images/DiscreteSlider.png
Binary file added _images/Divider.png
Binary file added _images/ECharts.png
Binary file added _images/EditableFloatSlider.png
Binary file added _images/EditableIntSlider.png
Binary file added _images/EditableRangeSlider.png
Binary file added _images/FastGridTemplate.png
Binary file added _images/FastListTemplate.png
Binary file added _images/FileDownload.png
Binary file added _images/FileInput.png
Binary file added _images/FileSelector.png
Binary file added _images/FlexBox.png
Binary file added _images/FloatInput.png
Binary file added _images/FloatPanel.png
Binary file added _images/FloatSlider.png
Binary file added _images/Folium.png
Binary file added _images/GIF.png
Binary file added _images/Gauge.png
Binary file added _images/GoldenLayout.png
Binary file added _images/GridBox.png
Binary file added _images/GridSpec.png
Binary file added _images/GridStack.png
Binary file added _images/HTML.png
Binary file added _images/HoloViews.png
Binary file added _images/IPyWidget.png
Binary file added _images/Image.png
Binary file added _images/IntInput.png
Binary file added _images/IntRangeSlider.png
Binary file added _images/IntSlider.png
Binary file added _images/JPG.png
Binary file added _images/JSON.png
Binary file added _images/JSONEditor.png
Binary file added _images/LaTeX.png
Binary file added _images/LinearGauge.png
Binary file added _images/LiteralInput.png
Binary file added _images/LoadingSpinner.png
Binary file added _images/Markdown.png
Binary file added _images/Material.png
Binary file added _images/Matplotlib.png
Binary file added _images/MenuButton.png
Binary file added _images/MultiChoice.png
Binary file added _images/MultiSelect.png
Binary file added _images/Notifications.png
Binary file added _images/Number.png
Binary file added _images/PDF.png
Binary file added _images/PNG.png
Binary file added _images/PanelCallbackHandler.png
Binary file added _images/Param.png
Binary file added _images/PasswordInput.png
Binary file added _images/Perspective.png
Binary file added _images/Player.png
Binary file added _images/Plotly.png
Binary file added _images/Progress.png
Binary file added _images/RadioBoxGroup.png
Binary file added _images/RadioButtonGroup.png
Binary file added _images/RangeSlider.png
Binary file added _images/React.png
Binary file added _images/Reacton.png
Binary file added _images/Row.png
Binary file added _images/SVG.png
Binary file added _images/Select.png
Binary file added _images/Slides.png
Binary file added _images/SpeechToText.png
Binary file added _images/StaticText.png
Binary file added _images/Str.png
Binary file added _images/Streamz.png
Binary file added _images/Swipe.png
Binary file added _images/Switch.png
Binary file added _images/Tabs.png
Binary file added _images/Tabulator.png
Binary file added _images/Terminal.png
Binary file added _images/TextAreaInput.png
Binary file added _images/TextEditor.png
Binary file added _images/TextInput.png
Binary file added _images/TextToSpeech.png
Binary file added _images/Toggle.png
Binary file added _images/ToggleGroup.png
Binary file added _images/TooltipIcon.png
Binary file added _images/Tqdm.png
Binary file added _images/Trend.png
Binary file added _images/VTK.png
Binary file added _images/VTKJS.png
Binary file added _images/VTKVolume.png
Binary file added _images/Vanilla.png
Binary file added _images/Vega.png
Binary file added _images/Video.png
Binary file added _images/VideoStream.png
Binary file added _images/Vizzu.png
Binary file added _images/WidgetBox.png
Binary file added _images/azure.png
Binary file added _images/basic_auth.png
Binary file added _images/basic_auth_invalid.png
Binary file added _images/basic_auth_valid.png
Binary file added _images/binder.png
Binary file added _images/django.png
Binary file added _images/editor_server_app.png
Binary file added _images/fastapi.png
Binary file added _images/flask.png
Binary file added _images/gcp.png
Binary file added _images/heroku.png
Binary file added _images/huggingface.png
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<map id="inheritanceed454282a2" name="inheritanceed454282a2">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="201,121,324,136"/>
<area shape="rect" id="node5" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="410,77,510,92"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="3,121,136,136"/>
<area shape="rect" id="node3" title="Base class for all Bokeh events." alt="" coords="30,3,109,19"/>
<area shape="rect" id="node4" title="Base class for all Bokeh Model events." alt="" coords="213,3,312,19"/>
<area shape="rect" id="node12" href="#panel.models.terminal.KeystrokeEvent" target="_top" title="panel.models.terminal.KeystrokeEvent" alt="" coords="389,3,531,19"/>
<area shape="rect" id="node10" title="Base class for user interface elements." alt="" coords="559,77,704,92"/>
<area shape="rect" id="node7" title="A mixin class to provide an interface for registering and" alt="" coords="164,62,361,77"/>
<area shape="rect" id="node8" title="A mixin class to provide an interface for registering and" alt="" coords="168,91,357,107"/>
<area shape="rect" id="node9" title="The base class for layoutable components." alt="" coords="731,77,860,92"/>
<area shape="rect" id="node13" href="#panel.models.terminal.Terminal" target="_top" title="Custom Terminal Model" alt="" coords="1032,77,1149,92"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<map id="inheritance3f264f302b" name="inheritance3f264f302b">
<area shape="rect" id="node1" href="#panel.pane.alert.Alert" target="_top" title="The `Alert` pane allows providing contextual feedback messages for typical" alt="" coords="1069,17,1149,32"/>
<area shape="rect" id="node2" href="#panel.pane.markup.Markdown" target="_top" title="The `Markdown` pane allows rendering arbitrary markdown strings in a panel." alt="" coords="934,17,1042,32"/>
<area shape="rect" id="node3" href="#panel.pane.base.ModelPane" target="_top" title="ModelPane provides a baseclass that allows quickly wrapping a" alt="" coords="650,17,753,32"/>
<area shape="rect" id="node6" href="#panel.pane.markup.HTMLBasePane" target="_top" title="Baseclass for Panes which render HTML inside a Bokeh Div." alt="" coords="779,17,908,32"/>
<area shape="rect" id="node4" href="#panel.pane.base.PaneBase" target="_top" title="PaneBase is the abstract baseclass for all atomic displayable units" alt="" coords="524,17,623,32"/>
<area shape="rect" id="node5" href="panel.reactive.html#panel.reactive.Reactive" target="_top" title="Reactive is a Viewable object that also supports syncing between" alt="" coords="409,17,497,32"/>
<area shape="rect" id="node7" title="Syncable is an extension of the Renderable object which can not" alt="" coords="293,3,381,18"/>
<area shape="rect" id="node8" href="panel.viewable.html#panel.viewable.Viewable" target="_top" title="Viewable is the baseclass all visual components in the panel" alt="" coords="292,31,383,46"/>
<area shape="rect" id="node9" title="Baseclass for objects which can be rendered to a Bokeh model." alt="" coords="162,3,260,18"/>
<area shape="rect" id="node10" href="panel.viewable.html#panel.viewable.Layoutable" target="_top" title="Layoutable defines shared style and layout related parameters" alt="" coords="163,31,260,46"/>
<area shape="rect" id="node11" title="Base class for named objects that support Parameters and message" alt="" coords="3,31,131,46"/>
<area shape="rect" id="node12" title="Mixin class to allow rendering and syncing objects in notebook" alt="" coords="7,3,127,18"/>
<area shape="rect" id="node13" title="Mixin to define methods shared by objects which can served." alt="" coords="158,59,265,74"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<map id="inheritance9453ee87d3" name="inheritance9453ee87d3">
<area shape="rect" id="node1" title="Abstract base class for subcommands" alt="" coords="5,56,289,83"/>
<area shape="rect" id="node2" title="Subcommand to launch the Bokeh server." alt="" coords="347,56,627,83"/>
<area shape="rect" id="node5" href="#panel.command.serve.Serve" target="_top" title="panel.command.serve.Serve" alt="" coords="685,56,872,83"/>
<area shape="rect" id="node3" title="Server&#45;side holder for ``bokeh.application.Application`` plus any associated data." alt="" coords="15,5,279,32"/>
<area shape="rect" id="node4" href="#panel.command.serve.AdminApplicationContext" target="_top" title="panel.command.serve.AdminApplicationContext" alt="" coords="337,5,637,32"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<map id="inheritancedd866e925d" name="inheritancedd866e925d">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="347,157,559,184"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="671,81,844,108"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="5,157,235,184"/>
<area shape="rect" id="node7" href="#panel.models.location.Location" target="_top" title="A python wrapper around the JS `window.location` api. See" alt="" coords="892,81,1093,108"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="283,56,623,83"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="290,107,616,133"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<map id="inheritancede940be551" name="inheritancede940be551">
<area shape="rect" id="node1" href="#panel.layout.base.Panel" target="_top" title="Abstract baseclass for a layout of Viewables." alt="" coords="676,4,790,23"/>
<area shape="rect" id="node3" href="#panel.layout.grid.GridSpec" target="_top" title="panel.layout.grid.GridSpec" alt="" coords="832,4,956,23"/>
<area shape="rect" id="node2" href="panel.reactive.html#panel.reactive.Reactive" target="_top" title="Reactive is a Viewable object that also supports syncing between" alt="" coords="528,22,641,41"/>
<area shape="rect" id="node5" href="panel.reactive.html#panel.reactive.ReactiveHTML" target="_top" title="ReactiveHTML provides bi&#45;directional syncing of arbitrary HTML" alt="" coords="824,40,963,59"/>
<area shape="rect" id="node4" href="#panel.layout.gridstack.GridStack" target="_top" title="The `GridStack` layout allows arranging multiple Panel objects in a grid" alt="" coords="998,22,1148,41"/>
<area shape="rect" id="node6" title="Syncable is an extension of the Renderable object which can not" alt="" coords="378,4,492,23"/>
<area shape="rect" id="node7" href="panel.viewable.html#panel.viewable.Viewable" target="_top" title="Viewable is the baseclass all visual components in the panel" alt="" coords="376,40,494,59"/>
<area shape="rect" id="node8" title="Baseclass for objects which can be rendered to a Bokeh model." alt="" coords="209,4,336,23"/>
<area shape="rect" id="node9" href="panel.viewable.html#panel.viewable.Layoutable" target="_top" title="Layoutable defines shared style and layout related parameters" alt="" coords="210,40,335,59"/>
<area shape="rect" id="node10" title="Base class for named objects that support Parameters and message" alt="" coords="4,40,169,59"/>
<area shape="rect" id="node11" title="Mixin class to allow rendering and syncing objects in notebook" alt="" coords="9,4,164,23"/>
<area shape="rect" id="node12" title="Mixin to define methods shared by objects which can served." alt="" coords="204,76,342,95"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<map id="inheritance80b55e0778" name="inheritance80b55e0778">
<area shape="rect" id="node1" title="Filter instances are used to perform arbitrary filtering of LogRecords." alt="" coords="38,135,88,149"/>
<area shape="rect" id="node17" href="#panel.widgets.debugger.CheckFilter" target="_top" title="panel.widgets.debugger.CheckFilter" alt="" coords="153,135,273,149"/>
<area shape="rect" id="node2" title="Formatter instances are used to convert a LogRecord to text." alt="" coords="31,108,95,122"/>
<area shape="rect" id="node20" href="#panel.widgets.debugger.TermFormatter" target="_top" title="panel.widgets.debugger.TermFormatter" alt="" coords="148,108,277,122"/>
<area shape="rect" id="node3" href="panel.layout.html#panel.layout.base.Column" target="_top" title="The `Column` layout allows arranging multiple panel objects in a vertical" alt="" coords="816,16,906,30"/>
<area shape="rect" id="node9" href="panel.layout.html#panel.layout.card.Card" target="_top" title="A `Card` layout allows arranging multiple panel objects in a" alt="" coords="931,16,1010,30"/>
<area shape="rect" id="node4" href="panel.layout.html#panel.layout.base.ListPanel" target="_top" title="An abstract baseclass for Panel objects with list&#45;like children." alt="" coords="675,16,770,30"/>
<area shape="rect" id="node5" href="panel.layout.html#panel.layout.base.ListLike" target="_top" title="panel.layout.base.ListLike" alt="" coords="413,3,503,17"/>
<area shape="rect" id="node6" title="Base class for named objects that support Parameters and message" alt="" coords="3,29,123,43"/>
<area shape="rect" id="node13" title="Baseclass for objects which can be rendered to a Bokeh model." alt="" coords="167,82,259,96"/>
<area shape="rect" id="node14" href="panel.viewable.html#panel.viewable.Layoutable" target="_top" title="Layoutable defines shared style and layout related parameters" alt="" coords="167,29,258,43"/>
<area shape="rect" id="node7" href="panel.layout.html#panel.layout.base.Panel" target="_top" title="Abstract baseclass for a layout of Viewables." alt="" coords="537,29,620,43"/>
<area shape="rect" id="node8" href="panel.reactive.html#panel.reactive.Reactive" target="_top" title="Reactive is a Viewable object that also supports syncing between" alt="" coords="417,56,499,69"/>
<area shape="rect" id="node12" href="panel.reactive.html#panel.reactive.ReactiveHTML" target="_top" title="ReactiveHTML provides bi&#45;directional syncing of arbitrary HTML" alt="" coords="528,56,629,69"/>
<area shape="rect" id="node18" href="#panel.widgets.debugger.Debugger" target="_top" title="A uneditable Card layout holding a terminal printing out logs from your" alt="" coords="1035,16,1149,30"/>
<area shape="rect" id="node10" title="Syncable is an extension of the Renderable object which can not" alt="" coords="303,82,387,96"/>
<area shape="rect" id="node11" href="panel.viewable.html#panel.viewable.Viewable" target="_top" title="Viewable is the baseclass all visual components in the panel" alt="" coords="302,56,388,69"/>
<area shape="rect" id="node19" href="#panel.widgets.debugger.DebuggerButtons" target="_top" title="panel.widgets.debugger.DebuggerButtons" alt="" coords="654,56,791,69"/>
<area shape="rect" id="node15" title="Mixin class to allow rendering and syncing objects in notebook" alt="" coords="7,82,119,96"/>
<area shape="rect" id="node16" title="Mixin to define methods shared by objects which can served." alt="" coords="162,56,263,69"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<map id="inheritance2b59ab61c5" name="inheritance2b59ab61c5">
<area shape="rect" id="node1" href="panel.reactive.html#panel.reactive.Reactive" target="_top" title="Reactive is a Viewable object that also supports syncing between" alt="" coords="600,25,729,47"/>
<area shape="rect" id="node10" href="#panel.widgets.base.Widget" target="_top" title="Widgets allow syncing changes in bokeh widget models with the" alt="" coords="768,25,913,47"/>
<area shape="rect" id="node2" title="Syncable is an extension of the Renderable object which can not" alt="" coords="429,4,559,26"/>
<area shape="rect" id="node3" href="panel.viewable.html#panel.viewable.Viewable" target="_top" title="Viewable is the baseclass all visual components in the panel" alt="" coords="427,46,561,67"/>
<area shape="rect" id="node4" title="Baseclass for objects which can be rendered to a Bokeh model." alt="" coords="238,4,382,26"/>
<area shape="rect" id="node5" href="panel.viewable.html#panel.viewable.Layoutable" target="_top" title="Layoutable defines shared style and layout related parameters" alt="" coords="239,46,381,67"/>
<area shape="rect" id="node6" title="Base class for named objects that support Parameters and message" alt="" coords="4,46,192,67"/>
<area shape="rect" id="node7" title="Mixin class to allow rendering and syncing objects in notebook" alt="" coords="10,4,186,26"/>
<area shape="rect" id="node8" title="Mixin to define methods shared by objects which can served." alt="" coords="231,87,388,108"/>
<area shape="rect" id="node9" href="#panel.widgets.base.CompositeWidget" target="_top" title="A baseclass for widgets which are made up of two or more other" alt="" coords="952,25,1148,47"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<map id="inheritance72126ed4a1" name="inheritance72126ed4a1">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="179,81,288,95"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="345,42,435,56"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="3,81,121,95"/>
<area shape="rect" id="node8" title="Base class for user interface elements." alt="" coords="459,42,588,56"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="146,29,321,43"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="149,55,317,69"/>
<area shape="rect" id="node7" title="The base class for layoutable components." alt="" coords="613,42,727,56"/>
<area shape="rect" id="node10" title="A base class for all interactive widget types." alt="" coords="752,42,874,56"/>
<area shape="rect" id="node9" title="Base class for Bokeh models that represent HTML markup elements." alt="" coords="899,42,1029,56"/>
<area shape="rect" id="node11" href="#panel.models.markup.HTML" target="_top" title="A bokeh model to render HTML markup including embedded script tags." alt="" coords="1054,16,1149,30"/>
<area shape="rect" id="node12" href="#panel.models.markup.JSON" target="_top" title="A bokeh model that renders JSON as tree." alt="" coords="1054,42,1149,56"/>
<area shape="rect" id="node13" href="#panel.models.markup.PDF" target="_top" title="panel.models.markup.PDF" alt="" coords="1056,68,1147,82"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<map id="inheritance836aa5c1b2" name="inheritance836aa5c1b2">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="197,89,317,104"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="381,46,479,61"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="3,89,133,104"/>
<area shape="rect" id="node8" title="Base class for user interface elements." alt="" coords="506,46,648,61"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="160,32,354,47"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="165,61,349,76"/>
<area shape="rect" id="node7" title="The base class for layoutable components." alt="" coords="675,46,801,61"/>
<area shape="rect" id="node9" title="A base class for all interactive widget types." alt="" coords="829,46,964,61"/>
<area shape="rect" id="node10" href="#panel.models.speech_to_text.SpeechToText" target="_top" title="Bokeh Model of the Panel SpeechToText widget" alt="" coords="991,46,1149,61"/>
</map>
Loading

0 comments on commit 9202ca1

Please sign in to comment.