angular-toolbox 1.4.1 → 1.4.3

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.
@@ -44,6 +44,11 @@ export declare class DropdownComponent extends IdentifiableComponent {
44
44
  * (`auto`), or not (`manual`).
45
45
  */
46
46
  popoverState: PopoverState;
47
+ /**
48
+ * The disabled property sets or returns whether a dropdown is disabled, or not.
49
+ */
50
+ set disabled(value: boolean);
51
+ get disabled(): boolean;
47
52
  /**
48
53
  * @private
49
54
  */
@@ -52,6 +57,14 @@ export declare class DropdownComponent extends IdentifiableComponent {
52
57
  * @private
53
58
  */
54
59
  private _popover;
60
+ /**
61
+ * @private
62
+ */
63
+ private _button;
64
+ /**
65
+ * @private
66
+ */
67
+ private _disabled;
55
68
  /**
56
69
  * @private
57
70
  */
@@ -83,5 +96,5 @@ export declare class DropdownComponent extends IdentifiableComponent {
83
96
  */
84
97
  private buildEvent;
85
98
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "atx-dropdown", never, { "buttonClass": { "alias": "buttonClass"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "vPos": { "alias": "vPos"; "required": false; }; "hPos": { "alias": "hPos"; "required": false; }; "popoverState": { "alias": "popoverState"; "required": false; }; }, { "toggle": "toggle"; "beforeToggle": "beforeToggle"; }, never, ["*", "[content]"], true, never>;
99
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "atx-dropdown", never, { "buttonClass": { "alias": "buttonClass"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; "vPos": { "alias": "vPos"; "required": false; }; "hPos": { "alias": "hPos"; "required": false; }; "popoverState": { "alias": "popoverState"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggle": "toggle"; "beforeToggle": "beforeToggle"; }, never, ["*", "[content]"], true, never>;
87
100
  }
@@ -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.3",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.0.0",