@@ -181,7 +181,7 @@ def get_uid_str(uid):
181181 "react-dom": "https://cdn.vitessce.io/[email protected] /index.js", 182182 "react-dom/client": "https://cdn.vitessce.io/[email protected] /es2022/client.mjs", 183183 // Replaced with version-specific URL below.
184- "vitessce": "https://cdn.vitessce.io/vitessce@3.8.5 /dist/index.min.js",
184+ "vitessce": "https://cdn.vitessce.io/vitessce@VERSION /dist/index.min.js",
185185 },
186186};
187187/*
@@ -191,7 +191,7 @@ def get_uid_str(uid):
191191 "react-dom": "https://cdn.vitessce.io/[email protected] /index_dev.js", 192192 "react-dom/client": "https://cdn.vitessce.io/[email protected] /es2022/client.development.mjs", 193193 // Replaced with version-specific URL below.
194- "vitessce": "https://cdn.vitessce.io/@vitessce/dev@3.8.5 /dist/index.js",
194+ "vitessce": "https://cdn.vitessce.io/@vitessce/dev@VERSION /dist/index.js",
195195 },
196196};
197197*/
@@ -729,7 +729,7 @@ class VitessceWidget(anywidget.AnyWidget):
729729
730730 next_port = DEFAULT_PORT
731731
732- js_package_version = Unicode ('3.8.5 ' ).tag (sync = True )
732+ js_package_version = Unicode ('3.8.8 ' ).tag (sync = True )
733733 js_dev_mode = Bool (False ).tag (sync = True )
734734 custom_js_url = Unicode ('' ).tag (sync = True )
735735 plugin_esm = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
@@ -742,7 +742,7 @@ class VitessceWidget(anywidget.AnyWidget):
742742
743743 store_urls = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
744744
745- def __init__ (self , config , height = 600 , theme = 'auto' , uid = None , port = None , proxy = False , js_package_version = '3.8.5 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , prefer_local = True , invoke_timeout = 300000 , invoke_batched = True , page_mode = False , page_esm = None , prevent_scroll = True , server_host = None ):
745+ def __init__ (self , config , height = 600 , theme = 'auto' , uid = None , port = None , proxy = False , js_package_version = '3.8.8 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , prefer_local = True , invoke_timeout = 300000 , invoke_batched = True , page_mode = False , page_esm = None , prevent_scroll = True , server_host = None ):
746746 """
747747 Construct a new Vitessce widget. Not intended to be instantiated directly; instead, use ``VitessceConfig.widget``.
748748
@@ -876,7 +876,7 @@ def _plugin_command(self, params, buffers):
876876# Launch Vitessce using plain HTML representation (no ipywidgets)
877877
878878
879- def ipython_display (config , height = 600 , theme = 'auto' , base_url = None , host_name = None , uid = None , port = None , proxy = False , js_package_version = '3.8.5 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , page_mode = False , page_esm = None , server_host = None ):
879+ def ipython_display (config , height = 600 , theme = 'auto' , base_url = None , host_name = None , uid = None , port = None , proxy = False , js_package_version = '3.8.8 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , page_mode = False , page_esm = None , server_host = None ):
880880 from IPython .display import display , HTML
881881 uid_str = "vitessce" + get_uid_str (uid )
882882
0 commit comments