@ts-core/angular 13.0.58 → 13.0.61
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/esm2020/bottomSheet/BottomSheetImpl.mjs +4 -1
- package/esm2020/window/WindowImpl.mjs +6 -3
- package/esm2020/window/WindowService.mjs +35 -11
- package/fesm2015/ts-core-angular.mjs +42 -12
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +42 -12
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/window/WindowService.d.ts +3 -0
package/package.json
CHANGED
|
@@ -14,6 +14,9 @@ import { WindowFactory } from './WindowFactory';
|
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class WindowService extends Destroyable {
|
|
16
16
|
private sheet;
|
|
17
|
+
static Z_INDEX_MAX: number;
|
|
18
|
+
static getZIndex(window: IWindow): number;
|
|
19
|
+
static setZIndex(window: IWindow, index: number): void;
|
|
17
20
|
factory: WindowFactory<IWindow>;
|
|
18
21
|
questionComponent: ComponentType<IWindowContent>;
|
|
19
22
|
isNeedCheckPositionAfterOpen: boolean;
|