vuer.schemas.html_components
omit
Omit keys from dictionary that match any of the glob patterns.
:param d: Dictionary to filter :param patterns: Glob patterns to match keys against (e.g., "_*", "tag") :return: New dictionary with matching keys removed
Example::
omit({"foo": 1, "bar": 2, "tag": 3}, "*", "tag")
Returns: {"foo": 1}
Element
Base class for all elements
Element.init
BlockElement
BlockElement.init
Inherited members
tag— fromvuer.schemas.html_components.Element
AutoScroll
Inherited members
__init__— fromvuer.schemas.html_components.BlockElement
Markdown
Inherited members
__init__— 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.BlockElement
div
Inherited members
__init__— 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
Header1
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
Header1.init
Header2
Header 2
Inherited members
__init__— fromvuer.schemas.html_components.Header1
Header3
Header 2
Inherited members
__init__— fromvuer.schemas.html_components.Header1
Paragraph
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
Paragraph.init
span
A Text element is an element that displays text. It is represented by a text, or p element in the DOM.
span.init
Bold
Bold.init
Inherited members
tag— fromvuer.schemas.html_components.span
Italic
Italic.init
Inherited members
tag— fromvuer.schemas.html_components.span
Link
Link.init
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
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:
Image
An Image element is an element that displays an image. It is represented by an img element in the DOM.
Image.init
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.