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

vizabi-barrankchart

Package Overview
Dependencies
Maintainers
3
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vizabi-barrankchart - npm Package Compare versions

Comparing version 3.3.0 to 3.3.1

37

build/barrankchart.js

@@ -380,3 +380,3 @@ // https://github.com/kuguarpwnz/vizabi-tool-bundler#readme v1.0.0 Copyright 2021 undefined

else
label = Object.values(d.label).join(", ");
label = Object.entries(d.label).filter(entry => entry[0] != this.MDL.frame.data.concept).map(entry => entry[1]).join(", ");

@@ -738,3 +738,4 @@ if (label.length >= longestLabelLength) label = label.substring(0, longestLabelLength - 1) + "…";

constructor(config){
const marker = config.splash(config.model.markers.bar);
Vizabi.utils.applyDefaults(config.model.markers.bar.config, BarRankChart.DEFAULT_CORE);
const marker = config.model.markers.bar.encoding.frame.splash.marker;

@@ -814,2 +815,34 @@ config.name = "barrankchart";

BarRankChart.DEFAULT_CORE = {
requiredEncodings: ["x"],
encoding: {
selected: {
modelType: "selection"
},
highlighted: {
modelType: "selection"
},
x: {
scale: {
allowedTypes: ["linear", "log", "genericLog", "pow"]
}
},
color: {
scale: {
modelType: "color"
}
},
label: {
data: {
modelType: "entityPropertyDataConfig"
}
},
frame: {
modelType: "frame",
}
}
};
BarRankChart.versionInfo = { version: "1.0.0", build: 1618341355608 };
return BarRankChart;

@@ -816,0 +849,0 @@

2

package.json
{
"name": "vizabi-barrankchart",
"version": "3.3.0",
"version": "3.3.1",
"description": "Bar rank chart tool for Vizabi 📊",

@@ -5,0 +5,0 @@ "scripts": {

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