я попробовал lke ниже и разрешил мою pblm
private static removeElement(): void {
// Removes an element's attibute to avoid html tag validation
let nodes: HTMLCollection = this.wrapElement.children;
for (let j: number = 0; j < nodes.length; j++) {
let attribute: NamedNodeMap = nodes[j].attributes;
for (let i: number = 0; i < attribute.length; i++) {
this.wrapElement.children[j].removeAttribute(attribute[i].localName);
}
}
}