@trudb/tru-common-lib 0.0.625 → 0.0.627

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.
@@ -8,6 +8,7 @@ export declare class TruDesktop implements OnInit {
8
8
  private textManager;
9
9
  private truWindowEventHandler;
10
10
  options: any;
11
+ private viewportComponent;
11
12
  constructor(desktopService: TruDesktopService, textManager: TruTextManager, truWindowEventHandler: TruWindowEventHandler);
12
13
  minimizeAll: boolean;
13
14
  desktop: import("./services/tru-desktop-service").Desktop;
@@ -1,9 +1,11 @@
1
- import { OnInit, ElementRef } from '@angular/core';
1
+ import { OnInit, ElementRef, QueryList } from '@angular/core';
2
+ import { TruDesktopWindow } from '../window/tru-desktop-window';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class TruDesktopViewport implements OnInit {
4
5
  private elementRef;
5
6
  windows: any;
6
7
  desktopCtrl: any;
8
+ windowComponents: QueryList<TruDesktopWindow>;
7
9
  options: any;
8
10
  constructor(elementRef: ElementRef);
9
11
  getViewportDimensions: () => any;
@@ -1,16 +1,20 @@
1
1
  import { OnInit, AfterViewInit, ElementRef, ChangeDetectorRef } from '@angular/core';
2
2
  import { TruDataContext } from '../../../services/tru-data-context';
3
+ import { TruTextManager } from '../../../services/tru-text-manager';
4
+ import { TruUiNotification } from '../../../services/tru-ui-notification';
3
5
  import { TruWindowEventHandler } from '../services/tru-window-event-handler';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class TruDesktopWindow implements OnInit, AfterViewInit {
6
8
  private dataContext;
9
+ private uiNotification;
10
+ private textManager;
7
11
  private truWindowEventHandler;
8
12
  private elementRef;
9
13
  private cd;
10
14
  window: any;
11
15
  viewportCtrl: any;
12
16
  desktopCtrl: any;
13
- constructor(dataContext: TruDataContext, truWindowEventHandler: TruWindowEventHandler, elementRef: ElementRef, cd: ChangeDetectorRef);
17
+ constructor(dataContext: TruDataContext, uiNotification: TruUiNotification, textManager: TruTextManager, truWindowEventHandler: TruWindowEventHandler, elementRef: ElementRef, cd: ChangeDetectorRef);
14
18
  x: number;
15
19
  y: number;
16
20
  lastX: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.0.625",
3
+ "version": "0.0.627",
4
4
  "type": "module",
5
5
  "peerDependencies": {},
6
6
  "dependencies": {