@ts-core/angular 13.1.23 → 13.1.26
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/bottomSheet/BottomSheetService.d.ts +1 -1
- package/esm2020/bottomSheet/BottomSheetService.mjs +2 -2
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/window/WindowService.mjs +2 -9
- package/esm2020/window/WindowServiceEvent.mjs +9 -0
- package/fesm2015/ts-core-angular.mjs +1380 -1379
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +1380 -1379
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
- package/window/WindowService.d.ts +1 -7
- package/window/WindowServiceEvent.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-core/angular",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.26",
|
|
4
4
|
"description": "Modules for frontend based on angular",
|
|
5
5
|
"main": "public-api.js",
|
|
6
6
|
"author": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@angular/router": "^13.3.2",
|
|
24
24
|
"@nguniversal/express-engine": "^13.1.0",
|
|
25
25
|
"@ts-core/common": "^3.0.3",
|
|
26
|
-
"@ts-core/frontend": "^3.0.
|
|
26
|
+
"@ts-core/frontend": "^3.0.9",
|
|
27
27
|
"@types/numeral": "^2.0.2",
|
|
28
28
|
"bootstrap": "^5.1.3",
|
|
29
29
|
"css-element-queries": "^1.2.3",
|
package/public-api.d.ts
CHANGED
|
@@ -140,6 +140,7 @@ export * from './window/WindowModule';
|
|
|
140
140
|
export * from './window/IWindowContent';
|
|
141
141
|
export * from './window/WindowService';
|
|
142
142
|
export * from './window/WindowProperties';
|
|
143
|
+
export * from './window/WindowServiceEvent';
|
|
143
144
|
export * from './window/component/WindowElement';
|
|
144
145
|
export * from './window/component/WindowBaseComponent';
|
|
145
146
|
export * from './window/component/WindowDragAreaDirective';
|
|
@@ -11,6 +11,7 @@ import { IWindow } from './IWindow';
|
|
|
11
11
|
import { IWindowContent } from './IWindowContent';
|
|
12
12
|
import { WindowAlign, WindowConfig, WindowConfigOptions } from './WindowConfig';
|
|
13
13
|
import { WindowFactory } from './WindowFactory';
|
|
14
|
+
import { WindowServiceEvent } from './WindowServiceEvent';
|
|
14
15
|
import * as i0 from "@angular/core";
|
|
15
16
|
export declare class WindowService extends Destroyable {
|
|
16
17
|
private sheet;
|
|
@@ -68,10 +69,3 @@ export declare class PropertiesManager extends Destroyable {
|
|
|
68
69
|
destroy(): void;
|
|
69
70
|
}
|
|
70
71
|
export declare type WindowId = string | WindowConfig;
|
|
71
|
-
export declare enum WindowServiceEvent {
|
|
72
|
-
OPEN_STARTED = "OPEN_STARTED",
|
|
73
|
-
OPENED = "OPENED",
|
|
74
|
-
OPEN_FINISHED = "OPEN_FINISHED",
|
|
75
|
-
CLOSED = "CLOSED",
|
|
76
|
-
SETTED_ON_TOP = "SETTED_ON_TOP"
|
|
77
|
-
}
|