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
0
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.3 to 2.2.4

angular-google-charts.d.ts

5

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

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

export declare type Column = string | google.visualization.ColumnSpec;
export declare type Row = (string | number | Date | null)[];
export declare type Row = (string | number | Date | {
v: string | number | Date | null;
f: string | null;
} | null)[];
export interface ChartBase {

@@ -9,0 +12,0 @@ /**

2

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

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

static ɵfac: i0.ɵɵFactoryDeclaration<ChartEditorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartEditorComponent, "chart-editor", never, {}, {}, never, ["*"], false>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartEditorComponent, "chart-editor", never, {}, {}, never, ["*"]>;
}

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

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>;
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWrapperComponent, "chart-wrapper", ["chartWrapper"], { "specs": "specs"; }, { "error": "error"; "ready": "ready"; "select": "select"; }, never, never>;
}

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

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>;
static ɵcmp: i0.ɵɵComponentDeclaration<ControlWrapperComponent, "control-wrapper", ["controlWrapper"], { "for": "for"; "type": "type"; "options": "options"; "state": "state"; }, { "error": "error"; "ready": "ready"; "stateChange": "stateChange"; }, never, never>;
}

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

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>;
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "dashboard", ["dashboard"], { "data": "data"; "columns": "columns"; "formatters": "formatters"; }, { "ready": "ready"; "error": "error"; }, ["controlWrappers"], ["*"]>;
}

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

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>;
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>;
}

@@ -27,3 +27,3 @@ export declare enum ChartType {

TreeMap = "TreeMap",
WordTree = "wordtree"
WordTree = "WordTree"
}
{
"name": "angular-google-charts",
"version": "2.2.3",
"version": "2.2.4",
"description": "A wrapper for the Google Charts library written with Angular",

@@ -26,31 +26,17 @@ "keywords": [

},
"dependencies": {
"@types/google.visualization": "0.0.68",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@angular/common": ">=6.0.0 <=14.x.x",
"@angular/core": ">=6.0.0 <=14.x.x"
"@angular/common": ">=12.0.0 <=15.x.x",
"@angular/core": ">=12.0.0 <=15.x.x"
},
"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"
}
"dependencies": {
"@types/google.visualization": "0.0.74",
"tslib": "^2.2.0"
},
"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",
"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