Added g and path elements to ignite template.

This commit is contained in:
Matt Mo 2021-01-06 23:42:55 -08:00
parent fb49e9ec35
commit ea14328eb4

View File

@ -1378,6 +1378,32 @@ class svg extends IgniteTemplate {
}
}
/**
* An ignite template that can be used to construct a g element.
*/
class g extends IgniteTemplate {
/**
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
*/
constructor(...children) {
super("g", children);
this.tagNamespace = "http://www.w3.org/2000/svg";
}
}
/**
* An ignite template that can be used to construct a path element.
*/
class path extends IgniteTemplate {
/**
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
*/
constructor(...children) {
super("path", children);
this.tagNamespace = "http://www.w3.org/2000/svg";
}
}
/**
* An ignite template that can be used to construct a circle element.
*/
@ -2269,6 +2295,8 @@ export {
thead,
progress,
svg,
g,
path,
circle,
form
};