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