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

angular-google-charts

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-google-charts - npm Package Compare versions

Comparing version 2.2.2 to 2.2.3

esm2020/angular-google-charts.mjs

3

lib/components/chart-editor/chart-editor.component.d.ts

@@ -6,2 +6,3 @@ /// <reference path="types.d.ts" />

import { ChartEditorRef } from './chart-editor-ref';
import * as i0 from "@angular/core";
export declare class ChartEditorComponent implements OnInit {

@@ -26,2 +27,4 @@ private scriptLoaderService;

editChart(component: ChartBase, options: google.visualization.ChartEditorOptions): ChartEditorRef;
static ɵfac: i0.ɵɵFactoryDeclaration<ChartEditorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartEditorComponent, "chart-editor", never, {}, {}, never, ["*"], false>;
}

@@ -6,2 +6,3 @@ /// <reference types="@types/google.visualization" />

import { ChartBase } from '../chart-base/chart-base.component';
import * as i0 from "@angular/core";
export declare class ChartWrapperComponent implements ChartBase, OnChanges, OnInit {

@@ -35,2 +36,4 @@ private element;

private registerChartEvents;
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWrapperComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWrapperComponent, "chart-wrapper", ["chartWrapper"], { "specs": "specs"; }, { "error": "error"; "ready": "ready"; "select": "select"; }, never, never, false>;
}

@@ -7,2 +7,3 @@ /// <reference types="@types/google.visualization" />

import { ChartBase } from '../chart-base/chart-base.component';
import * as i0 from "@angular/core";
export declare class ControlWrapperComponent implements OnInit, OnChanges {

@@ -85,2 +86,4 @@ private loaderService;

private addEventListeners;
static ɵfac: i0.ɵɵFactoryDeclaration<ControlWrapperComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ControlWrapperComponent, "control-wrapper", ["controlWrapper"], { "for": "for"; "type": "type"; "options": "options"; "state": "state"; }, { "error": "error"; "ready": "ready"; "stateChange": "stateChange"; }, never, never, false>;
}

@@ -7,2 +7,3 @@ import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';

import { Column, Row } from '../chart-base/chart-base.component';
import * as i0 from "@angular/core";
export declare class DashboardComponent implements OnInit, OnChanges {

@@ -55,2 +56,4 @@ private element;

private initializeBindings;
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "dashboard", ["dashboard"], { "data": "data"; "columns": "columns"; "formatters": "formatters"; }, { "ready": "ready"; "error": "error"; }, ["controlWrappers"], ["*"], false>;
}

@@ -11,2 +11,3 @@ /// <reference types="@types/google.visualization" />

import { DashboardComponent } from '../dashboard/dashboard.component';
import * as i0 from "@angular/core";
export declare class GoogleChartComponent implements ChartBase, OnInit, OnChanges, OnDestroy {

@@ -106,2 +107,4 @@ private element;

private drawChart;
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleChartComponent, [null, null, null, { optional: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleChartComponent, "google-chart", ["googleChart"], { "type": "type"; "data": "data"; "columns": "columns"; "title": "title"; "width": "width"; "height": "height"; "options": "options"; "formatters": "formatters"; "dynamicResize": "dynamicResize"; }, { "ready": "ready"; "error": "error"; "select": "select"; "mouseover": "mouseover"; "mouseleave": "mouseleave"; }, never, never, false>;
}
import { ModuleWithProviders } from '@angular/core';
import { GoogleChartsConfig } from './types/google-charts-config';
import * as i0 from "@angular/core";
import * as i1 from "./components/google-chart/google-chart.component";
import * as i2 from "./components/chart-wrapper/chart-wrapper.component";
import * as i3 from "./components/dashboard/dashboard.component";
import * as i4 from "./components/control-wrapper/control-wrapper.component";
import * as i5 from "./components/chart-editor/chart-editor.component";
export declare class GoogleChartsModule {
static forRoot(config?: GoogleChartsConfig): ModuleWithProviders<GoogleChartsModule>;
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleChartsModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<GoogleChartsModule, [typeof i1.GoogleChartComponent, typeof i2.ChartWrapperComponent, typeof i3.DashboardComponent, typeof i4.ControlWrapperComponent, typeof i5.ChartEditorComponent], never, [typeof i1.GoogleChartComponent, typeof i2.ChartWrapperComponent, typeof i3.DashboardComponent, typeof i4.ControlWrapperComponent, typeof i5.ChartEditorComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<GoogleChartsModule>;
}
/// <reference types="@types/google.visualization" />
import { Column, Row } from '../components/chart-base/chart-base.component';
import { Formatter } from '../types/formatter';
import * as i0 from "@angular/core";
export declare class DataTableService {

@@ -8,2 +9,4 @@ create(data: Row[] | undefined, columns?: Column[], formatters?: Formatter[]): google.visualization.DataTable | undefined;

private applyFormatters;
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<DataTableService>;
}
import { NgZone } from '@angular/core';
import { Observable } from 'rxjs';
import { GoogleChartsConfig } from '../types/google-charts-config';
import * as i0 from "@angular/core";
export declare class ScriptLoaderService {

@@ -40,2 +41,4 @@ private zone;

private createGoogleChartsScript;
static ɵfac: i0.ɵɵFactoryDeclaration<ScriptLoaderService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ScriptLoaderService>;
}

2

lib/types/events.d.ts

@@ -19,3 +19,3 @@ /// <reference types="@types/google.visualization" />

*/
selection: google.visualization.VisualizationSelectionArray[];
selection: google.visualization.ChartSelection[];
}

@@ -22,0 +22,0 @@ export interface ChartMouseOverEvent {

{
"name": "angular-google-charts",
"version": "2.2.2",
"version": "2.2.3",
"description": "A wrapper for the Google Charts library written with Angular",

@@ -27,17 +27,30 @@ "keywords": [

"dependencies": {
"@types/google.visualization": "0.0.58",
"tslib": "^2.2.0"
"@types/google.visualization": "0.0.68",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@angular/common": ">=6.0.0 <=12.x.x",
"@angular/core": ">=6.0.0 <=12.x.x"
"@angular/common": ">=6.0.0 <=14.x.x",
"@angular/core": ">=6.0.0 <=14.x.x"
},
"main": "bundles/angular-google-charts.umd.js",
"module": "fesm2015/angular-google-charts.js",
"es2015": "fesm2015/angular-google-charts.js",
"esm2015": "esm2015/angular-google-charts.js",
"fesm2015": "fesm2015/angular-google-charts.js",
"typings": "angular-google-charts.d.ts",
"metadata": "angular-google-charts.metadata.json",
"main": "src/index.ts",
"module": "fesm2015/angular-google-charts.mjs",
"es2020": "fesm2020/angular-google-charts.mjs",
"esm2020": "esm2020/angular-google-charts.mjs",
"fesm2020": "fesm2020/angular-google-charts.mjs",
"fesm2015": "fesm2015/angular-google-charts.mjs",
"typings": "index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"esm2020": "./esm2020/angular-google-charts.mjs",
"es2020": "./fesm2020/angular-google-charts.mjs",
"es2015": "./fesm2015/angular-google-charts.mjs",
"node": "./fesm2015/angular-google-charts.mjs",
"default": "./fesm2020/angular-google-charts.mjs"
}
},
"sideEffects": false
}
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