voiptime-components 1.9.14 → 1.9.16
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/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.es.js +1061 -1036
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1515,11 +1515,14 @@ export declare interface VModalInstance {
|
|
|
1515
1515
|
declare class VModalManager implements VModalInstance {
|
|
1516
1516
|
private modalStack;
|
|
1517
1517
|
private baseZIndex;
|
|
1518
|
+
private parentApp;
|
|
1519
|
+
setParentApp(app: App): void;
|
|
1518
1520
|
open(config?: VModalConfig): string;
|
|
1519
1521
|
close(): void;
|
|
1520
1522
|
closeById(modalId: string): void;
|
|
1521
1523
|
closeAll(): void;
|
|
1522
1524
|
getOpenModalsCount(): number;
|
|
1525
|
+
private inheritFromParentApp;
|
|
1523
1526
|
private cleanupModal;
|
|
1524
1527
|
private recalculateZIndices;
|
|
1525
1528
|
}
|