angular-toolbox 1.4.1 → 1.4.2

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.
@@ -48,7 +48,7 @@ export declare class BorderLayout extends IdentifiableComponent implements After
48
48
  /**
49
49
  * @private
50
50
  */
51
- constructor(subscribeSvc: SubscriptionService);
51
+ constructor(subscribeSvc: SubscriptionService, document: Document);
52
52
  /**
53
53
  * @private
54
54
  * For test purpose only.
@@ -16,6 +16,7 @@ import { BorderLayoutBoundsManager } from './border-layout-bounds-manager';
16
16
  */
17
17
  export declare class BorderLayoutRenderer extends IdentifiableComponent implements Destroyable {
18
18
  private subscribeSvc;
19
+ private document;
19
20
  /**
20
21
  * Emits events each time the user starts, or stops dragging handle.
21
22
  */
@@ -35,7 +36,15 @@ export declare class BorderLayoutRenderer extends IdentifiableComponent implemen
35
36
  /**
36
37
  * @private
37
38
  */
38
- constructor(subscribeSvc: SubscriptionService);
39
+ private storedStopHandler;
40
+ /**
41
+ * @private
42
+ */
43
+ private storedMoveHandler;
44
+ /**
45
+ * @private
46
+ */
47
+ constructor(subscribeSvc: SubscriptionService, document: Document);
39
48
  /**
40
49
  * Add the list `BorderLayoutContainer` objects associated with the main container to this controller.
41
50
  *
@@ -83,5 +92,12 @@ export declare class BorderLayoutRenderer extends IdentifiableComponent implemen
83
92
  * @private
84
93
  */
85
94
  private render;
95
+ /**
96
+ * @private
97
+ */
86
98
  private checkLytContainer;
99
+ /**
100
+ * @private
101
+ */
102
+ private deleteStoredHandlers;
87
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-toolbox",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.0.0",