@symbo.ls/atoms 2.11.346 → 2.11.351

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 +2 -0
  2. package/Flex.js +1 -3
  3. package/package.json +2 -2
package/Block.js CHANGED
@@ -213,6 +213,8 @@ export const Block = {
213
213
  resize: props.resize
214
214
  }),
215
215
 
216
+ verticalAlign: ({ props }) => !isUndefined(props.verticalAlign) && ({ verticalAlign: props.verticalAlign }),
217
+
216
218
  columns: ({ props }) => !isUndefined(props.columns) && ({
217
219
  columns: props.columns
218
220
  }),
package/Flex.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { isString, isUndefined } from '@domql/utils'
3
+ import { isString } from '@domql/utils'
4
4
 
5
5
  export const Flex = {
6
6
  props: {
@@ -19,8 +19,6 @@ export const Flex = {
19
19
  }
20
20
  },
21
21
 
22
- verticalAlign: ({ props }) => !isUndefined(props.verticalAlign) && ({ flexWrap: props.verticalAlign }),
23
-
24
22
  wrap: ({ props }) => props.wrap && ({ flexWrap: props.wrap }),
25
23
  align: ({ props }) => {
26
24
  if (!isString(props.align)) return
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.346",
3
+ "version": "2.11.351",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "69805f4092a5b502348c2587845b47f5e66495f8",
6
+ "gitHead": "7467ad3cc2fb752e3a484df743e88422938756f7",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",