Skip to content

Commit

Permalink
Updated to latest Vega versions
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Nov 14, 2019
1 parent 0d29360 commit 8d59730
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions panel/models/vega.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ class VegaPlot(LayoutDOM):
a Bokeh plot.
"""

__javascript__ = ["https://cdn.jsdelivr.net/npm/vega@5.3.1",
'https://cdn.jsdelivr.net/npm/vega-lite@3.2.1',
'https://cdn.jsdelivr.net/npm/vega-embed@4.0.0-rc1']
__javascript__ = ["https://cdn.jsdelivr.net/npm/vega@5",
'https://cdn.jsdelivr.net/npm/vega-lite@3',
'https://cdn.jsdelivr.net/npm/vega-embed@6']

__js_require__ = {
'baseUrl': 'https://cdn.jsdelivr.net/npm/',
'paths': {
"vega-embed": "vega-embed@4.0.0/build/vega-embed.min",
"vega-lite": "vega-lite@3.2.1/build/vega-lite.min",
"vega": "vega@5.3.1/build/vega.min"
"vega-embed": "vega-embed@6/build/vega-embed.min",
"vega-lite": "vega-lite@3/build/vega-lite.min",
"vega": "vega@5/build/vega.min"
},
'exports': {'vega-embed': 'vegaEmbed', 'vega': 'vega', 'vega-lite': 'vl'}
}
Expand Down

0 comments on commit 8d59730

Please sign in to comment.