@@ -350,7 +350,93 @@ class ConnectionPulser(Div):
350350 """
351351 ...
352352
353+ class BackendDisabled (Div ):
354+ @overload
355+ @classmethod
356+ def create ( # type: ignore
357+ cls ,
358+ * children ,
359+ access_key : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
360+ auto_capitalize : Optional [
361+ Union [Var [Union [bool , int , str ]], bool , int , str ]
362+ ] = None ,
363+ content_editable : Optional [
364+ Union [Var [Union [bool , int , str ]], bool , int , str ]
365+ ] = None ,
366+ context_menu : Optional [
367+ Union [Var [Union [bool , int , str ]], bool , int , str ]
368+ ] = None ,
369+ dir : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
370+ draggable : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
371+ enter_key_hint : Optional [
372+ Union [Var [Union [bool , int , str ]], bool , int , str ]
373+ ] = None ,
374+ hidden : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
375+ input_mode : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
376+ item_prop : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
377+ lang : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
378+ role : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
379+ slot : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
380+ spell_check : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
381+ tab_index : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
382+ title : Optional [Union [Var [Union [bool , int , str ]], bool , int , str ]] = None ,
383+ style : Optional [Style ] = None ,
384+ key : Optional [Any ] = None ,
385+ id : Optional [Any ] = None ,
386+ class_name : Optional [Any ] = None ,
387+ autofocus : Optional [bool ] = None ,
388+ custom_attrs : Optional [Dict [str , Union [Var , Any ]]] = None ,
389+ on_blur : Optional [EventType [[], BASE_STATE ]] = None ,
390+ on_click : Optional [EventType [[], BASE_STATE ]] = None ,
391+ on_context_menu : Optional [EventType [[], BASE_STATE ]] = None ,
392+ on_double_click : Optional [EventType [[], BASE_STATE ]] = None ,
393+ on_focus : Optional [EventType [[], BASE_STATE ]] = None ,
394+ on_mount : Optional [EventType [[], BASE_STATE ]] = None ,
395+ on_mouse_down : Optional [EventType [[], BASE_STATE ]] = None ,
396+ on_mouse_enter : Optional [EventType [[], BASE_STATE ]] = None ,
397+ on_mouse_leave : Optional [EventType [[], BASE_STATE ]] = None ,
398+ on_mouse_move : Optional [EventType [[], BASE_STATE ]] = None ,
399+ on_mouse_out : Optional [EventType [[], BASE_STATE ]] = None ,
400+ on_mouse_over : Optional [EventType [[], BASE_STATE ]] = None ,
401+ on_mouse_up : Optional [EventType [[], BASE_STATE ]] = None ,
402+ on_scroll : Optional [EventType [[], BASE_STATE ]] = None ,
403+ on_unmount : Optional [EventType [[], BASE_STATE ]] = None ,
404+ ** props ,
405+ ) -> "BackendDisabled" :
406+ """Create a backend disabled component.
407+
408+ Args:
409+ access_key: Provides a hint for generating a keyboard shortcut for the current element.
410+ auto_capitalize: Controls whether and how text input is automatically capitalized as it is entered/edited by the user.
411+ content_editable: Indicates whether the element's content is editable.
412+ context_menu: Defines the ID of a <menu> element which will serve as the element's context menu.
413+ dir: Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
414+ draggable: Defines whether the element can be dragged.
415+ enter_key_hint: Hints what media types the media element is able to play.
416+ hidden: Defines whether the element is hidden.
417+ input_mode: Defines the type of the element.
418+ item_prop: Defines the name of the element for metadata purposes.
419+ lang: Defines the language used in the element.
420+ role: Defines the role of the element.
421+ slot: Assigns a slot in a shadow DOM shadow tree to an element.
422+ spell_check: Defines whether the element may be checked for spelling errors.
423+ tab_index: Defines the position of the current element in the tabbing order.
424+ title: Defines a tooltip for the element.
425+ style: The style of the component.
426+ key: A unique key for the component.
427+ id: The id for the component.
428+ class_name: The class name for the component.
429+ autofocus: Whether the component should take the focus once the page is loaded
430+ custom_attrs: custom attribute
431+ **props: The properties of the component.
432+
433+ Returns:
434+ The backend disabled component.
435+ """
436+ ...
437+
353438connection_banner = ConnectionBanner .create
354439connection_modal = ConnectionModal .create
355440connection_toaster = ConnectionToaster .create
356441connection_pulser = ConnectionPulser .create
442+ backend_disabled = BackendDisabled .create
0 commit comments