@symbo.ls/atoms 2.11.404 → 2.11.406

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 (2) hide show
  1. package/Block.js +1 -1
  2. package/package.json +2 -2
package/Block.js CHANGED
@@ -154,7 +154,7 @@ export const Block = {
154
154
  float: props.float
155
155
  }),
156
156
 
157
- flex: ({ props, deps }) => props.flex && ({
157
+ flex: ({ props, deps }) => !deps.isUndefined(props.flex) && ({
158
158
  flex: props.flex
159
159
  }),
160
160
  flexDirection: ({ props, deps }) => !deps.isUndefined(props.flexDirection) && ({
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.404",
3
+ "version": "2.11.406",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "fc685747dfdd22b14196ffaf9c8fa06d515ef06b",
6
+ "gitHead": "d565ef2fb7ef869266fc1396568545b1a0b57130",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",