@atlaskit/css 0.12.3 → 0.12.5

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,21 @@
1
1
  # @atlaskit/css
2
2
 
3
+ ## 0.12.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [`23bcc5bbc9cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/23bcc5bbc9cee) -
8
+ Internal changes to how border radius is applied.
9
+ - Updated dependencies
10
+
11
+ ## 0.12.4
12
+
13
+ ### Patch Changes
14
+
15
+ - [`3b5b4a919aaaf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3b5b4a919aaaf) -
16
+ Internal changes to how border radius is applied.
17
+ - Updated dependencies
18
+
3
19
  ## 0.12.3
4
20
 
5
21
  ### Patch Changes
@@ -132,7 +132,7 @@ import { cssMap, jsx, type StrictXCSSProp } from '@atlaskit/css';
132
132
  import { token } from '@atlaskit/tokens';
133
133
 
134
134
  const styles = cssMap({
135
- button: { padding: token('space.100'), borderRadius: token('border.radius.100') },
135
+ button: { padding: token('space.100'), borderRadius: token('radius.small') },
136
136
  dense: { padding: token('space.050'), borderRadius: token('border.radius.050') },
137
137
  });
138
138
 
@@ -168,7 +168,7 @@ import { token } from '@atlaskit/tokens';
168
168
  import { Card } from './Card';
169
169
 
170
170
  const styles = cssMap({
171
- root: { padding: token('space.200'), borderRadius: token('border.radius.200') },
171
+ root: { padding: token('space.200'), borderRadius: token('radius.large') },
172
172
  inverse: {
173
173
  backgroundColor: token('color.background.discovery'),
174
174
  color: token('color.text.inverse'),
@@ -198,7 +198,7 @@ import { cssMap, jsx, type StrictXCSSProp } from '@atlaskit/css';
198
198
  import { token } from '@atlaskit/tokens';
199
199
 
200
200
  const styles = cssMap({
201
- button: { padding: token('space.100'), borderRadius: token('border.radius.100') },
201
+ button: { padding: token('space.100'), borderRadius: token('radius.small') },
202
202
  dense: { padding: token('space.050'), borderRadius: token('border.radius.050') },
203
203
  });
204
204
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/css",
3
- "version": "0.12.3",
3
+ "version": "0.12.5",
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",
@@ -43,10 +43,6 @@
43
43
  "dist/esm/test-utils/index.js"
44
44
  ],
45
45
  "atlaskit:src": "src/index.tsx",
46
- "af:exports": {
47
- ".": "./src/index.tsx",
48
- "./test-utils": "./src/test-utils/index.tsx"
49
- },
50
46
  "dependencies": {
51
47
  "@atlaskit/tokens": "^6.1.0",
52
48
  "@babel/runtime": "^7.0.0",