@atlaskit/css 0.7.0 → 0.7.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/css
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#175552](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/175552)
8
+ [`0384c8ac8996a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0384c8ac8996a) -
9
+ Narrow down fontStyle type definition to only allow `normal` and `italic`.
10
+
3
11
  ## 0.7.0
4
12
 
5
13
  ### Minor Changes
@@ -1093,6 +1093,7 @@ export type TokenisedProps = {
1093
1093
  columnGap?: Space;
1094
1094
  font?: Font | string;
1095
1095
  fontFamily?: FontFamily | string;
1096
+ fontStyle?: 'normal' | 'italic';
1096
1097
  fontWeight?: FontWeight | string | number;
1097
1098
  gap?: Space;
1098
1099
  height?: Dimension | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/css",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Style components backed by Atlassian Design System design tokens powered by Compiled CSS-in-JS.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",