fixup! webmodel add element type

This commit is contained in:
Maciej Krüger 2022-05-28 08:52:46 +02:00 committed by Alexander List
parent a12478e471
commit 826585bf46

View File

@ -410,6 +410,21 @@ function TextValue:__init__(...)
end
local Element = class(Node)
M.Element = Element
function Element:__init__(template, ...)
Node.__init__(self, ...)
self.default = nil
self.size = nil
self.optional = false
self.template = template
self.error = false
end
local Section = class(Node)
M.Section = Section
@ -426,8 +441,8 @@ function Section:option(t, ...)
return obj
end
function Section:template(...)
local obj = Template(...)
function Section:element(...)
local obj = Element(...)
self:append(obj)
return obj
end