-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 625f306
Showing
2,283 changed files
with
1,160,090 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
})()); | ||
}); |
82 changes: 82 additions & 0 deletions
82
_downloads/877953fdfd7410b5f9c8b922ee063024/vscode-snippets-python.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()" | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
_images/inheritance-020abf19370bb14e5521f7bfb3b3dfa385be9475.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
_images/inheritance-09097cf8f8e6563aa2feaeb04d3726dab9339d40.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-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> |
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
_images/inheritance-09b9370b4746931138859ce44e5bd5e25f74e8cd.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
_images/inheritance-10e53831871e2a19627275ef7d4463cea62d8172.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
_images/inheritance-15027da78f7559e90352451a96e8c496367f86ee.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-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-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> |
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
_images/inheritance-153be657b68a9b5419d6c8c03ffac480eaca8018.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-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> |
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
_images/inheritance-17cd5c4bc907e43549beb2d35f9b05a837316781.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-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-based date picker widget." alt="" coords="1021,36,1150,48"/> | ||
</map> |
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
_images/inheritance-1c22cdb171ec4c2d791e47037c12a3f593957ec3.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-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> |
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
_images/inheritance-1c858313f8540d598082ee1600bfcfc812b66e28.png.map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-based UI elements." alt="" coords="655,65,749,79"/> | ||
</map> |
Oops, something went wrong.
Oops, something went wrong.