@symbo.ls/atoms 2.11.400 → 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.
- package/Block.js +5 -1
- package/package.json +2 -2
package/Block.js
CHANGED
|
@@ -90,6 +90,10 @@ export const Block = {
|
|
|
90
90
|
direction: props.direction
|
|
91
91
|
}),
|
|
92
92
|
|
|
93
|
+
objectFit: ({ props, deps }) => !deps.isUndefined(props.objectFit) && ({
|
|
94
|
+
objectFit: props.objectFit
|
|
95
|
+
}),
|
|
96
|
+
|
|
93
97
|
aspectRatio: ({ props, deps }) => !deps.isUndefined(props.aspectRatio) && ({
|
|
94
98
|
aspectRatio: props.aspectRatio
|
|
95
99
|
}),
|
|
@@ -150,7 +154,7 @@ export const Block = {
|
|
|
150
154
|
float: props.float
|
|
151
155
|
}),
|
|
152
156
|
|
|
153
|
-
flex: ({ props, deps }) => props.flex && ({
|
|
157
|
+
flex: ({ props, deps }) => !deps.isUndefined(props.flex) && ({
|
|
154
158
|
flex: props.flex
|
|
155
159
|
}),
|
|
156
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.
|
|
3
|
+
"version": "2.11.406",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"gitHead": "
|
|
6
|
+
"gitHead": "d565ef2fb7ef869266fc1396568545b1a0b57130",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@domql/state": "latest",
|
|
9
9
|
"@domql/utils": "latest",
|