Current section

Files

Jump to
lustre src lustre@element.erl
Raw

src/lustre@element.erl

-module(lustre@element).
-compile([no_auto_import, nowarn_unused_vars]).
-export([node/3, html/3, base/1, head/2, meta/1, body/2, address/2, article/2, aside/2, footer/2, header/2, h1/2, h2/2, h3/2, h4/2, h5/2, h6/2, main/2, nav/2, section/2, blockquote/2, dd/2, 'div'/2, dl/2, dt/2, figcaption/2, figure/2, hr/1, li/2, menu/2, ol/2, p/2, pre/2, ul/2, a/2, abbr/2, b/2, bdi/2, bdo/2, br/1, cite/2, code/2, dfn/2, em/2, i/2, kbd/2, mark/2, rp/2, rt/2, ruby/2, s/2, samp/2, small/2, span/2, strong/2, sub/2, sup/2, time/2, u/2, var_/2, wbr/1, area/1, audio/2, img/1, map_/2, track/2, video/2, embed/1, iframe/1, object/2, param/2, picture/2, portal/1, source/1, svg/2, mathml/2, canvas/2, noscript/2, del/2, ins/2, caption/2, col/2, colgroup/2, table/2, tbody/2, td/2, tfoot/2, th/2, thead/2, tr/2, button/2, datalist/2, fieldset/2, form/2, input/1, label/2, legend/2, meter/2, optgroup/2, option/2, output/2, progress/2, select/2, textarea/1, details/2, dialog/2, summary/2, slot/2, template/2, stateful/2, fragment/1, text/1, style/2, title/2, map/2]).
-export_type([element/1]).
-type element(Msg) :: any() | {gleam_phantom, Msg}.
-spec node(binary(), list(lustre@attribute:attribute(FZM)), list(element(FZM))) -> element(FZM).
node(Field@0, Field@1, Field@2) ->
'../ffi.mjs':node(Field@0, Field@1, Field@2).
-spec html(list(lustre@attribute:attribute(FBG)), element(FBG), element(FBG)) -> element(FBG).
html(Attrs, Head, Body) ->
'..@ffi.mjs':node(<<"html"/utf8>>, Attrs, [Head, Body]).
-spec base(list(lustre@attribute:attribute(FBM))) -> element(FBM).
base(Attrs) ->
'..@ffi.mjs':node(<<"base"/utf8>>, Attrs, []).
-spec head(list(lustre@attribute:attribute(FBQ)), list(element(FBQ))) -> element(FBQ).
head(Attrs, Children) ->
'..@ffi.mjs':node(<<"head"/utf8>>, Attrs, Children).
-spec meta(list(lustre@attribute:attribute(FBW))) -> element(FBW).
meta(Attrs) ->
'..@ffi.mjs':node(<<"meta"/utf8>>, Attrs, []).
-spec body(list(lustre@attribute:attribute(FCI)), list(element(FCI))) -> element(FCI).
body(Attrs, Children) ->
'..@ffi.mjs':node(<<"body"/utf8>>, Attrs, Children).
-spec address(list(lustre@attribute:attribute(FCO)), list(element(FCO))) -> element(FCO).
address(Attrs, Children) ->
'..@ffi.mjs':node(<<"address"/utf8>>, Attrs, Children).
-spec article(list(lustre@attribute:attribute(FCU)), list(element(FCU))) -> element(FCU).
article(Attrs, Children) ->
'..@ffi.mjs':node(<<"article"/utf8>>, Attrs, Children).
-spec aside(list(lustre@attribute:attribute(FDA)), list(element(FDA))) -> element(FDA).
aside(Attrs, Children) ->
'..@ffi.mjs':node(<<"aside"/utf8>>, Attrs, Children).
-spec footer(list(lustre@attribute:attribute(FDG)), list(element(FDG))) -> element(FDG).
footer(Attrs, Children) ->
'..@ffi.mjs':node(<<"footer"/utf8>>, Attrs, Children).
-spec header(list(lustre@attribute:attribute(FDM)), list(element(FDM))) -> element(FDM).
header(Attrs, Children) ->
'..@ffi.mjs':node(<<"header"/utf8>>, Attrs, Children).
-spec h1(list(lustre@attribute:attribute(FDS)), list(element(FDS))) -> element(FDS).
h1(Attrs, Children) ->
'..@ffi.mjs':node(<<"h1"/utf8>>, Attrs, Children).
-spec h2(list(lustre@attribute:attribute(FDY)), list(element(FDY))) -> element(FDY).
h2(Attrs, Children) ->
'..@ffi.mjs':node(<<"h2"/utf8>>, Attrs, Children).
-spec h3(list(lustre@attribute:attribute(FEE)), list(element(FEE))) -> element(FEE).
h3(Attrs, Children) ->
'..@ffi.mjs':node(<<"h3"/utf8>>, Attrs, Children).
-spec h4(list(lustre@attribute:attribute(FEK)), list(element(FEK))) -> element(FEK).
h4(Attrs, Children) ->
'..@ffi.mjs':node(<<"h4"/utf8>>, Attrs, Children).
-spec h5(list(lustre@attribute:attribute(FEQ)), list(element(FEQ))) -> element(FEQ).
h5(Attrs, Children) ->
'..@ffi.mjs':node(<<"h5"/utf8>>, Attrs, Children).
-spec h6(list(lustre@attribute:attribute(FEW)), list(element(FEW))) -> element(FEW).
h6(Attrs, Children) ->
'..@ffi.mjs':node(<<"h6"/utf8>>, Attrs, Children).
-spec main(list(lustre@attribute:attribute(FFC)), list(element(FFC))) -> element(FFC).
main(Attrs, Children) ->
'..@ffi.mjs':node(<<"main"/utf8>>, Attrs, Children).
-spec nav(list(lustre@attribute:attribute(FFI)), list(element(FFI))) -> element(FFI).
nav(Attrs, Children) ->
'..@ffi.mjs':node(<<"nav"/utf8>>, Attrs, Children).
-spec section(list(lustre@attribute:attribute(FFO)), list(element(FFO))) -> element(FFO).
section(Attrs, Children) ->
'..@ffi.mjs':node(<<"section"/utf8>>, Attrs, Children).
-spec blockquote(list(lustre@attribute:attribute(FFU)), list(element(FFU))) -> element(FFU).
blockquote(Attrs, Children) ->
'..@ffi.mjs':node(<<"blockquote"/utf8>>, Attrs, Children).
-spec dd(list(lustre@attribute:attribute(FGA)), list(element(FGA))) -> element(FGA).
dd(Attrs, Children) ->
'..@ffi.mjs':node(<<"dd"/utf8>>, Attrs, Children).
-spec 'div'(list(lustre@attribute:attribute(FGG)), list(element(FGG))) -> element(FGG).
'div'(Attrs, Children) ->
'..@ffi.mjs':node(<<"div"/utf8>>, Attrs, Children).
-spec dl(list(lustre@attribute:attribute(FGM)), list(element(FGM))) -> element(FGM).
dl(Attrs, Children) ->
'..@ffi.mjs':node(<<"dl"/utf8>>, Attrs, Children).
-spec dt(list(lustre@attribute:attribute(FGS)), list(element(FGS))) -> element(FGS).
dt(Attrs, Children) ->
'..@ffi.mjs':node(<<"dt"/utf8>>, Attrs, Children).
-spec figcaption(list(lustre@attribute:attribute(FGY)), list(element(FGY))) -> element(FGY).
figcaption(Attrs, Children) ->
'..@ffi.mjs':node(<<"figcaption"/utf8>>, Attrs, Children).
-spec figure(list(lustre@attribute:attribute(FHE)), list(element(FHE))) -> element(FHE).
figure(Attrs, Children) ->
'..@ffi.mjs':node(<<"figure"/utf8>>, Attrs, Children).
-spec hr(list(lustre@attribute:attribute(FHK))) -> element(FHK).
hr(Attrs) ->
'..@ffi.mjs':node(<<"hr"/utf8>>, Attrs, []).
-spec li(list(lustre@attribute:attribute(FHO)), list(element(FHO))) -> element(FHO).
li(Attrs, Children) ->
'..@ffi.mjs':node(<<"li"/utf8>>, Attrs, Children).
-spec menu(list(lustre@attribute:attribute(FHU)), list(element(FHU))) -> element(FHU).
menu(Attrs, Children) ->
'..@ffi.mjs':node(<<"menu"/utf8>>, Attrs, Children).
-spec ol(list(lustre@attribute:attribute(FIA)), list(element(FIA))) -> element(FIA).
ol(Attrs, Children) ->
'..@ffi.mjs':node(<<"ol"/utf8>>, Attrs, Children).
-spec p(list(lustre@attribute:attribute(FIG)), list(element(FIG))) -> element(FIG).
p(Attrs, Children) ->
'..@ffi.mjs':node(<<"p"/utf8>>, Attrs, Children).
-spec pre(list(lustre@attribute:attribute(FIM)), list(element(FIM))) -> element(FIM).
pre(Attrs, Children) ->
'..@ffi.mjs':node(<<"pre"/utf8>>, Attrs, Children).
-spec ul(list(lustre@attribute:attribute(FIS)), list(element(FIS))) -> element(FIS).
ul(Attrs, Children) ->
'..@ffi.mjs':node(<<"ul"/utf8>>, Attrs, Children).
-spec a(list(lustre@attribute:attribute(FIY)), list(element(FIY))) -> element(FIY).
a(Attrs, Children) ->
'..@ffi.mjs':node(<<"a"/utf8>>, Attrs, Children).
-spec abbr(list(lustre@attribute:attribute(FJE)), list(element(FJE))) -> element(FJE).
abbr(Attrs, Children) ->
'..@ffi.mjs':node(<<"abbr"/utf8>>, Attrs, Children).
-spec b(list(lustre@attribute:attribute(FJK)), list(element(FJK))) -> element(FJK).
b(Attrs, Children) ->
'..@ffi.mjs':node(<<"b"/utf8>>, Attrs, Children).
-spec bdi(list(lustre@attribute:attribute(FJQ)), list(element(FJQ))) -> element(FJQ).
bdi(Attrs, Children) ->
'..@ffi.mjs':node(<<"bdi"/utf8>>, Attrs, Children).
-spec bdo(list(lustre@attribute:attribute(FJW)), list(element(FJW))) -> element(FJW).
bdo(Attrs, Children) ->
'..@ffi.mjs':node(<<"bdo"/utf8>>, Attrs, Children).
-spec br(list(lustre@attribute:attribute(FKC))) -> element(FKC).
br(Attrs) ->
'..@ffi.mjs':node(<<"br"/utf8>>, Attrs, []).
-spec cite(list(lustre@attribute:attribute(FKG)), list(element(FKG))) -> element(FKG).
cite(Attrs, Children) ->
'..@ffi.mjs':node(<<"cite"/utf8>>, Attrs, Children).
-spec code(list(lustre@attribute:attribute(FKM)), list(element(FKM))) -> element(FKM).
code(Attrs, Children) ->
'..@ffi.mjs':node(<<"code"/utf8>>, Attrs, Children).
-spec dfn(list(lustre@attribute:attribute(FKS)), list(element(FKS))) -> element(FKS).
dfn(Attrs, Children) ->
'..@ffi.mjs':node(<<"dfn"/utf8>>, Attrs, Children).
-spec em(list(lustre@attribute:attribute(FKY)), list(element(FKY))) -> element(FKY).
em(Attrs, Children) ->
'..@ffi.mjs':node(<<"em"/utf8>>, Attrs, Children).
-spec i(list(lustre@attribute:attribute(FLE)), list(element(FLE))) -> element(FLE).
i(Attrs, Children) ->
'..@ffi.mjs':node(<<"i"/utf8>>, Attrs, Children).
-spec kbd(list(lustre@attribute:attribute(FLK)), list(element(FLK))) -> element(FLK).
kbd(Attrs, Children) ->
'..@ffi.mjs':node(<<"kbd"/utf8>>, Attrs, Children).
-spec mark(list(lustre@attribute:attribute(FLQ)), list(element(FLQ))) -> element(FLQ).
mark(Attrs, Children) ->
'..@ffi.mjs':node(<<"mark"/utf8>>, Attrs, Children).
-spec rp(list(lustre@attribute:attribute(FLW)), list(element(FLW))) -> element(FLW).
rp(Attrs, Children) ->
'..@ffi.mjs':node(<<"rp"/utf8>>, Attrs, Children).
-spec rt(list(lustre@attribute:attribute(FMC)), list(element(FMC))) -> element(FMC).
rt(Attrs, Children) ->
'..@ffi.mjs':node(<<"rt"/utf8>>, Attrs, Children).
-spec ruby(list(lustre@attribute:attribute(FMI)), list(element(FMI))) -> element(FMI).
ruby(Attrs, Children) ->
'..@ffi.mjs':node(<<"ruby"/utf8>>, Attrs, Children).
-spec s(list(lustre@attribute:attribute(FMO)), list(element(FMO))) -> element(FMO).
s(Attrs, Children) ->
'..@ffi.mjs':node(<<"s"/utf8>>, Attrs, Children).
-spec samp(list(lustre@attribute:attribute(FMU)), list(element(FMU))) -> element(FMU).
samp(Attrs, Children) ->
'..@ffi.mjs':node(<<"samp"/utf8>>, Attrs, Children).
-spec small(list(lustre@attribute:attribute(FNA)), list(element(FNA))) -> element(FNA).
small(Attrs, Children) ->
'..@ffi.mjs':node(<<"small"/utf8>>, Attrs, Children).
-spec span(list(lustre@attribute:attribute(FNG)), list(element(FNG))) -> element(FNG).
span(Attrs, Children) ->
'..@ffi.mjs':node(<<"span"/utf8>>, Attrs, Children).
-spec strong(list(lustre@attribute:attribute(FNM)), list(element(FNM))) -> element(FNM).
strong(Attrs, Children) ->
'..@ffi.mjs':node(<<"strong"/utf8>>, Attrs, Children).
-spec sub(list(lustre@attribute:attribute(FNS)), list(element(FNS))) -> element(FNS).
sub(Attrs, Children) ->
'..@ffi.mjs':node(<<"sub"/utf8>>, Attrs, Children).
-spec sup(list(lustre@attribute:attribute(FNY)), list(element(FNY))) -> element(FNY).
sup(Attrs, Children) ->
'..@ffi.mjs':node(<<"sup"/utf8>>, Attrs, Children).
-spec time(list(lustre@attribute:attribute(FOE)), list(element(FOE))) -> element(FOE).
time(Attrs, Children) ->
'..@ffi.mjs':node(<<"time"/utf8>>, Attrs, Children).
-spec u(list(lustre@attribute:attribute(FOK)), list(element(FOK))) -> element(FOK).
u(Attrs, Children) ->
'..@ffi.mjs':node(<<"u"/utf8>>, Attrs, Children).
-spec var_(list(lustre@attribute:attribute(FOQ)), list(element(FOQ))) -> element(FOQ).
var_(Attrs, Children) ->
'..@ffi.mjs':node(<<"var"/utf8>>, Attrs, Children).
-spec wbr(list(lustre@attribute:attribute(FOW))) -> element(FOW).
wbr(Attrs) ->
'..@ffi.mjs':node(<<"wbr"/utf8>>, Attrs, []).
-spec area(list(lustre@attribute:attribute(FPA))) -> element(FPA).
area(Attrs) ->
'..@ffi.mjs':node(<<"area"/utf8>>, Attrs, []).
-spec audio(list(lustre@attribute:attribute(FPE)), list(element(FPE))) -> element(FPE).
audio(Attrs, Children) ->
'..@ffi.mjs':node(<<"audio"/utf8>>, Attrs, Children).
-spec img(list(lustre@attribute:attribute(FPK))) -> element(FPK).
img(Attrs) ->
'..@ffi.mjs':node(<<"img"/utf8>>, Attrs, []).
-spec map_(list(lustre@attribute:attribute(FPO)), list(element(FPO))) -> element(FPO).
map_(Attrs, Children) ->
'..@ffi.mjs':node(<<"map"/utf8>>, Attrs, Children).
-spec track(list(lustre@attribute:attribute(FPU)), list(element(FPU))) -> element(FPU).
track(Attrs, Children) ->
'..@ffi.mjs':node(<<"track"/utf8>>, Attrs, Children).
-spec video(list(lustre@attribute:attribute(FQA)), list(element(FQA))) -> element(FQA).
video(Attrs, Children) ->
'..@ffi.mjs':node(<<"video"/utf8>>, Attrs, Children).
-spec embed(list(lustre@attribute:attribute(FQG))) -> element(FQG).
embed(Attrs) ->
'..@ffi.mjs':node(<<"embed"/utf8>>, Attrs, []).
-spec iframe(list(lustre@attribute:attribute(FQK))) -> element(FQK).
iframe(Attrs) ->
'..@ffi.mjs':node(<<"iframe"/utf8>>, Attrs, []).
-spec object(list(lustre@attribute:attribute(FQO)), list(element(FQO))) -> element(FQO).
object(Attrs, Children) ->
'..@ffi.mjs':node(<<"object"/utf8>>, Attrs, Children).
-spec param(list(lustre@attribute:attribute(FQU)), list(element(FQU))) -> element(FQU).
param(Attrs, Children) ->
'..@ffi.mjs':node(<<"param"/utf8>>, Attrs, Children).
-spec picture(list(lustre@attribute:attribute(FRA)), list(element(FRA))) -> element(FRA).
picture(Attrs, Children) ->
'..@ffi.mjs':node(<<"picture"/utf8>>, Attrs, Children).
-spec portal(list(lustre@attribute:attribute(FRG))) -> element(FRG).
portal(Attrs) ->
'..@ffi.mjs':node(<<"portal"/utf8>>, Attrs, []).
-spec source(list(lustre@attribute:attribute(FRK))) -> element(FRK).
source(Attrs) ->
'..@ffi.mjs':node(<<"source"/utf8>>, Attrs, []).
-spec svg(list(lustre@attribute:attribute(FRO)), list(element(FRO))) -> element(FRO).
svg(Attrs, Children) ->
'..@ffi.mjs':node(
<<"svg"/utf8>>,
[lustre@attribute:attribute(
<<"xmlns"/utf8>>,
<<"http://www.w3.org/2000/svg"/utf8>>
) |
Attrs],
Children
).
-spec mathml(list(lustre@attribute:attribute(FRU)), list(element(FRU))) -> element(FRU).
mathml(Attrs, Children) ->
'..@ffi.mjs':node(
<<"mathml"/utf8>>,
[lustre@attribute:attribute(
<<"xmlns"/utf8>>,
<<"http://www.w3.org/1998/Math/MathML"/utf8>>
) |
Attrs],
Children
).
-spec canvas(list(lustre@attribute:attribute(FSA)), list(element(FSA))) -> element(FSA).
canvas(Attrs, Children) ->
'..@ffi.mjs':node(<<"canvas"/utf8>>, Attrs, Children).
-spec noscript(list(lustre@attribute:attribute(FSG)), list(element(FSG))) -> element(FSG).
noscript(Attrs, Children) ->
'..@ffi.mjs':node(<<"noscript"/utf8>>, Attrs, Children).
-spec del(list(lustre@attribute:attribute(FSM)), list(element(FSM))) -> element(FSM).
del(Attrs, Children) ->
'..@ffi.mjs':node(<<"del"/utf8>>, Attrs, Children).
-spec ins(list(lustre@attribute:attribute(FSS)), list(element(FSS))) -> element(FSS).
ins(Attrs, Children) ->
'..@ffi.mjs':node(<<"ins"/utf8>>, Attrs, Children).
-spec caption(list(lustre@attribute:attribute(FSY)), list(element(FSY))) -> element(FSY).
caption(Attrs, Children) ->
'..@ffi.mjs':node(<<"caption"/utf8>>, Attrs, Children).
-spec col(list(lustre@attribute:attribute(FTE)), list(element(FTE))) -> element(FTE).
col(Attrs, Children) ->
'..@ffi.mjs':node(<<"col"/utf8>>, Attrs, Children).
-spec colgroup(list(lustre@attribute:attribute(FTK)), list(element(FTK))) -> element(FTK).
colgroup(Attrs, Children) ->
'..@ffi.mjs':node(<<"colgroup"/utf8>>, Attrs, Children).
-spec table(list(lustre@attribute:attribute(FTQ)), list(element(FTQ))) -> element(FTQ).
table(Attrs, Children) ->
'..@ffi.mjs':node(<<"table"/utf8>>, Attrs, Children).
-spec tbody(list(lustre@attribute:attribute(FTW)), list(element(FTW))) -> element(FTW).
tbody(Attrs, Children) ->
'..@ffi.mjs':node(<<"tbody"/utf8>>, Attrs, Children).
-spec td(list(lustre@attribute:attribute(FUC)), list(element(FUC))) -> element(FUC).
td(Attrs, Children) ->
'..@ffi.mjs':node(<<"td"/utf8>>, Attrs, Children).
-spec tfoot(list(lustre@attribute:attribute(FUI)), list(element(FUI))) -> element(FUI).
tfoot(Attrs, Children) ->
'..@ffi.mjs':node(<<"tfoot"/utf8>>, Attrs, Children).
-spec th(list(lustre@attribute:attribute(FUO)), list(element(FUO))) -> element(FUO).
th(Attrs, Children) ->
'..@ffi.mjs':node(<<"th"/utf8>>, Attrs, Children).
-spec thead(list(lustre@attribute:attribute(FUU)), list(element(FUU))) -> element(FUU).
thead(Attrs, Children) ->
'..@ffi.mjs':node(<<"thead"/utf8>>, Attrs, Children).
-spec tr(list(lustre@attribute:attribute(FVA)), list(element(FVA))) -> element(FVA).
tr(Attrs, Children) ->
'..@ffi.mjs':node(<<"tr"/utf8>>, Attrs, Children).
-spec button(list(lustre@attribute:attribute(FVG)), list(element(FVG))) -> element(FVG).
button(Attrs, Children) ->
'..@ffi.mjs':node(<<"button"/utf8>>, Attrs, Children).
-spec datalist(list(lustre@attribute:attribute(FVM)), list(element(FVM))) -> element(FVM).
datalist(Attrs, Children) ->
'..@ffi.mjs':node(<<"datalist"/utf8>>, Attrs, Children).
-spec fieldset(list(lustre@attribute:attribute(FVS)), list(element(FVS))) -> element(FVS).
fieldset(Attrs, Children) ->
'..@ffi.mjs':node(<<"fieldset"/utf8>>, Attrs, Children).
-spec form(list(lustre@attribute:attribute(FVY)), list(element(FVY))) -> element(FVY).
form(Attrs, Children) ->
'..@ffi.mjs':node(<<"form"/utf8>>, Attrs, Children).
-spec input(list(lustre@attribute:attribute(FWE))) -> element(FWE).
input(Attrs) ->
'..@ffi.mjs':node(<<"input"/utf8>>, Attrs, []).
-spec label(list(lustre@attribute:attribute(FWI)), list(element(FWI))) -> element(FWI).
label(Attrs, Children) ->
'..@ffi.mjs':node(<<"label"/utf8>>, Attrs, Children).
-spec legend(list(lustre@attribute:attribute(FWO)), list(element(FWO))) -> element(FWO).
legend(Attrs, Children) ->
'..@ffi.mjs':node(<<"legend"/utf8>>, Attrs, Children).
-spec meter(list(lustre@attribute:attribute(FWU)), list(element(FWU))) -> element(FWU).
meter(Attrs, Children) ->
'..@ffi.mjs':node(<<"meter"/utf8>>, Attrs, Children).
-spec optgroup(list(lustre@attribute:attribute(FXA)), list(element(FXA))) -> element(FXA).
optgroup(Attrs, Children) ->
'..@ffi.mjs':node(<<"optgroup"/utf8>>, Attrs, Children).
-spec option(list(lustre@attribute:attribute(FXG)), list(element(FXG))) -> element(FXG).
option(Attrs, Children) ->
'..@ffi.mjs':node(<<"option"/utf8>>, Attrs, Children).
-spec output(list(lustre@attribute:attribute(FXM)), list(element(FXM))) -> element(FXM).
output(Attrs, Children) ->
'..@ffi.mjs':node(<<"output"/utf8>>, Attrs, Children).
-spec progress(list(lustre@attribute:attribute(FXS)), list(element(FXS))) -> element(FXS).
progress(Attrs, Children) ->
'..@ffi.mjs':node(<<"progress"/utf8>>, Attrs, Children).
-spec select(list(lustre@attribute:attribute(FXY)), list(element(FXY))) -> element(FXY).
select(Attrs, Children) ->
'..@ffi.mjs':node(<<"select"/utf8>>, Attrs, Children).
-spec textarea(list(lustre@attribute:attribute(FYE))) -> element(FYE).
textarea(Attrs) ->
'..@ffi.mjs':node(<<"textarea"/utf8>>, Attrs, []).
-spec details(list(lustre@attribute:attribute(FYI)), list(element(FYI))) -> element(FYI).
details(Attrs, Children) ->
'..@ffi.mjs':node(<<"details"/utf8>>, Attrs, Children).
-spec dialog(list(lustre@attribute:attribute(FYO)), list(element(FYO))) -> element(FYO).
dialog(Attrs, Children) ->
'..@ffi.mjs':node(<<"dialog"/utf8>>, Attrs, Children).
-spec summary(list(lustre@attribute:attribute(FYU)), list(element(FYU))) -> element(FYU).
summary(Attrs, Children) ->
'..@ffi.mjs':node(<<"summary"/utf8>>, Attrs, Children).
-spec slot(list(lustre@attribute:attribute(FZA)), list(element(FZA))) -> element(FZA).
slot(Attrs, Children) ->
'..@ffi.mjs':node(<<"slot"/utf8>>, Attrs, Children).
-spec template(list(lustre@attribute:attribute(FZG)), list(element(FZG))) -> element(FZG).
template(Attrs, Children) ->
'..@ffi.mjs':node(<<"template"/utf8>>, Attrs, Children).
-spec stateful(FZU, fun((FZU, fun((FZU) -> nil)) -> element(FZS))) -> element(FZS).
stateful(Field@0, Field@1) ->
'../ffi.mjs':stateful(Field@0, Field@1).
-spec fragment(list(element(FZW))) -> element(FZW).
fragment(Field@0) ->
'../ffi.mjs':fragment(Field@0).
-spec text(binary()) -> element(any()).
text(Field@0) ->
'../ffi.mjs':text(Field@0).
-spec style(list(lustre@attribute:attribute(FCA)), binary()) -> element(FCA).
style(Attrs, Css) ->
'..@ffi.mjs':node(<<"style"/utf8>>, Attrs, ['..@ffi.mjs':text(Css)]).
-spec title(list(lustre@attribute:attribute(FCE)), binary()) -> element(FCE).
title(Attrs, Name) ->
'..@ffi.mjs':node(<<"title"/utf8>>, Attrs, ['..@ffi.mjs':text(Name)]).
-spec map(element(GAE), fun((GAE) -> GAC)) -> element(GAC).
map(Field@0, Field@1) ->
'../ffi.mjs':map(Field@0, Field@1).