@fundamental-ngx/cx 0.58.0-rc.69 → 0.58.0-rc.70

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.
@@ -117,7 +117,7 @@ declare class NestedLinkComponent {
117
117
  /** @hidden */
118
118
  get elementRef(): ElementRef<HTMLElement>;
119
119
  /** Handler for keyboard events */
120
- onKeyDown(event: KeyboardEvent): void;
120
+ onKeyDown(event: Event): void;
121
121
  /** Handler for mouse events */
122
122
  onClick(): void;
123
123
  /** Handler for focus events */
@@ -308,17 +308,17 @@ declare class NestedListComponent implements AfterContentInit, NestedListInterfa
308
308
  */
309
309
  nestedItems: QueryList<NestedItemComponent>;
310
310
  /** @hidden */
311
- private _nestedListHeader;
311
+ protected _nestedListHeader: NestedListHeaderDirective;
312
312
  /** @hidden */
313
- private _nestedLists;
313
+ protected _nestedLists: QueryList<NestedListComponent>;
314
314
  /** @hidden */
315
- private _role;
315
+ protected _role: string;
316
316
  /** @hidden */
317
- private _ariaRoledescription;
317
+ protected _ariaRoledescription: Nullable<string>;
318
318
  /** @hidden */
319
- private _ariaHaspopup;
319
+ protected _ariaHaspopup: Nullable<string>;
320
320
  /** @hidden */
321
- private _tabindex;
321
+ protected _tabindex: string;
322
322
  /** @hidden */
323
323
  private readonly _destroyRef;
324
324
  /** @hidden */
@@ -393,15 +393,15 @@ declare class NestedItemComponent implements AfterContentInit, NestedItemInterfa
393
393
  /** @hidden */
394
394
  _display: string;
395
395
  /** @hidden */
396
- private _role;
396
+ protected _role: string;
397
397
  /** @hidden */
398
- private _ariaExpanded;
398
+ protected _ariaExpanded: Nullable<boolean>;
399
399
  /** @hidden */
400
- private _ariaSelected;
400
+ protected _ariaSelected: Nullable<boolean>;
401
401
  /** @hidden */
402
- private _ariaDisabled;
402
+ protected _ariaDisabled: boolean;
403
403
  /** @hidden */
404
- private _ariaLabel;
404
+ protected _ariaLabel: string;
405
405
  /** @hidden */
406
406
  _narrow: boolean;
407
407
  /** @hidden */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/cx",
3
- "version": "0.58.0-rc.69",
3
+ "version": "0.58.0-rc.70",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - cx",
6
6
  "license": "Apache-2.0",
@@ -20,8 +20,8 @@
20
20
  "@angular/forms": "^20.0.0",
21
21
  "@angular/platform-browser": "^20.0.0",
22
22
  "@angular/router": "^20.0.0",
23
- "@fundamental-ngx/core": "0.58.0-rc.69",
24
- "@fundamental-ngx/i18n": "0.58.0-rc.69",
23
+ "@fundamental-ngx/core": "0.58.0-rc.70",
24
+ "@fundamental-ngx/i18n": "0.58.0-rc.70",
25
25
  "rxjs": "^7.8.0"
26
26
  },
27
27
  "dependencies": {