@atlaskit/css 0.12.5 → 0.13.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 +18 -0
- package/constellation/index/overview.mdx +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/css
|
|
2
2
|
|
|
3
|
+
## 0.13.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`74c2f420ee49b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/74c2f420ee49b) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
|
|
10
|
+
## 0.13.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`b2cbc15f17d6a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2cbc15f17d6a) -
|
|
15
|
+
Added `radius.tile` token to be used exclusively for creating tiles.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 0.12.5
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -133,7 +133,7 @@ import { token } from '@atlaskit/tokens';
|
|
|
133
133
|
|
|
134
134
|
const styles = cssMap({
|
|
135
135
|
button: { padding: token('space.100'), borderRadius: token('radius.small') },
|
|
136
|
-
dense: { padding: token('space.050'), borderRadius: token('
|
|
136
|
+
dense: { padding: token('space.050'), borderRadius: token('radius.xsmall') },
|
|
137
137
|
});
|
|
138
138
|
|
|
139
139
|
export function Card({
|
|
@@ -199,7 +199,7 @@ import { token } from '@atlaskit/tokens';
|
|
|
199
199
|
|
|
200
200
|
const styles = cssMap({
|
|
201
201
|
button: { padding: token('space.100'), borderRadius: token('radius.small') },
|
|
202
|
-
dense: { padding: token('space.050'), borderRadius: token('
|
|
202
|
+
dense: { padding: token('space.050'), borderRadius: token('radius.xsmall') },
|
|
203
203
|
});
|
|
204
204
|
|
|
205
205
|
export function Card({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.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",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
],
|
|
45
45
|
"atlaskit:src": "src/index.tsx",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@atlaskit/tokens": "^6.
|
|
47
|
+
"@atlaskit/tokens": "^6.2.0",
|
|
48
48
|
"@babel/runtime": "^7.0.0",
|
|
49
49
|
"@compiled/react": "^0.18.3"
|
|
50
50
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@af/visual-regression": "workspace:^",
|
|
56
56
|
"@atlaskit/button": "^23.4.0",
|
|
57
57
|
"@atlaskit/ds-lib": "^5.0.0",
|
|
58
|
-
"@atlaskit/primitives": "^14.
|
|
58
|
+
"@atlaskit/primitives": "^14.13.0",
|
|
59
59
|
"@emotion/react": "^11.7.1",
|
|
60
60
|
"@testing-library/react": "^13.4.0",
|
|
61
61
|
"@types/jscodeshift": "^0.11.0",
|