ng-virtual-list 16.3.0 → 16.3.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/esm2022/lib/components/ng-virtual-list-item.component.mjs +1 -1
- package/esm2022/lib/ng-virtual-list.component.mjs +15 -4
- package/esm2022/lib/utils/trackBox.mjs +10 -5
- package/fesm2022/ng-virtual-list.mjs +23 -7
- package/fesm2022/ng-virtual-list.mjs.map +1 -1
- package/lib/components/ng-virtual-list-item.component.d.ts +5 -5
- package/lib/utils/trackBox.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10,15 +10,15 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* @email djonnyx@gmail.com
|
|
11
11
|
*/
|
|
12
12
|
export declare class NgVirtualListItemComponent extends BaseVirtualListItemComponent {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
protected _cdr: ChangeDetectorRef;
|
|
14
|
+
protected _elementRef: ElementRef<HTMLElement>;
|
|
15
|
+
protected static __nextId: number;
|
|
16
|
+
protected _id: number;
|
|
17
17
|
get id(): number;
|
|
18
18
|
regular: boolean;
|
|
19
19
|
data: IRenderVirtualListItem | undefined;
|
|
20
20
|
set item(v: IRenderVirtualListItem | undefined);
|
|
21
|
-
|
|
21
|
+
protected _regularLength: string;
|
|
22
22
|
set regularLength(v: string);
|
|
23
23
|
get item(): IRenderVirtualListItem | undefined;
|
|
24
24
|
get itemId(): import("../types").Id | undefined;
|
package/lib/utils/trackBox.d.ts
CHANGED