hkit

package module
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 27, 2023 License: BSD-3-Clause Imports: 4 Imported by: 0

README

hkit

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Class added in v0.4.0

func Class(classes ...any) string

Types

type AProps added in v0.4.0

type AProps struct {
	*GenericProps
	X              Attributes
	ID             string
	Class          string
	Style          map[string]string
	Href           string
	Target         string
	Download       string
	Ping           string
	Rel            string
	Hreflang       string
	Type           string
	Referrerpolicy string
}

type AbbrProps added in v0.4.0

type AbbrProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type AddressProps added in v0.4.0

type AddressProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type AreaProps added in v0.4.0

type AreaProps struct {
	*GenericProps
	X              Attributes
	ID             string
	Class          string
	Style          map[string]string
	Alt            string
	Coords         string
	Shape          string
	Href           string
	Target         string
	Download       string
	Ping           string
	Rel            string
	Referrerpolicy string
}

type ArticleProps added in v0.4.0

type ArticleProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type AsideProps added in v0.4.0

type AsideProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type Attributes added in v0.5.0

type Attributes map[string]any

func Attrs added in v0.5.0

func Attrs(keyVals ...any) Attributes

type AudioProps added in v0.4.0

type AudioProps struct {
	*GenericProps
	X           Attributes
	ID          string
	Class       string
	Style       map[string]string
	Src         string
	Crossorigin string
	Preload     string
	Autoplay    string
	Loop        string
	Muted       string
	Controls    string
}

type BProps added in v0.4.0

type BProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type BaseProps added in v0.4.0

type BaseProps struct {
	*GenericProps
	X      Attributes
	ID     string
	Class  string
	Style  map[string]string
	Href   string
	Target string
}

type BdiProps added in v0.4.0

type BdiProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type BdoProps added in v0.4.0

type BdoProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type BlockquoteProps added in v0.4.0

type BlockquoteProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Cite  string
}

type BodyProps added in v0.4.0

type BodyProps struct {
	*GenericProps
	X                    Attributes
	ID                   string
	Class                string
	Style                map[string]string
	Onafterprint         string
	Onbeforeprint        string
	Onbeforeunload       string
	Onhashchange         string
	Onlanguagechange     string
	Onmessage            string
	Onmessageerror       string
	Onoffline            string
	Ononline             string
	Onpagehide           string
	Onpageshow           string
	Onpopstate           string
	Onrejectionhandled   string
	Onstorage            string
	Onunhandledrejection string
	Onunload             string
}

type BrProps added in v0.4.0

type BrProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ButtonProps added in v0.4.0

type ButtonProps struct {
	*GenericProps
	X                   Attributes
	ID                  string
	Class               string
	Style               map[string]string
	Disabled            string
	Form                string
	Formaction          string
	Formenctype         string
	Formmethod          string
	Formnovalidate      string
	Formtarget          string
	Name                string
	Popovertarget       string
	Popovertargetaction string
	Type                string
	Value               string
}

type CanvasProps added in v0.4.0

type CanvasProps struct {
	*GenericProps
	X      Attributes
	ID     string
	Class  string
	Style  map[string]string
	Width  string
	Height string
}

type CaptionProps added in v0.4.0

type CaptionProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type CiteProps added in v0.4.0

type CiteProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type Classes added in v0.4.0

type Classes map[string]bool

func (Classes) String added in v0.5.0

func (c Classes) String() string

type CodeProps added in v0.4.0

type CodeProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ColProps added in v0.4.0

type ColProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Span  string
}

type ColgroupProps added in v0.4.0

type ColgroupProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Span  string
}

type Component

type Component interface {
	Render(w io.Writer) error
	RenderIndent(w io.Writer, prefix string, indent string) error
}

func A

func A(props *AProps, children ...Component) Component

func Abbr

func Abbr(props *AbbrProps, children ...Component) Component

func Address

func Address(props *AddressProps, children ...Component) Component

func Area

func Area(props *AreaProps, children ...Component) Component

func Article

func Article(props *ArticleProps, children ...Component) Component

func Aside

func Aside(props *AsideProps, children ...Component) Component

func Audio

func Audio(props *AudioProps, children ...Component) Component

func B

func B(props *BProps, children ...Component) Component

func Base

func Base(props *BaseProps, children ...Component) Component

func Bdi

func Bdi(props *BdiProps, children ...Component) Component

func Bdo

func Bdo(props *BdoProps, children ...Component) Component

func Blockquote

func Blockquote(props *BlockquoteProps, children ...Component) Component

func Body

func Body(props *BodyProps, children ...Component) Component

func Br

func Br(props *BrProps, children ...Component) Component

func Button

func Button(props *ButtonProps, children ...Component) Component

func Canvas

func Canvas(props *CanvasProps, children ...Component) Component

func Caption

func Caption(props *CaptionProps, children ...Component) Component

func Cite

func Cite(props *CiteProps, children ...Component) Component

func Code

func Code(props *CodeProps, children ...Component) Component

func Col

func Col(props *ColProps, children ...Component) Component

func Colgroup

func Colgroup(props *ColgroupProps, children ...Component) Component

func Data

func Data(props *DataProps, children ...Component) Component

func Datalist

func Datalist(props *DatalistProps, children ...Component) Component

func Dd

func Dd(props *DdProps, children ...Component) Component

func Del

func Del(props *DelProps, children ...Component) Component

func Details

func Details(props *DetailsProps, children ...Component) Component

func Dfn

func Dfn(props *DfnProps, children ...Component) Component

func Dialog

func Dialog(props *DialogProps, children ...Component) Component

func Div

func Div(props *DivProps, children ...Component) Component

func Dl

func Dl(props *DlProps, children ...Component) Component

func Dt

func Dt(props *DtProps, children ...Component) Component

func Em

func Em(props *EmProps, children ...Component) Component

func Embed

func Embed(props *EmbedProps, children ...Component) Component

func Fieldset

func Fieldset(props *FieldsetProps, children ...Component) Component

func Figcaption

func Figcaption(props *FigcaptionProps, children ...Component) Component

func Figure

func Figure(props *FigureProps, children ...Component) Component
func Footer(props *FooterProps, children ...Component) Component

func Form

func Form(props *FormProps, children ...Component) Component

func H added in v0.4.0

func H[C HComp](comp C, children ...Component) Component

func H1

func H1(props *H1Props, children ...Component) Component

func H2

func H2(props *H2Props, children ...Component) Component

func H3

func H3(props *H3Props, children ...Component) Component

func H4

func H4(props *H4Props, children ...Component) Component

func H5

func H5(props *H5Props, children ...Component) Component

func H6

func H6(props *H6Props, children ...Component) Component
func Head(props *HeadProps, children ...Component) Component
func Header(props *HeaderProps, children ...Component) Component

func Hgroup

func Hgroup(props *HgroupProps, children ...Component) Component

func Hp added in v0.5.0

func Hp[P Props, C HpComp[P]](comp C, props P, children ...Component) Component

func Hr

func Hr(props *HrProps, children ...Component) Component

func Html

func Html(props *HtmlProps, children ...Component) Component

func I

func I(props *IProps, children ...Component) Component

func If

func If(cond bool, a, b Component) Component

func Iframe

func Iframe(props *IframeProps, children ...Component) Component

func Img

func Img(props *ImgProps, children ...Component) Component

func Input

func Input(props *InputProps, children ...Component) Component

func Ins

func Ins(props *InsProps, children ...Component) Component

func Kbd

func Kbd(props *KbdProps, children ...Component) Component

func Label

func Label(props *LabelProps, children ...Component) Component

func Legend

func Legend(props *LegendProps, children ...Component) Component

func Li

func Li(props *LiProps, children ...Component) Component
func Link(props *LinkProps, children ...Component) Component

func Main

func Main(props *MainProps, children ...Component) Component

func Map

func Map(props *MapProps, children ...Component) Component

func Mark

func Mark(props *MarkProps, children ...Component) Component
func Menu(props *MenuProps, children ...Component) Component

func Meta

func Meta(props *MetaProps, children ...Component) Component

func Meter

func Meter(props *MeterProps, children ...Component) Component
func Nav(props *NavProps, children ...Component) Component

func Noscript

func Noscript(props *NoscriptProps, children ...Component) Component

func Object

func Object(props *ObjectProps, children ...Component) Component

func Ol

func Ol(props *OlProps, children ...Component) Component

func Optgroup

func Optgroup(props *OptgroupProps, children ...Component) Component

func Option

func Option(props *OptionProps, children ...Component) Component

func Output

func Output(props *OutputProps, children ...Component) Component

func P

func P(props *PProps, children ...Component) Component

func Picture

func Picture(props *PictureProps, children ...Component) Component

func Pre

func Pre(props *PreProps, children ...Component) Component

func Progress

func Progress(props *ProgressProps, children ...Component) Component

func Q

func Q(props *QProps, children ...Component) Component

func Rp

func Rp(props *RpProps, children ...Component) Component

func Rt

func Rt(props *RtProps, children ...Component) Component

func Ruby

func Ruby(props *RubyProps, children ...Component) Component

func S

func S(props *SProps, children ...Component) Component

func Samp

func Samp(props *SampProps, children ...Component) Component

func Script

func Script(props *ScriptProps, children ...Component) Component
func Search(props *SearchProps, children ...Component) Component

func Section

func Section(props *SectionProps, children ...Component) Component

func Select

func Select(props *SelectProps, children ...Component) Component

func Slot

func Slot(props *SlotProps, children ...Component) Component

func Small

func Small(props *SmallProps, children ...Component) Component

func Source

func Source(props *SourceProps, children ...Component) Component

func Span

func Span(props *SpanProps, children ...Component) Component

func Strong

func Strong(props *StrongProps, children ...Component) Component

func Style

func Style(props *StyleProps, children ...Component) Component

func Sub

func Sub(props *SubProps, children ...Component) Component

func Summary

func Summary(props *SummaryProps, children ...Component) Component

func Sup

func Sup(props *SupProps, children ...Component) Component

func Table

func Table(props *TableProps, children ...Component) Component

func Tag added in v0.4.0

func Tag[P Props](name string, props P, children ...Component) Component

func Tbody

func Tbody(props *TbodyProps, children ...Component) Component

func Td

func Td(props *TdProps, children ...Component) Component

func Template

func Template(props *TemplateProps, children ...Component) Component

func Text

func Text(children ...string) Component

func Textarea

func Textarea(props *TextareaProps, children ...Component) Component

func Tfoot

func Tfoot(props *TfootProps, children ...Component) Component

func Th

func Th(props *ThProps, children ...Component) Component

func Thead

func Thead(props *TheadProps, children ...Component) Component

func Time

func Time(props *TimeProps, children ...Component) Component

func Title

func Title(props *TitleProps, children ...Component) Component

func Tr

func Tr(props *TrProps, children ...Component) Component

func Track

func Track(props *TrackProps, children ...Component) Component

func U

func U(props *UProps, children ...Component) Component

func Ul

func Ul(props *UlProps, children ...Component) Component

func Var

func Var(props *VarProps, children ...Component) Component

func Video

func Video(props *VideoProps, children ...Component) Component

func Wbr

func Wbr(props *WbrProps, children ...Component) Component

type ComponentFunc added in v0.4.0

type ComponentFunc[P Props] func(P, ...Component) Component

type Context added in v0.2.0

type Context interface {
	Get(k string) interface{}
	Set(k string, v interface{})
}

Context .

func NewContext added in v0.2.0

func NewContext() Context

NewContext .

type DataProps added in v0.4.0

type DataProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Value string
}

type DatalistProps added in v0.4.0

type DatalistProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type DdProps added in v0.4.0

type DdProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type DelProps added in v0.4.0

type DelProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Cite     string
	Datetime string
}

type DetailsProps added in v0.4.0

type DetailsProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Open  string
}

type DfnProps added in v0.4.0

type DfnProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type DialogProps added in v0.4.0

type DialogProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Open  string
}

type DivProps added in v0.4.0

type DivProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type DlProps added in v0.4.0

type DlProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type DtProps added in v0.4.0

type DtProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type EmProps added in v0.4.0

type EmProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type EmbedProps added in v0.4.0

type EmbedProps struct {
	*GenericProps
	X      Attributes
	ID     string
	Class  string
	Style  map[string]string
	Src    string
	Type   string
	Width  string
	Height string
	Any    string
}

type FieldsetProps added in v0.4.0

type FieldsetProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Disabled string
	Form     string
	Name     string
}

type FigcaptionProps added in v0.4.0

type FigcaptionProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type FigureProps added in v0.4.0

type FigureProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type FooterProps added in v0.4.0

type FooterProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type FormProps added in v0.4.0

type FormProps struct {
	*GenericProps
	X             Attributes
	ID            string
	Class         string
	Style         map[string]string
	AcceptCharset string
	Action        string
	Autocomplete  string
	Enctype       string
	Method        string
	Name          string
	Novalidate    string
	Rel           string
	Target        string
}

type GenericProps added in v0.4.0

type GenericProps struct {
	Accesskey       string
	Autocapitalize  string
	Autofocus       bool
	Contenteditable string
	Dir             string
	Draggable       bool
	Enterkeyhint    string
	Hidden          string
	Inputmode       string
	Is              string
	Itemid          string
	Itemprop        string
	Itemref         string
	Itemscope       bool
	Itemtype        string
	Lang            string
	Nonce           string
	Spellcheck      bool
	Tabindex        int
	Title           string
	Translate       bool
}

type H1Props added in v0.4.0

type H1Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type H2Props added in v0.4.0

type H2Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type H3Props added in v0.4.0

type H3Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type H4Props added in v0.4.0

type H4Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type H5Props added in v0.4.0

type H5Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type H6Props added in v0.4.0

type H6Props struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type HComp added in v0.5.0

type HComp interface {
	HCompFunc | string
}

type HCompFunc added in v0.5.0

type HCompFunc func(...Component) Component

func WithProps added in v0.5.0

func WithProps[P Props, C interface {
	string | ~func(P, ...Component) Component
}](comp C, props P) HCompFunc

type HeadProps added in v0.4.0

type HeadProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type HeaderProps added in v0.4.0

type HeaderProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type HgroupProps added in v0.4.0

type HgroupProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type HpComp added in v0.5.0

type HpComp[P Props] interface {
	ComponentFunc[P] | string
}

type HrProps added in v0.4.0

type HrProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type HtmlProps added in v0.4.0

type HtmlProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Manifest string
}

type IProps added in v0.4.0

type IProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type IframeProps added in v0.4.0

type IframeProps struct {
	*GenericProps
	X               Attributes
	ID              string
	Class           string
	Style           map[string]string
	Src             string
	Srcdoc          string
	Name            string
	Sandbox         string
	Allow           string
	Allowfullscreen string
	Width           string
	Height          string
	Referrerpolicy  string
	Loading         string
}

type ImgProps added in v0.4.0

type ImgProps struct {
	*GenericProps
	X              Attributes
	ID             string
	Class          string
	Style          map[string]string
	Alt            string
	Src            string
	Srcset         string
	Sizes          string
	Crossorigin    string
	Usemap         string
	Ismap          string
	Width          string
	Height         string
	Referrerpolicy string
	Decoding       string
	Loading        string
	Fetchpriority  string
}

type InputProps added in v0.4.0

type InputProps struct {
	*GenericProps
	X                   Attributes
	ID                  string
	Class               string
	Style               map[string]string
	Accept              string
	Alt                 string
	Autocomplete        string
	Checked             string
	Dirname             string
	Disabled            string
	Form                string
	Formaction          string
	Formenctype         string
	Formmethod          string
	Formnovalidate      string
	Formtarget          string
	Height              string
	List                string
	Max                 string
	Maxlength           string
	Min                 string
	Minlength           string
	Multiple            string
	Name                string
	Pattern             string
	Placeholder         string
	Popovertarget       string
	Popovertargetaction string
	Readonly            string
	Required            string
	Size                string
	Src                 string
	Step                string
	Type                string
	Value               string
	Width               string
}

type InsProps added in v0.4.0

type InsProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Cite     string
	Datetime string
}

type KbdProps added in v0.4.0

type KbdProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type LabelProps added in v0.4.0

type LabelProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	For   string
}

type LegendProps added in v0.4.0

type LegendProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type LiProps added in v0.4.0

type LiProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Value string
}

type LinkProps added in v0.4.0

type LinkProps struct {
	*GenericProps
	X              Attributes
	ID             string
	Class          string
	Style          map[string]string
	Href           string
	Crossorigin    string
	Rel            string
	As             string
	Media          string
	Hreflang       string
	Type           string
	Sizes          string
	Imagesrcset    string
	Imagesizes     string
	Referrerpolicy string
	Integrity      string
	Blocking       string
	Color          string
	Disabled       string
	Fetchpriority  string
}

type MainProps added in v0.4.0

type MainProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type MapProps added in v0.4.0

type MapProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Name  string
}

type MarkProps added in v0.4.0

type MarkProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}
type MenuProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type MetaProps added in v0.4.0

type MetaProps struct {
	*GenericProps
	X         Attributes
	ID        string
	Class     string
	Style     map[string]string
	Name      string
	HttpEquiv string
	Content   string
	Charset   string
	Media     string
}

type MeterProps added in v0.4.0

type MeterProps struct {
	*GenericProps
	X       Attributes
	ID      string
	Class   string
	Style   map[string]string
	Value   string
	Min     string
	Max     string
	Low     string
	High    string
	Optimum string
}
type NavProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type NoscriptProps added in v0.4.0

type NoscriptProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ObjectProps added in v0.4.0

type ObjectProps struct {
	*GenericProps
	X      Attributes
	ID     string
	Class  string
	Style  map[string]string
	Data   string
	Type   string
	Name   string
	Form   string
	Width  string
	Height string
}

type OlProps added in v0.4.0

type OlProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Reversed string
	Start    string
	Type     string
}

type OptgroupProps added in v0.4.0

type OptgroupProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Disabled string
	Label    string
}

type OptionProps added in v0.4.0

type OptionProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Disabled string
	Label    string
	Selected string
	Value    string
}

type OutputProps added in v0.4.0

type OutputProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	For   string
	Form  string
	Name  string
}

type PProps added in v0.4.0

type PProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type PictureProps added in v0.4.0

type PictureProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type PreProps added in v0.4.0

type PreProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ProgressProps added in v0.4.0

type ProgressProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Value string
	Max   string
}

type Props added in v0.4.0

type Props interface {
	// contains filtered or unexported methods
}

type QProps added in v0.4.0

type QProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Cite  string
}

type RpProps added in v0.4.0

type RpProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type RtProps added in v0.4.0

type RtProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type RubyProps added in v0.4.0

type RubyProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SProps added in v0.4.0

type SProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SampProps added in v0.4.0

type SampProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ScriptProps added in v0.4.0

type ScriptProps struct {
	*GenericProps
	X              Attributes
	ID             string
	Class          string
	Style          map[string]string
	Src            string
	Type           string
	Nomodule       string
	Async          string
	Defer          string
	Crossorigin    string
	Integrity      string
	Referrerpolicy string
	Blocking       string
	Fetchpriority  string
}

type SearchProps added in v0.4.0

type SearchProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SectionProps added in v0.4.0

type SectionProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SelectProps added in v0.4.0

type SelectProps struct {
	*GenericProps
	X            Attributes
	ID           string
	Class        string
	Style        map[string]string
	Autocomplete string
	Disabled     string
	Form         string
	Multiple     string
	Name         string
	Required     string
	Size         string
}

type SlotProps added in v0.4.0

type SlotProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
	Name  string
}

type SmallProps added in v0.4.0

type SmallProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SourceProps added in v0.4.0

type SourceProps struct {
	*GenericProps
	X      Attributes
	ID     string
	Class  string
	Style  map[string]string
	Type   string
	Media  string
	Src    string
	Srcset string
	Sizes  string
	Width  string
	Height string
}

type SpanProps added in v0.4.0

type SpanProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type StrongProps added in v0.4.0

type StrongProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type StyleProps added in v0.4.0

type StyleProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Media    string
	Blocking string
}

type SubProps added in v0.4.0

type SubProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SummaryProps added in v0.4.0

type SummaryProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type SupProps added in v0.4.0

type SupProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TableProps added in v0.4.0

type TableProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TbodyProps added in v0.4.0

type TbodyProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TdProps added in v0.4.0

type TdProps struct {
	*GenericProps
	X       Attributes
	ID      string
	Class   string
	Style   map[string]string
	Colspan string
	Rowspan string
	Headers string
}

type TemplateProps added in v0.4.0

type TemplateProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TextareaProps added in v0.4.0

type TextareaProps struct {
	*GenericProps
	X            Attributes
	ID           string
	Class        string
	Style        map[string]string
	Autocomplete string
	Cols         string
	Dirname      string
	Disabled     string
	Form         string
	Maxlength    string
	Minlength    string
	Name         string
	Placeholder  string
	Readonly     string
	Required     string
	Rows         string
	Wrap         string
}

type TfootProps added in v0.4.0

type TfootProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type ThProps added in v0.4.0

type ThProps struct {
	*GenericProps
	X       Attributes
	ID      string
	Class   string
	Style   map[string]string
	Colspan string
	Rowspan string
	Headers string
	Scope   string
	Abbr    string
}

type TheadProps added in v0.4.0

type TheadProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TimeProps added in v0.4.0

type TimeProps struct {
	*GenericProps
	X        Attributes
	ID       string
	Class    string
	Style    map[string]string
	Datetime string
}

type TitleProps added in v0.4.0

type TitleProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TrProps added in v0.4.0

type TrProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type TrackProps added in v0.4.0

type TrackProps struct {
	*GenericProps
	X       Attributes
	ID      string
	Class   string
	Style   map[string]string
	Default string
	Kind    string
	Label   string
	Src     string
	Srclang string
}

type UProps added in v0.4.0

type UProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type UlProps added in v0.4.0

type UlProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type VarProps added in v0.4.0

type VarProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

type VideoProps added in v0.4.0

type VideoProps struct {
	*GenericProps
	X           Attributes
	ID          string
	Class       string
	Style       map[string]string
	Src         string
	Crossorigin string
	Poster      string
	Preload     string
	Autoplay    string
	Playsinline string
	Loop        string
	Muted       string
	Controls    string
	Width       string
	Height      string
}

type WbrProps added in v0.4.0

type WbrProps struct {
	*GenericProps
	X     Attributes
	ID    string
	Class string
	Style map[string]string
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL