Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hpcc-js/chart

Package Overview
Dependencies
Maintainers
0
Versions
215
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hpcc-js/chart - npm Package Compare versions

Comparing version 3.2.0 to 3.3.0

dist/index.umd.cjs

27

package.json
{
"name": "@hpcc-js/chart",
"version": "3.2.0",
"version": "3.3.0",
"description": "hpcc-js - Viz Chart",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/*": "./dist/*"
},
"module": "./dist/index.js",
"browser": "./dist/index.js",
"browser": "./dist/index.umd.cjs",
"types": "./types/index.d.ts",

@@ -19,9 +21,8 @@ "files": [

"src/*",
"types/*",
"font-awesome/**/*"
"types/*"
],
"scripts": {
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
"bundle": "node esbuild.js",
"bundle-watch": "npm run bundle -- --development --watch",
"bundle": "vite build",
"bundle-watch": "vite --port 5500",
"gen-types": "tsc --project tsconfig.json",

@@ -40,8 +41,8 @@ "gen-types-watch": "npm run gen-types -- --watch",

"dependencies": {
"@hpcc-js/api": "^3.2.0",
"@hpcc-js/common": "^3.2.0",
"@hpcc-js/util": "^3.2.0"
"@hpcc-js/api": "^3.3.0",
"@hpcc-js/common": "^3.3.0",
"@hpcc-js/util": "^3.3.0"
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.3.0",
"@hpcc-js/esbuild-plugins": "^1.4.0",
"@types/d3-shape": "1.3.12",

@@ -80,3 +81,3 @@ "@types/d3-transition": "1.3.6",

"homepage": "https://github.com/hpcc-systems/Visualization",
"gitHead": "658c50fd965a7744ba8db675ba6878607c44d5e2"
"gitHead": "145a4d4c8189c70f08e9804e63959d6dd398bd9f"
}
export const PKG_NAME = "@hpcc-js/chart";
export const PKG_VERSION = "3.2.0";
export const BUILD_VERSION = "3.2.0";
export const BUILD_VERSION = "3.2.1";
import { Column } from "../Column";
import { Line } from "../Line"; Line;
import { Pie } from "../Pie";

@@ -4,0 +3,0 @@

@@ -115,3 +115,2 @@ import { HTMLWidget, Utility } from "@hpcc-js/common";

});
titleWidth; // Gap between title and bullet bar.

@@ -118,0 +117,0 @@ // Bullet Chart ---

@@ -273,3 +273,6 @@ // Word cloud layout by Jason Davies, https://www.jasondavies.com/wordcloud/

c.fillText(d.text, 0, 0);
if (d.padding) c.lineWidth = 2 * d.padding, c.strokeText(d.text, 0, 0);
if (d.padding) {
c.lineWidth = 2 * d.padding;
c.strokeText(d.text, 0, 0);
}
c.restore();

@@ -276,0 +279,0 @@ d.width = w;

import { Column } from "./Column";
import { Line } from "./Line"; Line;
import { Pie } from "./Pie";

@@ -4,0 +3,0 @@

export declare const PKG_NAME = "@hpcc-js/chart";
export declare const PKG_VERSION = "3.2.0";
export declare const BUILD_VERSION = "3.2.0";
export declare const BUILD_VERSION = "3.2.1";

Sorry, the diff of this file is too big to display

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