@@ -601,7 +601,7 @@ class VitessceWidget(anywidget.AnyWidget):
601
601
602
602
next_port = DEFAULT_PORT
603
603
604
- js_package_version = Unicode ('3.5.11 ' ).tag (sync = True )
604
+ js_package_version = Unicode ('3.5.12 ' ).tag (sync = True )
605
605
js_dev_mode = Bool (False ).tag (sync = True )
606
606
custom_js_url = Unicode ('' ).tag (sync = True )
607
607
plugin_esm = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
@@ -613,7 +613,7 @@ class VitessceWidget(anywidget.AnyWidget):
613
613
614
614
store_urls = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
615
615
616
- def __init__ (self , config , height = 600 , theme = 'auto' , uid = None , port = None , proxy = False , js_package_version = '3.5.11 ' , 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 ):
616
+ def __init__ (self , config , height = 600 , theme = 'auto' , uid = None , port = None , proxy = False , js_package_version = '3.5.12 ' , 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 ):
617
617
"""
618
618
Construct a new Vitessce widget.
619
619
@@ -748,7 +748,7 @@ def _plugin_command(self, params, buffers):
748
748
# Launch Vitessce using plain HTML representation (no ipywidgets)
749
749
750
750
751
- def ipython_display (config , height = 600 , theme = 'auto' , base_url = None , host_name = None , uid = None , port = None , proxy = False , js_package_version = '3.5.11 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , page_mode = False , page_esm = None ):
751
+ def ipython_display (config , height = 600 , theme = 'auto' , base_url = None , host_name = None , uid = None , port = None , proxy = False , js_package_version = '3.5.12 ' , js_dev_mode = False , custom_js_url = '' , plugins = None , remount_on_uid_change = True , page_mode = False , page_esm = None ):
752
752
from IPython .display import display , HTML
753
753
uid_str = "vitessce" + get_uid_str (uid )
754
754
@@ -771,6 +771,7 @@ def ipython_display(config, height=600, theme='auto', base_url=None, host_name=N
771
771
"page_esm" : ('' if page_esm is None else page_esm ),
772
772
"remount_on_uid_change" : remount_on_uid_change ,
773
773
"invoke_timeout" : 30000 ,
774
+ "invoke_batched" : False ,
774
775
"proxy" : proxy ,
775
776
"has_host_name" : host_name is not None ,
776
777
"height" : height ,
0 commit comments