@onereach/styles 2.37.4-beta.2486.0 → 2.37.4-beta.2496.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.4-beta.2486.0",
3
+ "version": "2.37.4-beta.2496.0",
4
4
  "description": "Styles for or-ui-next",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./main.css",
@@ -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 1400ms linear infinite',
86
+ 'skeleton-loader': 'skeleton-loader 1.5s linear 0s infinite normal forwards',
87
87
  },
88
88
 
89
89
  keyframes: {
@@ -115,7 +115,8 @@ module.exports = {
115
115
 
116
116
  '100%': {
117
117
  strokeDasharray: '25%, 100%',
118
- strokeDashoffset: 'calc((100% - 0px) * -2.5)', // Workaround for Safari
118
+ // calc added here only for safari support
119
+ strokeDashoffset: 'calc((100% - 0px) * -2.5)',
119
120
  },
120
121
  },
121
122
 
@@ -142,7 +143,7 @@ module.exports = {
142
143
  },
143
144
 
144
145
  boxShadow: {
145
- 'none': '0 0 #00000000',
146
+ 'none': '0 0 #0000',
146
147
  ...parseBoxShadowTokens(boxShadowTokens),
147
148
  DEFAULT: '0 1px 1px rgba(0 0 0 / 0.24), 0 0 1px rgba(0 0 0 / 0.16)',
148
149
  },
@@ -242,7 +243,7 @@ module.exports = {
242
243
 
243
244
  return {
244
245
  display: prefix + 'flex',
245
- flexFlow: `${direction} nowrap`,
246
+ flexDirection: direction,
246
247
  flex: prefix === 'inline-' ? '0 0 auto' : undefined,
247
248
  alignItems: direction === 'row' ? 'center' : undefined,
248
249
  };