@pilotdev/pilot-web-3d 24.13.0 → 24.14.0

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
@@ -570,7 +570,10 @@ interface ElementClass {
570
570
  contentClassName?: string;
571
571
  headerClassName?: string;
572
572
  }
573
- export class Dialog extends Control {
573
+ export interface ICloseable {
574
+ destroyDialog(): void;
575
+ }
576
+ export class Dialog extends Control implements ICloseable {
574
577
  responseDialog: (state?: boolean) => void;
575
578
 
576
579
  constructor(id: string, panelToAttach: HTMLElement);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pilotdev/pilot-web-3d",
3
- "version": "24.13.0",
3
+ "version": "24.14.0",
4
4
  "description": "TypeScript definitions for ASCON PilotWeb3D component",
5
5
  "main": "",
6
6
  "types": "index.d.ts",