@onereach/styles 2.40.1 → 2.40.2-beta.2867.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/styles",
|
|
3
|
-
"version": "2.40.
|
|
3
|
+
"version": "2.40.2-beta.2867.0",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "./main.css",
|
|
@@ -55,6 +55,5 @@
|
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
|
-
}
|
|
59
|
-
"gitHead": "7fbef2539193e370bd0d42394fd5813c2eb4fbb7"
|
|
58
|
+
}
|
|
60
59
|
}
|
|
@@ -247,9 +247,15 @@ module.exports = {
|
|
|
247
247
|
|
|
248
248
|
return {
|
|
249
249
|
display: prefix + 'flex',
|
|
250
|
+
|
|
250
251
|
flexFlow: `${direction} nowrap`,
|
|
251
252
|
flex: prefix === 'inline-' ? '0 0 auto' : undefined,
|
|
253
|
+
|
|
254
|
+
alignContent: direction === 'row' ? 'center' : undefined,
|
|
255
|
+
justifyContent: direction === 'column' ? 'stretch' : undefined,
|
|
256
|
+
|
|
252
257
|
alignItems: direction === 'row' ? 'center' : undefined,
|
|
258
|
+
justifyItems: direction === 'column' ? 'stretch' : undefined,
|
|
253
259
|
};
|
|
254
260
|
},
|
|
255
261
|
}, {
|