@symbo.ls/atoms
Advanced tools
Comparing version 2.11.265 to 2.11.269
@@ -220,2 +220,3 @@ 'use strict' | ||
export const Br = { tag: 'br' } | ||
export const Div = { tag: 'div' } | ||
export const Span = { tag: 'span' } | ||
@@ -222,0 +223,0 @@ export const Ul = { |
{ | ||
"name": "@symbo.ls/atoms", | ||
"version": "2.11.265", | ||
"version": "2.11.269", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"gitHead": "e96a45d1a191dbcd8ee2d02c969398821e1f446d", | ||
"gitHead": "9539c62d29cc279dbe7e149aa96bb8ee019c7119", | ||
"dependencies": { | ||
@@ -8,0 +8,0 @@ "@domql/state": "latest", |
12
Svg.js
@@ -34,8 +34,8 @@ 'use strict' | ||
if (props.src) { | ||
deps.init({ | ||
svg: { [SVGKey]: props.src } | ||
}, { | ||
document: context.document, | ||
emotion: context.emotion | ||
}) | ||
// deps.init({ | ||
// svg: { [SVGKey]: props.src } | ||
// }, { | ||
// document: context.document, | ||
// emotion: context.emotion | ||
// }) | ||
} | ||
@@ -42,0 +42,0 @@ |
@@ -27,2 +27,3 @@ 'use strict' | ||
textTransform: ({ props }) => !isUndefined(props.textTransform) && ({ textTransform: props.textTransform }), | ||
wordBreak: ({ props }) => !isUndefined(props.wordBreak) && ({ wordBreak: props.wordBreak }), | ||
whiteSpace: ({ props }) => !isUndefined(props.whiteSpace) && ({ whiteSpace: props.whiteSpace }), | ||
@@ -29,0 +30,0 @@ wordWrap: ({ props }) => !isUndefined(props.wordWrap) && ({ wordWrap: props.wordWrap }), |
48448
1357