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

@convoy/dapper

Package Overview
Dependencies
Maintainers
58
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@convoy/dapper - npm Package Compare versions

Comparing version 2.0.106 to 2.0.109

2

dist/src/libs/generateCSSDeclaration.d.ts

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

export default function generateCSSDeclaration(property: string, value: string | number): string;
export default function generateCSSDeclaration(property: string, value: string | number | undefined): string;
"use strict";
var hyphenateStyleName = require("hyphenate-style-name");
function generateCSSDeclaration(property, value) {
if (value === undefined)
return '';
return hyphenateStyleName(property) + ":" + value;

@@ -5,0 +7,0 @@ }

@@ -14,3 +14,3 @@ /**

export declare type StyleRule = {
[key: string]: StyleValue | StyleValue[] | StyleRule;
[key: string]: StyleValue | StyleValue[] | StyleRule | undefined;
};

@@ -17,0 +17,0 @@ /**

{
"name": "@convoy/dapper",
"version": "2.0.106",
"version": "2.0.109",
"description": "Styling library",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

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