@onereach/styles 2.32.2-beta.2021.0 → 2.32.2
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.32.2
|
|
3
|
+
"version": "2.32.2",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "./main.css",
|
|
@@ -53,5 +53,6 @@
|
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"gitHead": "e6740b4d3475ce24c7217ecd85e630c8af80bfe1"
|
|
57
58
|
}
|
|
@@ -830,7 +830,14 @@ module.exports = {
|
|
|
830
830
|
const [token, suffix = ''] = value.split('..');
|
|
831
831
|
|
|
832
832
|
return {
|
|
833
|
+
// In Safari outline doesn't follow current border-radius
|
|
834
|
+
// It seems like this is already fixed in Safari Technology Preview (Release 157)
|
|
835
|
+
// Stay tuned for Safari updates
|
|
833
836
|
boxShadow: `0 0 0 2px ${theme(`outlineColor.${token}-opacity-0-16` + suffix, token)}`,
|
|
837
|
+
// outlineColor: theme(`outlineColor.${token}-opacity-0-16` + suffix, token),
|
|
838
|
+
// outlineStyle: 'solid',
|
|
839
|
+
// outlineWidth: '2px',
|
|
840
|
+
// outlineOffset: '0',
|
|
834
841
|
};
|
|
835
842
|
},
|
|
836
843
|
}, {
|