@pilotdev/pilot-web-2d 24.13.0 → 24.13.1-alpha
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.
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -421,7 +421,10 @@ interface ElementClass {
|
|
|
421
421
|
contentClassName?: string;
|
|
422
422
|
headerClassName?: string;
|
|
423
423
|
}
|
|
424
|
-
export
|
|
424
|
+
export interface ICloseable {
|
|
425
|
+
destroyDialog(): void;
|
|
426
|
+
}
|
|
427
|
+
export class Dialog extends Control implements ICloseable {
|
|
425
428
|
responseDialog: (state?: boolean) => void;
|
|
426
429
|
|
|
427
430
|
constructor(id: string, panelToAttach: HTMLElement);
|