@ts-core/angular 13.1.21 → 13.1.24

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.21",
3
+ "version": "13.1.24",
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.5",
26
+ "@ts-core/frontend": "^3.0.6",
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
@@ -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';
@@ -91,6 +93,7 @@ export * from './notification/NotificationProperties';
91
93
  export * from './notification/NotificationService';
92
94
  export * from './notification/component/NotificationBaseComponent';
93
95
  export * from './notification/component/notification/notification.component';
96
+ export * from './bottomSheet/BottomSheetModule';
94
97
  export * from './bottomSheet/BottomSheetService';
95
98
  export * from './bottomSheet/component/BottomSheetBaseComponent';
96
99
  export * from './pipe/CamelCasePipe';
@@ -137,6 +140,7 @@ export * from './window/WindowModule';
137
140
  export * from './window/IWindowContent';
138
141
  export * from './window/WindowService';
139
142
  export * from './window/WindowProperties';
143
+ export * from './window/WindowServiceEvent';
140
144
  export * from './window/component/WindowElement';
141
145
  export * from './window/component/WindowBaseComponent';
142
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
+ }