@@ -601,7 +601,7 @@ class VitessceWidget(anywidget.AnyWidget):
601601
602602 next_port = DEFAULT_PORT
603603
604- js_package_version = Unicode ('3.5.11 ' ).tag (sync = True )
604+ js_package_version = Unicode ('3.5.12 ' ).tag (sync = True )
605605 js_dev_mode = Bool (False ).tag (sync = True )
606606 custom_js_url = Unicode ('' ).tag (sync = True )
607607 plugin_esm = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
@@ -613,7 +613,7 @@ class VitessceWidget(anywidget.AnyWidget):
613613
614614 store_urls = List (trait = Unicode ('' ), default_value = []).tag (sync = True )
615615
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 ):
617617 """
618618 Construct a new Vitessce widget.
619619
@@ -748,7 +748,7 @@ def _plugin_command(self, params, buffers):
748748# Launch Vitessce using plain HTML representation (no ipywidgets)
749749
750750
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 ):
752752 from IPython .display import display , HTML
753753 uid_str = "vitessce" + get_uid_str (uid )
754754
@@ -771,6 +771,7 @@ def ipython_display(config, height=600, theme='auto', base_url=None, host_name=N
771771 "page_esm" : ('' if page_esm is None else page_esm ),
772772 "remount_on_uid_change" : remount_on_uid_change ,
773773 "invoke_timeout" : 30000 ,
774+ "invoke_batched" : False ,
774775 "proxy" : proxy ,
775776 "has_host_name" : host_name is not None ,
776777 "height" : height ,
0 commit comments