Socket
Socket
Sign inDemoInstall

angular2-virtual-scroll

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-virtual-scroll - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

4

CHANGELOG.md
# v0.0.4
* Merging pull request: [Completely define ngOnChanges function signature #2](https://github.com/rintoj/angular2-virtual-scroll/pull/2)
# v0.0.4
* BREAKING CHANGE: Removed `marginX` and `marginY`. These are auto calculated now.

@@ -5,0 +9,0 @@ * Added support for list items with variable width and height. Use `childWidth` and `childHeight`

4

dist/virtual-scroll.d.ts

@@ -1,2 +0,2 @@

import { Renderer, OnDestroy, OnChanges, ElementRef, EventEmitter, ModuleWithProviders } from '@angular/core';
import { Renderer, OnDestroy, OnChanges, ElementRef, EventEmitter, ModuleWithProviders, SimpleChanges } from '@angular/core';
export interface IndexUpdateEvent {

@@ -24,3 +24,3 @@ start?: number;

constructor(element: ElementRef, renderer: Renderer);
ngOnChanges(): void;
ngOnChanges(changes: SimpleChanges): void;
ngOnDestroy(): void;

@@ -27,0 +27,0 @@ refresh(): void;

@@ -25,3 +25,3 @@ "use strict";

}
VirtualScrollComponent.prototype.ngOnChanges = function () {
VirtualScrollComponent.prototype.ngOnChanges = function (changes) {
this.previousStart = undefined;

@@ -28,0 +28,0 @@ this.previousEnd = undefined;

{
"name": "angular2-virtual-scroll",
"version": "0.0.4",
"version": "0.0.5",
"description": "Angular 2 module for virtual -infinite- list. Supports multi-column",

@@ -5,0 +5,0 @@ "main": "dist/virtual-scroll.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc