@atlaskit/primitives 14.12.1 → 14.12.3
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 +16 -0
- package/constellation/xcss/usage.mdx +1 -1
- package/package.json +3 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/primitives
|
|
2
2
|
|
|
3
|
+
## 14.12.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`255837cfba315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/255837cfba315) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 14.12.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`23bcc5bbc9cee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/23bcc5bbc9cee) -
|
|
16
|
+
Internal changes to how border radius is applied.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 14.12.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -90,7 +90,7 @@ import { xcss } from '@atlaskit/primitives';
|
|
|
90
90
|
const someStyles = xcss({
|
|
91
91
|
padding: 'space.200', // <--- works
|
|
92
92
|
color: 'space.200', // <--- invalid and will error
|
|
93
|
-
borderRadius: '
|
|
93
|
+
borderRadius: 'radius.small', // <--- also valid
|
|
94
94
|
});
|
|
95
95
|
```
|
|
96
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/primitives",
|
|
3
|
-
"version": "14.12.
|
|
3
|
+
"version": "14.12.3",
|
|
4
4
|
"description": "Primitives are token-backed low-level building blocks.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"@atlaskit/code": "^17.2.0",
|
|
162
162
|
"@atlaskit/docs": "^11.0.0",
|
|
163
163
|
"@atlaskit/dropdown-menu": "^16.3.0",
|
|
164
|
-
"@atlaskit/flag": "^17.
|
|
164
|
+
"@atlaskit/flag": "^17.4.0",
|
|
165
165
|
"@atlaskit/form": "^12.4.0",
|
|
166
166
|
"@atlaskit/heading": "^5.2.0",
|
|
167
167
|
"@atlaskit/icon": "^28.1.0",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"@atlaskit/lozenge": "^13.0.0",
|
|
173
173
|
"@atlaskit/motion": "^5.3.0",
|
|
174
174
|
"@atlaskit/range": "^9.2.0",
|
|
175
|
-
"@atlaskit/section-message": "^8.
|
|
175
|
+
"@atlaskit/section-message": "^8.7.0",
|
|
176
176
|
"@atlaskit/textfield": "^8.0.0",
|
|
177
177
|
"@atlaskit/toggle": "^15.1.0",
|
|
178
178
|
"@atlaskit/tooltip": "^20.4.0",
|
|
@@ -222,18 +222,6 @@
|
|
|
222
222
|
]
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
|
-
"af:exports": {
|
|
226
|
-
".": "./src/index.tsx",
|
|
227
|
-
"./box": "./src/components/box.tsx",
|
|
228
|
-
"./stack": "./src/components/stack.tsx",
|
|
229
|
-
"./inline": "./src/components/inline.tsx",
|
|
230
|
-
"./text": "./src/components/text.tsx",
|
|
231
|
-
"./metric-text": "./src/components/metric-text.tsx",
|
|
232
|
-
"./pressable": "./src/components/pressable.tsx",
|
|
233
|
-
"./anchor": "./src/components/anchor.tsx",
|
|
234
|
-
"./responsive": "./src/responsive/index.tsx",
|
|
235
|
-
"./compiled": "./src/compiled/index.tsx"
|
|
236
|
-
},
|
|
237
225
|
"platform-feature-flags": {
|
|
238
226
|
"platform_design-system-team_anchor-positioning": {
|
|
239
227
|
"type": "boolean"
|