fix(lit-components): fix rendering and interaction issues in force-graph, html-table, and draggable-dom
Build and Deploy / build-and-deploy (push) Has been cancelled

- lit-force-graph: Refactored for instance reuse, better lifecycle management, and added dynamic imports for AR/VR modes.
- lit-html-table: Improved visual design, readability of headers, and fixed reactivity in editable mode.
- lit-draggable-dom: Fixed clipping issues by switching to relative/absolute positioning and resolved a panning speed bug caused by CSS variable inheritance.
This commit is contained in:
2026-05-17 00:41:14 -07:00
parent bbdbeb9788
commit b9e42c3ef4
253 changed files with 2555 additions and 4471 deletions
@@ -0,0 +1,56 @@
import { html, css, LitElement } from "lit";
import { customElement, property } from "lit/decorators.js";
export const tagName = "my-element";
/**
* My Element
*/
@customElement(tagName)
export class MyElement extends LitElement {
static styles = css`
:host {
display: block;
border: solid 1px gray;
padding: 16px;
max-width: 800px;
}
`;
/**
* The name to say "Hello" to.
*/
@property()
name = "World";
/**
* The number of times the button has been clicked.
*/
@property({ type: Number })
count = 1;
render() {
return html`
<h1>Hello, ${this.name}!</h1>
<button @click=${this._onClick} role="button">
Click Count: ${this.count}
</button>
<slot></slot>
`;
}
private _onClick() {
this.count++;
this.dispatchEvent(new CustomEvent("count", { detail: this.count }));
}
foo(): string {
return "foo";
}
}
declare global {
interface HTMLElementTagNameMap {
[tagName]: MyElement;
}
}
@@ -0,0 +1,52 @@
import { describe, expect, test } from "vitest";
import "./my-element";
describe("MyElement Component", () => {
test("registers my-element custom element successfully", () => {
expect(customElements.get("my-element")).toBeDefined();
});
test("mounts and renders with default properties", async () => {
document.body.innerHTML = "<my-element></my-element>";
await window.happyDOM.whenAsyncComplete();
const element = document.body.querySelector("my-element");
expect(element).toBeDefined();
expect(element?.shadowRoot).toBeDefined();
const h1 = element?.shadowRoot?.querySelector("h1");
expect(h1?.textContent).toBe("Hello, World!");
const button = element?.shadowRoot?.querySelector("button");
expect(button?.textContent?.trim()).toBe("Click Count: 1");
});
test("handles name property change", async () => {
document.body.innerHTML = "<my-element name=\"Vitest\"></my-element>";
await window.happyDOM.whenAsyncComplete();
const element = document.body.querySelector("my-element");
const h1 = element?.shadowRoot?.querySelector("h1");
expect(h1?.textContent).toBe("Hello, Vitest!");
});
test("increments count on click and dispatches event", async () => {
document.body.innerHTML = "<my-element></my-element>";
await window.happyDOM.whenAsyncComplete();
const element = document.body.querySelector("my-element");
const button = element?.shadowRoot?.querySelector("button");
let eventDetail: number | null = null;
element?.addEventListener("count", (e: any) => {
eventDetail = e.detail;
});
button?.click();
await window.happyDOM.whenAsyncComplete();
expect(element?.count).toBe(2);
expect(button?.textContent?.trim()).toBe("Click Count: 2");
expect(eventDetail).toBe(2);
});
});