-module(sketch@lustre@element@html). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([html/2, base/1, head/2, link/1, meta/1, text/1, style/2, title/2, a/3, a_/2, abbr/3, abbr_/2, address/3, address_/2, area/2, area_/1, article/3, article_/2, aside/3, aside_/2, audio/3, audio_/2, b/3, b_/2, bdi/3, bdi_/2, bdo/3, bdo_/2, blockquote/3, blockquote_/2, body/3, body_/2, br/2, br_/1, button/3, button_/2, canvas/3, canvas_/2, caption/3, caption_/2, cite/3, cite_/2, code/3, code_/2, col/2, col_/1, colgroup/3, colgroup_/2, data/3, data_/2, datalist/3, datalist_/2, dd/3, dd_/2, del/3, del_/2, details/3, details_/2, dfn/3, dfn_/2, dialog/3, dialog_/2, 'div'/3, div_/2, dl/3, dl_/2, dt/3, dt_/2, em/3, em_/2, embed/2, embed_/1, fieldset/3, fieldset_/2, figcaption/3, figcaption_/2, figure/3, figure_/2, footer/3, footer_/2, form/3, form_/2, h1/3, h1_/2, h2/3, h2_/2, h3/3, h3_/2, h4/3, h4_/2, h5/3, h5_/2, h6/3, h6_/2, header/3, header_/2, hgroup/3, hgroup_/2, hr/2, hr_/1, i/3, i_/2, iframe/3, iframe_/2, img/2, img_/1, input/2, input_/1, ins/3, ins_/2, kbd/3, kbd_/2, label/3, label_/2, legend/3, legend_/2, li/3, li_/2, main/3, main_/2, map/3, map_/2, mark/3, mark_/2, math/3, math_/2, menu/3, menu_/2, meter/3, meter_/2, nav/3, nav_/2, noscript/3, noscript_/2, object/3, object_/2, ol/3, ol_/2, optgroup/3, optgroup_/2, option/3, option_/2, output/3, output_/2, p/3, p_/2, picture/3, picture_/2, portal/3, portal_/2, pre/3, pre_/2, progress/3, progress_/2, q/3, q_/2, rp/3, rp_/2, rt/3, rt_/2, ruby/3, ruby_/2, s/3, s_/2, samp/3, samp_/2, script/3, script_/2, search/3, search_/2, section/3, section_/2, select/3, select_/2, slot/3, slot_/2, small/3, small_/2, source/2, source_/1, span/3, span_/2, strong/3, strong_/2, sub/3, sub_/2, summary/3, summary_/2, sup/3, sup_/2, svg/3, svg_/2, table/3, table_/2, tbody/3, tbody_/2, td/3, td_/2, template/3, template_/2, textarea/3, textarea_/2, tfoot/3, tfoot_/2, th/3, th_/2, thead/3, thead_/2, time/3, time_/2, tr/3, tr_/2, track/2, track_/1, u/3, u_/2, ul/3, ul_/2, var/3, var_/2, video/3, video_/2, wbr/2, wbr_/1]). -spec html( list(lustre@internals@vdom:attribute(RNH)), list(sketch@lustre@element:element(RNH)) ) -> sketch@lustre@element:element(RNH). html(Attributes, Children) -> sketch@lustre@element:element_(<<"html"/utf8>>, Attributes, Children). -spec base(list(lustre@internals@vdom:attribute(RNI))) -> sketch@lustre@element:element(RNI). base(Attributes) -> sketch@lustre@element:element_(<<"base"/utf8>>, Attributes, []). -spec head( list(lustre@internals@vdom:attribute(RNK)), list(sketch@lustre@element:element(RNK)) ) -> sketch@lustre@element:element(RNK). head(Attributes, Children) -> sketch@lustre@element:element_(<<"head"/utf8>>, Attributes, Children). -spec link(list(lustre@internals@vdom:attribute(RNL))) -> sketch@lustre@element:element(RNL). link(Attributes) -> sketch@lustre@element:element_(<<"link"/utf8>>, Attributes, []). -spec meta(list(lustre@internals@vdom:attribute(RNN))) -> sketch@lustre@element:element(RNN). meta(Attributes) -> sketch@lustre@element:element_(<<"meta"/utf8>>, Attributes, []). -spec text(binary()) -> sketch@lustre@element:element(any()). text(Content) -> sketch@lustre@element:text(Content). -spec style(list(lustre@internals@vdom:attribute(RNT)), binary()) -> sketch@lustre@element:element(RNT). style(Attributes, Child) -> sketch@lustre@element:element_(<<"style"/utf8>>, Attributes, [text(Child)]). -spec title(list(lustre@internals@vdom:attribute(RNW)), binary()) -> sketch@lustre@element:element(RNW). title(Attributes, Title) -> sketch@lustre@element:element_(<<"title"/utf8>>, Attributes, [text(Title)]). -spec a( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RNX)), list(sketch@lustre@element:element(RNX)) ) -> sketch@lustre@element:element(RNX). a(Class, Attributes, Children) -> sketch@lustre@element:element(<<"a"/utf8>>, Class, Attributes, Children). -spec a_( list(lustre@internals@vdom:attribute(RNY)), list(sketch@lustre@element:element(RNY)) ) -> sketch@lustre@element:element(RNY). a_(Attributes, Children) -> sketch@lustre@element:element_(<<"a"/utf8>>, Attributes, Children). -spec abbr( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RNZ)), list(sketch@lustre@element:element(RNZ)) ) -> sketch@lustre@element:element(RNZ). abbr(Class, Attributes, Children) -> sketch@lustre@element:element(<<"abbr"/utf8>>, Class, Attributes, Children). -spec abbr_( list(lustre@internals@vdom:attribute(ROA)), list(sketch@lustre@element:element(ROA)) ) -> sketch@lustre@element:element(ROA). abbr_(Attributes, Children) -> sketch@lustre@element:element_(<<"abbr"/utf8>>, Attributes, Children). -spec address( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROB)), list(sketch@lustre@element:element(ROB)) ) -> sketch@lustre@element:element(ROB). address(Class, Attributes, Children) -> sketch@lustre@element:element( <<"address"/utf8>>, Class, Attributes, Children ). -spec address_( list(lustre@internals@vdom:attribute(ROC)), list(sketch@lustre@element:element(ROC)) ) -> sketch@lustre@element:element(ROC). address_(Attributes, Children) -> sketch@lustre@element:element_(<<"address"/utf8>>, Attributes, Children). -spec area( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROD)) ) -> sketch@lustre@element:element(ROD). area(Class, Attributes) -> sketch@lustre@element:element(<<"area"/utf8>>, Class, Attributes, []). -spec area_(list(lustre@internals@vdom:attribute(ROF))) -> sketch@lustre@element:element(ROF). area_(Attributes) -> sketch@lustre@element:element_(<<"area"/utf8>>, Attributes, []). -spec article( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROH)), list(sketch@lustre@element:element(ROH)) ) -> sketch@lustre@element:element(ROH). article(Class, Attributes, Children) -> sketch@lustre@element:element( <<"article"/utf8>>, Class, Attributes, Children ). -spec article_( list(lustre@internals@vdom:attribute(ROI)), list(sketch@lustre@element:element(ROI)) ) -> sketch@lustre@element:element(ROI). article_(Attributes, Children) -> sketch@lustre@element:element_(<<"article"/utf8>>, Attributes, Children). -spec aside( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROJ)), list(sketch@lustre@element:element(ROJ)) ) -> sketch@lustre@element:element(ROJ). aside(Class, Attributes, Children) -> sketch@lustre@element:element(<<"aside"/utf8>>, Class, Attributes, Children). -spec aside_( list(lustre@internals@vdom:attribute(ROK)), list(sketch@lustre@element:element(ROK)) ) -> sketch@lustre@element:element(ROK). aside_(Attributes, Children) -> sketch@lustre@element:element_(<<"aside"/utf8>>, Attributes, Children). -spec audio( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROL)), list(sketch@lustre@element:element(ROL)) ) -> sketch@lustre@element:element(ROL). audio(Class, Attributes, Children) -> sketch@lustre@element:element(<<"audio"/utf8>>, Class, Attributes, Children). -spec audio_( list(lustre@internals@vdom:attribute(ROM)), list(sketch@lustre@element:element(ROM)) ) -> sketch@lustre@element:element(ROM). audio_(Attributes, Children) -> sketch@lustre@element:element_(<<"audio"/utf8>>, Attributes, Children). -spec b( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RON)), list(sketch@lustre@element:element(RON)) ) -> sketch@lustre@element:element(RON). b(Class, Attributes, Children) -> sketch@lustre@element:element(<<"b"/utf8>>, Class, Attributes, Children). -spec b_( list(lustre@internals@vdom:attribute(ROO)), list(sketch@lustre@element:element(ROO)) ) -> sketch@lustre@element:element(ROO). b_(Attributes, Children) -> sketch@lustre@element:element_(<<"b"/utf8>>, Attributes, Children). -spec bdi( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROP)), list(sketch@lustre@element:element(ROP)) ) -> sketch@lustre@element:element(ROP). bdi(Class, Attributes, Children) -> sketch@lustre@element:element(<<"bdi"/utf8>>, Class, Attributes, Children). -spec bdi_( list(lustre@internals@vdom:attribute(ROQ)), list(sketch@lustre@element:element(ROQ)) ) -> sketch@lustre@element:element(ROQ). bdi_(Attributes, Children) -> sketch@lustre@element:element_(<<"bdi"/utf8>>, Attributes, Children). -spec bdo( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROR)), list(sketch@lustre@element:element(ROR)) ) -> sketch@lustre@element:element(ROR). bdo(Class, Attributes, Children) -> sketch@lustre@element:element(<<"bdo"/utf8>>, Class, Attributes, Children). -spec bdo_( list(lustre@internals@vdom:attribute(ROS)), list(sketch@lustre@element:element(ROS)) ) -> sketch@lustre@element:element(ROS). bdo_(Attributes, Children) -> sketch@lustre@element:element_(<<"bdo"/utf8>>, Attributes, Children). -spec blockquote( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROT)), list(sketch@lustre@element:element(ROT)) ) -> sketch@lustre@element:element(ROT). blockquote(Class, Attributes, Children) -> sketch@lustre@element:element( <<"blockquote"/utf8>>, Class, Attributes, Children ). -spec blockquote_( list(lustre@internals@vdom:attribute(ROU)), list(sketch@lustre@element:element(ROU)) ) -> sketch@lustre@element:element(ROU). blockquote_(Attributes, Children) -> sketch@lustre@element:element_(<<"blockquote"/utf8>>, Attributes, Children). -spec body( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROV)), list(sketch@lustre@element:element(ROV)) ) -> sketch@lustre@element:element(ROV). body(Class, Attributes, Children) -> sketch@lustre@element:element(<<"body"/utf8>>, Class, Attributes, Children). -spec body_( list(lustre@internals@vdom:attribute(ROW)), list(sketch@lustre@element:element(ROW)) ) -> sketch@lustre@element:element(ROW). body_(Attributes, Children) -> sketch@lustre@element:element_(<<"body"/utf8>>, Attributes, Children). -spec br( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(ROX)) ) -> sketch@lustre@element:element(ROX). br(Class, Attributes) -> sketch@lustre@element:element(<<"br"/utf8>>, Class, Attributes, []). -spec br_(list(lustre@internals@vdom:attribute(ROZ))) -> sketch@lustre@element:element(ROZ). br_(Attributes) -> sketch@lustre@element:element_(<<"br"/utf8>>, Attributes, []). -spec button( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPB)), list(sketch@lustre@element:element(RPB)) ) -> sketch@lustre@element:element(RPB). button(Class, Attributes, Children) -> sketch@lustre@element:element( <<"button"/utf8>>, Class, Attributes, Children ). -spec button_( list(lustre@internals@vdom:attribute(RPC)), list(sketch@lustre@element:element(RPC)) ) -> sketch@lustre@element:element(RPC). button_(Attributes, Children) -> sketch@lustre@element:element_(<<"button"/utf8>>, Attributes, Children). -spec canvas( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPD)), list(sketch@lustre@element:element(RPD)) ) -> sketch@lustre@element:element(RPD). canvas(Class, Attributes, Children) -> sketch@lustre@element:element( <<"canvas"/utf8>>, Class, Attributes, Children ). -spec canvas_( list(lustre@internals@vdom:attribute(RPE)), list(sketch@lustre@element:element(RPE)) ) -> sketch@lustre@element:element(RPE). canvas_(Attributes, Children) -> sketch@lustre@element:element_(<<"canvas"/utf8>>, Attributes, Children). -spec caption( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPF)), list(sketch@lustre@element:element(RPF)) ) -> sketch@lustre@element:element(RPF). caption(Class, Attributes, Children) -> sketch@lustre@element:element( <<"caption"/utf8>>, Class, Attributes, Children ). -spec caption_( list(lustre@internals@vdom:attribute(RPG)), list(sketch@lustre@element:element(RPG)) ) -> sketch@lustre@element:element(RPG). caption_(Attributes, Children) -> sketch@lustre@element:element_(<<"caption"/utf8>>, Attributes, Children). -spec cite( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPH)), list(sketch@lustre@element:element(RPH)) ) -> sketch@lustre@element:element(RPH). cite(Class, Attributes, Children) -> sketch@lustre@element:element(<<"cite"/utf8>>, Class, Attributes, Children). -spec cite_( list(lustre@internals@vdom:attribute(RPI)), list(sketch@lustre@element:element(RPI)) ) -> sketch@lustre@element:element(RPI). cite_(Attributes, Children) -> sketch@lustre@element:element_(<<"cite"/utf8>>, Attributes, Children). -spec code( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPJ)), list(sketch@lustre@element:element(RPJ)) ) -> sketch@lustre@element:element(RPJ). code(Class, Attributes, Children) -> sketch@lustre@element:element(<<"code"/utf8>>, Class, Attributes, Children). -spec code_( list(lustre@internals@vdom:attribute(RPK)), list(sketch@lustre@element:element(RPK)) ) -> sketch@lustre@element:element(RPK). code_(Attributes, Children) -> sketch@lustre@element:element_(<<"code"/utf8>>, Attributes, Children). -spec col( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPL)) ) -> sketch@lustre@element:element(RPL). col(Class, Attributes) -> sketch@lustre@element:element(<<"col"/utf8>>, Class, Attributes, []). -spec col_(list(lustre@internals@vdom:attribute(RPN))) -> sketch@lustre@element:element(RPN). col_(Attributes) -> sketch@lustre@element:element_(<<"col"/utf8>>, Attributes, []). -spec colgroup( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPP)), list(sketch@lustre@element:element(RPP)) ) -> sketch@lustre@element:element(RPP). colgroup(Class, Attributes, Children) -> sketch@lustre@element:element( <<"colgroup"/utf8>>, Class, Attributes, Children ). -spec colgroup_( list(lustre@internals@vdom:attribute(RPQ)), list(sketch@lustre@element:element(RPQ)) ) -> sketch@lustre@element:element(RPQ). colgroup_(Attributes, Children) -> sketch@lustre@element:element_(<<"colgroup"/utf8>>, Attributes, Children). -spec data( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPR)), list(sketch@lustre@element:element(RPR)) ) -> sketch@lustre@element:element(RPR). data(Class, Attributes, Children) -> sketch@lustre@element:element(<<"data"/utf8>>, Class, Attributes, Children). -spec data_( list(lustre@internals@vdom:attribute(RPS)), list(sketch@lustre@element:element(RPS)) ) -> sketch@lustre@element:element(RPS). data_(Attributes, Children) -> sketch@lustre@element:element_(<<"data"/utf8>>, Attributes, Children). -spec datalist( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPT)), list(sketch@lustre@element:element(RPT)) ) -> sketch@lustre@element:element(RPT). datalist(Class, Attributes, Children) -> sketch@lustre@element:element( <<"datalist"/utf8>>, Class, Attributes, Children ). -spec datalist_( list(lustre@internals@vdom:attribute(RPU)), list(sketch@lustre@element:element(RPU)) ) -> sketch@lustre@element:element(RPU). datalist_(Attributes, Children) -> sketch@lustre@element:element_(<<"datalist"/utf8>>, Attributes, Children). -spec dd( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPV)), list(sketch@lustre@element:element(RPV)) ) -> sketch@lustre@element:element(RPV). dd(Class, Attributes, Children) -> sketch@lustre@element:element(<<"dd"/utf8>>, Class, Attributes, Children). -spec dd_( list(lustre@internals@vdom:attribute(RPW)), list(sketch@lustre@element:element(RPW)) ) -> sketch@lustre@element:element(RPW). dd_(Attributes, Children) -> sketch@lustre@element:element_(<<"dd"/utf8>>, Attributes, Children). -spec del( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPX)), list(sketch@lustre@element:element(RPX)) ) -> sketch@lustre@element:element(RPX). del(Class, Attributes, Children) -> sketch@lustre@element:element(<<"del"/utf8>>, Class, Attributes, Children). -spec del_( list(lustre@internals@vdom:attribute(RPY)), list(sketch@lustre@element:element(RPY)) ) -> sketch@lustre@element:element(RPY). del_(Attributes, Children) -> sketch@lustre@element:element_(<<"del"/utf8>>, Attributes, Children). -spec details( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RPZ)), list(sketch@lustre@element:element(RPZ)) ) -> sketch@lustre@element:element(RPZ). details(Class, Attributes, Children) -> sketch@lustre@element:element( <<"details"/utf8>>, Class, Attributes, Children ). -spec details_( list(lustre@internals@vdom:attribute(RQA)), list(sketch@lustre@element:element(RQA)) ) -> sketch@lustre@element:element(RQA). details_(Attributes, Children) -> sketch@lustre@element:element_(<<"details"/utf8>>, Attributes, Children). -spec dfn( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQB)), list(sketch@lustre@element:element(RQB)) ) -> sketch@lustre@element:element(RQB). dfn(Class, Attributes, Children) -> sketch@lustre@element:element(<<"dfn"/utf8>>, Class, Attributes, Children). -spec dfn_( list(lustre@internals@vdom:attribute(RQC)), list(sketch@lustre@element:element(RQC)) ) -> sketch@lustre@element:element(RQC). dfn_(Attributes, Children) -> sketch@lustre@element:element_(<<"dfn"/utf8>>, Attributes, Children). -spec dialog( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQD)), list(sketch@lustre@element:element(RQD)) ) -> sketch@lustre@element:element(RQD). dialog(Class, Attributes, Children) -> sketch@lustre@element:element( <<"dialog"/utf8>>, Class, Attributes, Children ). -spec dialog_( list(lustre@internals@vdom:attribute(RQE)), list(sketch@lustre@element:element(RQE)) ) -> sketch@lustre@element:element(RQE). dialog_(Attributes, Children) -> sketch@lustre@element:element_(<<"dialog"/utf8>>, Attributes, Children). -spec 'div'( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQF)), list(sketch@lustre@element:element(RQF)) ) -> sketch@lustre@element:element(RQF). 'div'(Class, Attributes, Children) -> sketch@lustre@element:element(<<"div"/utf8>>, Class, Attributes, Children). -spec div_( list(lustre@internals@vdom:attribute(RQG)), list(sketch@lustre@element:element(RQG)) ) -> sketch@lustre@element:element(RQG). div_(Attributes, Children) -> sketch@lustre@element:element_(<<"div"/utf8>>, Attributes, Children). -spec dl( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQH)), list(sketch@lustre@element:element(RQH)) ) -> sketch@lustre@element:element(RQH). dl(Class, Attributes, Children) -> sketch@lustre@element:element(<<"dl"/utf8>>, Class, Attributes, Children). -spec dl_( list(lustre@internals@vdom:attribute(RQI)), list(sketch@lustre@element:element(RQI)) ) -> sketch@lustre@element:element(RQI). dl_(Attributes, Children) -> sketch@lustre@element:element_(<<"dl"/utf8>>, Attributes, Children). -spec dt( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQJ)), list(sketch@lustre@element:element(RQJ)) ) -> sketch@lustre@element:element(RQJ). dt(Class, Attributes, Children) -> sketch@lustre@element:element(<<"dt"/utf8>>, Class, Attributes, Children). -spec dt_( list(lustre@internals@vdom:attribute(RQK)), list(sketch@lustre@element:element(RQK)) ) -> sketch@lustre@element:element(RQK). dt_(Attributes, Children) -> sketch@lustre@element:element_(<<"dt"/utf8>>, Attributes, Children). -spec em( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQL)), list(sketch@lustre@element:element(RQL)) ) -> sketch@lustre@element:element(RQL). em(Class, Attributes, Children) -> sketch@lustre@element:element(<<"em"/utf8>>, Class, Attributes, Children). -spec em_( list(lustre@internals@vdom:attribute(RQM)), list(sketch@lustre@element:element(RQM)) ) -> sketch@lustre@element:element(RQM). em_(Attributes, Children) -> sketch@lustre@element:element_(<<"em"/utf8>>, Attributes, Children). -spec embed( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQN)) ) -> sketch@lustre@element:element(RQN). embed(Class, Attributes) -> sketch@lustre@element:element(<<"embed"/utf8>>, Class, Attributes, []). -spec embed_(list(lustre@internals@vdom:attribute(RQP))) -> sketch@lustre@element:element(RQP). embed_(Attributes) -> sketch@lustre@element:element_(<<"embed"/utf8>>, Attributes, []). -spec fieldset( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQR)), list(sketch@lustre@element:element(RQR)) ) -> sketch@lustre@element:element(RQR). fieldset(Class, Attributes, Children) -> sketch@lustre@element:element( <<"fieldset"/utf8>>, Class, Attributes, Children ). -spec fieldset_( list(lustre@internals@vdom:attribute(RQS)), list(sketch@lustre@element:element(RQS)) ) -> sketch@lustre@element:element(RQS). fieldset_(Attributes, Children) -> sketch@lustre@element:element_(<<"fieldset"/utf8>>, Attributes, Children). -spec figcaption( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQT)), list(sketch@lustre@element:element(RQT)) ) -> sketch@lustre@element:element(RQT). figcaption(Class, Attributes, Children) -> sketch@lustre@element:element( <<"figcaption"/utf8>>, Class, Attributes, Children ). -spec figcaption_( list(lustre@internals@vdom:attribute(RQU)), list(sketch@lustre@element:element(RQU)) ) -> sketch@lustre@element:element(RQU). figcaption_(Attributes, Children) -> sketch@lustre@element:element_(<<"figcaption"/utf8>>, Attributes, Children). -spec figure( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQV)), list(sketch@lustre@element:element(RQV)) ) -> sketch@lustre@element:element(RQV). figure(Class, Attributes, Children) -> sketch@lustre@element:element( <<"figure"/utf8>>, Class, Attributes, Children ). -spec figure_( list(lustre@internals@vdom:attribute(RQW)), list(sketch@lustre@element:element(RQW)) ) -> sketch@lustre@element:element(RQW). figure_(Attributes, Children) -> sketch@lustre@element:element_(<<"figure"/utf8>>, Attributes, Children). -spec footer( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQX)), list(sketch@lustre@element:element(RQX)) ) -> sketch@lustre@element:element(RQX). footer(Class, Attributes, Children) -> sketch@lustre@element:element( <<"footer"/utf8>>, Class, Attributes, Children ). -spec footer_( list(lustre@internals@vdom:attribute(RQY)), list(sketch@lustre@element:element(RQY)) ) -> sketch@lustre@element:element(RQY). footer_(Attributes, Children) -> sketch@lustre@element:element_(<<"footer"/utf8>>, Attributes, Children). -spec form( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RQZ)), list(sketch@lustre@element:element(RQZ)) ) -> sketch@lustre@element:element(RQZ). form(Class, Attributes, Children) -> sketch@lustre@element:element(<<"form"/utf8>>, Class, Attributes, Children). -spec form_( list(lustre@internals@vdom:attribute(RRA)), list(sketch@lustre@element:element(RRA)) ) -> sketch@lustre@element:element(RRA). form_(Attributes, Children) -> sketch@lustre@element:element_(<<"form"/utf8>>, Attributes, Children). -spec h1( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRB)), list(sketch@lustre@element:element(RRB)) ) -> sketch@lustre@element:element(RRB). h1(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h1"/utf8>>, Class, Attributes, Children). -spec h1_( list(lustre@internals@vdom:attribute(RRC)), list(sketch@lustre@element:element(RRC)) ) -> sketch@lustre@element:element(RRC). h1_(Attributes, Children) -> sketch@lustre@element:element_(<<"h1"/utf8>>, Attributes, Children). -spec h2( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRD)), list(sketch@lustre@element:element(RRD)) ) -> sketch@lustre@element:element(RRD). h2(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h2"/utf8>>, Class, Attributes, Children). -spec h2_( list(lustre@internals@vdom:attribute(RRE)), list(sketch@lustre@element:element(RRE)) ) -> sketch@lustre@element:element(RRE). h2_(Attributes, Children) -> sketch@lustre@element:element_(<<"h2"/utf8>>, Attributes, Children). -spec h3( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRF)), list(sketch@lustre@element:element(RRF)) ) -> sketch@lustre@element:element(RRF). h3(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h3"/utf8>>, Class, Attributes, Children). -spec h3_( list(lustre@internals@vdom:attribute(RRG)), list(sketch@lustre@element:element(RRG)) ) -> sketch@lustre@element:element(RRG). h3_(Attributes, Children) -> sketch@lustre@element:element_(<<"h3"/utf8>>, Attributes, Children). -spec h4( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRH)), list(sketch@lustre@element:element(RRH)) ) -> sketch@lustre@element:element(RRH). h4(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h4"/utf8>>, Class, Attributes, Children). -spec h4_( list(lustre@internals@vdom:attribute(RRI)), list(sketch@lustre@element:element(RRI)) ) -> sketch@lustre@element:element(RRI). h4_(Attributes, Children) -> sketch@lustre@element:element_(<<"h4"/utf8>>, Attributes, Children). -spec h5( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRJ)), list(sketch@lustre@element:element(RRJ)) ) -> sketch@lustre@element:element(RRJ). h5(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h5"/utf8>>, Class, Attributes, Children). -spec h5_( list(lustre@internals@vdom:attribute(RRK)), list(sketch@lustre@element:element(RRK)) ) -> sketch@lustre@element:element(RRK). h5_(Attributes, Children) -> sketch@lustre@element:element_(<<"h5"/utf8>>, Attributes, Children). -spec h6( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRL)), list(sketch@lustre@element:element(RRL)) ) -> sketch@lustre@element:element(RRL). h6(Class, Attributes, Children) -> sketch@lustre@element:element(<<"h6"/utf8>>, Class, Attributes, Children). -spec h6_( list(lustre@internals@vdom:attribute(RRM)), list(sketch@lustre@element:element(RRM)) ) -> sketch@lustre@element:element(RRM). h6_(Attributes, Children) -> sketch@lustre@element:element_(<<"h6"/utf8>>, Attributes, Children). -spec header( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRN)), list(sketch@lustre@element:element(RRN)) ) -> sketch@lustre@element:element(RRN). header(Class, Attributes, Children) -> sketch@lustre@element:element( <<"header"/utf8>>, Class, Attributes, Children ). -spec header_( list(lustre@internals@vdom:attribute(RRO)), list(sketch@lustre@element:element(RRO)) ) -> sketch@lustre@element:element(RRO). header_(Attributes, Children) -> sketch@lustre@element:element_(<<"header"/utf8>>, Attributes, Children). -spec hgroup( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRP)), list(sketch@lustre@element:element(RRP)) ) -> sketch@lustre@element:element(RRP). hgroup(Class, Attributes, Children) -> sketch@lustre@element:element( <<"hgroup"/utf8>>, Class, Attributes, Children ). -spec hgroup_( list(lustre@internals@vdom:attribute(RRQ)), list(sketch@lustre@element:element(RRQ)) ) -> sketch@lustre@element:element(RRQ). hgroup_(Attributes, Children) -> sketch@lustre@element:element_(<<"hgroup"/utf8>>, Attributes, Children). -spec hr( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRR)) ) -> sketch@lustre@element:element(RRR). hr(Class, Attributes) -> sketch@lustre@element:element(<<"hr"/utf8>>, Class, Attributes, []). -spec hr_(list(lustre@internals@vdom:attribute(RRT))) -> sketch@lustre@element:element(RRT). hr_(Attributes) -> sketch@lustre@element:element_(<<"hr"/utf8>>, Attributes, []). -spec i( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRV)), list(sketch@lustre@element:element(RRV)) ) -> sketch@lustre@element:element(RRV). i(Class, Attributes, Children) -> sketch@lustre@element:element(<<"i"/utf8>>, Class, Attributes, Children). -spec i_( list(lustre@internals@vdom:attribute(RRW)), list(sketch@lustre@element:element(RRW)) ) -> sketch@lustre@element:element(RRW). i_(Attributes, Children) -> sketch@lustre@element:element_(<<"i"/utf8>>, Attributes, Children). -spec iframe( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRX)), list(sketch@lustre@element:element(RRX)) ) -> sketch@lustre@element:element(RRX). iframe(Class, Attributes, Children) -> sketch@lustre@element:element( <<"iframe"/utf8>>, Class, Attributes, Children ). -spec iframe_( list(lustre@internals@vdom:attribute(RRY)), list(sketch@lustre@element:element(RRY)) ) -> sketch@lustre@element:element(RRY). iframe_(Attributes, Children) -> sketch@lustre@element:element_(<<"iframe"/utf8>>, Attributes, Children). -spec img( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RRZ)) ) -> sketch@lustre@element:element(RRZ). img(Class, Attributes) -> sketch@lustre@element:element(<<"img"/utf8>>, Class, Attributes, []). -spec img_(list(lustre@internals@vdom:attribute(RSB))) -> sketch@lustre@element:element(RSB). img_(Attributes) -> sketch@lustre@element:element_(<<"img"/utf8>>, Attributes, []). -spec input( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSD)) ) -> sketch@lustre@element:element(RSD). input(Class, Attributes) -> sketch@lustre@element:element(<<"input"/utf8>>, Class, Attributes, []). -spec input_(list(lustre@internals@vdom:attribute(RSF))) -> sketch@lustre@element:element(RSF). input_(Attributes) -> sketch@lustre@element:element_(<<"input"/utf8>>, Attributes, []). -spec ins( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSH)), list(sketch@lustre@element:element(RSH)) ) -> sketch@lustre@element:element(RSH). ins(Class, Attributes, Children) -> sketch@lustre@element:element(<<"ins"/utf8>>, Class, Attributes, Children). -spec ins_( list(lustre@internals@vdom:attribute(RSI)), list(sketch@lustre@element:element(RSI)) ) -> sketch@lustre@element:element(RSI). ins_(Attributes, Children) -> sketch@lustre@element:element_(<<"ins"/utf8>>, Attributes, Children). -spec kbd( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSJ)), list(sketch@lustre@element:element(RSJ)) ) -> sketch@lustre@element:element(RSJ). kbd(Class, Attributes, Children) -> sketch@lustre@element:element(<<"kbd"/utf8>>, Class, Attributes, Children). -spec kbd_( list(lustre@internals@vdom:attribute(RSK)), list(sketch@lustre@element:element(RSK)) ) -> sketch@lustre@element:element(RSK). kbd_(Attributes, Children) -> sketch@lustre@element:element_(<<"kbd"/utf8>>, Attributes, Children). -spec label( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSL)), list(sketch@lustre@element:element(RSL)) ) -> sketch@lustre@element:element(RSL). label(Class, Attributes, Children) -> sketch@lustre@element:element(<<"label"/utf8>>, Class, Attributes, Children). -spec label_( list(lustre@internals@vdom:attribute(RSM)), list(sketch@lustre@element:element(RSM)) ) -> sketch@lustre@element:element(RSM). label_(Attributes, Children) -> sketch@lustre@element:element_(<<"label"/utf8>>, Attributes, Children). -spec legend( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSN)), list(sketch@lustre@element:element(RSN)) ) -> sketch@lustre@element:element(RSN). legend(Class, Attributes, Children) -> sketch@lustre@element:element( <<"legend"/utf8>>, Class, Attributes, Children ). -spec legend_( list(lustre@internals@vdom:attribute(RSO)), list(sketch@lustre@element:element(RSO)) ) -> sketch@lustre@element:element(RSO). legend_(Attributes, Children) -> sketch@lustre@element:element_(<<"legend"/utf8>>, Attributes, Children). -spec li( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSP)), list(sketch@lustre@element:element(RSP)) ) -> sketch@lustre@element:element(RSP). li(Class, Attributes, Children) -> sketch@lustre@element:element(<<"li"/utf8>>, Class, Attributes, Children). -spec li_( list(lustre@internals@vdom:attribute(RSQ)), list(sketch@lustre@element:element(RSQ)) ) -> sketch@lustre@element:element(RSQ). li_(Attributes, Children) -> sketch@lustre@element:element_(<<"li"/utf8>>, Attributes, Children). -spec main( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSR)), list(sketch@lustre@element:element(RSR)) ) -> sketch@lustre@element:element(RSR). main(Class, Attributes, Children) -> sketch@lustre@element:element(<<"main"/utf8>>, Class, Attributes, Children). -spec main_( list(lustre@internals@vdom:attribute(RSS)), list(sketch@lustre@element:element(RSS)) ) -> sketch@lustre@element:element(RSS). main_(Attributes, Children) -> sketch@lustre@element:element_(<<"main"/utf8>>, Attributes, Children). -spec map( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RST)), list(sketch@lustre@element:element(RST)) ) -> sketch@lustre@element:element(RST). map(Class, Attributes, Children) -> sketch@lustre@element:element(<<"map"/utf8>>, Class, Attributes, Children). -spec map_( list(lustre@internals@vdom:attribute(RSU)), list(sketch@lustre@element:element(RSU)) ) -> sketch@lustre@element:element(RSU). map_(Attributes, Children) -> sketch@lustre@element:element_(<<"map"/utf8>>, Attributes, Children). -spec mark( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSV)), list(sketch@lustre@element:element(RSV)) ) -> sketch@lustre@element:element(RSV). mark(Class, Attributes, Children) -> sketch@lustre@element:element(<<"mark"/utf8>>, Class, Attributes, Children). -spec mark_( list(lustre@internals@vdom:attribute(RSW)), list(sketch@lustre@element:element(RSW)) ) -> sketch@lustre@element:element(RSW). mark_(Attributes, Children) -> sketch@lustre@element:element_(<<"mark"/utf8>>, Attributes, Children). -spec math( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSX)), list(sketch@lustre@element:element(RSX)) ) -> sketch@lustre@element:element(RSX). math(Class, Attributes, Children) -> sketch@lustre@element:element(<<"math"/utf8>>, Class, Attributes, Children). -spec math_( list(lustre@internals@vdom:attribute(RSY)), list(sketch@lustre@element:element(RSY)) ) -> sketch@lustre@element:element(RSY). math_(Attributes, Children) -> sketch@lustre@element:element_(<<"math"/utf8>>, Attributes, Children). -spec menu( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RSZ)), list(sketch@lustre@element:element(RSZ)) ) -> sketch@lustre@element:element(RSZ). menu(Class, Attributes, Children) -> sketch@lustre@element:element(<<"menu"/utf8>>, Class, Attributes, Children). -spec menu_( list(lustre@internals@vdom:attribute(RTA)), list(sketch@lustre@element:element(RTA)) ) -> sketch@lustre@element:element(RTA). menu_(Attributes, Children) -> sketch@lustre@element:element_(<<"menu"/utf8>>, Attributes, Children). -spec meter( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTB)), list(sketch@lustre@element:element(RTB)) ) -> sketch@lustre@element:element(RTB). meter(Class, Attributes, Children) -> sketch@lustre@element:element(<<"meter"/utf8>>, Class, Attributes, Children). -spec meter_( list(lustre@internals@vdom:attribute(RTC)), list(sketch@lustre@element:element(RTC)) ) -> sketch@lustre@element:element(RTC). meter_(Attributes, Children) -> sketch@lustre@element:element_(<<"meter"/utf8>>, Attributes, Children). -spec nav( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTD)), list(sketch@lustre@element:element(RTD)) ) -> sketch@lustre@element:element(RTD). nav(Class, Attributes, Children) -> sketch@lustre@element:element(<<"nav"/utf8>>, Class, Attributes, Children). -spec nav_( list(lustre@internals@vdom:attribute(RTE)), list(sketch@lustre@element:element(RTE)) ) -> sketch@lustre@element:element(RTE). nav_(Attributes, Children) -> sketch@lustre@element:element_(<<"nav"/utf8>>, Attributes, Children). -spec noscript( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTF)), list(sketch@lustre@element:element(RTF)) ) -> sketch@lustre@element:element(RTF). noscript(Class, Attributes, Children) -> sketch@lustre@element:element( <<"noscript"/utf8>>, Class, Attributes, Children ). -spec noscript_( list(lustre@internals@vdom:attribute(RTG)), list(sketch@lustre@element:element(RTG)) ) -> sketch@lustre@element:element(RTG). noscript_(Attributes, Children) -> sketch@lustre@element:element_(<<"noscript"/utf8>>, Attributes, Children). -spec object( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTH)), list(sketch@lustre@element:element(RTH)) ) -> sketch@lustre@element:element(RTH). object(Class, Attributes, Children) -> sketch@lustre@element:element( <<"object"/utf8>>, Class, Attributes, Children ). -spec object_( list(lustre@internals@vdom:attribute(RTI)), list(sketch@lustre@element:element(RTI)) ) -> sketch@lustre@element:element(RTI). object_(Attributes, Children) -> sketch@lustre@element:element_(<<"object"/utf8>>, Attributes, Children). -spec ol( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTJ)), list(sketch@lustre@element:element(RTJ)) ) -> sketch@lustre@element:element(RTJ). ol(Class, Attributes, Children) -> sketch@lustre@element:element(<<"ol"/utf8>>, Class, Attributes, Children). -spec ol_( list(lustre@internals@vdom:attribute(RTK)), list(sketch@lustre@element:element(RTK)) ) -> sketch@lustre@element:element(RTK). ol_(Attributes, Children) -> sketch@lustre@element:element_(<<"ol"/utf8>>, Attributes, Children). -spec optgroup( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTL)), list(sketch@lustre@element:element(RTL)) ) -> sketch@lustre@element:element(RTL). optgroup(Class, Attributes, Children) -> sketch@lustre@element:element( <<"optgroup"/utf8>>, Class, Attributes, Children ). -spec optgroup_( list(lustre@internals@vdom:attribute(RTM)), list(sketch@lustre@element:element(RTM)) ) -> sketch@lustre@element:element(RTM). optgroup_(Attributes, Children) -> sketch@lustre@element:element_(<<"optgroup"/utf8>>, Attributes, Children). -spec option( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTN)), list(sketch@lustre@element:element(RTN)) ) -> sketch@lustre@element:element(RTN). option(Class, Attributes, Children) -> sketch@lustre@element:element( <<"option"/utf8>>, Class, Attributes, Children ). -spec option_( list(lustre@internals@vdom:attribute(RTO)), list(sketch@lustre@element:element(RTO)) ) -> sketch@lustre@element:element(RTO). option_(Attributes, Children) -> sketch@lustre@element:element_(<<"option"/utf8>>, Attributes, Children). -spec output( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTP)), list(sketch@lustre@element:element(RTP)) ) -> sketch@lustre@element:element(RTP). output(Class, Attributes, Children) -> sketch@lustre@element:element( <<"output"/utf8>>, Class, Attributes, Children ). -spec output_( list(lustre@internals@vdom:attribute(RTQ)), list(sketch@lustre@element:element(RTQ)) ) -> sketch@lustre@element:element(RTQ). output_(Attributes, Children) -> sketch@lustre@element:element_(<<"output"/utf8>>, Attributes, Children). -spec p( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTR)), list(sketch@lustre@element:element(RTR)) ) -> sketch@lustre@element:element(RTR). p(Class, Attributes, Children) -> sketch@lustre@element:element(<<"p"/utf8>>, Class, Attributes, Children). -spec p_( list(lustre@internals@vdom:attribute(RTS)), list(sketch@lustre@element:element(RTS)) ) -> sketch@lustre@element:element(RTS). p_(Attributes, Children) -> sketch@lustre@element:element_(<<"p"/utf8>>, Attributes, Children). -spec picture( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTT)), list(sketch@lustre@element:element(RTT)) ) -> sketch@lustre@element:element(RTT). picture(Class, Attributes, Children) -> sketch@lustre@element:element( <<"picture"/utf8>>, Class, Attributes, Children ). -spec picture_( list(lustre@internals@vdom:attribute(RTU)), list(sketch@lustre@element:element(RTU)) ) -> sketch@lustre@element:element(RTU). picture_(Attributes, Children) -> sketch@lustre@element:element_(<<"picture"/utf8>>, Attributes, Children). -spec portal( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTV)), list(sketch@lustre@element:element(RTV)) ) -> sketch@lustre@element:element(RTV). portal(Class, Attributes, Children) -> sketch@lustre@element:element( <<"portal"/utf8>>, Class, Attributes, Children ). -spec portal_( list(lustre@internals@vdom:attribute(RTW)), list(sketch@lustre@element:element(RTW)) ) -> sketch@lustre@element:element(RTW). portal_(Attributes, Children) -> sketch@lustre@element:element_(<<"portal"/utf8>>, Attributes, Children). -spec pre( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTX)), list(sketch@lustre@element:element(RTX)) ) -> sketch@lustre@element:element(RTX). pre(Class, Attributes, Children) -> sketch@lustre@element:element(<<"pre"/utf8>>, Class, Attributes, Children). -spec pre_( list(lustre@internals@vdom:attribute(RTY)), list(sketch@lustre@element:element(RTY)) ) -> sketch@lustre@element:element(RTY). pre_(Attributes, Children) -> sketch@lustre@element:element_(<<"pre"/utf8>>, Attributes, Children). -spec progress( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RTZ)), list(sketch@lustre@element:element(RTZ)) ) -> sketch@lustre@element:element(RTZ). progress(Class, Attributes, Children) -> sketch@lustre@element:element( <<"progress"/utf8>>, Class, Attributes, Children ). -spec progress_( list(lustre@internals@vdom:attribute(RUA)), list(sketch@lustre@element:element(RUA)) ) -> sketch@lustre@element:element(RUA). progress_(Attributes, Children) -> sketch@lustre@element:element_(<<"progress"/utf8>>, Attributes, Children). -spec q( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUB)), list(sketch@lustre@element:element(RUB)) ) -> sketch@lustre@element:element(RUB). q(Class, Attributes, Children) -> sketch@lustre@element:element(<<"q"/utf8>>, Class, Attributes, Children). -spec q_( list(lustre@internals@vdom:attribute(RUC)), list(sketch@lustre@element:element(RUC)) ) -> sketch@lustre@element:element(RUC). q_(Attributes, Children) -> sketch@lustre@element:element_(<<"q"/utf8>>, Attributes, Children). -spec rp( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUD)), list(sketch@lustre@element:element(RUD)) ) -> sketch@lustre@element:element(RUD). rp(Class, Attributes, Children) -> sketch@lustre@element:element(<<"rp"/utf8>>, Class, Attributes, Children). -spec rp_( list(lustre@internals@vdom:attribute(RUE)), list(sketch@lustre@element:element(RUE)) ) -> sketch@lustre@element:element(RUE). rp_(Attributes, Children) -> sketch@lustre@element:element_(<<"rp"/utf8>>, Attributes, Children). -spec rt( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUF)), list(sketch@lustre@element:element(RUF)) ) -> sketch@lustre@element:element(RUF). rt(Class, Attributes, Children) -> sketch@lustre@element:element(<<"rt"/utf8>>, Class, Attributes, Children). -spec rt_( list(lustre@internals@vdom:attribute(RUG)), list(sketch@lustre@element:element(RUG)) ) -> sketch@lustre@element:element(RUG). rt_(Attributes, Children) -> sketch@lustre@element:element_(<<"rt"/utf8>>, Attributes, Children). -spec ruby( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUH)), list(sketch@lustre@element:element(RUH)) ) -> sketch@lustre@element:element(RUH). ruby(Class, Attributes, Children) -> sketch@lustre@element:element(<<"ruby"/utf8>>, Class, Attributes, Children). -spec ruby_( list(lustre@internals@vdom:attribute(RUI)), list(sketch@lustre@element:element(RUI)) ) -> sketch@lustre@element:element(RUI). ruby_(Attributes, Children) -> sketch@lustre@element:element_(<<"ruby"/utf8>>, Attributes, Children). -spec s( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUJ)), list(sketch@lustre@element:element(RUJ)) ) -> sketch@lustre@element:element(RUJ). s(Class, Attributes, Children) -> sketch@lustre@element:element(<<"s"/utf8>>, Class, Attributes, Children). -spec s_( list(lustre@internals@vdom:attribute(RUK)), list(sketch@lustre@element:element(RUK)) ) -> sketch@lustre@element:element(RUK). s_(Attributes, Children) -> sketch@lustre@element:element_(<<"s"/utf8>>, Attributes, Children). -spec samp( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUL)), list(sketch@lustre@element:element(RUL)) ) -> sketch@lustre@element:element(RUL). samp(Class, Attributes, Children) -> sketch@lustre@element:element(<<"samp"/utf8>>, Class, Attributes, Children). -spec samp_( list(lustre@internals@vdom:attribute(RUM)), list(sketch@lustre@element:element(RUM)) ) -> sketch@lustre@element:element(RUM). samp_(Attributes, Children) -> sketch@lustre@element:element_(<<"samp"/utf8>>, Attributes, Children). -spec script( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUN)), list(sketch@lustre@element:element(RUN)) ) -> sketch@lustre@element:element(RUN). script(Class, Attributes, Children) -> sketch@lustre@element:element( <<"script"/utf8>>, Class, Attributes, Children ). -spec script_( list(lustre@internals@vdom:attribute(RUO)), list(sketch@lustre@element:element(RUO)) ) -> sketch@lustre@element:element(RUO). script_(Attributes, Children) -> sketch@lustre@element:element_(<<"script"/utf8>>, Attributes, Children). -spec search( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUP)), list(sketch@lustre@element:element(RUP)) ) -> sketch@lustre@element:element(RUP). search(Class, Attributes, Children) -> sketch@lustre@element:element( <<"search"/utf8>>, Class, Attributes, Children ). -spec search_( list(lustre@internals@vdom:attribute(RUQ)), list(sketch@lustre@element:element(RUQ)) ) -> sketch@lustre@element:element(RUQ). search_(Attributes, Children) -> sketch@lustre@element:element_(<<"search"/utf8>>, Attributes, Children). -spec section( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUR)), list(sketch@lustre@element:element(RUR)) ) -> sketch@lustre@element:element(RUR). section(Class, Attributes, Children) -> sketch@lustre@element:element( <<"section"/utf8>>, Class, Attributes, Children ). -spec section_( list(lustre@internals@vdom:attribute(RUS)), list(sketch@lustre@element:element(RUS)) ) -> sketch@lustre@element:element(RUS). section_(Attributes, Children) -> sketch@lustre@element:element_(<<"section"/utf8>>, Attributes, Children). -spec select( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUT)), list(sketch@lustre@element:element(RUT)) ) -> sketch@lustre@element:element(RUT). select(Class, Attributes, Children) -> sketch@lustre@element:element( <<"select"/utf8>>, Class, Attributes, Children ). -spec select_( list(lustre@internals@vdom:attribute(RUU)), list(sketch@lustre@element:element(RUU)) ) -> sketch@lustre@element:element(RUU). select_(Attributes, Children) -> sketch@lustre@element:element_(<<"select"/utf8>>, Attributes, Children). -spec slot( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUV)), list(sketch@lustre@element:element(RUV)) ) -> sketch@lustre@element:element(RUV). slot(Class, Attributes, Children) -> sketch@lustre@element:element(<<"slot"/utf8>>, Class, Attributes, Children). -spec slot_( list(lustre@internals@vdom:attribute(RUW)), list(sketch@lustre@element:element(RUW)) ) -> sketch@lustre@element:element(RUW). slot_(Attributes, Children) -> sketch@lustre@element:element_(<<"slot"/utf8>>, Attributes, Children). -spec small( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUX)), list(sketch@lustre@element:element(RUX)) ) -> sketch@lustre@element:element(RUX). small(Class, Attributes, Children) -> sketch@lustre@element:element(<<"small"/utf8>>, Class, Attributes, Children). -spec small_( list(lustre@internals@vdom:attribute(RUY)), list(sketch@lustre@element:element(RUY)) ) -> sketch@lustre@element:element(RUY). small_(Attributes, Children) -> sketch@lustre@element:element_(<<"small"/utf8>>, Attributes, Children). -spec source( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RUZ)) ) -> sketch@lustre@element:element(RUZ). source(Class, Attributes) -> sketch@lustre@element:element(<<"source"/utf8>>, Class, Attributes, []). -spec source_(list(lustre@internals@vdom:attribute(RVB))) -> sketch@lustre@element:element(RVB). source_(Attributes) -> sketch@lustre@element:element_(<<"source"/utf8>>, Attributes, []). -spec span( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVD)), list(sketch@lustre@element:element(RVD)) ) -> sketch@lustre@element:element(RVD). span(Class, Attributes, Children) -> sketch@lustre@element:element(<<"span"/utf8>>, Class, Attributes, Children). -spec span_( list(lustre@internals@vdom:attribute(RVE)), list(sketch@lustre@element:element(RVE)) ) -> sketch@lustre@element:element(RVE). span_(Attributes, Children) -> sketch@lustre@element:element_(<<"span"/utf8>>, Attributes, Children). -spec strong( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVF)), list(sketch@lustre@element:element(RVF)) ) -> sketch@lustre@element:element(RVF). strong(Class, Attributes, Children) -> sketch@lustre@element:element( <<"strong"/utf8>>, Class, Attributes, Children ). -spec strong_( list(lustre@internals@vdom:attribute(RVG)), list(sketch@lustre@element:element(RVG)) ) -> sketch@lustre@element:element(RVG). strong_(Attributes, Children) -> sketch@lustre@element:element_(<<"strong"/utf8>>, Attributes, Children). -spec sub( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVH)), list(sketch@lustre@element:element(RVH)) ) -> sketch@lustre@element:element(RVH). sub(Class, Attributes, Children) -> sketch@lustre@element:element(<<"sub"/utf8>>, Class, Attributes, Children). -spec sub_( list(lustre@internals@vdom:attribute(RVI)), list(sketch@lustre@element:element(RVI)) ) -> sketch@lustre@element:element(RVI). sub_(Attributes, Children) -> sketch@lustre@element:element_(<<"sub"/utf8>>, Attributes, Children). -spec summary( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVJ)), list(sketch@lustre@element:element(RVJ)) ) -> sketch@lustre@element:element(RVJ). summary(Class, Attributes, Children) -> sketch@lustre@element:element( <<"summary"/utf8>>, Class, Attributes, Children ). -spec summary_( list(lustre@internals@vdom:attribute(RVK)), list(sketch@lustre@element:element(RVK)) ) -> sketch@lustre@element:element(RVK). summary_(Attributes, Children) -> sketch@lustre@element:element_(<<"summary"/utf8>>, Attributes, Children). -spec sup( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVL)), list(sketch@lustre@element:element(RVL)) ) -> sketch@lustre@element:element(RVL). sup(Class, Attributes, Children) -> sketch@lustre@element:element(<<"sup"/utf8>>, Class, Attributes, Children). -spec sup_( list(lustre@internals@vdom:attribute(RVM)), list(sketch@lustre@element:element(RVM)) ) -> sketch@lustre@element:element(RVM). sup_(Attributes, Children) -> sketch@lustre@element:element_(<<"sup"/utf8>>, Attributes, Children). -spec svg( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVN)), list(sketch@lustre@element:element(RVN)) ) -> sketch@lustre@element:element(RVN). svg(Class, Attributes, Children) -> sketch@lustre@element:element(<<"svg"/utf8>>, Class, Attributes, Children). -spec svg_( list(lustre@internals@vdom:attribute(RVO)), list(sketch@lustre@element:element(RVO)) ) -> sketch@lustre@element:element(RVO). svg_(Attributes, Children) -> sketch@lustre@element:element_(<<"svg"/utf8>>, Attributes, Children). -spec table( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVP)), list(sketch@lustre@element:element(RVP)) ) -> sketch@lustre@element:element(RVP). table(Class, Attributes, Children) -> sketch@lustre@element:element(<<"table"/utf8>>, Class, Attributes, Children). -spec table_( list(lustre@internals@vdom:attribute(RVQ)), list(sketch@lustre@element:element(RVQ)) ) -> sketch@lustre@element:element(RVQ). table_(Attributes, Children) -> sketch@lustre@element:element_(<<"table"/utf8>>, Attributes, Children). -spec tbody( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVR)), list(sketch@lustre@element:element(RVR)) ) -> sketch@lustre@element:element(RVR). tbody(Class, Attributes, Children) -> sketch@lustre@element:element(<<"tbody"/utf8>>, Class, Attributes, Children). -spec tbody_( list(lustre@internals@vdom:attribute(RVS)), list(sketch@lustre@element:element(RVS)) ) -> sketch@lustre@element:element(RVS). tbody_(Attributes, Children) -> sketch@lustre@element:element_(<<"tbody"/utf8>>, Attributes, Children). -spec td( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVT)), list(sketch@lustre@element:element(RVT)) ) -> sketch@lustre@element:element(RVT). td(Class, Attributes, Children) -> sketch@lustre@element:element(<<"td"/utf8>>, Class, Attributes, Children). -spec td_( list(lustre@internals@vdom:attribute(RVU)), list(sketch@lustre@element:element(RVU)) ) -> sketch@lustre@element:element(RVU). td_(Attributes, Children) -> sketch@lustre@element:element_(<<"td"/utf8>>, Attributes, Children). -spec template( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVV)), list(sketch@lustre@element:element(RVV)) ) -> sketch@lustre@element:element(RVV). template(Class, Attributes, Children) -> sketch@lustre@element:element( <<"template"/utf8>>, Class, Attributes, Children ). -spec template_( list(lustre@internals@vdom:attribute(RVW)), list(sketch@lustre@element:element(RVW)) ) -> sketch@lustre@element:element(RVW). template_(Attributes, Children) -> sketch@lustre@element:element_(<<"template"/utf8>>, Attributes, Children). -spec textarea( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVX)), list(sketch@lustre@element:element(RVX)) ) -> sketch@lustre@element:element(RVX). textarea(Class, Attributes, Children) -> sketch@lustre@element:element( <<"textarea"/utf8>>, Class, Attributes, Children ). -spec textarea_( list(lustre@internals@vdom:attribute(RVY)), list(sketch@lustre@element:element(RVY)) ) -> sketch@lustre@element:element(RVY). textarea_(Attributes, Children) -> sketch@lustre@element:element_(<<"textarea"/utf8>>, Attributes, Children). -spec tfoot( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RVZ)), list(sketch@lustre@element:element(RVZ)) ) -> sketch@lustre@element:element(RVZ). tfoot(Class, Attributes, Children) -> sketch@lustre@element:element(<<"tfoot"/utf8>>, Class, Attributes, Children). -spec tfoot_( list(lustre@internals@vdom:attribute(RWA)), list(sketch@lustre@element:element(RWA)) ) -> sketch@lustre@element:element(RWA). tfoot_(Attributes, Children) -> sketch@lustre@element:element_(<<"tfoot"/utf8>>, Attributes, Children). -spec th( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWB)), list(sketch@lustre@element:element(RWB)) ) -> sketch@lustre@element:element(RWB). th(Class, Attributes, Children) -> sketch@lustre@element:element(<<"th"/utf8>>, Class, Attributes, Children). -spec th_( list(lustre@internals@vdom:attribute(RWC)), list(sketch@lustre@element:element(RWC)) ) -> sketch@lustre@element:element(RWC). th_(Attributes, Children) -> sketch@lustre@element:element_(<<"th"/utf8>>, Attributes, Children). -spec thead( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWD)), list(sketch@lustre@element:element(RWD)) ) -> sketch@lustre@element:element(RWD). thead(Class, Attributes, Children) -> sketch@lustre@element:element(<<"thead"/utf8>>, Class, Attributes, Children). -spec thead_( list(lustre@internals@vdom:attribute(RWE)), list(sketch@lustre@element:element(RWE)) ) -> sketch@lustre@element:element(RWE). thead_(Attributes, Children) -> sketch@lustre@element:element_(<<"thead"/utf8>>, Attributes, Children). -spec time( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWF)), list(sketch@lustre@element:element(RWF)) ) -> sketch@lustre@element:element(RWF). time(Class, Attributes, Children) -> sketch@lustre@element:element(<<"time"/utf8>>, Class, Attributes, Children). -spec time_( list(lustre@internals@vdom:attribute(RWG)), list(sketch@lustre@element:element(RWG)) ) -> sketch@lustre@element:element(RWG). time_(Attributes, Children) -> sketch@lustre@element:element_(<<"time"/utf8>>, Attributes, Children). -spec tr( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWH)), list(sketch@lustre@element:element(RWH)) ) -> sketch@lustre@element:element(RWH). tr(Class, Attributes, Children) -> sketch@lustre@element:element(<<"tr"/utf8>>, Class, Attributes, Children). -spec tr_( list(lustre@internals@vdom:attribute(RWI)), list(sketch@lustre@element:element(RWI)) ) -> sketch@lustre@element:element(RWI). tr_(Attributes, Children) -> sketch@lustre@element:element_(<<"tr"/utf8>>, Attributes, Children). -spec track( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWJ)) ) -> sketch@lustre@element:element(RWJ). track(Class, Attributes) -> sketch@lustre@element:element(<<"track"/utf8>>, Class, Attributes, []). -spec track_(list(lustre@internals@vdom:attribute(RWL))) -> sketch@lustre@element:element(RWL). track_(Attributes) -> sketch@lustre@element:element_(<<"track"/utf8>>, Attributes, []). -spec u( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWN)), list(sketch@lustre@element:element(RWN)) ) -> sketch@lustre@element:element(RWN). u(Class, Attributes, Children) -> sketch@lustre@element:element(<<"u"/utf8>>, Class, Attributes, Children). -spec u_( list(lustre@internals@vdom:attribute(RWO)), list(sketch@lustre@element:element(RWO)) ) -> sketch@lustre@element:element(RWO). u_(Attributes, Children) -> sketch@lustre@element:element_(<<"u"/utf8>>, Attributes, Children). -spec ul( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWP)), list(sketch@lustre@element:element(RWP)) ) -> sketch@lustre@element:element(RWP). ul(Class, Attributes, Children) -> sketch@lustre@element:element(<<"ul"/utf8>>, Class, Attributes, Children). -spec ul_( list(lustre@internals@vdom:attribute(RWQ)), list(sketch@lustre@element:element(RWQ)) ) -> sketch@lustre@element:element(RWQ). ul_(Attributes, Children) -> sketch@lustre@element:element_(<<"ul"/utf8>>, Attributes, Children). -spec var( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWR)), list(sketch@lustre@element:element(RWR)) ) -> sketch@lustre@element:element(RWR). var(Class, Attributes, Children) -> sketch@lustre@element:element(<<"var"/utf8>>, Class, Attributes, Children). -spec var_( list(lustre@internals@vdom:attribute(RWS)), list(sketch@lustre@element:element(RWS)) ) -> sketch@lustre@element:element(RWS). var_(Attributes, Children) -> sketch@lustre@element:element_(<<"var"/utf8>>, Attributes, Children). -spec video( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWT)), list(sketch@lustre@element:element(RWT)) ) -> sketch@lustre@element:element(RWT). video(Class, Attributes, Children) -> sketch@lustre@element:element(<<"video"/utf8>>, Class, Attributes, Children). -spec video_( list(lustre@internals@vdom:attribute(RWU)), list(sketch@lustre@element:element(RWU)) ) -> sketch@lustre@element:element(RWU). video_(Attributes, Children) -> sketch@lustre@element:element_(<<"video"/utf8>>, Attributes, Children). -spec wbr( sketch@internals@style:class(), list(lustre@internals@vdom:attribute(RWV)) ) -> sketch@lustre@element:element(RWV). wbr(Class, Attributes) -> sketch@lustre@element:element(<<"wbr"/utf8>>, Class, Attributes, []). -spec wbr_(list(lustre@internals@vdom:attribute(RWX))) -> sketch@lustre@element:element(RWX). wbr_(Attributes) -> sketch@lustre@element:element_(<<"wbr"/utf8>>, Attributes, []).