From ea14328eb420b7416b8464f5b7cf24f60729eab5 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 6 Jan 2021 23:42:55 -0800 Subject: [PATCH] Added g and path elements to ignite template. --- ignite-template.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index 2470e2e..f479a2f 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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 }; \ No newline at end of file