How to use TabIndex method of html Package

Best K6 code snippet using html.TabIndex

elements.go

Source:elements.go Github

copy

Full Screen

...24 Hidden *bool `react:"hidden,omitempty"`25 ID string `react:"id,omitempty"`26 Lang string `react:"lang,omitempty"`27 SpellCheck *bool `react:"spellcheck,omitempty"`28 TabIndex string `react:"tabindex,omitempty"`29 Title string `react:"title,omitempty"`30 Key string `react:"key,omitempty"`31 Ref *js.Object `react:"ref,omitempty"`32 Role string `react:"role,omitempty"`33 Style *Styles `react:"style,omitempty"`34 // Events35 OnBlur *js.Object `react:"onBlur,omitempty"`36 OnFocus *js.Object `react:"onFocus,omitempty"`37 OnChange *js.Object `react:"onChange,omitempty"`38 OnClick *js.Object `react:"onClick,omitempty"`39 //////////40 Href string `react:"href,omitempty"`41 Target string `react:"target,omitempty"`42}43// A ...44func A(props *AProps, children ...interface{}) *js.Object {45 return react.JSX("a", props, children...)46}47// AbbrProps ...48type AbbrProps struct {49 AriaSet react.Set `react:"aria-,omitempty"`50 DataSet react.Set `react:"data-,omitempty"`51 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`52 Accesskey string `react:"accesskey,omitempty"`53 Class string `react:"className,omitempty"`54 Contenteditable *bool `react:"contenteditable,omitempty"`55 Dir string `react:"dir,omitempty"`56 Draggable *bool `react:"draggable,omitempty"`57 Dropzone string `react:"dropzone,omitempty"`58 Hidden *bool `react:"hidden,omitempty"`59 ID string `react:"id,omitempty"`60 Lang string `react:"lang,omitempty"`61 SpellCheck *bool `react:"spellcheck,omitempty"`62 TabIndex string `react:"tabindex,omitempty"`63 Title string `react:"title,omitempty"`64 Key string `react:"key,omitempty"`65 Ref *js.Object `react:"ref,omitempty"`66 Role string `react:"role,omitempty"`67 Style *Styles `react:"style,omitempty"`68 // Events69 OnBlur *js.Object `react:"onBlur,omitempty"`70 OnFocus *js.Object `react:"onFocus,omitempty"`71 OnChange *js.Object `react:"onChange,omitempty"`72 OnClick *js.Object `react:"onClick,omitempty"`73}74// Abbr ...75func Abbr(props *AbbrProps, children ...interface{}) *js.Object {76 return react.JSX("abbr", props, children...)77}78// ArticleProps ...79type ArticleProps struct {80 AriaSet react.Set `react:"aria-,omitempty"`81 DataSet react.Set `react:"data-,omitempty"`82 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`83 Accesskey string `react:"accesskey,omitempty"`84 Class string `react:"className,omitempty"`85 Contenteditable *bool `react:"contenteditable,omitempty"`86 Dir string `react:"dir,omitempty"`87 Draggable *bool `react:"draggable,omitempty"`88 Dropzone string `react:"dropzone,omitempty"`89 Hidden *bool `react:"hidden,omitempty"`90 ID string `react:"id,omitempty"`91 Lang string `react:"lang,omitempty"`92 SpellCheck *bool `react:"spellcheck,omitempty"`93 TabIndex string `react:"tabindex,omitempty"`94 Title string `react:"title,omitempty"`95 Key string `react:"key,omitempty"`96 Ref *js.Object `react:"ref,omitempty"`97 Role string `react:"role,omitempty"`98 Style *Styles `react:"style,omitempty"`99 // Events100 OnBlur *js.Object `react:"onBlur,omitempty"`101 OnFocus *js.Object `react:"onFocus,omitempty"`102 OnChange *js.Object `react:"onChange,omitempty"`103 OnClick *js.Object `react:"onClick,omitempty"`104}105// Article ...106func Article(props *AbbrProps, children ...interface{}) *js.Object {107 return react.JSX("article", props, children...)108}109// AsideProps ...110type AsideProps struct {111 AriaSet react.Set `react:"aria-,omitempty"`112 DataSet react.Set `react:"data-,omitempty"`113 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`114 Accesskey string `react:"accesskey,omitempty"`115 Class string `react:"className,omitempty"`116 Contenteditable *bool `react:"contenteditable,omitempty"`117 Dir string `react:"dir,omitempty"`118 Draggable *bool `react:"draggable,omitempty"`119 Dropzone string `react:"dropzone,omitempty"`120 Hidden *bool `react:"hidden,omitempty"`121 ID string `react:"id,omitempty"`122 Lang string `react:"lang,omitempty"`123 SpellCheck *bool `react:"spellcheck,omitempty"`124 TabIndex string `react:"tabindex,omitempty"`125 Title string `react:"title,omitempty"`126 Key string `react:"key,omitempty"`127 Ref *js.Object `react:"ref,omitempty"`128 Role string `react:"role,omitempty"`129 Style *Styles `react:"style,omitempty"`130 // Events131 OnBlur *js.Object `react:"onBlur,omitempty"`132 OnFocus *js.Object `react:"onFocus,omitempty"`133 OnChange *js.Object `react:"onChange,omitempty"`134 OnClick *js.Object `react:"onClick,omitempty"`135}136// Aside ...137func Aside(props *AsideProps, children ...interface{}) *js.Object {138 return react.JSX("aside", props, children...)139}140// BProps ...141type BProps struct {142 AriaSet react.Set `react:"aria-,omitempty"`143 DataSet react.Set `react:"data-,omitempty"`144 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`145 Accesskey string `react:"accesskey,omitempty"`146 Class string `react:"className,omitempty"`147 Contenteditable *bool `react:"contenteditable,omitempty"`148 Dir string `react:"dir,omitempty"`149 Draggable *bool `react:"draggable,omitempty"`150 Dropzone string `react:"dropzone,omitempty"`151 Hidden *bool `react:"hidden,omitempty"`152 ID string `react:"id,omitempty"`153 Lang string `react:"lang,omitempty"`154 SpellCheck *bool `react:"spellcheck,omitempty"`155 TabIndex string `react:"tabindex,omitempty"`156 Title string `react:"title,omitempty"`157 Key string `react:"key,omitempty"`158 Ref *js.Object `react:"ref,omitempty"`159 Role string `react:"role,omitempty"`160 Style *Styles `react:"style,omitempty"`161 // Events162 OnBlur *js.Object `react:"onBlur,omitempty"`163 OnFocus *js.Object `react:"onFocus,omitempty"`164 OnChange *js.Object `react:"onChange,omitempty"`165 OnClick *js.Object `react:"onClick,omitempty"`166}167// B ...168func B(props *BProps, children ...interface{}) *js.Object {169 return react.JSX("b", props, children...)170}171// BodyProps ...172type BodyProps struct {173 AriaSet react.Set `react:"aria-,omitempty"`174 DataSet react.Set `react:"data-,omitempty"`175 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`176 Accesskey string `react:"accesskey,omitempty"`177 Class string `react:"className,omitempty"`178 Contenteditable *bool `react:"contenteditable,omitempty"`179 Dir string `react:"dir,omitempty"`180 Draggable *bool `react:"draggable,omitempty"`181 Dropzone string `react:"dropzone,omitempty"`182 Hidden *bool `react:"hidden,omitempty"`183 ID string `react:"id,omitempty"`184 Lang string `react:"lang,omitempty"`185 SpellCheck *bool `react:"spellcheck,omitempty"`186 TabIndex string `react:"tabindex,omitempty"`187 Title string `react:"title,omitempty"`188 Key string `react:"key,omitempty"`189 Ref *js.Object `react:"ref,omitempty"`190 Role string `react:"role,omitempty"`191 Style *Styles `react:"style,omitempty"`192 // Events193 OnAfterPrint *js.Object `react:"onAfterPrint,omitempty"`194 OnBeforePrint *js.Object `react:"onBeforePrint,omitempty"`195 OnBeforeUnload *js.Object `react:"onBeforeUnload,omitempty"`196 OnError *js.Object `react:"onError,omitempty"`197 OnHashChange *js.Object `react:"onHashChange,omitempty"`198 OnLoad *js.Object `react:"onLoad,omitempty"`199 OnOffline *js.Object `react:"onOffline,omitempty"`200 OnOnline *js.Object `react:"onOnline,omitempty"`201 OnPageShow *js.Object `react:"onPageShow,omitempty"`202 OnResize *js.Object `react:"onResize,omitempty"`203 OnUnload *js.Object `react:"onUnload,omitempty"`204 OnBlur *js.Object `react:"onBlur,omitempty"`205 OnFocus *js.Object `react:"onFocus,omitempty"`206 OnChange *js.Object `react:"onChange,omitempty"`207 OnClick *js.Object `react:"onClick,omitempty"`208}209// Body ...210func Body(props *BodyProps, children ...interface{}) *js.Object {211 return react.JSX("body", props, children...)212}213// BrProps ...214type BrProps struct {215 AriaSet react.Set `react:"aria-,omitempty"`216 DataSet react.Set `react:"data-,omitempty"`217 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`218 Accesskey string `react:"accesskey,omitempty"`219 Class string `react:"className,omitempty"`220 Contenteditable *bool `react:"contenteditable,omitempty"`221 Dir string `react:"dir,omitempty"`222 Draggable *bool `react:"draggable,omitempty"`223 Dropzone string `react:"dropzone,omitempty"`224 Hidden *bool `react:"hidden,omitempty"`225 ID string `react:"id,omitempty"`226 Lang string `react:"lang,omitempty"`227 SpellCheck *bool `react:"spellcheck,omitempty"`228 TabIndex string `react:"tabindex,omitempty"`229 Title string `react:"title,omitempty"`230 Key string `react:"key,omitempty"`231 Ref *js.Object `react:"ref,omitempty"`232 Role string `react:"role,omitempty"`233 Style *Styles `react:"style,omitempty"`234 // Events235 OnBlur *js.Object `react:"onBlur,omitempty"`236 OnFocus *js.Object `react:"onFocus,omitempty"`237 OnChange *js.Object `react:"onChange,omitempty"`238 OnClick *js.Object `react:"onClick,omitempty"`239}240// Br ...241func Br(props *BrProps, children ...interface{}) *js.Object {242 return react.JSX("br", props, children...)243}244// ButtonProps ...245type ButtonProps struct {246 AriaSet react.Set `react:"aria-,omitempty"`247 DataSet react.Set `react:"data-,omitempty"`248 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`249 Accesskey string `react:"accesskey,omitempty"`250 Class string `react:"className,omitempty"`251 Contenteditable *bool `react:"contenteditable,omitempty"`252 Dir string `react:"dir,omitempty"`253 Draggable *bool `react:"draggable,omitempty"`254 Dropzone string `react:"dropzone,omitempty"`255 Hidden *bool `react:"hidden,omitempty"`256 ID string `react:"id,omitempty"`257 Lang string `react:"lang,omitempty"`258 SpellCheck *bool `react:"spellcheck,omitempty"`259 TabIndex string `react:"tabindex,omitempty"`260 Title string `react:"title,omitempty"`261 Key string `react:"key,omitempty"`262 Ref *js.Object `react:"ref,omitempty"`263 Role string `react:"role,omitempty"`264 Style *Styles `react:"style,omitempty"`265 // Events266 OnBlur *js.Object `react:"onBlur,omitempty"`267 OnFocus *js.Object `react:"onFocus,omitempty"`268 OnChange *js.Object `react:"onChange,omitempty"`269 OnClick *js.Object `react:"onClick,omitempty"`270 //////////271 AutoFocus *bool `react:"autofocus,omitempty"`272 Disabled *bool `react:"disabled,omitempty"`273 Form string `react:"form,omitempty"`274 FormAction string `react:"formaction,omitempty"`275 FormEncType string `react:"formenctype,omitempty"`276 FormMethod string `react:"formmethod,omitempty"`277 FormNoValidate *bool `react:"formnovalidate,omitempty"`278 FormTarget string `react:"formtarget,omitempty"`279 Name string `react:"name,omitempty"`280 Type string `react:"type,omitempty"`281 ValidationMessage string `react:"validationmessage,omitempty"`282 Value string `react:"value,omitempty"`283 WillValidate *bool `react:"willvalidate,omitempty"`284}285// Button ...286func Button(props *ButtonProps, children ...interface{}) *js.Object {287 return react.JSX("button", props, children...)288}289// CaptionProps ...290type CaptionProps struct {291 AriaSet react.Set `react:"aria-,omitempty"`292 DataSet react.Set `react:"data-,omitempty"`293 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`294 Accesskey string `react:"accesskey,omitempty"`295 Class string `react:"className,omitempty"`296 Contenteditable *bool `react:"contenteditable,omitempty"`297 Dir string `react:"dir,omitempty"`298 Draggable *bool `react:"draggable,omitempty"`299 Dropzone string `react:"dropzone,omitempty"`300 Hidden *bool `react:"hidden,omitempty"`301 ID string `react:"id,omitempty"`302 Lang string `react:"lang,omitempty"`303 SpellCheck *bool `react:"spellcheck,omitempty"`304 TabIndex string `react:"tabindex,omitempty"`305 Title string `react:"title,omitempty"`306 Key string `react:"key,omitempty"`307 Ref *js.Object `react:"ref,omitempty"`308 Role string `react:"role,omitempty"`309 Style *Styles `react:"style,omitempty"`310 // Events311 OnBlur *js.Object `react:"onBlur,omitempty"`312 OnFocus *js.Object `react:"onFocus,omitempty"`313 OnChange *js.Object `react:"onChange,omitempty"`314 OnClick *js.Object `react:"onClick,omitempty"`315}316// Caption ...317func Caption(props *CaptionProps, children ...interface{}) *js.Object {318 return react.JSX("caption", props, children...)319}320// CodeProps ...321type CodeProps struct {322 AriaSet react.Set `react:"aria-,omitempty"`323 DataSet react.Set `react:"data-,omitempty"`324 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`325 Accesskey string `react:"accesskey,omitempty"`326 Class string `react:"className,omitempty"`327 Contenteditable *bool `react:"contenteditable,omitempty"`328 Dir string `react:"dir,omitempty"`329 Draggable *bool `react:"draggable,omitempty"`330 Dropzone string `react:"dropzone,omitempty"`331 Hidden *bool `react:"hidden,omitempty"`332 ID string `react:"id,omitempty"`333 Lang string `react:"lang,omitempty"`334 SpellCheck *bool `react:"spellcheck,omitempty"`335 TabIndex string `react:"tabindex,omitempty"`336 Title string `react:"title,omitempty"`337 Key string `react:"key,omitempty"`338 Ref *js.Object `react:"ref,omitempty"`339 Role string `react:"role,omitempty"`340 Style *Styles `react:"style,omitempty"`341 // Events342 OnBlur *js.Object `react:"onBlur,omitempty"`343 OnFocus *js.Object `react:"onFocus,omitempty"`344 OnChange *js.Object `react:"onChange,omitempty"`345 OnClick *js.Object `react:"onClick,omitempty"`346}347// Code ...348func Code(props *CodeProps, children ...interface{}) *js.Object {349 return react.JSX("code", props, children...)350}351// DivProps ...352type DivProps struct {353 AriaSet react.Set `react:"aria-,omitempty"`354 DataSet react.Set `react:"data-,omitempty"`355 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`356 Accesskey string `react:"accesskey,omitempty"`357 Class string `react:"className,omitempty"`358 Contenteditable *bool `react:"contenteditable,omitempty"`359 Dir string `react:"dir,omitempty"`360 Draggable *bool `react:"draggable,omitempty"`361 Dropzone string `react:"dropzone,omitempty"`362 Hidden *bool `react:"hidden,omitempty"`363 ID string `react:"id,omitempty"`364 Lang string `react:"lang,omitempty"`365 SpellCheck *bool `react:"spellcheck,omitempty"`366 TabIndex string `react:"tabindex,omitempty"`367 Title string `react:"title,omitempty"`368 Key string `react:"key,omitempty"`369 Ref *js.Object `react:"ref,omitempty"`370 Role string `react:"role,omitempty"`371 Style *Styles `react:"style,omitempty"`372 // Events373 OnBlur *js.Object `react:"onBlur,omitempty"`374 OnFocus *js.Object `react:"onFocus,omitempty"`375 OnChange *js.Object `react:"onChange,omitempty"`376 OnClick *js.Object `react:"onClick,omitempty"`377}378// Div ...379func Div(props *DivProps, children ...interface{}) *js.Object {380 return react.JSX("div", props, children...)381}382// EmProps ...383type EmProps struct {384 AriaSet react.Set `react:"aria-,omitempty"`385 DataSet react.Set `react:"data-,omitempty"`386 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`387 Accesskey string `react:"accesskey,omitempty"`388 Class string `react:"className,omitempty"`389 Contenteditable *bool `react:"contenteditable,omitempty"`390 Dir string `react:"dir,omitempty"`391 Draggable *bool `react:"draggable,omitempty"`392 Dropzone string `react:"dropzone,omitempty"`393 Hidden *bool `react:"hidden,omitempty"`394 ID string `react:"id,omitempty"`395 Lang string `react:"lang,omitempty"`396 SpellCheck *bool `react:"spellcheck,omitempty"`397 TabIndex string `react:"tabindex,omitempty"`398 Title string `react:"title,omitempty"`399 Key string `react:"key,omitempty"`400 Ref *js.Object `react:"ref,omitempty"`401 Role string `react:"role,omitempty"`402 Style *Styles `react:"style,omitempty"`403 // Events404 OnBlur *js.Object `react:"onBlur,omitempty"`405 OnFocus *js.Object `react:"onFocus,omitempty"`406 OnChange *js.Object `react:"onChange,omitempty"`407 OnClick *js.Object `react:"onClick,omitempty"`408}409// Em ...410func Em(props *EmProps, children ...interface{}) *js.Object {411 return react.JSX("em", props, children...)412}413// FooterProps ...414type FooterProps struct {415 AriaSet react.Set `react:"aria-,omitempty"`416 DataSet react.Set `react:"data-,omitempty"`417 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`418 Accesskey string `react:"accesskey,omitempty"`419 Class string `react:"className,omitempty"`420 Contenteditable *bool `react:"contenteditable,omitempty"`421 Dir string `react:"dir,omitempty"`422 Draggable *bool `react:"draggable,omitempty"`423 Dropzone string `react:"dropzone,omitempty"`424 Hidden *bool `react:"hidden,omitempty"`425 ID string `react:"id,omitempty"`426 Lang string `react:"lang,omitempty"`427 SpellCheck *bool `react:"spellcheck,omitempty"`428 TabIndex string `react:"tabindex,omitempty"`429 Title string `react:"title,omitempty"`430 Key string `react:"key,omitempty"`431 Ref *js.Object `react:"ref,omitempty"`432 Role string `react:"role,omitempty"`433 Style *Styles `react:"style,omitempty"`434 // Events435 OnBlur *js.Object `react:"onBlur,omitempty"`436 OnFocus *js.Object `react:"onFocus,omitempty"`437 OnChange *js.Object `react:"onChange,omitempty"`438 OnClick *js.Object `react:"onClick,omitempty"`439}440// Footer ...441func Footer(props *FooterProps, children ...interface{}) *js.Object {442 return react.JSX("footer", props, children...)443}444// FormProps ...445type FormProps struct {446 AriaSet react.Set `react:"aria-,omitempty"`447 DataSet react.Set `react:"data-,omitempty"`448 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`449 Accesskey string `react:"accesskey,omitempty"`450 Class string `react:"className,omitempty"`451 Contenteditable *bool `react:"contenteditable,omitempty"`452 Dir string `react:"dir,omitempty"`453 Draggable *bool `react:"draggable,omitempty"`454 Dropzone string `react:"dropzone,omitempty"`455 Hidden *bool `react:"hidden,omitempty"`456 ID string `react:"id,omitempty"`457 Lang string `react:"lang,omitempty"`458 SpellCheck *bool `react:"spellcheck,omitempty"`459 TabIndex string `react:"tabindex,omitempty"`460 Title string `react:"title,omitempty"`461 Key string `react:"key,omitempty"`462 Ref *js.Object `react:"ref,omitempty"`463 Role string `react:"role,omitempty"`464 Style *Styles `react:"style,omitempty"`465 // Events466 OnBlur *js.Object `react:"onBlur,omitempty"`467 OnChange *js.Object `react:"onChange,omitempty"`468 OnClick *js.Object `react:"onClick,omitempty"`469 OnContextMenu *js.Object `react:"onContextMenu,omitempty"`470 OnFocus *js.Object `react:"onFocus,omitempty"`471 OnInput *js.Object `react:"onInput,omitempty"`472 OnInvalid *js.Object `react:"onInvalid,omitempty"`473 OnReset *js.Object `react:"onReset,omitempty"`474 OnSearch *js.Object `react:"onSearch,omitempty"`475 OnSelect *js.Object `react:"onSelect,omitempty"`476 OnSubmit *js.Object `react:"onSubmit,omitempty"`477 AcceptCharset string `react:"acceptCharset,omitempty"`478 Action string `react:"action,omitempty"`479 Autocomplete string `react:"autoComplete,omitempty"`480 Encoding string `react:"encoding,omitempty"`481 Enctype string `react:"encType,omitempty"`482 Length *int `react:"length,omitempty"`483 Method string `react:"method,omitempty"`484 Name string `react:"name,omitempty"`485 NoValidate *bool `react:"noValidate,omitempty"`486 Target string `react:"target,omitempty"`487}488// Form ...489func Form(props *FormProps, children ...interface{}) *js.Object {490 return react.JSX("form", props, children...)491}492// H1Props ...493type H1Props struct {494 AriaSet react.Set `react:"aria-,omitempty"`495 DataSet react.Set `react:"data-,omitempty"`496 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`497 Accesskey string `react:"accesskey,omitempty"`498 Class string `react:"className,omitempty"`499 Contenteditable *bool `react:"contenteditable,omitempty"`500 Dir string `react:"dir,omitempty"`501 Draggable *bool `react:"draggable,omitempty"`502 Dropzone string `react:"dropzone,omitempty"`503 Hidden *bool `react:"hidden,omitempty"`504 ID string `react:"id,omitempty"`505 Lang string `react:"lang,omitempty"`506 SpellCheck *bool `react:"spellcheck,omitempty"`507 TabIndex string `react:"tabindex,omitempty"`508 Title string `react:"title,omitempty"`509 Key string `react:"key,omitempty"`510 Ref *js.Object `react:"ref,omitempty"`511 Role string `react:"role,omitempty"`512 Style *Styles `react:"style,omitempty"`513 // Events514 OnBlur *js.Object `react:"onBlur,omitempty"`515 OnFocus *js.Object `react:"onFocus,omitempty"`516 OnChange *js.Object `react:"onChange,omitempty"`517 OnClick *js.Object `react:"onClick,omitempty"`518}519// H1 ...520func H1(props *H1Props, children ...interface{}) *js.Object {521 return react.JSX("h1", props, children...)522}523// H2Props ...524type H2Props struct {525 AriaSet react.Set `react:"aria-,omitempty"`526 DataSet react.Set `react:"data-,omitempty"`527 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`528 Accesskey string `react:"accesskey,omitempty"`529 Class string `react:"className,omitempty"`530 Contenteditable *bool `react:"contenteditable,omitempty"`531 Dir string `react:"dir,omitempty"`532 Draggable *bool `react:"draggable,omitempty"`533 Dropzone string `react:"dropzone,omitempty"`534 Hidden *bool `react:"hidden,omitempty"`535 ID string `react:"id,omitempty"`536 Lang string `react:"lang,omitempty"`537 SpellCheck *bool `react:"spellcheck,omitempty"`538 TabIndex string `react:"tabindex,omitempty"`539 Title string `react:"title,omitempty"`540 Key string `react:"key,omitempty"`541 Ref *js.Object `react:"ref,omitempty"`542 Role string `react:"role,omitempty"`543 Style *Styles `react:"style,omitempty"`544 // Events545 OnBlur *js.Object `react:"onBlur,omitempty"`546 OnFocus *js.Object `react:"onFocus,omitempty"`547 OnChange *js.Object `react:"onChange,omitempty"`548 OnClick *js.Object `react:"onClick,omitempty"`549}550// H2 ...551func H2(props *H2Props, children ...interface{}) *js.Object {552 return react.JSX("h2", props, children...)553}554// H3Props ...555type H3Props struct {556 AriaSet react.Set `react:"aria-,omitempty"`557 DataSet react.Set `react:"data-,omitempty"`558 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`559 Accesskey string `react:"accesskey,omitempty"`560 Class string `react:"className,omitempty"`561 Contenteditable *bool `react:"contenteditable,omitempty"`562 Dir string `react:"dir,omitempty"`563 Draggable *bool `react:"draggable,omitempty"`564 Dropzone string `react:"dropzone,omitempty"`565 Hidden *bool `react:"hidden,omitempty"`566 ID string `react:"id,omitempty"`567 Lang string `react:"lang,omitempty"`568 SpellCheck *bool `react:"spellcheck,omitempty"`569 TabIndex string `react:"tabindex,omitempty"`570 Title string `react:"title,omitempty"`571 Key string `react:"key,omitempty"`572 Ref *js.Object `react:"ref,omitempty"`573 Role string `react:"role,omitempty"`574 Style *Styles `react:"style,omitempty"`575 // Events576 OnBlur *js.Object `react:"onBlur,omitempty"`577 OnFocus *js.Object `react:"onFocus,omitempty"`578 OnChange *js.Object `react:"onChange,omitempty"`579 OnClick *js.Object `react:"onClick,omitempty"`580}581// H3 ...582func H3(props *H3Props, children ...interface{}) *js.Object {583 return react.JSX("h3", props, children...)584}585// H4Props ...586type H4Props struct {587 AriaSet react.Set `react:"aria-,omitempty"`588 DataSet react.Set `react:"data-,omitempty"`589 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`590 Accesskey string `react:"accesskey,omitempty"`591 Class string `react:"className,omitempty"`592 Contenteditable *bool `react:"contenteditable,omitempty"`593 Dir string `react:"dir,omitempty"`594 Draggable *bool `react:"draggable,omitempty"`595 Dropzone string `react:"dropzone,omitempty"`596 Hidden *bool `react:"hidden,omitempty"`597 ID string `react:"id,omitempty"`598 Lang string `react:"lang,omitempty"`599 SpellCheck *bool `react:"spellcheck,omitempty"`600 TabIndex string `react:"tabindex,omitempty"`601 Title string `react:"title,omitempty"`602 Key string `react:"key,omitempty"`603 Ref *js.Object `react:"ref,omitempty"`604 Role string `react:"role,omitempty"`605 Style *Styles `react:"style,omitempty"`606 // Events607 OnBlur *js.Object `react:"onBlur,omitempty"`608 OnFocus *js.Object `react:"onFocus,omitempty"`609 OnChange *js.Object `react:"onChange,omitempty"`610 OnClick *js.Object `react:"onClick,omitempty"`611}612// H4 ...613func H4(props *H4Props, children ...interface{}) *js.Object {614 return react.JSX("h4", props, children...)615}616// H5Props ...617type H5Props struct {618 AriaSet react.Set `react:"aria-,omitempty"`619 DataSet react.Set `react:"data-,omitempty"`620 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`621 Accesskey string `react:"accesskey,omitempty"`622 Class string `react:"className,omitempty"`623 Contenteditable *bool `react:"contenteditable,omitempty"`624 Dir string `react:"dir,omitempty"`625 Draggable *bool `react:"draggable,omitempty"`626 Dropzone string `react:"dropzone,omitempty"`627 Hidden *bool `react:"hidden,omitempty"`628 ID string `react:"id,omitempty"`629 Lang string `react:"lang,omitempty"`630 SpellCheck *bool `react:"spellcheck,omitempty"`631 TabIndex string `react:"tabindex,omitempty"`632 Title string `react:"title,omitempty"`633 Key string `react:"key,omitempty"`634 Ref *js.Object `react:"ref,omitempty"`635 Role string `react:"role,omitempty"`636 Style *Styles `react:"style,omitempty"`637 // Events638 OnBlur *js.Object `react:"onBlur,omitempty"`639 OnFocus *js.Object `react:"onFocus,omitempty"`640 OnChange *js.Object `react:"onChange,omitempty"`641 OnClick *js.Object `react:"onClick,omitempty"`642}643// H5 ...644func H5(props *H5Props, children ...interface{}) *js.Object {645 return react.JSX("h5", props, children...)646}647// H6Props ...648type H6Props struct {649 AriaSet react.Set `react:"aria-,omitempty"`650 DataSet react.Set `react:"data-,omitempty"`651 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`652 Accesskey string `react:"accesskey,omitempty"`653 Class string `react:"className,omitempty"`654 Contenteditable *bool `react:"contenteditable,omitempty"`655 Dir string `react:"dir,omitempty"`656 Draggable *bool `react:"draggable,omitempty"`657 Dropzone string `react:"dropzone,omitempty"`658 Hidden *bool `react:"hidden,omitempty"`659 ID string `react:"id,omitempty"`660 Lang string `react:"lang,omitempty"`661 SpellCheck *bool `react:"spellcheck,omitempty"`662 TabIndex string `react:"tabindex,omitempty"`663 Title string `react:"title,omitempty"`664 Key string `react:"key,omitempty"`665 Ref *js.Object `react:"ref,omitempty"`666 Role string `react:"role,omitempty"`667 Style *Styles `react:"style,omitempty"`668 // Events669 OnBlur *js.Object `react:"onBlur,omitempty"`670 OnFocus *js.Object `react:"onFocus,omitempty"`671 OnChange *js.Object `react:"onChange,omitempty"`672 OnClick *js.Object `react:"onClick,omitempty"`673}674// H6 ...675func H6(props *H6Props, children ...interface{}) *js.Object {676 return react.JSX("h6", props, children...)677}678// HeaderProps ...679type HeaderProps struct {680 AriaSet react.Set `react:"aria-,omitempty"`681 DataSet react.Set `react:"data-,omitempty"`682 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`683 Accesskey string `react:"accesskey,omitempty"`684 Class string `react:"className,omitempty"`685 Contenteditable *bool `react:"contenteditable,omitempty"`686 Dir string `react:"dir,omitempty"`687 Draggable *bool `react:"draggable,omitempty"`688 Dropzone string `react:"dropzone,omitempty"`689 Hidden *bool `react:"hidden,omitempty"`690 ID string `react:"id,omitempty"`691 Lang string `react:"lang,omitempty"`692 SpellCheck *bool `react:"spellcheck,omitempty"`693 TabIndex string `react:"tabindex,omitempty"`694 Title string `react:"title,omitempty"`695 Key string `react:"key,omitempty"`696 Ref *js.Object `react:"ref,omitempty"`697 Role string `react:"role,omitempty"`698 Style *Styles `react:"style,omitempty"`699 // Events700 OnBlur *js.Object `react:"onBlur,omitempty"`701 OnFocus *js.Object `react:"onFocus,omitempty"`702 OnChange *js.Object `react:"onChange,omitempty"`703 OnClick *js.Object `react:"onClick,omitempty"`704}705// Header ...706func Header(props *HeaderProps, children ...interface{}) *js.Object {707 return react.JSX("header", props, children...)708}709// HrProps ...710type HrProps struct {711 AriaSet react.Set `react:"aria-,omitempty"`712 DataSet react.Set `react:"data-,omitempty"`713 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`714 Accesskey string `react:"accesskey,omitempty"`715 Class string `react:"className,omitempty"`716 Contenteditable *bool `react:"contenteditable,omitempty"`717 Dir string `react:"dir,omitempty"`718 Draggable *bool `react:"draggable,omitempty"`719 Dropzone string `react:"dropzone,omitempty"`720 Hidden *bool `react:"hidden,omitempty"`721 ID string `react:"id,omitempty"`722 Lang string `react:"lang,omitempty"`723 SpellCheck *bool `react:"spellcheck,omitempty"`724 TabIndex string `react:"tabindex,omitempty"`725 Title string `react:"title,omitempty"`726 Key string `react:"key,omitempty"`727 Ref *js.Object `react:"ref,omitempty"`728 Role string `react:"role,omitempty"`729 Style *Styles `react:"style,omitempty"`730 // Events731 OnBlur *js.Object `react:"onBlur,omitempty"`732 OnFocus *js.Object `react:"onFocus,omitempty"`733 OnChange *js.Object `react:"onChange,omitempty"`734 OnClick *js.Object `react:"onClick,omitempty"`735}736// Hr ...737func Hr(props *HrProps, children ...interface{}) *js.Object {738 return react.JSX("hr", props, children...)739}740// IProps ...741type IProps struct {742 AriaSet react.Set `react:"aria-,omitempty"`743 DataSet react.Set `react:"data-,omitempty"`744 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`745 Accesskey string `react:"accesskey,omitempty"`746 Class string `react:"className,omitempty"`747 Contenteditable *bool `react:"contenteditable,omitempty"`748 Dir string `react:"dir,omitempty"`749 Draggable *bool `react:"draggable,omitempty"`750 Dropzone string `react:"dropzone,omitempty"`751 Hidden *bool `react:"hidden,omitempty"`752 ID string `react:"id,omitempty"`753 Lang string `react:"lang,omitempty"`754 SpellCheck *bool `react:"spellcheck,omitempty"`755 TabIndex string `react:"tabindex,omitempty"`756 Title string `react:"title,omitempty"`757 Key string `react:"key,omitempty"`758 Ref *js.Object `react:"ref,omitempty"`759 Role string `react:"role,omitempty"`760 Style *Styles `react:"style,omitempty"`761 // Events762 OnBlur *js.Object `react:"onBlur,omitempty"`763 OnFocus *js.Object `react:"onFocus,omitempty"`764 OnChange *js.Object `react:"onChange,omitempty"`765 OnClick *js.Object `react:"onClick,omitempty"`766}767// I ...768func I(props *IProps, children ...interface{}) *js.Object {769 return react.JSX("i", props, children...)770}771// IFrameProps ...772type IFrameProps struct {773 AriaSet react.Set `react:"aria-,omitempty"`774 DataSet react.Set `react:"data-,omitempty"`775 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`776 Accesskey string `react:"accesskey,omitempty"`777 Class string `react:"className,omitempty"`778 Contenteditable *bool `react:"contenteditable,omitempty"`779 Dir string `react:"dir,omitempty"`780 Draggable *bool `react:"draggable,omitempty"`781 Dropzone string `react:"dropzone,omitempty"`782 Hidden *bool `react:"hidden,omitempty"`783 ID string `react:"id,omitempty"`784 Lang string `react:"lang,omitempty"`785 SpellCheck *bool `react:"spellcheck,omitempty"`786 TabIndex string `react:"tabindex,omitempty"`787 Title string `react:"title,omitempty"`788 Key string `react:"key,omitempty"`789 Ref *js.Object `react:"ref,omitempty"`790 Role string `react:"role,omitempty"`791 Style *Styles `react:"style,omitempty"`792 // Events793 OnBlur *js.Object `react:"onBlur,omitempty"`794 OnFocus *js.Object `react:"onFocus,omitempty"`795 OnChange *js.Object `react:"onChange,omitempty"`796 OnClick *js.Object `react:"onClick,omitempty"`797 Width string `react:"width,omitempty"`798 Height string `react:"height,omitempty"`799 Name string `react:"name,omitempty"`800 Src string `react:"src,omitempty"`801 SrcDoc string `react:"srcDoc,omitempty"`802 Seamless *bool `react:"seamless,omitempty"`803}804// IFrame ...805func IFrame(props *IFrameProps, children ...interface{}) *js.Object {806 return react.JSX("iframe", props, children...)807}808// ImgProps ...809type ImgProps struct {810 AriaSet react.Set `react:"aria-,omitempty"`811 DataSet react.Set `react:"data-,omitempty"`812 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`813 Accesskey string `react:"accesskey,omitempty"`814 Class string `react:"className,omitempty"`815 Contenteditable *bool `react:"contenteditable,omitempty"`816 Dir string `react:"dir,omitempty"`817 Draggable *bool `react:"draggable,omitempty"`818 Dropzone string `react:"dropzone,omitempty"`819 Hidden *bool `react:"hidden,omitempty"`820 ID string `react:"id,omitempty"`821 Lang string `react:"lang,omitempty"`822 SpellCheck *bool `react:"spellcheck,omitempty"`823 TabIndex string `react:"tabindex,omitempty"`824 Title string `react:"title,omitempty"`825 Key string `react:"key,omitempty"`826 Ref *js.Object `react:"ref,omitempty"`827 Role string `react:"role,omitempty"`828 Style *Styles `react:"style,omitempty"`829 // Events830 OnBlur *js.Object `react:"onBlur,omitempty"`831 OnFocus *js.Object `react:"onFocus,omitempty"`832 OnChange *js.Object `react:"onChange,omitempty"`833 OnClick *js.Object `react:"onClick,omitempty"`834 Alt string `react:"alt,omitempty"`835 Complete *bool `react:"complete,omitempty"`836 CrossOrigin string `react:"crossOrigin,omitempty"`837 Height string `react:"height,omitempty"`838 IsMap *bool `react:"isMap,omitempty"`839 NaturalHeight string `react:"naturalHeight,omitempty"`840 NaturalWidth string `react:"naturalWidth,omitempty"`841 Src string `react:"src,omitempty"`842 UseMap string `react:"useMap,omitempty"`843 Width string `react:"width,omitempty"`844}845// Img ...846func Img(props *ImgProps, children ...interface{}) *js.Object {847 return react.JSX("img", props, children...)848}849// InputProps ...850type InputProps struct {851 AriaSet react.Set `react:"aria-,omitempty"`852 DataSet react.Set `react:"data-,omitempty"`853 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`854 Accesskey string `react:"accesskey,omitempty"`855 Class string `react:"className,omitempty"`856 Contenteditable *bool `react:"contenteditable,omitempty"`857 Dir string `react:"dir,omitempty"`858 Draggable *bool `react:"draggable,omitempty"`859 Dropzone string `react:"dropzone,omitempty"`860 Hidden *bool `react:"hidden,omitempty"`861 ID string `react:"id,omitempty"`862 Lang string `react:"lang,omitempty"`863 SpellCheck *bool `react:"spellcheck,omitempty"`864 TabIndex string `react:"tabindex,omitempty"`865 Title string `react:"title,omitempty"`866 Key string `react:"key,omitempty"`867 Ref *js.Object `react:"ref,omitempty"`868 Role string `react:"role,omitempty"`869 Style *Styles `react:"style,omitempty"`870 // Events871 OnBlur *js.Object `react:"onBlur,omitempty"`872 OnFocus *js.Object `react:"onFocus,omitempty"`873 OnChange *js.Object `react:"onChange,omitempty"`874 OnClick *js.Object `react:"onClick,omitempty"`875 Accept string `react:"accept,omitempty"`876 Alt string `react:"alt,omitempty"`877 Autocomplete string `react:"autoComplete,omitempty"`878 Autofocus *bool `react:"autoFocus,omitempty"`879 Checked *bool `react:"checked,omitempty"`880 DefaultChecked *bool `react:"defaultChecked,omitempty"`881 DefaultValue string `react:"defaultValue,omitempty"`882 DirName string `react:"dirName,omitempty"`883 Disabled *bool `react:"disabled,omitempty"`884 FormAction string `react:"formAction,omitempty"`885 FormEncType string `react:"formEncType,omitempty"`886 FormMethod string `react:"formMethod,omitempty"`887 FormNoValidate *bool `react:"formNoValidate,omitempty"`888 FormTarget string `react:"formTarget,omitempty"`889 Height string `react:"height,omitempty"`890 Indeterminate *bool `react:"indeterminate,omitempty"`891 Max string `react:"max,omitempty"`892 MaxLength *int `react:"maxLength,omitempty"`893 Min string `react:"min,omitempty"`894 Multiple *bool `react:"multiple,omitempty"`895 Name string `react:"name,omitempty"`896 Pattern string `react:"pattern,omitempty"`897 Placeholder string `react:"placeholder,omitempty"`898 ReadOnly *bool `react:"readOnly,omitempty"`899 Required *bool `react:"required,omitempty"`900 SelectionDirection string `react:"selectionDirection,omitempty"`901 SelectionEnd *int `react:"selectionEnd,omitempty"`902 SelectionStart *int `react:"selectionStart,omitempty"`903 Size *int `react:"size,omitempty"`904 Src string `react:"src,omitempty"`905 Step string `react:"step,omitempty"`906 Type string `react:"type,omitempty"`907 ValidationMessage string `react:"validationMessage,omitempty"`908 Value string `react:"value,omitempty"`909 Width string `react:"width,omitempty"`910 WillValidate *bool `react:"willValidate,omitempty"`911}912// Input ...913func Input(props *InputProps, children ...interface{}) *js.Object {914 return react.JSX("input", props, children...)915}916// LabelProps ...917type LabelProps struct {918 AriaSet react.Set `react:"aria-,omitempty"`919 DataSet react.Set `react:"data-,omitempty"`920 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`921 Accesskey string `react:"accesskey,omitempty"`922 Class string `react:"className,omitempty"`923 Contenteditable *bool `react:"contenteditable,omitempty"`924 Dir string `react:"dir,omitempty"`925 Draggable *bool `react:"draggable,omitempty"`926 Dropzone string `react:"dropzone,omitempty"`927 Hidden *bool `react:"hidden,omitempty"`928 ID string `react:"id,omitempty"`929 Lang string `react:"lang,omitempty"`930 SpellCheck *bool `react:"spellcheck,omitempty"`931 TabIndex string `react:"tabindex,omitempty"`932 Title string `react:"title,omitempty"`933 Key string `react:"key,omitempty"`934 Ref *js.Object `react:"ref,omitempty"`935 Role string `react:"role,omitempty"`936 Style *Styles `react:"style,omitempty"`937 // Events938 OnBlur *js.Object `react:"onBlur,omitempty"`939 OnFocus *js.Object `react:"onFocus,omitempty"`940 OnChange *js.Object `react:"onChange,omitempty"`941 OnClick *js.Object `react:"onClick,omitempty"`942 For string `react:"htmlFor,omitempty"`943 Form string `react:"form,omitempty"`944}945// Label ...946func Label(props *LabelProps, children ...interface{}) *js.Object {947 return react.JSX("label", props, children...)948}949// LiProps ...950type LiProps struct {951 AriaSet react.Set `react:"aria-,omitempty"`952 DataSet react.Set `react:"data-,omitempty"`953 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`954 Accesskey string `react:"accesskey,omitempty"`955 Class string `react:"className,omitempty"`956 Contenteditable *bool `react:"contenteditable,omitempty"`957 Dir string `react:"dir,omitempty"`958 Draggable *bool `react:"draggable,omitempty"`959 Dropzone string `react:"dropzone,omitempty"`960 Hidden *bool `react:"hidden,omitempty"`961 ID string `react:"id,omitempty"`962 Lang string `react:"lang,omitempty"`963 SpellCheck *bool `react:"spellcheck,omitempty"`964 TabIndex string `react:"tabindex,omitempty"`965 Title string `react:"title,omitempty"`966 Key string `react:"key,omitempty"`967 Ref *js.Object `react:"ref,omitempty"`968 Role string `react:"role,omitempty"`969 Style *Styles `react:"style,omitempty"`970 // Events971 OnBlur *js.Object `react:"onBlur,omitempty"`972 OnFocus *js.Object `react:"onFocus,omitempty"`973 OnChange *js.Object `react:"onChange,omitempty"`974 OnClick *js.Object `react:"onClick,omitempty"`975}976// Li ...977func Li(props *LiProps, children ...interface{}) *js.Object {978 return react.JSX("li", props, children...)979}980// MainProps ...981type MainProps struct {982 AriaSet react.Set `react:"aria-,omitempty"`983 DataSet react.Set `react:"data-,omitempty"`984 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`985 Accesskey string `react:"accesskey,omitempty"`986 Class string `react:"className,omitempty"`987 Contenteditable *bool `react:"contenteditable,omitempty"`988 Dir string `react:"dir,omitempty"`989 Draggable *bool `react:"draggable,omitempty"`990 Dropzone string `react:"dropzone,omitempty"`991 Hidden *bool `react:"hidden,omitempty"`992 ID string `react:"id,omitempty"`993 Lang string `react:"lang,omitempty"`994 SpellCheck *bool `react:"spellcheck,omitempty"`995 TabIndex string `react:"tabindex,omitempty"`996 Title string `react:"title,omitempty"`997 Key string `react:"key,omitempty"`998 Ref *js.Object `react:"ref,omitempty"`999 Role string `react:"role,omitempty"`1000 Style *Styles `react:"style,omitempty"`1001 // Events1002 OnBlur *js.Object `react:"onBlur,omitempty"`1003 OnFocus *js.Object `react:"onFocus,omitempty"`1004 OnChange *js.Object `react:"onChange,omitempty"`1005 OnClick *js.Object `react:"onClick,omitempty"`1006}1007// Main ...1008func Main(props *MainProps, children ...interface{}) *js.Object {1009 return react.JSX("main", props, children...)1010}1011// NavProps ...1012type NavProps struct {1013 AriaSet react.Set `react:"aria-,omitempty"`1014 DataSet react.Set `react:"data-,omitempty"`1015 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1016 Accesskey string `react:"accesskey,omitempty"`1017 Class string `react:"className,omitempty"`1018 Contenteditable *bool `react:"contenteditable,omitempty"`1019 Dir string `react:"dir,omitempty"`1020 Draggable *bool `react:"draggable,omitempty"`1021 Dropzone string `react:"dropzone,omitempty"`1022 Hidden *bool `react:"hidden,omitempty"`1023 ID string `react:"id,omitempty"`1024 Lang string `react:"lang,omitempty"`1025 SpellCheck *bool `react:"spellcheck,omitempty"`1026 TabIndex string `react:"tabindex,omitempty"`1027 Title string `react:"title,omitempty"`1028 Key string `react:"key,omitempty"`1029 Ref *js.Object `react:"ref,omitempty"`1030 Role string `react:"role,omitempty"`1031 Style *Styles `react:"style,omitempty"`1032 // Events1033 OnBlur *js.Object `react:"onBlur,omitempty"`1034 OnFocus *js.Object `react:"onFocus,omitempty"`1035 OnChange *js.Object `react:"onChange,omitempty"`1036 OnClick *js.Object `react:"onClick,omitempty"`1037}1038// Nav ...1039func Nav(props *NavProps, children ...interface{}) *js.Object {1040 return react.JSX("nav", props, children...)1041}1042// OptionProps ...1043type OptionProps struct {1044 AriaSet react.Set `react:"aria-,omitempty"`1045 DataSet react.Set `react:"data-,omitempty"`1046 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1047 Accesskey string `react:"accesskey,omitempty"`1048 Class string `react:"className,omitempty"`1049 Contenteditable *bool `react:"contenteditable,omitempty"`1050 Dir string `react:"dir,omitempty"`1051 Draggable *bool `react:"draggable,omitempty"`1052 Dropzone string `react:"dropzone,omitempty"`1053 Hidden *bool `react:"hidden,omitempty"`1054 ID string `react:"id,omitempty"`1055 Lang string `react:"lang,omitempty"`1056 SpellCheck *bool `react:"spellcheck,omitempty"`1057 TabIndex string `react:"tabindex,omitempty"`1058 Title string `react:"title,omitempty"`1059 Key string `react:"key,omitempty"`1060 Ref *js.Object `react:"ref,omitempty"`1061 Role string `react:"role,omitempty"`1062 Style *Styles `react:"style,omitempty"`1063 // Events1064 OnBlur *js.Object `react:"onBlur,omitempty"`1065 OnFocus *js.Object `react:"onFocus,omitempty"`1066 OnChange *js.Object `react:"onChange,omitempty"`1067 OnClick *js.Object `react:"onClick,omitempty"`1068 DefaultSelected *bool `react:"defaultSelected,omitempty"`1069 Disabled *bool `react:"disabled,omitempty"`1070 Index *int `react:"index,omitempty"`1071 Label string `react:"label,omitempty"`1072 Selected *bool `react:"selected,omitempty"`1073 Text string `react:"text,omitempty"`1074 Value string `react:"value,omitempty"`1075}1076// Option ...1077func Option(props *OptionProps, children ...interface{}) *js.Object {1078 return react.JSX("option", props, children...)1079}1080// PProps ...1081type PProps struct {1082 AriaSet react.Set `react:"aria-,omitempty"`1083 DataSet react.Set `react:"data-,omitempty"`1084 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1085 Accesskey string `react:"accesskey,omitempty"`1086 Class string `react:"className,omitempty"`1087 Contenteditable *bool `react:"contenteditable,omitempty"`1088 Dir string `react:"dir,omitempty"`1089 Draggable *bool `react:"draggable,omitempty"`1090 Dropzone string `react:"dropzone,omitempty"`1091 Hidden *bool `react:"hidden,omitempty"`1092 ID string `react:"id,omitempty"`1093 Lang string `react:"lang,omitempty"`1094 SpellCheck *bool `react:"spellcheck,omitempty"`1095 TabIndex string `react:"tabindex,omitempty"`1096 Title string `react:"title,omitempty"`1097 Key string `react:"key,omitempty"`1098 Ref *js.Object `react:"ref,omitempty"`1099 Role string `react:"role,omitempty"`1100 Style *Styles `react:"style,omitempty"`1101 // Events1102 OnBlur *js.Object `react:"onBlur,omitempty"`1103 OnFocus *js.Object `react:"onFocus,omitempty"`1104 OnChange *js.Object `react:"onChange,omitempty"`1105 OnClick *js.Object `react:"onClick,omitempty"`1106}1107// P ...1108func P(props *PProps, children ...interface{}) *js.Object {1109 return react.JSX("p", props, children...)1110}1111// PreProps ...1112type PreProps struct {1113 AriaSet react.Set `react:"aria-,omitempty"`1114 DataSet react.Set `react:"data-,omitempty"`1115 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1116 Accesskey string `react:"accesskey,omitempty"`1117 Class string `react:"className,omitempty"`1118 Contenteditable *bool `react:"contenteditable,omitempty"`1119 Dir string `react:"dir,omitempty"`1120 Draggable *bool `react:"draggable,omitempty"`1121 Dropzone string `react:"dropzone,omitempty"`1122 Hidden *bool `react:"hidden,omitempty"`1123 ID string `react:"id,omitempty"`1124 Lang string `react:"lang,omitempty"`1125 SpellCheck *bool `react:"spellcheck,omitempty"`1126 TabIndex string `react:"tabindex,omitempty"`1127 Title string `react:"title,omitempty"`1128 Key string `react:"key,omitempty"`1129 Ref *js.Object `react:"ref,omitempty"`1130 Role string `react:"role,omitempty"`1131 Style *Styles `react:"style,omitempty"`1132 // Events1133 OnBlur *js.Object `react:"onBlur,omitempty"`1134 OnFocus *js.Object `react:"onFocus,omitempty"`1135 OnChange *js.Object `react:"onChange,omitempty"`1136 OnClick *js.Object `react:"onClick,omitempty"`1137}1138// Pre ...1139func Pre(props *PreProps, children ...interface{}) *js.Object {1140 return react.JSX("pre", props, children...)1141}1142// SelectProps ...1143type SelectProps struct {1144 AriaSet react.Set `react:"aria-,omitempty"`1145 DataSet react.Set `react:"data-,omitempty"`1146 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1147 Accesskey string `react:"accesskey,omitempty"`1148 Class string `react:"className,omitempty"`1149 Contenteditable *bool `react:"contenteditable,omitempty"`1150 Dir string `react:"dir,omitempty"`1151 Draggable *bool `react:"draggable,omitempty"`1152 Dropzone string `react:"dropzone,omitempty"`1153 Hidden *bool `react:"hidden,omitempty"`1154 ID string `react:"id,omitempty"`1155 Lang string `react:"lang,omitempty"`1156 SpellCheck *bool `react:"spellcheck,omitempty"`1157 TabIndex string `react:"tabindex,omitempty"`1158 Title string `react:"title,omitempty"`1159 Key string `react:"key,omitempty"`1160 Ref *js.Object `react:"ref,omitempty"`1161 Role string `react:"role,omitempty"`1162 Style *Styles `react:"style,omitempty"`1163 // Events1164 OnBlur *js.Object `react:"onBlur,omitempty"`1165 OnFocus *js.Object `react:"onFocus,omitempty"`1166 OnChange *js.Object `react:"onChange,omitempty"`1167 OnClick *js.Object `react:"onClick,omitempty"`1168 Autofocus *bool `react:"autofocus,omitempty"`1169 Disabled *bool `react:"disabled,omitempty"`1170 Length *int `react:"length,omitempty"`1171 Multiple *bool `react:"multiple,omitempty"`1172 Name string `react:"name,omitempty"`1173 Required *bool `react:"required,omitempty"`1174 SelectedIndex *int `react:"selectedIndex,omitempty"`1175 Size *int `react:"size,omitempty"`1176 Type string `react:"type,omitempty"`1177 ValidationMessage string `react:"validationMessage,omitempty"`1178 Value string `react:"value,omitempty"`1179 WillValidate *bool `react:"willValidate,omitempty"`1180}1181// Select ...1182func Select(props *SelectProps, children ...interface{}) *js.Object {1183 return react.JSX("select", props, children...)1184}1185// SpanProps ...1186type SpanProps struct {1187 AriaSet react.Set `react:"aria-,omitempty"`1188 DataSet react.Set `react:"data-,omitempty"`1189 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1190 Accesskey string `react:"accesskey,omitempty"`1191 Class string `react:"className,omitempty"`1192 Contenteditable *bool `react:"contenteditable,omitempty"`1193 Dir string `react:"dir,omitempty"`1194 Draggable *bool `react:"draggable,omitempty"`1195 Dropzone string `react:"dropzone,omitempty"`1196 Hidden *bool `react:"hidden,omitempty"`1197 ID string `react:"id,omitempty"`1198 Lang string `react:"lang,omitempty"`1199 SpellCheck *bool `react:"spellcheck,omitempty"`1200 TabIndex string `react:"tabindex,omitempty"`1201 Title string `react:"title,omitempty"`1202 Key string `react:"key,omitempty"`1203 Ref *js.Object `react:"ref,omitempty"`1204 Role string `react:"role,omitempty"`1205 Style *Styles `react:"style,omitempty"`1206 // Events1207 OnBlur *js.Object `react:"onBlur,omitempty"`1208 OnFocus *js.Object `react:"onFocus,omitempty"`1209 OnChange *js.Object `react:"onChange,omitempty"`1210 OnClick *js.Object `react:"onClick,omitempty"`1211}1212// Span ...1213func Span(props *SpanProps, children ...interface{}) *js.Object {1214 return react.JSX("span", props, children...)1215}1216// SProps ...1217type SProps struct {1218 AriaSet react.Set `react:"aria-,omitempty"`1219 DataSet react.Set `react:"data-,omitempty"`1220 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1221 Accesskey string `react:"accesskey,omitempty"`1222 Class string `react:"className,omitempty"`1223 Contenteditable *bool `react:"contenteditable,omitempty"`1224 Dir string `react:"dir,omitempty"`1225 Draggable *bool `react:"draggable,omitempty"`1226 Dropzone string `react:"dropzone,omitempty"`1227 Hidden *bool `react:"hidden,omitempty"`1228 ID string `react:"id,omitempty"`1229 Lang string `react:"lang,omitempty"`1230 SpellCheck *bool `react:"spellcheck,omitempty"`1231 TabIndex string `react:"tabindex,omitempty"`1232 Title string `react:"title,omitempty"`1233 Key string `react:"key,omitempty"`1234 Ref *js.Object `react:"ref,omitempty"`1235 Role string `react:"role,omitempty"`1236 Style *Styles `react:"style,omitempty"`1237 // Events1238 OnBlur *js.Object `react:"onBlur,omitempty"`1239 OnFocus *js.Object `react:"onFocus,omitempty"`1240 OnChange *js.Object `react:"onChange,omitempty"`1241 OnClick *js.Object `react:"onClick,omitempty"`1242}1243// S ...1244func S(props *SProps, children ...interface{}) *js.Object {1245 return react.JSX("s", props, children...)1246}1247// SupProps ...1248type SupProps struct {1249 AriaSet react.Set `react:"aria-,omitempty"`1250 DataSet react.Set `react:"data-,omitempty"`1251 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1252 Accesskey string `react:"accesskey,omitempty"`1253 Class string `react:"className,omitempty"`1254 Contenteditable *bool `react:"contenteditable,omitempty"`1255 Dir string `react:"dir,omitempty"`1256 Draggable *bool `react:"draggable,omitempty"`1257 Dropzone string `react:"dropzone,omitempty"`1258 Hidden *bool `react:"hidden,omitempty"`1259 ID string `react:"id,omitempty"`1260 Lang string `react:"lang,omitempty"`1261 SpellCheck *bool `react:"spellcheck,omitempty"`1262 TabIndex string `react:"tabindex,omitempty"`1263 Title string `react:"title,omitempty"`1264 Key string `react:"key,omitempty"`1265 Ref *js.Object `react:"ref,omitempty"`1266 Role string `react:"role,omitempty"`1267 Style *Styles `react:"style,omitempty"`1268 // Events1269 OnBlur *js.Object `react:"onBlur,omitempty"`1270 OnFocus *js.Object `react:"onFocus,omitempty"`1271 OnChange *js.Object `react:"onChange,omitempty"`1272 OnClick *js.Object `react:"onClick,omitempty"`1273}1274// Sup ...1275func Sup(props *SupProps, children ...interface{}) *js.Object {1276 return react.JSX("sup", props, children...)1277}1278// TableProps ...1279type TableProps struct {1280 AriaSet react.Set `react:"aria-,omitempty"`1281 DataSet react.Set `react:"data-,omitempty"`1282 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1283 Accesskey string `react:"accesskey,omitempty"`1284 Class string `react:"className,omitempty"`1285 Contenteditable *bool `react:"contenteditable,omitempty"`1286 Dir string `react:"dir,omitempty"`1287 Draggable *bool `react:"draggable,omitempty"`1288 Dropzone string `react:"dropzone,omitempty"`1289 Hidden *bool `react:"hidden,omitempty"`1290 ID string `react:"id,omitempty"`1291 Lang string `react:"lang,omitempty"`1292 SpellCheck *bool `react:"spellcheck,omitempty"`1293 TabIndex string `react:"tabindex,omitempty"`1294 Title string `react:"title,omitempty"`1295 Key string `react:"key,omitempty"`1296 Ref *js.Object `react:"ref,omitempty"`1297 Role string `react:"role,omitempty"`1298 Style *Styles `react:"style,omitempty"`1299 // Events1300 OnBlur *js.Object `react:"onBlur,omitempty"`1301 OnFocus *js.Object `react:"onFocus,omitempty"`1302 OnChange *js.Object `react:"onChange,omitempty"`1303 OnClick *js.Object `react:"onClick,omitempty"`1304}1305// Table ...1306func Table(props *TableProps, children ...interface{}) *js.Object {1307 return react.JSX("table", props, children...)1308}1309// TBodyProps ...1310type TBodyProps struct {1311 AriaSet react.Set `react:"aria-,omitempty"`1312 DataSet react.Set `react:"data-,omitempty"`1313 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1314 Accesskey string `react:"accesskey,omitempty"`1315 Class string `react:"className,omitempty"`1316 Contenteditable *bool `react:"contenteditable,omitempty"`1317 Dir string `react:"dir,omitempty"`1318 Draggable *bool `react:"draggable,omitempty"`1319 Dropzone string `react:"dropzone,omitempty"`1320 Hidden *bool `react:"hidden,omitempty"`1321 ID string `react:"id,omitempty"`1322 Lang string `react:"lang,omitempty"`1323 SpellCheck *bool `react:"spellcheck,omitempty"`1324 TabIndex string `react:"tabindex,omitempty"`1325 Title string `react:"title,omitempty"`1326 Key string `react:"key,omitempty"`1327 Ref *js.Object `react:"ref,omitempty"`1328 Role string `react:"role,omitempty"`1329 Style *Styles `react:"style,omitempty"`1330 // Events1331 OnBlur *js.Object `react:"onBlur,omitempty"`1332 OnFocus *js.Object `react:"onFocus,omitempty"`1333 OnChange *js.Object `react:"onChange,omitempty"`1334 OnClick *js.Object `react:"onClick,omitempty"`1335}1336// TBody ...1337func TBody(props *TBodyProps, children ...interface{}) *js.Object {1338 return react.JSX("tbody", props, children...)1339}1340// TdProps ...1341type TdProps struct {1342 AriaSet react.Set `react:"aria-,omitempty"`1343 DataSet react.Set `react:"data-,omitempty"`1344 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1345 Accesskey string `react:"accesskey,omitempty"`1346 Class string `react:"className,omitempty"`1347 Contenteditable *bool `react:"contenteditable,omitempty"`1348 Dir string `react:"dir,omitempty"`1349 Draggable *bool `react:"draggable,omitempty"`1350 Dropzone string `react:"dropzone,omitempty"`1351 Hidden *bool `react:"hidden,omitempty"`1352 ID string `react:"id,omitempty"`1353 Lang string `react:"lang,omitempty"`1354 SpellCheck *bool `react:"spellcheck,omitempty"`1355 TabIndex string `react:"tabindex,omitempty"`1356 Title string `react:"title,omitempty"`1357 Key string `react:"key,omitempty"`1358 Ref *js.Object `react:"ref,omitempty"`1359 Role string `react:"role,omitempty"`1360 Style *Styles `react:"style,omitempty"`1361 // Events1362 OnBlur *js.Object `react:"onBlur,omitempty"`1363 OnFocus *js.Object `react:"onFocus,omitempty"`1364 OnChange *js.Object `react:"onChange,omitempty"`1365 OnClick *js.Object `react:"onClick,omitempty"`1366}1367// Td ...1368func Td(props *TdProps, children ...interface{}) *js.Object {1369 return react.JSX("td", props, children...)1370}1371// TextAreaProps ...1372type TextAreaProps struct {1373 AriaSet react.Set `react:"aria-,omitempty"`1374 DataSet react.Set `react:"data-,omitempty"`1375 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1376 Accesskey string `react:"accesskey,omitempty"`1377 Class string `react:"className,omitempty"`1378 Contenteditable *bool `react:"contenteditable,omitempty"`1379 Dir string `react:"dir,omitempty"`1380 Draggable *bool `react:"draggable,omitempty"`1381 Dropzone string `react:"dropzone,omitempty"`1382 Hidden *bool `react:"hidden,omitempty"`1383 ID string `react:"id,omitempty"`1384 Lang string `react:"lang,omitempty"`1385 SpellCheck *bool `react:"spellcheck,omitempty"`1386 TabIndex string `react:"tabindex,omitempty"`1387 Title string `react:"title,omitempty"`1388 Key string `react:"key,omitempty"`1389 Ref *js.Object `react:"ref,omitempty"`1390 Role string `react:"role,omitempty"`1391 Style *Styles `react:"style,omitempty"`1392 // Events1393 OnBlur *js.Object `react:"onBlur,omitempty"`1394 OnFocus *js.Object `react:"onFocus,omitempty"`1395 OnChange *js.Object `react:"onChange,omitempty"`1396 OnClick *js.Object `react:"onClick,omitempty"`1397 AutoComplete string `react:"autoComplete,omitempty"`1398 AutoFocus *bool `react:"autoFocus,omitempty"`1399 Cols *int `react:"cols,omitempty"`1400 DefaultValue string `react:"defaultValue,omitempty"`1401 DirName string `react:"dirName,omitempty"`1402 Disabled *bool `react:"disabled,omitempty"`1403 MaxLength *int `react:"maxLength,omitempty"`1404 Name string `react:"name,omitempty"`1405 Placeholder string `react:"placeholder,omitempty"`1406 ReadOnly *bool `react:"readOnly,omitempty"`1407 Required *bool `react:"required,omitempty"`1408 Rows *int `react:"rows,omitempty"`1409 SelectionDirection string `react:"selectionDirection,omitempty"`1410 SelectionStart *int `react:"selectionStart,omitempty"`1411 SelectionEnd *int `react:"selectionEnd,omitempty"`1412 TextLength *int `react:"textLength,omitempty"`1413 Type string `react:"type,omitempty"`1414 ValidationMessage string `react:"validationMessage,omitempty"`1415 Value string `react:"value,omitempty"`1416 WillValidate *bool `react:"willValidate,omitempty"`1417 Wrap string `react:"wrap,omitempty"`1418}1419// TextArea ...1420func TextArea(props *TextAreaProps, children ...interface{}) *js.Object {1421 return react.JSX("textarea", props, children...)1422}1423// TFootProps ...1424type TFootProps struct {1425 AriaSet react.Set `react:"aria-,omitempty"`1426 DataSet react.Set `react:"data-,omitempty"`1427 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1428 Accesskey string `react:"accesskey,omitempty"`1429 Class string `react:"className,omitempty"`1430 Contenteditable *bool `react:"contenteditable,omitempty"`1431 Dir string `react:"dir,omitempty"`1432 Draggable *bool `react:"draggable,omitempty"`1433 Dropzone string `react:"dropzone,omitempty"`1434 Hidden *bool `react:"hidden,omitempty"`1435 ID string `react:"id,omitempty"`1436 Lang string `react:"lang,omitempty"`1437 SpellCheck *bool `react:"spellcheck,omitempty"`1438 TabIndex string `react:"tabindex,omitempty"`1439 Title string `react:"title,omitempty"`1440 Key string `react:"key,omitempty"`1441 Ref *js.Object `react:"ref,omitempty"`1442 Role string `react:"role,omitempty"`1443 Style *Styles `react:"style,omitempty"`1444 // Events1445 OnBlur *js.Object `react:"onBlur,omitempty"`1446 OnFocus *js.Object `react:"onFocus,omitempty"`1447 OnChange *js.Object `react:"onChange,omitempty"`1448 OnClick *js.Object `react:"onClick,omitempty"`1449}1450// TFoot ...1451func TFoot(props *TFootProps, children ...interface{}) *js.Object {1452 return react.JSX("tfoot", props, children...)1453}1454// ThProps ...1455type ThProps struct {1456 AriaSet react.Set `react:"aria-,omitempty"`1457 DataSet react.Set `react:"data-,omitempty"`1458 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1459 Accesskey string `react:"accesskey,omitempty"`1460 Class string `react:"className,omitempty"`1461 Contenteditable *bool `react:"contenteditable,omitempty"`1462 Dir string `react:"dir,omitempty"`1463 Draggable *bool `react:"draggable,omitempty"`1464 Dropzone string `react:"dropzone,omitempty"`1465 Hidden *bool `react:"hidden,omitempty"`1466 ID string `react:"id,omitempty"`1467 Lang string `react:"lang,omitempty"`1468 SpellCheck *bool `react:"spellcheck,omitempty"`1469 TabIndex string `react:"tabindex,omitempty"`1470 Title string `react:"title,omitempty"`1471 Key string `react:"key,omitempty"`1472 Ref *js.Object `react:"ref,omitempty"`1473 Role string `react:"role,omitempty"`1474 Style *Styles `react:"style,omitempty"`1475 // Events1476 OnBlur *js.Object `react:"onBlur,omitempty"`1477 OnFocus *js.Object `react:"onFocus,omitempty"`1478 OnChange *js.Object `react:"onChange,omitempty"`1479 OnClick *js.Object `react:"onClick,omitempty"`1480 Abbr string `react:"abbr,omitempty"`1481 ColSpan *int `react:"colSpan,omitempty"`1482 Headers string `react:"headers,omitempty"`1483 RowSpan *int `react:"rowSpan,omitempty"`1484 Scope string `react:"scope,omitempty"`1485 Sorted string `react:"sorted,omitempty"`1486}1487// Th ...1488func Th(props *ThProps, children ...interface{}) *js.Object {1489 return react.JSX("th", props, children...)1490}1491// THeadProps ...1492type THeadProps struct {1493 AriaSet react.Set `react:"aria-,omitempty"`1494 DataSet react.Set `react:"data-,omitempty"`1495 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1496 Accesskey string `react:"accesskey,omitempty"`1497 Class string `react:"className,omitempty"`1498 Contenteditable *bool `react:"contenteditable,omitempty"`1499 Dir string `react:"dir,omitempty"`1500 Draggable *bool `react:"draggable,omitempty"`1501 Dropzone string `react:"dropzone,omitempty"`1502 Hidden *bool `react:"hidden,omitempty"`1503 ID string `react:"id,omitempty"`1504 Lang string `react:"lang,omitempty"`1505 SpellCheck *bool `react:"spellcheck,omitempty"`1506 TabIndex string `react:"tabindex,omitempty"`1507 Title string `react:"title,omitempty"`1508 Key string `react:"key,omitempty"`1509 Ref *js.Object `react:"ref,omitempty"`1510 Role string `react:"role,omitempty"`1511 Style *Styles `react:"style,omitempty"`1512 // Events1513 OnBlur *js.Object `react:"onBlur,omitempty"`1514 OnFocus *js.Object `react:"onFocus,omitempty"`1515 OnChange *js.Object `react:"onChange,omitempty"`1516 OnClick *js.Object `react:"onClick,omitempty"`1517}1518// THead ...1519func THead(props *THeadProps, children ...interface{}) *js.Object {1520 return react.JSX("thead", props, children...)1521}1522// TrProps ...1523type TrProps struct {1524 AriaSet react.Set `react:"aria-,omitempty"`1525 DataSet react.Set `react:"data-,omitempty"`1526 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1527 Accesskey string `react:"accesskey,omitempty"`1528 Class string `react:"className,omitempty"`1529 Contenteditable *bool `react:"contenteditable,omitempty"`1530 Dir string `react:"dir,omitempty"`1531 Draggable *bool `react:"draggable,omitempty"`1532 Dropzone string `react:"dropzone,omitempty"`1533 Hidden *bool `react:"hidden,omitempty"`1534 ID string `react:"id,omitempty"`1535 Lang string `react:"lang,omitempty"`1536 SpellCheck *bool `react:"spellcheck,omitempty"`1537 TabIndex string `react:"tabindex,omitempty"`1538 Title string `react:"title,omitempty"`1539 Key string `react:"key,omitempty"`1540 Ref *js.Object `react:"ref,omitempty"`1541 Role string `react:"role,omitempty"`1542 Style *Styles `react:"style,omitempty"`1543 // Events1544 OnBlur *js.Object `react:"onBlur,omitempty"`1545 OnFocus *js.Object `react:"onFocus,omitempty"`1546 OnChange *js.Object `react:"onChange,omitempty"`1547 OnClick *js.Object `react:"onClick,omitempty"`1548}1549// Tr ...1550func Tr(props *TrProps, children ...interface{}) *js.Object {1551 return react.JSX("tr", props, children...)1552}1553// UlProps ...1554type UlProps struct {1555 AriaSet react.Set `react:"aria-,omitempty"`1556 DataSet react.Set `react:"data-,omitempty"`1557 DangerouslySetInnerHTML interface{} `react:"dangerouslySetInnerHTML,omitempty"`1558 Accesskey string `react:"accesskey,omitempty"`1559 Class string `react:"className,omitempty"`1560 Contenteditable *bool `react:"contenteditable,omitempty"`1561 Dir string `react:"dir,omitempty"`1562 Draggable *bool `react:"draggable,omitempty"`1563 Dropzone string `react:"dropzone,omitempty"`1564 Hidden *bool `react:"hidden,omitempty"`1565 ID string `react:"id,omitempty"`1566 Lang string `react:"lang,omitempty"`1567 SpellCheck *bool `react:"spellcheck,omitempty"`1568 TabIndex string `react:"tabindex,omitempty"`1569 Title string `react:"title,omitempty"`1570 Key string `react:"key,omitempty"`1571 Ref *js.Object `react:"ref,omitempty"`1572 Role string `react:"role,omitempty"`1573 Style *Styles `react:"style,omitempty"`1574 // Events1575 OnBlur *js.Object `react:"onBlur,omitempty"`1576 OnFocus *js.Object `react:"onFocus,omitempty"`1577 OnChange *js.Object `react:"onChange,omitempty"`1578 OnClick *js.Object `react:"onClick,omitempty"`1579}1580// Ul ...1581func Ul(props *UlProps, children ...interface{}) *js.Object {1582 return react.JSX("ul", props, children...)...

Full Screen

Full Screen

adapters.go

Source:adapters.go Github

copy

Full Screen

...7 Body(items ...app.UI)8 UI() app.UI9 Aria(s string, s2 string)10 DataSet(s string, s2 string)11 TabIndex(i int)12 Href(href string)13}14type htmlUl struct{ r app.HTMLUl }15func (a *htmlUl) Class(s ...string) { a.r.Class(s...) }16func (a *htmlUl) ID(id string) { a.r.ID(id) }17func (a *htmlUl) Attr(key string, val string) { a.r.Attr(key, val) }18func (a *htmlUl) Aria(s string, s2 string) { a.r.Aria(s, s2) }19func (a *htmlUl) DataSet(s string, s2 string) { a.r.DataSet(s, s2) }20func (a *htmlUl) TabIndex(i int) { a.r.TabIndex(i) }21func (a *htmlUl) Body(items ...app.UI) { a.r.Body(items...) }22func (a *htmlUl) UI() app.UI { return a.r }23func (a *htmlUl) Href(s string) {}24type htmlNav struct{ r app.HTMLNav }25func (n *htmlNav) Class(s ...string) { n.r.Class(s...) }26func (n *htmlNav) ID(id string) { n.r.ID(id) }27func (n *htmlNav) Attr(key string, val string) { n.r.Attr(key, val) }28func (n *htmlNav) Aria(s string, s2 string) { n.r.Aria(s, s2) }29func (n *htmlNav) DataSet(s string, s2 string) { n.r.DataSet(s, s2) }30func (n *htmlNav) TabIndex(i int) { n.r.TabIndex(i) }31func (n *htmlNav) Body(items ...app.UI) { n.r.Body(items...) }32func (n *htmlNav) UI() app.UI { return n.r }33func (n *htmlNav) Href(s string) {}34func (l *List) adapt() AdaptableType {35 switch l.Type {36 case Navigation:37 return &htmlNav{app.Nav()}38 default:39 return &htmlUl{app.Ul()}40 }41}42type htmlA struct{ Root app.HTMLA }43func (n *htmlA) Class(s ...string) { n.Root.Class(s...) }44func (n *htmlA) ID(id string) { n.Root.ID(id) }45func (n *htmlA) Attr(key string, val string) { n.Root.Attr(key, val) }46func (n *htmlA) Aria(s string, s2 string) { n.Root.Aria(s, s2) }47func (n *htmlA) DataSet(s string, s2 string) { n.Root.DataSet(s, s2) }48func (n *htmlA) TabIndex(i int) { n.Root.TabIndex(i) }49func (n *htmlA) Body(items ...app.UI) { n.Root.Body(items...) }50func (n *htmlA) UI() app.UI { return n.Root }51func (n *htmlA) Href(s string) { n.Root.Href(s) }52type htmlLi struct{ Root app.HTMLLi }53func (n *htmlLi) Class(s ...string) { n.Root.Class(s...) }54func (n *htmlLi) ID(id string) { n.Root.ID(id) }55func (n *htmlLi) Attr(key string, val string) { n.Root.Attr(key, val) }56func (n *htmlLi) Aria(s string, s2 string) { n.Root.Aria(s, s2) }57func (n *htmlLi) DataSet(s string, s2 string) { n.Root.DataSet(s, s2) }58func (n *htmlLi) TabIndex(i int) { n.Root.TabIndex(i) }59func (n *htmlLi) Body(items ...app.UI) { n.Root.Body(items...) }60func (n *htmlLi) UI() app.UI { return n.Root }61func (n *htmlLi) Href(s string) {}62func (i *Item) adapt() AdaptableType {63 switch i.Type {64 case ItemTypeAnchor:65 return &htmlA{app.A()}66 default:67 return &htmlLi{app.Li()}68 }69}...

Full Screen

Full Screen

text_test.go

Source:text_test.go Github

copy

Full Screen

1package vocabulary2import (3 "testing"4 "github.com/benpate/form"5 "github.com/stretchr/testify/require"6)7func TestInteger(t *testing.T) {8 library := getTestLibrary()9 s := getTestSchema()10 f := form.Form{11 Kind: "text",12 Path: "age",13 }14 html, err := f.HTML(&library, s, nil)15 require.Nil(t, err)16 require.Equal(t, `<input name="age" type="number" step="1" min="10" max="100" required="true" tabIndex="0">`, html)17}18func TestFloat(t *testing.T) {19 library := getTestLibrary()20 s := getTestSchema()21 f := form.Form{22 ID: "idFormElement",23 Kind: "text",24 Path: "distance",25 }26 html, err := f.HTML(&library, s, nil)27 require.Nil(t, err)28 require.Equal(t, `<input name="distance" id="idFormElement" type="number" step="0.01" min="10" max="100" required="true" tabIndex="0">`, html)29}30func TestText(t *testing.T) {31 library := getTestLibrary()32 s := getTestSchema()33 f := form.Form{34 Kind: "text",35 Path: "username",36 }37 html, err := f.HTML(&library, s, nil)38 require.Nil(t, err)39 require.Equal(t, `<input name="username" type="text" minlength="10" maxlength="100" pattern="[a-z]+" required="true" tabIndex="0">`, html)40}41func TestDescription(t *testing.T) {42 library := getTestLibrary()43 s := getTestSchema()44 f := form.Form{45 Kind: "text",46 Path: "name",47 Description: "Hint text no longer added to widgets",48 }49 html, err := f.HTML(&library, s, nil)50 require.Nil(t, err)51 require.Equal(t, `<input name="name" type="text" maxlength="50" tabIndex="0">`, html)52}53func TestTextTags(t *testing.T) {54 library := getTestLibrary()55 s := getTestSchema()56 f := form.Form{57 Kind: "text",58 Path: "tags",59 }60 html, err := f.HTML(&library, s, nil)61 require.Nil(t, err)62 require.Equal(t, `<input name="tags" list="datalist_tags" type="text" tabIndex="0"><datalist id="datalist_tags"><option value="pretty"><option value="please"><option value="my"><option value="dear"><option value="aunt"><option value="sally"></datalist>`, html)63}64func TestTextTagsWithID(t *testing.T) {65 library := getTestLibrary()66 s := getTestSchema()67 f := form.Form{68 Kind: "text",69 Path: "tags",70 ID: "tags",71 }72 html, err := f.HTML(&library, s, nil)73 require.Nil(t, err)74 require.Equal(t, `<input name="tags" id="tags" list="datalist_tags" type="text" tabIndex="0"><datalist id="datalist_tags"><option value="pretty"><option value="please"><option value="my"><option value="dear"><option value="aunt"><option value="sally"></datalist>`, html)75}76func TestTextOptions(t *testing.T) {77 library := getTestLibrary()78 s := getTestSchema()79 f := form.Form{80 Kind: "text",81 Path: "tag",82 ID: "tag",83 Options: map[string]any{84 "provider": "/test",85 },86 }87 html, err := f.HTML(&library, s, nil)88 require.Nil(t, err)89 require.Equal(t, `<input name="tag" id="tag" list="datalist_tag" type="text" tabIndex="0"><datalist id="datalist_tag"><option value="ONE"><option value="TWO"><option value="THREE"><option value="FOUR"><option value="FIVE"></datalist>`, html)90}...

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 doc, err := html.Parse(os.Stdin)4 if err != nil {5 fmt.Fprintf(os.Stderr, "findlinks1: %v6 os.Exit(1)7 }8 for _, link := range visit(nil, doc) {9 fmt.Println(link)10 }11}12func visit(links []string, n *html.Node) []string {13 if n.Type == html.ElementNode && (n.Data == "a" || n.Data == "img") {14 for _, a := range n.Attr {15 if a.Key == "href" || a.Key == "src" {16 links = append(links, a.Val)17 }18 }19 }20 for c := n.FirstChild; c != nil; c = c.NextSibling {21 links = visit(links, c)22 }23}24import (25func main() {26 doc, err := html.Parse(os.Stdin)27 if err != nil {28 fmt.Fprintf(os.Stderr, "findlinks1: %v29 os.Exit(1)30 }31 for _, link := range visit(nil, doc) {32 fmt.Println(link)33 }34}35func visit(links []string, n *html.Node) []string {36 if n.Type == html.ElementNode && (n.Data == "a" || n.Data == "img") {37 for _, a := range n.Attr {38 if a.Key == "href" || a.Key == "src" {39 links = append(links, a.Val)40 }41 }42 }43 for c := n.FirstChild; c != nil; c = c.NextSibling {44 links = visit(links, c)45 }46}47import (48func main() {49 doc, err := html.Parse(os.Stdin)50 if err != nil {51 fmt.Fprintf(os.Stderr, "findlinks1: %v52 os.Exit(1)53 }

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 opts := []selenium.ServiceOption{}4 service, err := selenium.NewChromeDriverService("chromedriver.exe", 9515, opts...)5 if err != nil {6 log.Fatal(err)7 }8 defer service.Stop()9 caps := selenium.Capabilities{"browserName": "chrome"}10 caps.AddChrome(chrome.Capabilities{11 Args: []string{12 },13 })14 if err != nil {15 log.Fatal(err)16 }17 defer wd.Quit()18 log.Fatal(err)19 }20 if err := wd.WaitWithTimeout(selenium.Condition{21 Fn: func(wd selenium.WebDriver) (bool, error) {22 title, err := wd.Title()23 if err != nil {24 }25 },26 }, 10*time.Second); err != nil {27 log.Fatal(err)28 }29 textarea, err := wd.FindElement(selenium.ByCSSSelector, "#code")30 if err != nil {31 log.Fatal(err)32 }33 if err := textarea.SendKeys("package main34import \"fmt\"35func main() {36 fmt.Println(\"Hello WebDriver!\")37}"); err != nil {38 log.Fatal(err)39 }40 btn, err := wd.FindElement(selenium.ByCSSSelector, "#run")41 if err != nil {42 log.Fatal(err)43 }

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 beego.Get("/", func(context *context.Context) {4 context.Output.Body([]byte("hello world"))5 })6 beego.Get("/hello", func(context *context.Context) {7 context.Output.Body([]byte("hello world"))8 })9 beego.Get("/hello/:name", func(context *context.Context) {10 context.Output.Body([]byte("hello world"))11 })12 beego.Get("/hello/:name/:id", func(context *context.Context) {13 context.Output.Body([]byte("hello world"))14 })15 beego.Get("/hello/:name/:id:string", func(context *context.Context) {16 context.Output.Body([]byte("hello world"))17 })18 beego.Get("/hello/:name/:id:int", func(context *context.Context) {19 context.Output.Body([]byte("hello world"))20 })21 beego.Get("/hello/:name/:id:int/:addr", func(context *context.Context) {22 context.Output.Body([]byte("hello world"))23 })24 beego.Get("/hello/:name/:id:int/:addr:string", func(context *context.Context) {25 context.Output.Body([]byte("hello world"))26 })27 beego.Get("/hello/:name/:id:int/:addr:string/:age:int", func(context *context.Context) {28 context.Output.Body([]byte("hello world"))29 })30 beego.Get("/hello/:name/:id:int/:addr:string/:age:int/:weight", func(context *context.Context) {31 context.Output.Body([]byte("hello world"))32 })33 beego.Get("/hello/:name/:id:int/:addr:string/:age:int/:weight:float", func(context *context.Context) {34 context.Output.Body([]byte("hello world"))35 })36 beego.Get("/hello/:name/:id:int/:addr:string/:age:int/:weight:float/:height", func(context *context.Context) {37 context.Output.Body([]byte("hello world"))38 })39 beego.Get("/hello/:name/:id:int/:addr:string/:age:int/:weight:float/:height:float", func(context *context.Context) {40 context.Output.Body([]byte("hello world"))41 })42 beego.Get("/hello/:name/:id:int/:addr:string/:age:int/:weight:float/:height:float/:money", func(context *context.Context) {

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 win, _ := window.New(sciter.SW_TITLEBAR|sciter.SW_RESIZEABLE|sciter.SW_CONTROLS|sciter.SW_MAIN|sciter.SW_ENABLE_DEBUG, nil)4 win.LoadFile("1.html")5 win.Show()6 win.Run()7}

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 w, _ := window.New(sciter.DefaultWindowCreateFlag, &sciter.Rect{Left: 100, Top: 100, Right: 800, Bottom: 600})4 w.LoadFile("index.htm")5 w.Show()6 w.Run()7}8 <tab id="tab1" style="position:absolute; left:0; top:0; width:100%; height:100%"/>9 var tab1 = document.getElementById("tab1");10 tab1.add("Tab 1", "tab1.htm");11 tab1.add("Tab 2", "tab2.htm");12 tab1.add("Tab 3", "tab3.htm");13 tab1.add("Tab 4", "tab4.htm");14 tab1.add("Tab 5", "tab5.htm");15 tab1.add("Tab 6", "tab6.htm");16 tab1.add("Tab 7", "tab7.htm");17 tab1.add("Tab 8", "tab8.htm");

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 doc, _ := html.Parse(strings.NewReader(s))4 node := ElementByID(doc, "foo")5 fmt.Println(node)6}7func ElementByID(doc *html.Node, id string) *html.Node {8 return forEachNode(doc, id, startElement, endElement)9}10func forEachNode(n *html.Node, id string, pre, post func(n *html.Node, id string) bool) *html.Node {11 if pre != nil {12 if pre(n, id) {13 }14 }15 for c := n.FirstChild; c != nil; c = c.NextSibling {16 if forEachNode(c, id, pre, post) != nil {17 }18 }19 if post != nil {20 if post(n, id) {21 }22 }23}24func startElement(n *html.Node, id string) bool {25 if n.Type == html.ElementNode {26 for _, a := range n.Attr {27 if a.Key == "id" && a.Val == id {28 }29 }30 }31}32func endElement(n *html.Node, id string) bool {33}34import (35func main() {36 doc, _ := html.Parse(strings.NewReader(s))37 node := ElementByTagName(doc, "h1", "p")38 fmt.Println(node)39}40func ElementByTagName(doc *html.Node, name ...string) []*html.Node {41 return forEachNode(doc, name, startElement, endElement)42}43func forEachNode(n *html.Node, name []string, pre, post func(n *html.Node, name []string) bool) []*html.Node {44 if pre != nil {45 if pre(n, name) {46 nodes = append(nodes, n)47 }48 }49 for c := n.FirstChild; c != nil

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 doc, err := html.Parse(strings.NewReader(`4 if err != nil {5 fmt.Println("error in parsing the html")6 }7 links := visit(nil, doc)8 fmt.Println(links)9}10func visit(links []string, n *html.Node) []string {11 if n.Type == html.ElementNode && n.Data == "a" {12 for _, a := range n.Attr {13 if a.Key == "href" {14 links = append(links, a.Val)15 }16 }17 }18 for c := n.FirstChild; c != nil; c = c.NextSibling {19 links = visit(links, c)20 }21}

Full Screen

Full Screen

TabIndex

Using AI Code Generation

copy

Full Screen

1import (2func main() {3 browser := rod.New().ControlURL(launcher.New().MustLaunch()).MustConnect()4 page.MustEval(`document.querySelector('input[name="q"]').value = "Rod"`)5 page.MustEval(`document.querySelector('input[name="q"]').form.submit()`)6 page.MustWaitNavigation(3 * time.Second)7 title := page.MustTitle()8 fmt.Println(title)9 page.MustScreenshot("screenshot.png")10 page.Close()11 browser.Close()12}13import (14func main() {15 browser := rod.New().ControlURL(launcher.New().MustLaunch()).MustConnect()

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run K6 automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful