@atlaskit/pragmatic-drag-and-drop-react-accessibility 2.1.0 → 2.1.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,12 @@
1
1
  # @atlaskit/pragmatic-drag-and-drop-react-accessibility
2
2
 
3
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`806cfe1c4e6b7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/806cfe1c4e6b7) -
8
+ Internal changes to how border radius is applied.
9
+
3
10
  ## 2.1.0
4
11
 
5
12
  ### Minor Changes
@@ -22,7 +22,7 @@ var _excluded = ["children", "isSelected", "testId", "appearance", "type"];
22
22
  */
23
23
  var buttonStyles = (0, _react2.css)({
24
24
  color: "var(--ds-text, #172B4D)",
25
- borderRadius: "var(--ds-border-radius-100, 4px)",
25
+ borderRadius: "var(--ds-radius-small, 4px)",
26
26
  padding: "var(--ds-space-0, 0px)",
27
27
  width: 'max-content',
28
28
  border: 'none',
@@ -15,7 +15,7 @@ import FocusRing from '@atlaskit/focus-ring';
15
15
  */
16
16
  const buttonStyles = css({
17
17
  color: "var(--ds-text, #172B4D)",
18
- borderRadius: "var(--ds-border-radius-100, 4px)",
18
+ borderRadius: "var(--ds-radius-small, 4px)",
19
19
  padding: "var(--ds-space-0, 0px)",
20
20
  width: 'max-content',
21
21
  border: 'none',
@@ -17,7 +17,7 @@ import FocusRing from '@atlaskit/focus-ring';
17
17
  */
18
18
  var buttonStyles = css({
19
19
  color: "var(--ds-text, #172B4D)",
20
- borderRadius: "var(--ds-border-radius-100, 4px)",
20
+ borderRadius: "var(--ds-radius-small, 4px)",
21
21
  padding: "var(--ds-space-0, 0px)",
22
22
  width: 'max-content',
23
23
  border: 'none',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/pragmatic-drag-and-drop-react-accessibility",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "An optional package for Pragmatic drag and drop containing react components to assist with setting up accessible experiences",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,16 +32,12 @@
32
32
  "*.compiled.css"
33
33
  ],
34
34
  "atlaskit:src": "src/index.tsx",
35
- "af:exports": {
36
- "./drag-handle-button": "./src/drag-handle-button.tsx",
37
- "./drag-handle-button-small": "./src/drag-handle-button-small.tsx"
38
- },
39
35
  "dependencies": {
40
36
  "@atlaskit/focus-ring": "^3.0.0",
41
- "@atlaskit/icon": "^28.0.0",
37
+ "@atlaskit/icon": "^28.1.0",
42
38
  "@atlaskit/platform-feature-flags": "^1.1.0",
43
- "@atlaskit/primitives": "^14.11.0",
44
- "@atlaskit/tokens": "^6.0.0",
39
+ "@atlaskit/primitives": "^14.12.0",
40
+ "@atlaskit/tokens": "^6.1.0",
45
41
  "@babel/runtime": "^7.0.0",
46
42
  "@emotion/react": "^11.7.1"
47
43
  },