()
| 586 | } |
| 587 | |
| 588 | function removeSelected() { |
| 589 | if (!comp || !selectedId) return; |
| 590 | const id = selectedId; |
| 591 | comp.element(id).removeElement(); |
| 592 | logEntry("op", { removeElement: id }); |
| 593 | setSelection(null); |
| 594 | } |
| 595 | |
| 596 | function appendAnimationsSection(container: HTMLElement, el: PropEl) { |
| 597 | const sec = propSection("Animations"); |
no test coverage detected