@convoy/dapper
Advanced tools
Comparing version 2.0.106 to 2.0.109
@@ -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
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
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
116963
1660