Source code for dazzler.components.icons._icon

"""Autogenerated file: DO NOT EDIT!"""
import typing  # noqa: F401
from dazzler.system import Component, Aspect, UNDEFINED  # noqa: F401


[docs]class Icon(Component): """ Icon from a pack, prefix the name with the pack name. .. code-block:: python icon = Icon('fi-home') """ name = Aspect(required=True, docstring="Name of the icon to render, it will try to set the icon_pack prop fromthe name if it's not provided. Split with ``-`` or empty space, thefirst found will be the icon_pack. IE: For FoundIcon ``fi-[icon-name]``.") # noqa: E501 icon_pack = Aspect(docstring="Correspond to the ``name`` proper of the icon_pack, most font iconspackages requires their pack name to be included in the class_name, assuch, this component will add it automatically from found or providedicon pack name.") # noqa: E501 class_name = Aspect(docstring="Class name automatically added by dazzler api with a prefix for the component library.ie: core component Container become ``dazzler-core-container``.When added on the component, the class names will be concatenated.") # noqa: E501 style = Aspect(docstring="Style object for the top level wrapper of the component.") # noqa: E501 rounded = Aspect(docstring="Round the edge of the container with borderRadius: 3px;") # noqa: E501 bordered = Aspect(docstring="Apply default bordering with neutral dark grey,") # noqa: E501 centered = Aspect(docstring="Center the content in the middle of the container.") # noqa: E501 scrollable = Aspect(docstring="Set the overflow content to scroll.") hidden = Aspect(docstring="Hide the component;") unselectable = Aspect(docstring="Do not allow for the text to be selected.") # noqa: E501 preset_color = Aspect(docstring="Preset color to apply to the font. (Possible values: 'primary', 'primary-light', 'primary-dark', 'secondary', 'secondary-light', 'secondary-dark', 'tertiary', 'tertiary-light', 'tertiary-dark', 'danger', 'danger-light', 'danger-dark', 'warning', 'warning-light', 'warning-dark', 'success', 'success-light', 'success-dark', 'neutral', 'neutral-light', 'neutral-dark', 'dark', 'dark-light', 'dark-dark', 'darker', 'darker-light', 'darker-dark')") # noqa: E501 preset_background = Aspect(docstring="Preset color to apply to the background. (Possible values: 'primary', 'primary-light', 'primary-dark', 'secondary', 'secondary-light', 'secondary-dark', 'tertiary', 'tertiary-light', 'tertiary-dark', 'danger', 'danger-light', 'danger-dark', 'warning', 'warning-light', 'warning-dark', 'success', 'success-light', 'success-dark', 'neutral', 'neutral-light', 'neutral-dark', 'dark', 'dark-light', 'dark-dark', 'darker', 'darker-light', 'darker-dark')") # noqa: E501 preset_size = Aspect(docstring="Scale the size of the container using a preset. (Possible values: 'tiny', 'small', 'medium', 'large', 'larger', 'x-large', 'xx-large')") # noqa: E501 color = Aspect(docstring="Font color") background = Aspect(docstring="Background color/image") padding = Aspect(docstring="Space around the content before the border") padding_top = Aspect() padding_bottom = Aspect() padding_left = Aspect() padding_right = Aspect() margin = Aspect(docstring="Space after the element border") margin_top = Aspect() margin_bottom = Aspect() margin_left = Aspect() margin_right = Aspect() overflow = Aspect(docstring="Overflow the content and show a scrollbar.") height = Aspect(docstring="Height of the component.") min_height = Aspect() max_height = Aspect(docstring="Maximum height before overflow.") width = Aspect(docstring="Width of the component.") min_width = Aspect() max_width = Aspect(docstring="Maximum width before overflowing.") font_family = Aspect(docstring="Font to use.") font_size = Aspect(docstring="Size of the font.") font_weight = Aspect(docstring="Boldness") font_style = Aspect(docstring="Italic") text_align = Aspect(docstring="Left center right.") border = Aspect(docstring="Border around the component.") border_radius = Aspect(docstring="Round the corner of the component, needs a background or border.") # noqa: E501 cursor = Aspect(docstring="Cursor when the mouse is over the component.") flex_grow = Aspect(docstring="Grow factor for flex item.") flex_shrink = Aspect(docstring="Shrink factor for flex item.") align_self = Aspect(docstring="Flex alignment for the component. (Possible values: 'auto', 'flex-start', 'flex-end', 'center', 'baseline', 'stretch')") # noqa: E501 display = Aspect(docstring="CSS, How to display the component.")
[docs] def __init__( self, name: str, icon_pack: typing.Optional[str] = UNDEFINED, class_name: typing.Optional[str] = UNDEFINED, style: typing.Optional[typing.Dict] = UNDEFINED, rounded: typing.Optional[bool] = UNDEFINED, bordered: typing.Optional[bool] = UNDEFINED, centered: typing.Optional[bool] = UNDEFINED, scrollable: typing.Optional[bool] = UNDEFINED, hidden: typing.Optional[bool] = UNDEFINED, unselectable: typing.Optional[bool] = UNDEFINED, preset_color: typing.Optional[typing.Any] = UNDEFINED, preset_background: typing.Optional[typing.Any] = UNDEFINED, preset_size: typing.Optional[typing.Any] = UNDEFINED, color: typing.Optional[str] = UNDEFINED, background: typing.Optional[str] = UNDEFINED, padding: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 padding_top: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 padding_bottom: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 padding_left: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 padding_right: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 margin: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 margin_top: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 margin_bottom: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 margin_left: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 margin_right: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 overflow: typing.Optional[str] = UNDEFINED, height: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 min_height: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 max_height: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 width: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 min_width: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 max_width: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 font_family: typing.Optional[str] = UNDEFINED, font_size: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 font_weight: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 font_style: typing.Optional[str] = UNDEFINED, text_align: typing.Optional[str] = UNDEFINED, border: typing.Optional[str] = UNDEFINED, border_radius: typing.Optional[typing.Union[str, typing.Union[float, int]]] = UNDEFINED, # noqa: E501 cursor: typing.Optional[str] = UNDEFINED, flex_grow: typing.Optional[typing.Union[float, int]] = UNDEFINED, flex_shrink: typing.Optional[typing.Union[float, int]] = UNDEFINED, # noqa: E501 align_self: typing.Optional[typing.Any] = UNDEFINED, display: typing.Optional[str] = UNDEFINED, identity: str = None ): """ :param name: Name of the icon to render, it will try to set the icon_pack prop from the name if it's not provided. Split with ``-`` or empty space, the first found will be the icon_pack. IE: For FoundIcon ``fi-[icon-name]``. :param icon_pack: Correspond to the ``name`` proper of the icon_pack, most font icons packages requires their pack name to be included in the class_name, as such, this component will add it automatically from found or provided icon pack name. :param class_name: Class name automatically added by dazzler api with a prefix for the component library. ie: core component Container become ``dazzler-core-container``. When added on the component, the class names will be concatenated. :param style: Style object for the top level wrapper of the component. :param rounded: Round the edge of the container with borderRadius: 3px; :param bordered: Apply default bordering with neutral dark grey, :param centered: Center the content in the middle of the container. :param scrollable: Set the overflow content to scroll. :param hidden: Hide the component; :param unselectable: Do not allow for the text to be selected. :param preset_color: Preset color to apply to the font. (Possible values: 'primary', 'primary-light', 'primary-dark', 'secondary', 'secondary-light', 'secondary-dark', 'tertiary', 'tertiary-light', 'tertiary-dark', 'danger', 'danger-light', 'danger-dark', 'warning', 'warning-light', 'warning-dark', 'success', 'success- light', 'success-dark', 'neutral', 'neutral-light', 'neutral-dark', 'dark', 'dark-light', 'dark-dark', 'darker', 'darker-light', 'darker-dark') :param preset_background: Preset color to apply to the background. (Possible values: 'primary', 'primary-light', 'primary-dark', 'secondary', 'secondary-light', 'secondary-dark', 'tertiary', 'tertiary-light', 'tertiary-dark', 'danger', 'danger-light', 'danger-dark', 'warning', 'warning-light', 'warning-dark', 'success', 'success-light', 'success-dark', 'neutral', 'neutral- light', 'neutral-dark', 'dark', 'dark-light', 'dark-dark', 'darker', 'darker-light', 'darker-dark') :param preset_size: Scale the size of the container using a preset. (Possible values: 'tiny', 'small', 'medium', 'large', 'larger', 'x-large', 'xx-large') :param color: Font color :param background: Background color/image :param padding: Space around the content before the border :param padding_top: :param padding_bottom: :param padding_left: :param padding_right: :param margin: Space after the element border :param margin_top: :param margin_bottom: :param margin_left: :param margin_right: :param overflow: Overflow the content and show a scrollbar. :param height: Height of the component. :param min_height: :param max_height: Maximum height before overflow. :param width: Width of the component. :param min_width: :param max_width: Maximum width before overflowing. :param font_family: Font to use. :param font_size: Size of the font. :param font_weight: Boldness :param font_style: Italic :param text_align: Left center right. :param border: Border around the component. :param border_radius: Round the corner of the component, needs a background or border. :param cursor: Cursor when the mouse is over the component. :param flex_grow: Grow factor for flex item. :param flex_shrink: Shrink factor for flex item. :param align_self: Flex alignment for the component. (Possible values: 'auto', 'flex-start', 'flex-end', 'center', 'baseline', 'stretch') :param display: CSS, How to display the component. """ Component.__init__(self, locals(), identity)