@ts-core/angular 13.1.22 → 13.1.25
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/VICommonModule.d.ts +26 -24
- package/bottomSheet/BottomSheetService.d.ts +1 -1
- package/directive/IsBrowserDirective.d.ts +8 -0
- package/directive/IsServerDirective.d.ts +8 -0
- package/esm2020/VICommonModule.mjs +9 -1
- package/esm2020/bottomSheet/BottomSheetService.mjs +2 -2
- package/esm2020/directive/IsBrowserDirective.mjs +24 -0
- package/esm2020/directive/IsServerDirective.mjs +24 -0
- package/esm2020/public-api.mjs +4 -1
- package/esm2020/util/ViewUtil.mjs +7 -4
- package/esm2020/window/WindowService.mjs +2 -9
- package/esm2020/window/WindowServiceEvent.mjs +9 -0
- package/fesm2015/ts-core-angular.mjs +1420 -1368
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +1420 -1368
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/util/ViewUtil.d.ts +1 -0
- package/window/WindowService.d.ts +1 -7
- package/window/WindowServiceEvent.d.ts +7 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -51,6 +51,8 @@ export * from './directive/ScrollCheckDirective';
|
|
|
51
51
|
export * from './directive/MenuTriggerForDirective';
|
|
52
52
|
export * from './directive/HTMLTitleDirective';
|
|
53
53
|
export * from './directive/HTMLContentTitleDirective';
|
|
54
|
+
export * from './directive/IsBrowserDirective';
|
|
55
|
+
export * from './directive/IsServerDirective';
|
|
54
56
|
export * from './form/FormElementAsync';
|
|
55
57
|
export * from './form/FormElementSync';
|
|
56
58
|
export * from './language/LanguageMatPaginatorIntl';
|
|
@@ -138,6 +140,7 @@ export * from './window/WindowModule';
|
|
|
138
140
|
export * from './window/IWindowContent';
|
|
139
141
|
export * from './window/WindowService';
|
|
140
142
|
export * from './window/WindowProperties';
|
|
143
|
+
export * from './window/WindowServiceEvent';
|
|
141
144
|
export * from './window/component/WindowElement';
|
|
142
145
|
export * from './window/component/WindowBaseComponent';
|
|
143
146
|
export * from './window/component/WindowDragAreaDirective';
|
package/util/ViewUtil.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare class ViewUtil {
|
|
|
6
6
|
static set renderer(value: Renderer2);
|
|
7
7
|
static get document(): Document;
|
|
8
8
|
static set document(value: Document);
|
|
9
|
+
static get window(): Window;
|
|
9
10
|
private static copyToClipboard;
|
|
10
11
|
static parseElement(element: IViewElement): HTMLElement;
|
|
11
12
|
static createBase64(element: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement): string;
|
|
@@ -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
|
-
}
|