Socket
Socket
Sign inDemoInstall

angular2-google-chart

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular2-google-chart - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

8

example/app.component.js
/*
* @author Vimala A
*/
System.register(['@angular/core', '../directives/angular2-google-chart.directive'], function(exports_1, context_1) {
System.register(['@angular/core'], function(exports_1, context_1) {
"use strict";

@@ -16,3 +16,3 @@ var __moduleName = context_1 && context_1.id;

};
var core_1, angular2_google_chart_directive_1;
var core_1;
var AppComponent;

@@ -23,5 +23,2 @@ return {

core_1 = core_1_1;
},
function (angular2_google_chart_directive_1_1) {
angular2_google_chart_directive_1 = angular2_google_chart_directive_1_1;
}],

@@ -169,3 +166,2 @@ execute: function() {

selector: 'my-app',
directives: [angular2_google_chart_directive_1.GoogleChart],
template: "\n <h2> Gaugh Chart</h2>\n <div id=\"gauge_chart\" [chartData]=\"gauge_ChartData\" [chartOptions]= \"gauge_ChartOptions\" chartType=\"Gauge\" GoogleChart></div>\n <h2> Area Chart</h2>\n <div id=\"area_chart\" [chartData]=\"area_ChartData\" [chartOptions]= \"area_ChartOptions\" chartType=\"AreaChart\" GoogleChart></div>\n <h2> Line Chart</h2>\n <div id=\"line_chart\" [chartData]=\"line_ChartData\" [chartOptions]= \"line_ChartOptions\" chartType=\"LineChart\" GoogleChart></div>\n <h2> Bubble Chart</h2>\n <div id=\"bubble_chart\" [chartData]=\"bubble_ChartData\" [chartOptions] = \"bubble_ChartOptions\" chartType=\"BubbleChart\" GoogleChart></div>\n <h2> Scatter Chart</h2>\n <div id=\"scatter_chart\" [chartData]=\"scatter_ChartData\" [chartOptions] = \"scatter_ChartOptions\" chartType=\"ScatterChart\" GoogleChart></div>\n <h2> CandlestickChart</h2>\n <div id=\"candle_chart\" [chartData]=\"candle_ChartData\" [chartOptions] = \"candle_ChartOptions\" chartType=\"CandlestickChart\" GoogleChart></div> \n <h2> Pie Chart</h2>\n <div id=\"pie_chart\" [chartData]=\"pie_ChartData\" [chartOptions] = \"pie_ChartOptions\" chartType=\"PieChart\" GoogleChart></div> \n <h2> Bar Chart</h2>\n <div id=\"bar_chart\" [chartData]=\"bar_ChartData\" [chartOptions] = \"bar_ChartOptions\" chartType=\"BarChart\" GoogleChart></div>\n\t\n\t"

@@ -172,0 +168,0 @@ }),

@@ -6,6 +6,4 @@ /*

import {Component} from '@angular/core';
import {GoogleChart} from '../directives/angular2-google-chart.directive';
@Component({
selector : 'my-app',
directives: [GoogleChart],
template: `

@@ -12,0 +10,0 @@ <h2> Gaugh Chart</h2>

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

System.register(['@angular/core', '@angular/platform-browser', './app.component'], function(exports_1, context_1) {
System.register(['@angular/core', '@angular/platform-browser', './app.component', '../directives/angular2-google-chart.directive'], function(exports_1, context_1) {
"use strict";

@@ -13,3 +13,3 @@ var __moduleName = context_1 && context_1.id;

};
var core_1, platform_browser_1, app_component_1;
var core_1, platform_browser_1, app_component_1, angular2_google_chart_directive_1;
var AppModule;

@@ -26,2 +26,5 @@ return {

app_component_1 = app_component_1_1;
},
function (angular2_google_chart_directive_1_1) {
angular2_google_chart_directive_1 = angular2_google_chart_directive_1_1;
}],

@@ -34,3 +37,3 @@ execute: function() {

core_1.NgModule({
declarations: [app_component_1.AppComponent],
declarations: [app_component_1.AppComponent, angular2_google_chart_directive_1.GoogleChart],
imports: [platform_browser_1.BrowserModule],

@@ -37,0 +40,0 @@ bootstrap: [app_component_1.AppComponent],

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import {GoogleChart} from '../directives/angular2-google-chart.directive';
@NgModule({
declarations: [AppComponent],
declarations: [AppComponent,GoogleChart],
imports: [BrowserModule],

@@ -8,0 +8,0 @@ bootstrap: [AppComponent],

{
"name": "angular2-google-chart",
"version": "1.1.1",
"version": "1.1.2",
"description": "google chart directive for angular2",
"main": "index.js",
"dependencies": {
"@angular/common": "^2.0.0-rc.5",
"@angular/compiler": "^2.0.0-rc.5",
"@angular/core": "^2.0.0-rc.5",
"@angular/platform-browser": "^2.0.0-rc.5",
"@angular/platform-browser-dynamic": "^2.0.0-rc.5",
"@angular/upgrade": "^2.0.0-rc.5",
"@angular/common": "^2.1.0-beta.0",
"@angular/compiler": "^2.1.0-beta.0",
"@angular/core": "^2.1.0-beta.0",
"@angular/platform-browser": "^2.1.0-beta.0",
"@angular/platform-browser-dynamic": "^2.1.0-beta.0",
"@angular/upgrade": "^2.1.0-beta.0",
"core-js": "^2.4.0",

@@ -14,0 +14,0 @@ "reflect-metadata": "^0.1.3",

Sorry, the diff of this file is not supported yet

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