sl tab wrappers

This commit is contained in:
Ian Gulliver
2024-12-21 21:42:54 -08:00
parent e351828d07
commit 7af1112a73
11 changed files with 279 additions and 29 deletions

8
ts/sltabpanel.ts Normal file
View File

@@ -0,0 +1,8 @@
import { ElemWrapper } from "./elemwrapper";
export class SLTabPanel extends ElemWrapper {
constructor(name: string) {
super(document.createElement("sl-tab-panel"));
this.setAttribute("name", name);
}
}