@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-core/angular",
3
- "version": "13.1.22",
3
+ "version": "13.1.25",
4
4
  "description": "Modules for frontend based on angular",
5
5
  "main": "public-api.js",
6
6
  "author": {
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';
@@ -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
- }
@@ -0,0 +1,7 @@
1
+ export declare enum WindowServiceEvent {
2
+ OPEN_STARTED = "OPEN_STARTED",
3
+ OPENED = "OPENED",
4
+ OPEN_FINISHED = "OPEN_FINISHED",
5
+ CLOSED = "CLOSED",
6
+ SETTED_ON_TOP = "SETTED_ON_TOP"
7
+ }