styled-svelte
Advanced tools
Comparing version
@@ -11,2 +11,5 @@ export function parseCssFromTemplateStrings(args) { | ||
} | ||
else if (typeof args[i] === 'string') { | ||
result.push(args[0][i - 1], args[i]); | ||
} | ||
else { | ||
@@ -13,0 +16,0 @@ result.push(args[0][i]); |
{ | ||
"name": "styled-svelte", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Svelte styled components package", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -12,2 +12,4 @@ export function parseCssFromTemplateStrings<T = any>(args: any) { | ||
result.push(args[0][i - 1], (args[i] as (props: T) => any)(props)); | ||
} else if (typeof args[i] === 'string') { | ||
result.push(args[0][i - 1], args[i]); | ||
} else { | ||
@@ -14,0 +16,0 @@ result.push(args[0][i]); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
152478
0.25%2082
0.24%