Work on panels

This commit is contained in:
2023-10-28 16:43:43 +02:00
parent ad59f07d2b
commit 638e1eb739
7 changed files with 56 additions and 7 deletions

View File

@@ -1,3 +1,28 @@
export function panelsSidePanel(): string {
return 'panels-side-panel';
import { DestroyController } from '@z-elements/_internal/controllers';
import { LitElement } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('z-panels.side')
export default class SidePanel extends LitElement {
static override get styles() {
return [];
}
/** Private variables */
private readonly _destroyController = new DestroyController(this);
private readonly _closeEvent = new CustomEvent('close', { bubbles: false });
/** Protected variables */
/** Public variables */
/** constructor & lifecycle */
/** Public methods */
/** Protected methods */
/** Private methods */
}