@bizy/core 20.2.1 → 20.2.2
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/fesm2022/bizy-core.mjs +10 -3
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -747,6 +747,7 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
747
747
|
private document;
|
|
748
748
|
private renderer;
|
|
749
749
|
private elementRef;
|
|
750
|
+
private virtualScroll;
|
|
750
751
|
content: TemplateRef<object>;
|
|
751
752
|
gridDirective: BizyGridForDirective;
|
|
752
753
|
resizeRef: ElementRef | null;
|
|
@@ -759,6 +760,7 @@ declare class BizyGridComponent implements AfterContentInit {
|
|
|
759
760
|
constructor(ref: ChangeDetectorRef, document: Document, renderer: Renderer2, elementRef: ElementRef);
|
|
760
761
|
ngAfterContentInit(): void;
|
|
761
762
|
trackById(index: number, item: any): any;
|
|
763
|
+
scrollTo(index: number, behavior?: 'auto' | 'instant' | 'smooth'): void;
|
|
762
764
|
ngOnDestroy(): void;
|
|
763
765
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyGridComponent, never>;
|
|
764
766
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyGridComponent, "bizy-grid", never, { "resizeRef": { "alias": "resizeRef"; "required": false; }; }, {}, ["gridDirective"], ["*"], true, never>;
|