@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.
Files changed (2) hide show
  1. package/index.d.ts +4 -1
  2. 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 class Dialog extends Control {
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pilotdev/pilot-web-2d",
3
- "version": "24.13.0",
3
+ "version": "24.13.1-alpha",
4
4
  "description": "TypeScript definitions for ASCON PilotWeb2D component",
5
5
  "main": "",
6
6
  "types": "index.d.ts",