(
clone: HTMLElement,
selector: string
)
| 78 | } |
| 79 | |
| 80 | private static removeUnwantedElements( |
| 81 | clone: HTMLElement, |
| 82 | selector: string |
| 83 | ): void { |
| 84 | const unwanted = clone.querySelectorAll(selector) |
| 85 | unwanted.forEach((el) => el.remove()) |
| 86 | } |
| 87 | |
| 88 | private static handleFormValues( |
| 89 | clone: HTMLElement, |