@@ -43,16 +43,13 @@ class Area(Component):
43
43
- spellCheck (string; optional): Indicates whether spell checking is allowed for the element.
44
44
- style (dict; optional): Defines CSS styles which will override styles previously set.
45
45
- tabIndex (string; optional): Overrides the browser's default tab order and follows the one specified instead.
46
- - title (string; optional): Text to be displayed in a tooltip when hovering over the element.
47
-
48
- Available events: 'click'"""
46
+ - title (string; optional): Text to be displayed in a tooltip when hovering over the element."""
49
47
@_explicitize_args
50
48
def __init__ (self , children = None , id = Component .UNDEFINED , n_clicks = Component .UNDEFINED , n_clicks_timestamp = Component .UNDEFINED , key = Component .UNDEFINED , role = Component .UNDEFINED , alt = Component .UNDEFINED , coords = Component .UNDEFINED , download = Component .UNDEFINED , href = Component .UNDEFINED , hrefLang = Component .UNDEFINED , media = Component .UNDEFINED , rel = Component .UNDEFINED , shape = Component .UNDEFINED , target = Component .UNDEFINED , accessKey = Component .UNDEFINED , className = Component .UNDEFINED , contentEditable = Component .UNDEFINED , contextMenu = Component .UNDEFINED , dir = Component .UNDEFINED , draggable = Component .UNDEFINED , hidden = Component .UNDEFINED , lang = Component .UNDEFINED , spellCheck = Component .UNDEFINED , style = Component .UNDEFINED , tabIndex = Component .UNDEFINED , title = Component .UNDEFINED , ** kwargs ):
51
49
self ._prop_names = ['children' , 'id' , 'n_clicks' , 'n_clicks_timestamp' , 'key' , 'role' , 'data-*' , 'aria-*' , 'alt' , 'coords' , 'download' , 'href' , 'hrefLang' , 'media' , 'rel' , 'shape' , 'target' , 'accessKey' , 'className' , 'contentEditable' , 'contextMenu' , 'dir' , 'draggable' , 'hidden' , 'lang' , 'spellCheck' , 'style' , 'tabIndex' , 'title' ]
52
50
self ._type = 'Area'
53
51
self ._namespace = 'dash_html_components'
54
52
self ._valid_wildcard_attributes = ['data-' , 'aria-' ]
55
- self .available_events = ['click' ]
56
53
self .available_properties = ['children' , 'id' , 'n_clicks' , 'n_clicks_timestamp' , 'key' , 'role' , 'data-*' , 'aria-*' , 'alt' , 'coords' , 'download' , 'href' , 'hrefLang' , 'media' , 'rel' , 'shape' , 'target' , 'accessKey' , 'className' , 'contentEditable' , 'contextMenu' , 'dir' , 'draggable' , 'hidden' , 'lang' , 'spellCheck' , 'style' , 'tabIndex' , 'title' ]
57
54
self .available_wildcard_properties = ['data-' , 'aria-' ]
58
55
0 commit comments