angular-toolbox 1.5.3 → 1.5.4

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.
@@ -20,6 +20,11 @@ export declare class NavbarComponent implements OnInit {
20
20
  * A string that represents the aria label of the brand item.
21
21
  */
22
22
  brandLabel: string;
23
+ /**
24
+ * Gets or sets the breakpoint that is used to indicate whether the navbar is in responsive mode, or not.
25
+ */
26
+ set breakpoint(value: number);
27
+ get breakpoint(): number;
23
28
  /**
24
29
  * A string that represents the aria label of the button when the menu is expanded in responsive mode.
25
30
  */
@@ -50,6 +55,14 @@ export declare class NavbarComponent implements OnInit {
50
55
  * @private
51
56
  */
52
57
  protected expLabel: string;
58
+ /**
59
+ * @private
60
+ */
61
+ private bpNum;
62
+ /**
63
+ * @private
64
+ */
65
+ private bpString;
53
66
  /**
54
67
  * Forces the menu to open in responsive mode.
55
68
  */
@@ -97,5 +110,5 @@ export declare class NavbarComponent implements OnInit {
97
110
  */
98
111
  private emitStateEvt;
99
112
  static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
100
- static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "atx-navbar", never, { "brandLabel": { "alias": "brandLabel"; "required": false; }; "expandedLabel": { "alias": "expandedLabel"; "required": false; }; "collapsedLabel": { "alias": "collapsedLabel"; "required": false; }; }, { "stateChange": "stateChange"; }, never, ["[brand]", "[icon]", "*"], true, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "atx-navbar", never, { "brandLabel": { "alias": "brandLabel"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "expandedLabel": { "alias": "expandedLabel"; "required": false; }; "collapsedLabel": { "alias": "collapsedLabel"; "required": false; }; }, { "stateChange": "stateChange"; }, never, ["[brand]", "[icon]", "*"], true, never>;
101
114
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "angular-toolbox",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "peerDependencies": {
6
- "@angular/common": "^19.0.3",
7
- "@angular/core": "^19.0.3",
8
- "@angular/platform-browser": "^19.0.3",
9
- "@angular/router": "^19.0.3"
6
+ "@angular/common": "^19.0.5",
7
+ "@angular/core": "^19.0.5",
8
+ "@angular/platform-browser": "^19.0.5",
9
+ "@angular/router": "^19.0.5"
10
10
  },
11
11
  "dependencies": {
12
12
  "tslib": "^2.3.0"