@symbo.ls/atoms 2.11.242 → 2.11.254

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/Animation.js +0 -1
  2. package/Text.js +1 -0
  3. package/package.json +2 -2
package/Animation.js CHANGED
@@ -28,7 +28,6 @@ export const Animation = {
28
28
  animationName: (el) => el.props.animationName && {
29
29
  animationName: el.deps.applyAnimationProps(el.props.animationName, el)
30
30
  },
31
-
32
31
  animationDuration: ({ props, deps }) => props.animationDuration && ({
33
32
  animationDuration: deps.getTimingByKey(props.animationDuration).timing
34
33
  }),
package/Text.js CHANGED
@@ -27,6 +27,7 @@ export const Text = {
27
27
  whiteSpace: ({ props }) => !isUndefined(props.whiteSpace) && ({ whiteSpace: props.whiteSpace }),
28
28
  wordWrap: ({ props }) => !isUndefined(props.wordWrap) && ({ wordWrap: props.wordWrap }),
29
29
  letterSpacing: ({ props }) => !isUndefined(props.letterSpacing) && ({ letterSpacing: props.letterSpacing }),
30
+ textOverflow: ({ props }) => !isUndefined(props.textOverflow) && ({ textOverflow: props.textOverflow }),
30
31
  textAlign: ({ props }) => !isUndefined(props.textAlign) && ({ textAlign: props.textAlign }),
31
32
  fontWeight: ({ props }) => !isUndefined(props.fontWeight) && ({
32
33
  fontWeight: props.fontWeight,
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.242",
3
+ "version": "2.11.254",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "56daeda0385e51332c376ac254d54bb6fd8e35e5",
6
+ "gitHead": "35bf99dd01f3f26984d9b081a3ee5c7d2a18fcd0",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",