Added g and path elements to ignite template.
This commit is contained in:
parent
fb49e9ec35
commit
ea14328eb4
@ -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
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user