-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated to use Lithium 7.0 and adds support for Angular 12. - Added strict build flags.
- Loading branch information
Showing
6 changed files
with
108 additions
and
113 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@lithiumjs/ngx-virtual-scroll", | ||
"description": "A fast virtual scrolling solution for Angular that natively supports items with unequal heights. Built with @lithiumjs/angular.", | ||
"repository": "https://github.com/lVlyke/lithium-ngx-virtual-scroll", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"main": "index.js", | ||
"author": "Mychal Thompson <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -14,17 +14,17 @@ | |
"test": "node ./scripts/test.js" | ||
}, | ||
"peerDependencies": { | ||
"@angular/core": "6.x.x - 11.x.x", | ||
"@angular/common": "6.x.x - 11.x.x", | ||
"@lithiumjs/angular": ">=5.0.0", | ||
"@angular/core": "6.x.x - 12.x.x", | ||
"@angular/common": "6.x.x - 12.x.x", | ||
"@lithiumjs/angular": ">=7.0.0", | ||
"rxjs": "6.x.x" | ||
}, | ||
"devDependencies": { | ||
"@angular/compiler": "^11.2.4", | ||
"@angular/compiler-cli": "^11.2.4", | ||
"@angular/core": "^11.2.4", | ||
"@angular/common": "^11.2.4", | ||
"@lithiumjs/angular": "^6.0.0-beta.0", | ||
"@lithiumjs/angular": "^7.0.0", | ||
"@types/jasmine": "^3.3.13", | ||
"detest-bdd": "^1.1.1", | ||
"fs-extra": "^8.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
import { Directive, TemplateRef } from "@angular/core"; | ||
import { LiComponent } from "@lithiumjs/angular"; | ||
|
||
@Directive({ | ||
selector: "[liVirtualItem]" | ||
}) | ||
export class VirtualItem extends LiComponent { | ||
export class VirtualItem { | ||
|
||
constructor( | ||
public readonly templateRef: TemplateRef<HTMLElement> | ||
) { | ||
super(); | ||
} | ||
) {} | ||
} |
Oops, something went wrong.