@onereach/styles 2.37.3 → 2.37.4-beta.2486.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.37.
|
|
3
|
+
"version": "2.37.4-beta.2486.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": "4a0ec26623b04b4434a7794ceb226e71e861ab42"
|
|
58
|
+
}
|
|
60
59
|
}
|
|
@@ -83,7 +83,7 @@ module.exports = {
|
|
|
83
83
|
animation: {
|
|
84
84
|
'circular-loader': 'circular-loader 1400ms linear infinite',
|
|
85
85
|
'linear-loader': 'linear-loader 1400ms linear infinite',
|
|
86
|
-
'skeleton-loader': 'skeleton-loader
|
|
86
|
+
'skeleton-loader': 'skeleton-loader 1400ms linear infinite',
|
|
87
87
|
},
|
|
88
88
|
|
|
89
89
|
keyframes: {
|
|
@@ -115,8 +115,7 @@ module.exports = {
|
|
|
115
115
|
|
|
116
116
|
'100%': {
|
|
117
117
|
strokeDasharray: '25%, 100%',
|
|
118
|
-
|
|
119
|
-
strokeDashoffset: 'calc((100% - 0px) * -2.5)',
|
|
118
|
+
strokeDashoffset: 'calc((100% - 0px) * -2.5)', // Workaround for Safari
|
|
120
119
|
},
|
|
121
120
|
},
|
|
122
121
|
|
|
@@ -143,7 +142,7 @@ module.exports = {
|
|
|
143
142
|
},
|
|
144
143
|
|
|
145
144
|
boxShadow: {
|
|
146
|
-
'none': '0 0 #
|
|
145
|
+
'none': '0 0 #00000000',
|
|
147
146
|
...parseBoxShadowTokens(boxShadowTokens),
|
|
148
147
|
DEFAULT: '0 1px 1px rgba(0 0 0 / 0.24), 0 0 1px rgba(0 0 0 / 0.16)',
|
|
149
148
|
},
|
|
@@ -243,7 +242,7 @@ module.exports = {
|
|
|
243
242
|
|
|
244
243
|
return {
|
|
245
244
|
display: prefix + 'flex',
|
|
246
|
-
|
|
245
|
+
flexFlow: `${direction} nowrap`,
|
|
247
246
|
flex: prefix === 'inline-' ? '0 0 auto' : undefined,
|
|
248
247
|
alignItems: direction === 'row' ? 'center' : undefined,
|
|
249
248
|
};
|