Added new strong element to ignite template.
This commit is contained in:
parent
653abb3aec
commit
6986197339
@ -1306,6 +1306,18 @@ class span extends IgniteTemplate {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An ignite template that can be used to construct a strong element.
|
||||||
|
*/
|
||||||
|
class strong extends IgniteTemplate {
|
||||||
|
/**
|
||||||
|
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
|
||||||
|
*/
|
||||||
|
constructor(...children) {
|
||||||
|
super("strong", children);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An ignite template that can be used to construct an i element.
|
* An ignite template that can be used to construct an i element.
|
||||||
*/
|
*/
|
||||||
@ -2409,6 +2421,7 @@ export {
|
|||||||
hr,
|
hr,
|
||||||
p,
|
p,
|
||||||
span,
|
span,
|
||||||
|
strong,
|
||||||
i,
|
i,
|
||||||
ul,
|
ul,
|
||||||
li,
|
li,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user