⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.184
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
mysqlsh
/
lib
/
python3.8
/
site-packages
/
svg
/
View File Name :
_mixins.py
from __future__ import annotations from dataclasses import dataclass from typing import TYPE_CHECKING from ._types import Length, Number if TYPE_CHECKING: from typing_extensions import Literal class AttrsMixin: pass @dataclass class GraphicsElementEvents(AttrsMixin): onfocusin: str | None = None onfocusout: str | None = None onactivate: str | None = None onclick: str | None = None onmousedown: str | None = None onmouseup: str | None = None onmouseover: str | None = None onmousemove: str | None = None onmouseout: str | None = None onload: str | None = None @dataclass class Color(AttrsMixin): color: str | None = None color_interpolation: None | Literal[ "auto", "sRGB", "linearRGB", "inherit", ] = None @dataclass class FillStroke(AttrsMixin): stroke: str | None = None stroke_dasharray: list[Number] | Literal["none"] | Length | None = None stroke_dashoffset: Literal["none"] | Length | Number | None = None stroke_opacity: Number | None = None stroke_width: Length | Number | None = None @dataclass class FontSpecification(AttrsMixin): font_family: str | None = None font_size: Length | Number | None = None font_size_adjust: Number | None | Literal["none"] = None font_style: None | Literal[ "normal", "italic", "oblique", "inherit", ] = None font_variant: Literal["normal", "small-caps", "inherit"] | None = None font_weight: None | Literal[ "normal", "bold", "bolder", "lighter", "inherit", "100", "200", "300", "400", "500", "600", "700", "800", "900", ] = None @dataclass class Graphics(AttrsMixin): clip_rule: Literal["evenodd", "nonzero", "inherit"] | None = None cursor: None | Literal[ "auto", "crosshair", "default", "pointer", "move", "e-resize", "ne-resize", "nw-resize", "n-resize", "se-resize", "sw-resize", "s-resize", "w-resize", "text", "wait", "help", "inherit", ] = None display: str | None = None filter: str | None = None pointer_events: None | Literal[ "bounding-box", "visiblePainted", "visibleFill", "visibleStroke", "visible", "painted", "fill", "stroke", "all", "none", ] = None @dataclass class TextContentElements(AttrsMixin): direction: Literal["ltr", "rtl", "inherit"] | None = None dominant_baseline: None | Literal[ "auto", "autosense-script", "no-change", "reset", "ideographic", "lower", "hanging", "mathematical", "inherit", "text-bottom", "alphabetic", "middle", "central", "text-top", ] = None letter_spacing: Literal["auto", "exact"] | None = None text_anchor: Literal["start", "middle", "end", "inherit"] | None = None text_decoration: None | Literal[ "none", "underline", "overline", "line-through", ] = None unicode_bidi: None | Literal[ "normal", "embed", "isolate", "bidi-override", "isolate-override", "plaintext", ] = None word_spacing: Literal["auto", "exact"] | None = None @dataclass class FilterPrimitive(AttrsMixin): x: Length | Number | None = None y: Length | Number | None = None @dataclass class ComponentTransferFunction(AttrsMixin): type: Literal["identity", "table", "discrete", "linear", "gamma"] tableValues: str | None = None intercept: float | None = None amplitude: float | None = None exponent: float | None = None offset: float | None = None @dataclass class Animation(AttrsMixin): # Animation value attributes calcMode: Literal["discrete", "linear", "paced", "spline"] | None = None values: str | None = None keyTimes: str | None = None keySplines: str | None = None from_: str | None = None to: str | None = None by: str | None = None # Animation target element attributes href: str | None = None # Animation addition attributes additive: Literal["replace", "sum"] | None = None accumulate: Literal["none", "sum"] | None = None @dataclass class AnimationTiming(AttrsMixin): begin: str | None = None dur: str | None = None end: str | None = None min: str | None = None max: str | None = None restart: Literal["always", "never", "whenNotActive"] | None = None repeatCount: str | None = None repeatDur: str | None = None