duck-dev-lib 0.0.73 → 0.0.74
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
package/types/duck-dev-lib.d.ts
CHANGED
|
@@ -1005,26 +1005,16 @@ declare class DuckDevBreadcrumbNeobrutal {
|
|
|
1005
1005
|
readonly color: _angular_core.InputSignal<AccentEnumColor>;
|
|
1006
1006
|
readonly isMobile: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1007
1007
|
readonly navigate: _angular_core.OutputEmitterRef<BreadcrumbItem>;
|
|
1008
|
-
protected readonly shellHeight: _angular_core.WritableSignal<number | null>;
|
|
1009
1008
|
protected readonly visibleItems: _angular_core.Signal<BreadcrumbItem[]>;
|
|
1009
|
+
protected readonly hasSecondRow: _angular_core.Signal<boolean>;
|
|
1010
1010
|
protected readonly breadcrumbStyle: _angular_core.Signal<{
|
|
1011
1011
|
[key: string]: string;
|
|
1012
1012
|
}>;
|
|
1013
1013
|
protected readonly activePopoverIndex: _angular_core.WritableSignal<number | null>;
|
|
1014
|
-
private readonly destroyRef;
|
|
1015
|
-
private readonly breadcrumbShell;
|
|
1016
|
-
private readonly breadcrumbNav;
|
|
1017
|
-
private resizeObserver;
|
|
1018
|
-
private animationFrameId;
|
|
1019
|
-
private lastMeasuredHeight;
|
|
1020
|
-
constructor();
|
|
1021
1014
|
protected onNavigate(item: BreadcrumbItem, index: number): void;
|
|
1022
1015
|
protected onCurrentClick(index: number): void;
|
|
1023
1016
|
protected isPopoverOpen(index: number): boolean;
|
|
1024
1017
|
protected closePopover(): void;
|
|
1025
|
-
private initializeHeightAnimation;
|
|
1026
|
-
private animateShellHeight;
|
|
1027
|
-
private destroyHeightAnimation;
|
|
1028
1018
|
private getPalette;
|
|
1029
1019
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DuckDevBreadcrumbNeobrutal, never>;
|
|
1030
1020
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevBreadcrumbNeobrutal, "dd-breadcrumb-neobrutal", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "isMobile": { "alias": "isMobile"; "required": false; "isSignal": true; }; }, { "navigate": "navigate"; }, never, never, true, never>;
|