@warp-ds/elements 2.2.0-next.1 → 2.2.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,9 +23,9 @@ export class ModalHeader extends ModalHeader_base {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
static styles: any[];
|
|
26
|
-
titleEl: import("lit/directives/ref").Ref<Element>;
|
|
27
26
|
_hasTopContent: boolean;
|
|
28
27
|
render(): import("lit").TemplateResult<1>;
|
|
28
|
+
get titleEl(): any;
|
|
29
29
|
willUpdate(changedProperties: any): Promise<void>;
|
|
30
30
|
get titleClasses(): string;
|
|
31
31
|
get backButton(): typeof nothing | import("lit").TemplateResult<1>;
|
|
@@ -18,9 +18,6 @@ export class ModalMain extends ModalMain_base {
|
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
static styles: any[];
|
|
21
|
-
dialogEl: import("lit/directives/ref.js").Ref<Element>;
|
|
22
|
-
dialogInnerEl: import("lit/directives/ref.js").Ref<Element>;
|
|
23
|
-
contentEl: import("lit/directives/ref.js").Ref<Element>;
|
|
24
21
|
/** @param {KeyboardEvent} evt */
|
|
25
22
|
interceptEscape(evt: KeyboardEvent): void;
|
|
26
23
|
/** @param {MouseEvent} evt */
|
|
@@ -31,7 +28,10 @@ export class ModalMain extends ModalMain_base {
|
|
|
31
28
|
open(): Promise<void>;
|
|
32
29
|
close(): void;
|
|
33
30
|
render(): import("lit").TemplateResult<1>;
|
|
34
|
-
|
|
31
|
+
get dialogEl(): any;
|
|
32
|
+
get dialogInnerEl(): any;
|
|
33
|
+
get contentEl(): any;
|
|
34
|
+
updated(changedProperties: any): void;
|
|
35
35
|
handleListeners(verb?: string): void;
|
|
36
36
|
}
|
|
37
37
|
export {};
|