angular2-virtual-scroll
Advanced tools
Comparing version 0.0.8 to 0.0.9
# v0.0.9 | ||
* Feature: [Smooth scroll on webkit (mobile) #13](https://github.com/rintoj/angular2-virtual-scroll/issues/4) & [data from server #7](https://github.com/rintoj/angular2-virtual-scroll/issues/13) | ||
# v0.0.8 | ||
@@ -3,0 +7,0 @@ |
@@ -157,3 +157,3 @@ "use strict"; | ||
template: "\n <div class=\"total-padding\" [style.height]=\"scrollHeight + 'px'\"></div>\n <div class=\"scrollable-content\" #content [style.transform]=\"'translateY(' + topPadding + 'px)'\">\n <ng-content></ng-content>\n </div>\n ", | ||
styles: ["\n :host {\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n }\n .scrollable-content {\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n position: absolute;\n }\n .total-padding {\n width: 1px;\n opacity: 0;\n }\n "] | ||
styles: ["\n :host {\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n -webkit-overflow-scrolling: touch;\n }\n .scrollable-content {\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n position: absolute;\n }\n .total-padding {\n width: 1px;\n opacity: 0;\n }\n "] | ||
}), | ||
@@ -160,0 +160,0 @@ __metadata('design:paramtypes', [core_1.ElementRef, core_1.Renderer]) |
{ | ||
"name": "angular2-virtual-scroll", | ||
"version": "0.0.8", | ||
"description": "Angular 2 module for virtual -infinite- list. Supports multi-column", | ||
"main": "dist/virtual-scroll.js", | ||
"types": "dist/virtual-scroll.d.ts", | ||
"scripts": { | ||
"build": "npm run tsc --", | ||
"lint": "tslint src/**/*.ts", | ||
"prepublish": "npm run build", | ||
"start": "npm run watch", | ||
"test": "npm test", | ||
"tsc": "node_modules/typescript/bin/tsc", | ||
"tslint": "tslint", | ||
"watch": "npm run tsc -- -w" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/rintoj/angular2-virtual-scroll.git" | ||
}, | ||
"keywords": [ | ||
"virtual scroll", | ||
"scroll", | ||
"angular 2" | ||
], | ||
"author": "Rinto Jose", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/rintoj/angular2-virtual-scroll/issues" | ||
}, | ||
"homepage": "https://github.com/rintoj/angular2-virtual-scroll#readme", | ||
"devDependencies": { | ||
"@angular/common": "2.1.1", | ||
"@angular/compiler": "2.1.1", | ||
"@angular/core": "2.1.1", | ||
"@angular/platform-browser": "2.1.1", | ||
"@angular/platform-browser-dynamic": "2.1.1", | ||
"@types/node": "6.0.45", | ||
"codelyzer": "1.0.0-beta.2", | ||
"rxjs": "5.0.0-beta.12", | ||
"tslint": "3.15.1", | ||
"typescript": "2.0.6", | ||
"zone.js": "0.6.25" | ||
} | ||
} | ||
"name": "angular2-virtual-scroll", | ||
"version": "0.0.9", | ||
"description": "Angular 2 module for virtual -infinite- list. Supports multi-column", | ||
"main": "dist/virtual-scroll.js", | ||
"types": "dist/virtual-scroll.d.ts", | ||
"scripts": { | ||
"build": "npm run tsc --", | ||
"lint": "tslint src/**/*.ts", | ||
"prepublish": "npm run build", | ||
"start": "npm run watch", | ||
"test": "npm test", | ||
"tsc": "node_modules/typescript/bin/tsc", | ||
"tslint": "tslint", | ||
"watch": "npm run tsc -- -w" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/rintoj/angular2-virtual-scroll.git" | ||
}, | ||
"keywords": [ | ||
"virtual scroll", | ||
"scroll", | ||
"angular 2" | ||
], | ||
"author": "Rinto Jose", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/rintoj/angular2-virtual-scroll/issues" | ||
}, | ||
"homepage": "https://github.com/rintoj/angular2-virtual-scroll#readme", | ||
"devDependencies": { | ||
"@angular/common": "2.1.1", | ||
"@angular/compiler": "2.1.1", | ||
"@angular/core": "2.1.1", | ||
"@angular/platform-browser": "2.1.1", | ||
"@angular/platform-browser-dynamic": "2.1.1", | ||
"@types/node": "6.0.45", | ||
"codelyzer": "1.0.0-beta.2", | ||
"rxjs": "5.0.0-beta.12", | ||
"tslint": "3.15.1", | ||
"typescript": "2.0.6", | ||
"zone.js": "0.6.25" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32214