@fundamental-ngx/btp 0.58.5 → 0.58.6
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.
package/navigation/index.d.ts
CHANGED
|
@@ -278,6 +278,8 @@ declare class NavigationListItemComponent extends FdbNavigationListItem implemen
|
|
|
278
278
|
readonly parentListItemComponent: FdbNavigationListItemCmp | null;
|
|
279
279
|
/** @hidden */
|
|
280
280
|
get parentListItem(): FdbNavigationListItem | null;
|
|
281
|
+
/** @hidden Max-height for the overflow submenu, computed dynamically based on viewport position. */
|
|
282
|
+
protected readonly overflowSubmenuMaxHeight: _angular_core.WritableSignal<string | null>;
|
|
281
283
|
/** @hidden */
|
|
282
284
|
private readonly _home$;
|
|
283
285
|
/** Manual selection state signal (for router-based selection mode). */
|
|
@@ -319,6 +321,7 @@ declare class NavigationListItemComponent extends FdbNavigationListItem implemen
|
|
|
319
321
|
/** @hidden */
|
|
320
322
|
private readonly _destroyRef;
|
|
321
323
|
/** @hidden */
|
|
324
|
+
private readonly _overflowSubmenuContainer;
|
|
322
325
|
constructor();
|
|
323
326
|
/** @hidden */
|
|
324
327
|
ngOnDestroy(): void;
|
|
@@ -373,6 +376,14 @@ declare class NavigationListItemComponent extends FdbNavigationListItem implemen
|
|
|
373
376
|
* @returns true if the item can be selected, false otherwise
|
|
374
377
|
*/
|
|
375
378
|
canItemBeSelected(): boolean;
|
|
379
|
+
/**
|
|
380
|
+
* @hidden
|
|
381
|
+
* Handles mouseenter on overflow items to dynamically adjust the submenu max-height.
|
|
382
|
+
* Uses requestAnimationFrame to ensure the browser has laid out the submenu
|
|
383
|
+
* (which transitions from display:none to display:block via CSS :hover)
|
|
384
|
+
* before measuring its viewport position.
|
|
385
|
+
*/
|
|
386
|
+
onOverflowItemMouseEnter(): void;
|
|
376
387
|
private _focusPopoverLink;
|
|
377
388
|
/** @hidden */
|
|
378
389
|
private _ensureChildTabindexUpdated;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/btp",
|
|
3
|
-
"version": "0.58.
|
|
3
|
+
"version": "0.58.6",
|
|
4
4
|
"description": "Fundamental Library for Angular - BTP",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://sap.github.io/fundamental-ngx",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@angular/common": "^20.0.0",
|
|
16
16
|
"@angular/core": "^20.0.0",
|
|
17
|
-
"@fundamental-ngx/cdk": "0.58.
|
|
18
|
-
"@fundamental-ngx/core": "0.58.
|
|
17
|
+
"@fundamental-ngx/cdk": "0.58.6",
|
|
18
|
+
"@fundamental-ngx/core": "0.58.6"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"tslib": "^2.3.0"
|