New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngx-heatmap

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-heatmap - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

37

index.js

@@ -9,8 +9,8 @@ import { Component, Input, NgModule, ViewChild } from '@angular/core';

*/
var NgXHeatMapComponent = (function () {
function NgXHeatMapComponent() {
var HeatMapComponent = (function () {
function HeatMapComponent() {
this.height = 400;
this.width = 400;
}
Object.defineProperty(NgXHeatMapComponent.prototype, "configurations", {
Object.defineProperty(HeatMapComponent.prototype, "configurations", {
get: /**

@@ -38,3 +38,3 @@ * @return {?}

});
Object.defineProperty(NgXHeatMapComponent.prototype, "heatPoints", {
Object.defineProperty(HeatMapComponent.prototype, "heatPoints", {
set: /**

@@ -53,3 +53,3 @@ * @param {?} data

});
Object.defineProperty(NgXHeatMapComponent.prototype, "maxDataPoints", {
Object.defineProperty(HeatMapComponent.prototype, "maxDataPoints", {
set: /**

@@ -68,3 +68,3 @@ * @param {?} value

});
Object.defineProperty(NgXHeatMapComponent.prototype, "minDataPoints", {
Object.defineProperty(HeatMapComponent.prototype, "minDataPoints", {
set: /**

@@ -86,3 +86,3 @@ * @param {?} value

*/
NgXHeatMapComponent.prototype.ngOnInit = /**
HeatMapComponent.prototype.ngOnInit = /**
* @return {?}

@@ -96,3 +96,3 @@ */

*/
NgXHeatMapComponent.prototype.ngOnChanges = /**
HeatMapComponent.prototype.ngOnChanges = /**
* @param {?} changes

@@ -109,3 +109,3 @@ * @return {?}

*/
NgXHeatMapComponent.prototype.ngAfterViewInit = /**
HeatMapComponent.prototype.ngAfterViewInit = /**
* @return {?}

@@ -125,3 +125,3 @@ */

*/
NgXHeatMapComponent.prototype.addPoint = /**
HeatMapComponent.prototype.addPoint = /**
* @param {?} point

@@ -133,7 +133,6 @@ * @return {?}

};
NgXHeatMapComponent.decorators = [
HeatMapComponent.decorators = [
{ type: Component, args: [{
selector: 'ngx-heatmap',
template: "<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>",
styleUrls: ['./ngx-heatmap.component.scss']
template: "<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>"
},] },

@@ -152,4 +151,4 @@ ];

/** @nocollapse */
NgXHeatMapComponent.ctorParameters = function () { return []; };
NgXHeatMapComponent.propDecorators = {
HeatMapComponent.ctorParameters = function () { return []; };
HeatMapComponent.propDecorators = {
"heatMapDiv": [{ type: ViewChild, args: ['heatMap',] },],

@@ -163,3 +162,3 @@ "height": [{ type: Input },],

};
return NgXHeatMapComponent;
return HeatMapComponent;
}());

@@ -191,6 +190,6 @@

declarations: [
NgXHeatMapComponent
HeatMapComponent
],
exports: [
NgXHeatMapComponent
HeatMapComponent
]

@@ -204,2 +203,2 @@ },] },

export { NgxHeatMapModule, NgXHeatMapComponent };
export { NgxHeatMapModule, HeatMapComponent };
import { AfterViewInit, OnChanges, OnInit } from '@angular/core';
export declare class NgXHeatMapComponent implements OnInit, OnChanges, AfterViewInit {
export declare class HeatMapComponent implements OnInit, OnChanges, AfterViewInit {
private heatMapDiv;

@@ -4,0 +4,0 @@ height: number;

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

{"__symbolic":"module","version":4,"metadata":{"NgxHeatMapModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":7,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":9,"character":4}],"declarations":[{"__symbolic":"reference","name":"NgXHeatMapComponent"}],"exports":[{"__symbolic":"reference","name":"NgXHeatMapComponent"}]}]}],"members":{},"statics":{"forRoot":{"__symbolic":"function","parameters":[],"value":{"ngModule":{"__symbolic":"reference","name":"NgxHeatMapModule"}}}}},"NgXHeatMapComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"ngx-heatmap","template":"<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>","styleUrls":["./ngx-heatmap.component.scss"]}]}],"members":{"heatMapDiv":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":12,"character":3},"arguments":["heatMap"]}]}],"height":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":3}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":3}}]}],"configurations":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":3}}]}],"heatPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":36,"character":3}}]}],"maxDataPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":44,"character":3}}]}],"minDataPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":52,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"ngOnChanges":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"addPoint":[{"__symbolic":"method"}]}}},"origins":{"NgxHeatMapModule":"./index","NgXHeatMapComponent":"./ngx-heatmap.component"},"importAs":"ngx-heatmap"}
{"__symbolic":"module","version":4,"metadata":{"NgxHeatMapModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":6,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":8,"character":4}],"declarations":[{"__symbolic":"reference","name":"HeatMapComponent"}],"exports":[{"__symbolic":"reference","name":"HeatMapComponent"}]}]}],"members":{},"statics":{"forRoot":{"__symbolic":"function","parameters":[],"value":{"ngModule":{"__symbolic":"reference","name":"NgxHeatMapModule"}}}}},"HeatMapComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":4,"character":1},"arguments":[{"selector":"ngx-heatmap","template":"<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>"}]}],"members":{"heatMapDiv":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":11,"character":3},"arguments":["heatMap"]}]}],"height":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":3}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":17,"character":3}}]}],"configurations":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":3}}]}],"heatPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":35,"character":3}}]}],"maxDataPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":43,"character":3}}]}],"minDataPoints":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":51,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}],"ngOnChanges":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"addPoint":[{"__symbolic":"method"}]}}},"origins":{"NgxHeatMapModule":"./index","HeatMapComponent":"./ngx-heatmap.component"},"importAs":"ngx-heatmap"}

@@ -11,8 +11,8 @@ (function (global, factory) {

*/
var NgXHeatMapComponent = (function () {
function NgXHeatMapComponent() {
var HeatMapComponent = (function () {
function HeatMapComponent() {
this.height = 400;
this.width = 400;
}
Object.defineProperty(NgXHeatMapComponent.prototype, "configurations", {
Object.defineProperty(HeatMapComponent.prototype, "configurations", {
get: /**

@@ -40,3 +40,3 @@ * @return {?}

});
Object.defineProperty(NgXHeatMapComponent.prototype, "heatPoints", {
Object.defineProperty(HeatMapComponent.prototype, "heatPoints", {
set: /**

@@ -55,3 +55,3 @@ * @param {?} data

});
Object.defineProperty(NgXHeatMapComponent.prototype, "maxDataPoints", {
Object.defineProperty(HeatMapComponent.prototype, "maxDataPoints", {
set: /**

@@ -70,3 +70,3 @@ * @param {?} value

});
Object.defineProperty(NgXHeatMapComponent.prototype, "minDataPoints", {
Object.defineProperty(HeatMapComponent.prototype, "minDataPoints", {
set: /**

@@ -88,3 +88,3 @@ * @param {?} value

*/
NgXHeatMapComponent.prototype.ngOnInit = /**
HeatMapComponent.prototype.ngOnInit = /**
* @return {?}

@@ -98,3 +98,3 @@ */

*/
NgXHeatMapComponent.prototype.ngOnChanges = /**
HeatMapComponent.prototype.ngOnChanges = /**
* @param {?} changes

@@ -111,3 +111,3 @@ * @return {?}

*/
NgXHeatMapComponent.prototype.ngAfterViewInit = /**
HeatMapComponent.prototype.ngAfterViewInit = /**
* @return {?}

@@ -127,3 +127,3 @@ */

*/
NgXHeatMapComponent.prototype.addPoint = /**
HeatMapComponent.prototype.addPoint = /**
* @param {?} point

@@ -135,7 +135,6 @@ * @return {?}

};
NgXHeatMapComponent.decorators = [
HeatMapComponent.decorators = [
{ type: core.Component, args: [{
selector: 'ngx-heatmap',
template: "<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>",
styleUrls: ['./ngx-heatmap.component.scss']
template: "<div #heatMap [style.width.px]=\"width? width: 500\" [style.height.px]=\"height? height: 500\"></div>"
},] },

@@ -154,4 +153,4 @@ ];

/** @nocollapse */
NgXHeatMapComponent.ctorParameters = function () { return []; };
NgXHeatMapComponent.propDecorators = {
HeatMapComponent.ctorParameters = function () { return []; };
HeatMapComponent.propDecorators = {
"heatMapDiv": [{ type: core.ViewChild, args: ['heatMap',] },],

@@ -165,3 +164,3 @@ "height": [{ type: core.Input },],

};
return NgXHeatMapComponent;
return HeatMapComponent;
}());

@@ -193,6 +192,6 @@

declarations: [
NgXHeatMapComponent
HeatMapComponent
],
exports: [
NgXHeatMapComponent
HeatMapComponent
]

@@ -207,3 +206,3 @@ },] },

exports.NgxHeatMapModule = NgxHeatMapModule;
exports.NgXHeatMapComponent = NgXHeatMapComponent;
exports.HeatMapComponent = HeatMapComponent;

@@ -210,0 +209,0 @@ Object.defineProperty(exports, '__esModule', { value: true });

{
"name": "ngx-heatmap",
"version": "0.0.3",
"version": "0.0.4",
"repository": {

@@ -30,7 +30,6 @@ "type": "git",

"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"dependencies": {
"@types/heatmap.js": "^2.0.35"
"zone.js": "^0.8.4",
"@types/heatmap.js": "^2.0.35",
"heatmap.js": "^2.0.5"
}
}
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