@symbo.ls/atoms 2.11.261 → 2.11.262
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.
- package/Block.js +3 -3
- package/package.json +2 -2
package/Block.js
CHANGED
|
@@ -28,7 +28,7 @@ export const Block = {
|
|
|
28
28
|
display: props.display
|
|
29
29
|
}),
|
|
30
30
|
|
|
31
|
-
hide: ({ props }) =>
|
|
31
|
+
hide: ({ props }) => props.hide && ({
|
|
32
32
|
display: 'none !important'
|
|
33
33
|
}),
|
|
34
34
|
|
|
@@ -125,7 +125,7 @@ export const Block = {
|
|
|
125
125
|
}),
|
|
126
126
|
gridArea: ({ props, deps }) => props.gridArea && ({ gridArea: props.gridArea }),
|
|
127
127
|
|
|
128
|
-
flex: ({ props }) =>
|
|
128
|
+
flex: ({ props }) => props.flex && ({
|
|
129
129
|
flex: props.flex
|
|
130
130
|
}),
|
|
131
131
|
flexDirection: ({ props }) => !isUndefined(props.flexDirection) && ({
|
|
@@ -146,7 +146,7 @@ export const Block = {
|
|
|
146
146
|
alignSelf: ({ props }) => !isUndefined(props.alignSelf) && ({
|
|
147
147
|
alignSelf: props.alignSelf
|
|
148
148
|
}),
|
|
149
|
-
order: ({ props }) =>
|
|
149
|
+
order: ({ props }) => props.order && ({
|
|
150
150
|
order: props.order
|
|
151
151
|
}),
|
|
152
152
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/atoms",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.262",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "f5fc1f8eb0fde32e726a8f46a1c8d2c7c588a8e5",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@domql/state": "latest",
|
|
9
9
|
"@domql/utils": "latest",
|