-
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 403c01e
Showing
2,163 changed files
with
1,222,734 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: 0680c8d1ca981997b075bbeaeee9b352 | ||
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.3.0rc2'; | ||
|
||
const preCacheFiles = []; | ||
|
||
const cachePatterns = ['https://cdn.holoviz.org/panel/1.3.0-rc.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.
13 changes: 13 additions & 0 deletions
13
_images/inheritance-011f1fec86819ca4abdeb6d5b7c2bf2ed27ec511.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="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> |
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.
14 changes: 14 additions & 0 deletions
14
_images/inheritance-0c7811f1538a73f1d4f4ceff77f82a3cd903d89f.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,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-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> |
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
_images/inheritance-10476ab658a80dff9939a751fb084bfcb194ec5a.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,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-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-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> |
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.
14 changes: 14 additions & 0 deletions
14
_images/inheritance-140a3415bb6f2f49ed1a0ff2366158ff2d546406.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,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> |
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
_images/inheritance-1824f324cceeef59a70f6e05a10e8e5a29417837.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="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> |
Oops, something went wrong.
Oops, something went wrong.