@atlaskit/ds-explorations
Advanced tools
Comparing version 2.2.8 to 2.2.9
# @atlaskit/ds-explorations | ||
## 2.2.9 | ||
### Patch Changes | ||
- [`56b444b56a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56b444b56a8) - Fix a bug where text descenders were cut off at high zoom levels on Windows | ||
## 2.2.8 | ||
@@ -4,0 +10,0 @@ |
@@ -17,3 +17,3 @@ "use strict"; | ||
cursor: 'pointer', | ||
// eslint-disable-next-line @repo/internal/styles/no-nested-styles | ||
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles | ||
'~ *': { | ||
@@ -20,0 +20,0 @@ position: 'relative', |
@@ -56,5 +56,11 @@ "use strict"; | ||
var truncateStyles = (0, _react2.css)({ | ||
overflow: 'hidden', | ||
textOverflow: 'ellipsis', | ||
whiteSpace: 'nowrap' | ||
whiteSpace: 'nowrap', | ||
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders | ||
'@supports not (overflow-x: clip)': { | ||
overflow: 'hidden' | ||
}, | ||
'@supports (overflow-x: clip)': { | ||
overflowX: 'clip' | ||
} | ||
}); | ||
@@ -61,0 +67,0 @@ |
@@ -10,3 +10,3 @@ /** @jsx jsx */ | ||
cursor: 'pointer', | ||
// eslint-disable-next-line @repo/internal/styles/no-nested-styles | ||
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles | ||
'~ *': { | ||
@@ -13,0 +13,0 @@ position: 'relative', |
@@ -47,5 +47,11 @@ /** @jsx jsx */ | ||
const truncateStyles = css({ | ||
overflow: 'hidden', | ||
textOverflow: 'ellipsis', | ||
whiteSpace: 'nowrap' | ||
whiteSpace: 'nowrap', | ||
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders | ||
'@supports not (overflow-x: clip)': { | ||
overflow: 'hidden' | ||
}, | ||
'@supports (overflow-x: clip)': { | ||
overflowX: 'clip' | ||
} | ||
}); | ||
@@ -52,0 +58,0 @@ |
@@ -10,3 +10,3 @@ /** @jsx jsx */ | ||
cursor: 'pointer', | ||
// eslint-disable-next-line @repo/internal/styles/no-nested-styles | ||
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles | ||
'~ *': { | ||
@@ -13,0 +13,0 @@ position: 'relative', |
@@ -49,5 +49,11 @@ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; | ||
var truncateStyles = css({ | ||
overflow: 'hidden', | ||
textOverflow: 'ellipsis', | ||
whiteSpace: 'nowrap' | ||
whiteSpace: 'nowrap', | ||
// Use "clip" overflow to allow ellipses on x-axis without clipping descenders | ||
'@supports not (overflow-x: clip)': { | ||
overflow: 'hidden' | ||
}, | ||
'@supports (overflow-x: clip)': { | ||
overflowX: 'clip' | ||
} | ||
}); | ||
@@ -54,0 +60,0 @@ |
{ | ||
"name": "@atlaskit/ds-explorations", | ||
"version": "2.2.8", | ||
"version": "2.2.9", | ||
"description": "An experimental package for exploration and validation of spacing / typography foundations.", | ||
@@ -28,3 +28,3 @@ "publishConfig": { | ||
"dependencies": { | ||
"@atlaskit/tokens": "^1.13.0", | ||
"@atlaskit/tokens": "^1.14.0", | ||
"@babel/runtime": "^7.0.0", | ||
@@ -31,0 +31,0 @@ "@emotion/react": "^11.7.1", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
574218
10800
124
Updated@atlaskit/tokens@^1.14.0