@symbo.ls/atoms 2.11.265 → 2.11.270

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/Block.js +1 -0
  2. package/Text.js +1 -0
  3. package/package.json +2 -2
package/Block.js CHANGED
@@ -217,6 +217,7 @@ export const Hr = {
217
217
  props: { margin: 'C1 0' }
218
218
  }
219
219
  export const Br = { tag: 'br' }
220
+ export const Div = { tag: 'div' }
220
221
  export const Span = { tag: 'span' }
221
222
  export const Ul = {
222
223
  tag: 'ul',
package/Text.js CHANGED
@@ -24,6 +24,7 @@ export const Text = {
24
24
  // lineHeight: ({ props }) => !isUndefined(props.lineHeight) && getSpacingBasedOnRatio(props, 'lineHeight', null, ''),
25
25
  textDecoration: ({ props }) => !isUndefined(props.textDecoration) && ({ textDecoration: props.textDecoration }),
26
26
  textTransform: ({ props }) => !isUndefined(props.textTransform) && ({ textTransform: props.textTransform }),
27
+ wordBreak: ({ props }) => !isUndefined(props.wordBreak) && ({ wordBreak: props.wordBreak }),
27
28
  whiteSpace: ({ props }) => !isUndefined(props.whiteSpace) && ({ whiteSpace: props.whiteSpace }),
28
29
  wordWrap: ({ props }) => !isUndefined(props.wordWrap) && ({ wordWrap: props.wordWrap }),
29
30
  letterSpacing: ({ props }) => !isUndefined(props.letterSpacing) && ({ letterSpacing: props.letterSpacing }),
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.265",
3
+ "version": "2.11.270",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "e96a45d1a191dbcd8ee2d02c969398821e1f446d",
6
+ "gitHead": "4694cb8cc07ed7dd10624ad23e3ea5de7f45881a",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",