Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSkovMadsen committed Feb 24, 2024
0 parents commit 625f306
Show file tree
Hide file tree
Showing 2,283 changed files with 1,160,090 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: 667492d2ae0f117e6c5cae6b5b2c06c6
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added .nojekyll
Empty file.
1,229 changes: 1,229 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.4.0a2.post240+g91962708-dirty';

const preCacheFiles = [];

const cachePatterns = ['https://cdn.holoviz.org/panel/1.4.0-a.2/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/DateRangePicker.png
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/EditableTemplate.png
Binary file added _images/FastGridTemplate.png
Binary file added _images/FastListTemplate.png
Binary file added _images/Feed.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/NestedSelect.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/ReactiveExpr.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/Textual.png
Binary file added _images/Toggle.png
Binary file added _images/ToggleGroup.png
Binary file added _images/ToggleIcon.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/WebP.png
Binary file added _images/WidgetBox.png
Binary file added _images/align-cards-solution.png
Binary file added _images/altair-logo.png
Binary file added _images/awesome-panel.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/builder_delete.png
Binary file added _images/builder_initial.png
Binary file added _images/builder_rearrange.png
Binary file added _images/builder_resize.png
Binary file added _images/dask-dashboard-empty.png
Binary file added _images/develop_editor_breakpoint.png
Binary file added _images/develop_editor_click_me.png
Binary file added _images/develop_editor_hover.png
Binary file added _images/develop_editor_panel_serve_before.png
Binary file added _images/develop_editor_param.png
Binary file added _images/develop_notebook_simple_example.png
Binary file added _images/django.png
Binary file added _images/django_sliders.png
Binary file added _images/echarts-logo.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/hugging_face_spaces_delete.png
Binary file added _images/hugging_face_spaces_duplicate.png
Binary file added _images/hugging_face_spaces_duplicate_form.png
Binary file added _images/hugging_face_spaces_files.png
Binary file added _images/huggingface.png
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,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,15 @@
<map id="inheritanceeb8ca38325" name="inheritanceeb8ca38325">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="158,72,254,84"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="305,48,384,61"/>
<area shape="rect" id="node12" title="Shared properties for button&#45;like widgets." alt="" coords="406,72,526,84"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="2,72,107,84"/>
<area shape="rect" id="node9" title="Base class for user interface elements." alt="" coords="409,48,522,61"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="128,25,283,38"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="132,48,280,61"/>
<area shape="rect" id="node7" title="The base class for layoutable components." alt="" coords="655,48,756,61"/>
<area shape="rect" id="node11" title="A base class for all interactive widget types." alt="" coords="778,48,887,61"/>
<area shape="rect" id="node8" title="A UI element that can hold other DOM&#45;based UI elements." alt="" coords="548,48,634,61"/>
<area shape="rect" id="node10" title="A base class that defines common properties for all button types." alt="" coords="908,60,1040,72"/>
<area shape="rect" id="node13" href="#panel.models.icon.ButtonIcon" target="_top" title="A ButtonIcon is a clickable icon that toggles between an active" alt="" coords="1062,60,1150,72"/>
<area shape="rect" id="node14" href="#panel.models.icon.ToggleIcon" target="_top" title="A ToggleIcon is a clickable icon that toggles between an active" alt="" coords="11,48,98,61"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<map id="inheritance268b1b4a16" name="inheritance268b1b4a16">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="184,84,297,98"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="356,43,448,57"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="3,84,125,98"/>
<area shape="rect" id="node9" title="Base class for user interface elements." alt="" coords="474,43,606,57"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="150,30,331,44"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="154,57,327,71"/>
<area shape="rect" id="node7" title="The base class for layoutable components." alt="" coords="758,43,876,57"/>
<area shape="rect" id="node8" title="A UI element that can hold other DOM&#45;based UI elements." alt="" coords="632,43,732,57"/>
<area shape="rect" id="node11" href="#panel.models.trend.TrendIndicator" target="_top" title="A Bokeh model indicating trends." alt="" coords="1033,43,1149,57"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<map id="inheritance6a84d54d48" name="inheritance6a84d54d48">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="154,70,248,82"/>
<area shape="rect" id="node3" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="298,36,376,48"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="2,70,104,82"/>
<area shape="rect" id="node9" title="Base class for user interface elements." alt="" coords="397,36,508,48"/>
<area shape="rect" id="node5" title="A mixin class to provide an interface for registering and" alt="" coords="126,25,277,37"/>
<area shape="rect" id="node6" title="A mixin class to provide an interface for registering and" alt="" coords="129,47,274,59"/>
<area shape="rect" id="node7" title="The base class for layoutable components." alt="" coords="635,36,734,48"/>
<area shape="rect" id="node11" title="A base class for all interactive widget types." alt="" coords="755,36,861,48"/>
<area shape="rect" id="node8" title="A UI element that can hold other DOM&#45;based UI elements." alt="" coords="529,36,613,48"/>
<area shape="rect" id="node10" title="Abstract base class for input widgets." alt="" coords="882,36,1000,48"/>
<area shape="rect" id="node12" href="#panel.models.datetime_picker.DatetimePicker" target="_top" title="Calendar&#45;based date picker widget." alt="" coords="1021,36,1150,48"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<map id="inheritanceea8bc8cea3" name="inheritanceea8bc8cea3">
<area shape="rect" id="node1" href="panel.io.html#panel.io.resources.ResourceComponent" target="_top" title="Mix&#45;in class for components that define a set of resources" alt="" coords="4,4,215,27"/>
<area shape="rect" id="node2" href="panel.template.html#panel.template.base.BaseTemplate" target="_top" title="panel.template.base.BaseTemplate" alt="" coords="255,67,442,89"/>
<area shape="rect" id="node6" href="panel.template.html#panel.template.base.BasicTemplate" target="_top" title="BasicTemplate provides a baseclass for templates with a basic" alt="" coords="481,67,671,89"/>
<area shape="rect" id="node3" title="Base class for named objects that support Parameters and message" alt="" coords="14,46,206,68"/>
<area shape="rect" id="node4" title="Mixin class to allow rendering and syncing objects in notebook" alt="" coords="20,88,199,110"/>
<area shape="rect" id="node5" title="Mixin to define methods shared by objects which can served." alt="" coords="30,130,190,152"/>
<area shape="rect" id="node8" href="panel.template.vanilla.html#panel.template.vanilla.VanillaTemplate" target="_top" title="The VanillaTemplate is a basic template that depends solely on" alt="" coords="710,67,911,89"/>
<area shape="rect" id="node7" href="#panel.template.slides.SlidesTemplate" target="_top" title="SlidesTemplate is built on top of Vanilla web components." alt="" coords="951,67,1148,89"/>
</map>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<map id="inheritance31d4e9f919" name="inheritance31d4e9f919">
<area shape="rect" id="node1" title="Base class for all class types that have Bokeh properties." alt="" coords="172,103,277,116"/>
<area shape="rect" id="node5" title="Base class for all objects stored in Bokeh |Document| instances." alt="" coords="365,65,451,79"/>
<area shape="rect" id="node2" title="A mixin for making a type serializable." alt="" coords="3,103,116,116"/>
<area shape="rect" id="node3" title="Base class for all Bokeh events." alt="" coords="25,3,93,16"/>
<area shape="rect" id="node4" title="Base class for all Bokeh Model events." alt="" coords="182,3,267,16"/>
<area shape="rect" id="node14" href="#panel.models.perspective.PerspectiveClickEvent" target="_top" title="panel.models.perspective.PerspectiveClickEvent" alt="" coords="332,3,484,16"/>
<area shape="rect" id="node11" title="Base class for user interface elements." alt="" coords="508,65,631,79"/>
<area shape="rect" id="node7" title="A mixin class to provide an interface for registering and" alt="" coords="140,53,309,66"/>
<area shape="rect" id="node8" title="A mixin class to provide an interface for registering and" alt="" coords="144,78,305,91"/>
<area shape="rect" id="node9" title="The base class for layoutable components." alt="" coords="773,65,883,79"/>
<area shape="rect" id="node10" title="A UI element that can hold other DOM&#45;based UI elements." alt="" coords="655,65,749,79"/>
</map>
Loading

0 comments on commit 625f306

Please sign in to comment.