fix(core): Fixed various package metadata issues and improved component interactions

This commit is contained in:
2024-06-26 21:12:11 +02:00
parent a61326a8e5
commit a89be07bc2
9 changed files with 4632 additions and 2122 deletions

View File

@@ -1,6 +1,6 @@
import { DeesElement, property, html, customElement, type TemplateResult, cssManager } from '@design.estate/dees-element';
import { UptimelinkWindowLayer } from './uptimelink-windowlayer.js';
import { DeesWindowLayer } from '@design.estate/dees-catalog';
declare global {
interface HTMLElementTagNameMap {
@@ -171,7 +171,7 @@ export class UptimelinkWebwidget extends DeesElement {
`;
}
public windowLayer: UptimelinkWindowLayer;
public windowLayer: DeesWindowLayer;
private async setupEventing() {
const domtools = await this.domtoolsPromise;
await this.updateComplete;
@@ -190,7 +190,7 @@ export class UptimelinkWebwidget extends DeesElement {
}
this.isElevated = true;
this.isFocused = true;
this.windowLayer = await UptimelinkWindowLayer.createAndShow({
this.windowLayer = await DeesWindowLayer.createAndShow({
blur: true,
});
await domtools.convenience.smartdelay.delayFor(200);