duck-dev-lib 0.0.89 → 0.0.90

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "duck-dev-lib",
3
- "version": "0.0.89",
3
+ "version": "0.0.90",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1046,13 +1046,14 @@ declare class DuckDevBreadcrumbNeobrutal implements AfterViewInit {
1046
1046
  protected readonly navRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
1047
1047
  protected readonly listRef: _angular_core.Signal<ElementRef<HTMLOListElement> | undefined>;
1048
1048
  protected readonly labelRefs: _angular_core.Signal<readonly ElementRef<HTMLElement>[]>;
1049
+ private readonly retainedItems;
1049
1050
  protected readonly visibleItems: _angular_core.Signal<BreadcrumbItem[]>;
1050
1051
  protected readonly breadcrumbStyle: _angular_core.Signal<{
1051
1052
  [key: string]: string;
1052
1053
  }>;
1053
1054
  protected readonly tooltipState: _angular_core.WritableSignal<BreadcrumbTooltipState | null>;
1054
1055
  protected readonly tooltipLabel: _angular_core.Signal<string>;
1055
- protected readonly tooltipVisible: _angular_core.Signal<boolean>;
1056
+ protected readonly tooltipVisible: _angular_core.WritableSignal<boolean>;
1056
1057
  protected readonly tooltipStyle: _angular_core.Signal<{
1057
1058
  left?: undefined;
1058
1059
  top?: undefined;
@@ -1069,6 +1070,7 @@ declare class DuckDevBreadcrumbNeobrutal implements AfterViewInit {
1069
1070
  private readonly destroyRef;
1070
1071
  private resizeObserver;
1071
1072
  private scrollFadeFrameId;
1073
+ private emptyItemsClearTimerId;
1072
1074
  private longPressTimerId;
1073
1075
  private longPressPointerId;
1074
1076
  private longPressIndex;
@@ -1092,6 +1094,8 @@ declare class DuckDevBreadcrumbNeobrutal implements AfterViewInit {
1092
1094
  private updateScrollFades;
1093
1095
  private getScrollFadeOpacity;
1094
1096
  private clearLongPressTimer;
1097
+ private syncVisibleItems;
1098
+ private clearEmptyItemsTimer;
1095
1099
  private isLabelOverflowing;
1096
1100
  private getTooltipState;
1097
1101
  private hideTooltip;