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

@meta2d/form-diagram

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meta2d/form-diagram - npm Package Compare versions

Comparing version 1.0.19 to 1.0.20

2

package.json
{
"name": "@meta2d/form-diagram",
"version": "1.0.19",
"version": "1.0.20",
"description": "The form library based on le5le meta2d.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -48,2 +48,4 @@ import { Pen } from '../../core/src/pen';

offColor?: string;
offStrokeColor?: string;
onStrokeColor?: string;
disableOffColor?: string;

@@ -50,0 +52,0 @@ _textWidth?: number;

@@ -23,2 +23,6 @@ import { pSBC } from '../../core';

}
if (pen.lineWidth) {
ctx.strokeStyle = pen.onStrokeColor;
ctx.stroke();
}
ctx.fill();

@@ -37,2 +41,6 @@ ctx.closePath();

}
if (pen.lineWidth) {
ctx.strokeStyle = pen.offStrokeColor;
ctx.stroke();
}
ctx.fill();

@@ -39,0 +47,0 @@ ctx.closePath();

Sorry, the diff of this file is not supported yet

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