@hpcc-js/chart
Advanced tools
Comparing version 3.2.0 to 3.3.0
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2513129
108
15456
1
2
Updated@hpcc-js/api@^3.3.0
Updated@hpcc-js/common@^3.3.0
Updated@hpcc-js/util@^3.3.0