fix(core): Fixed various package metadata issues and improved component interactions
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user