import { api } from "../lib/api.js"; import { on } from "../lib/bus.js"; class TakeoversCrud extends HTMLElement { constructor() { super(); this.attachShadow({ mode: "open" }); this.items = []; this.selected = null; this.loading = false; this.products = []; this.pendingCount = 0; this.shadowRoot.innerHTML = `