vuer.schemas.html_components
Element
Base class for all elements
Element.init
Element.serialize
Serialize the element to a dictionary for sending over the websocket.
:return: Dictionary representing the element.
BlockElement
BlockElement.init
BlockElement.serialize
Inherited members
tag— fromvuer.schemas.html_components.Element
AutoScroll
Inherited members
__init__— fromvuer.schemas.html_components.BlockElementserialize— fromvuer.schemas.html_components.BlockElement
Markdown
Inherited members
__init__— fromvuer.schemas.html_components.BlockElementserialize— fromvuer.schemas.html_components.BlockElement
Page
A Page is an element that contains other elements. It is represented by a div element in the DOM.
Inherited members
__init__— fromvuer.schemas.html_components.BlockElementserialize— fromvuer.schemas.html_components.BlockElement
div
Inherited members
__init__— fromvuer.schemas.html_components.BlockElementserialize— fromvuer.schemas.html_components.BlockElement
InputBox
An InputBox is an element that allows the user to input text. It is represented by an input element in the DOM.
InputBox.init
Inherited members
serialize— fromvuer.schemas.html_components.Element
Header1
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
Header1.init
Inherited members
serialize— fromvuer.schemas.html_components.BlockElement
Header2
Header 2
Inherited members
__init__— fromvuer.schemas.html_components.Header1serialize— fromvuer.schemas.html_components.BlockElement
Header3
Header 2
Inherited members
__init__— fromvuer.schemas.html_components.Header1serialize— fromvuer.schemas.html_components.BlockElement
Paragraph
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
Paragraph.init
Inherited members
serialize— fromvuer.schemas.html_components.BlockElement
span
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
span.init
Inherited members
serialize— fromvuer.schemas.html_components.Element
Bold
Bold.init
Inherited members
tag— fromvuer.schemas.html_components.spanserialize— fromvuer.schemas.html_components.Element
Italic
Italic.init
Inherited members
tag— fromvuer.schemas.html_components.spanserialize— fromvuer.schemas.html_components.Element
Link
Link.init
Inherited members
serialize— fromvuer.schemas.html_components.Element
Button
A Button element is an element that allows the user to click on it. It is represented by a button element in the DOM.
Button.init
Inherited members
serialize— fromvuer.schemas.html_components.Element
Slider
A Slider element is an element that allows the user to slide a value. It is represented by a slider element in the DOM.
Slider.init
:param min: Minimum value of the slider :param max: Maximum value of the slider :param step: Step size of the slider :param value: Initial value of the slider :param kwargs:
Inherited members
serialize— fromvuer.schemas.html_components.Element
Image
An Image element is an element that displays an image. It is represented by an img element in the DOM.
Image.init
Inherited members
serialize— fromvuer.schemas.html_components.Element
ImageUpload
A ImageUpload element is an element that allows the user to upload a file. It is represented by a file upload element in the DOM.
ImageUpload.init
Inherited members
serialize— fromvuer.schemas.html_components.Element