@indigina/ui-kit 1.1.222 → 1.1.223
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/index.d.ts
CHANGED
|
@@ -3269,9 +3269,9 @@ declare class KitCollapsedListComponent<T extends KitCollapsedListItem> implemen
|
|
|
3269
3269
|
}
|
|
3270
3270
|
|
|
3271
3271
|
declare class KitScrollNavigationComponent implements AfterViewInit {
|
|
3272
|
+
private readonly activatedRoute;
|
|
3272
3273
|
readonly isNavigationBtnDisabled: InputSignal<boolean>;
|
|
3273
3274
|
readonly dropdownDefaultText: InputSignal<string>;
|
|
3274
|
-
readonly firstRenderScrollElementId: InputSignal<string>;
|
|
3275
3275
|
sections: QueryList<KitScrollNavigationSectionComponent> | null;
|
|
3276
3276
|
content: ElementRef | null;
|
|
3277
3277
|
collapsedList: KitCollapsedListComponent<KitCollapsedListItem> | null;
|
|
@@ -3286,8 +3286,10 @@ declare class KitScrollNavigationComponent implements AfterViewInit {
|
|
|
3286
3286
|
protected readonly collapsedListItems: WritableSignal<KitCollapsedListItem[]>;
|
|
3287
3287
|
private disableScrollUpdates;
|
|
3288
3288
|
private hasScrolled;
|
|
3289
|
+
private readonly firstRenderScrollElementId;
|
|
3289
3290
|
get currentVisibleItem(): KitCollapsedListItem | null;
|
|
3290
|
-
constructor();
|
|
3291
|
+
constructor(activatedRoute: ActivatedRoute);
|
|
3292
|
+
ngOnInit(): void;
|
|
3291
3293
|
ngAfterViewInit(): void;
|
|
3292
3294
|
onSectionScroll(): void;
|
|
3293
3295
|
scrollToSection(selectedItem: KitCollapsedListItem): void;
|
|
@@ -3296,7 +3298,7 @@ declare class KitScrollNavigationComponent implements AfterViewInit {
|
|
|
3296
3298
|
private setLastSectionMinHeight;
|
|
3297
3299
|
private calculateLastSectionMinHeight;
|
|
3298
3300
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitScrollNavigationComponent, never>;
|
|
3299
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationComponent, "kit-scroll-navigation", never, { "isNavigationBtnDisabled": { "alias": "isNavigationBtnDisabled"; "required": false; "isSignal": true; }; "dropdownDefaultText": { "alias": "dropdownDefaultText"; "required": false; "isSignal": true; };
|
|
3301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationComponent, "kit-scroll-navigation", never, { "isNavigationBtnDisabled": { "alias": "isNavigationBtnDisabled"; "required": false; "isSignal": true; }; "dropdownDefaultText": { "alias": "dropdownDefaultText"; "required": false; "isSignal": true; }; }, {}, ["sections"], never, true, never>;
|
|
3300
3302
|
}
|
|
3301
3303
|
|
|
3302
3304
|
declare class KitEntitySectionComponent {
|