Socket
Socket
Sign inDemoInstall

@jiaminghi/charts

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jiaminghi/charts - npm Package Compare versions

Comparing version 0.2.16 to 0.2.17

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 0.2.17-alpha (2020-07-02)
### Bug Fixes
- **numberText:** Fix: When rendering, 0 is ignored.
# 0.2.16-alpha (2020-06-16)

@@ -2,0 +8,0 @@

3

lib/extend/index.js

@@ -177,3 +177,4 @@ "use strict";

textSegments.forEach(function (t, i) {
var currentNumber = number[i] || '';
var currentNumber = number[i];
if (typeof currentNumber !== 'number') currentNumber = '';

@@ -180,0 +181,0 @@ if (typeof currentNumber === 'number') {

{
"name": "@jiaminghi/charts",
"version": "0.2.16",
"version": "0.2.17",
"author": "JiaMing <743192023@qq.com>",

@@ -5,0 +5,0 @@ "description": "Lightweight charting",

@@ -164,3 +164,4 @@ import { extendNewGraph } from '@jiaminghi/c-render'

textSegments.forEach((t, i) => {
let currentNumber = number[i] || ''
let currentNumber = number[i]
if (typeof currentNumber !== 'number') currentNumber = ''

@@ -167,0 +168,0 @@ if (typeof currentNumber === 'number') {

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

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

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