@atlaskit/pragmatic-drag-and-drop-react-accessibility 1.0.5 → 1.0.7
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,17 @@
|
|
|
1
1
|
# @atlaskit/pragmatic-drag-and-drop-react-accessibility
|
|
2
2
|
|
|
3
|
+
## 1.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#84398](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84398) [`77694db987fc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77694db987fc) - Public release of Pragmatic drag and drop documentation
|
|
8
|
+
|
|
9
|
+
## 1.0.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#84250](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84250) [`a1cc31800621`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a1cc31800621) - Internal refactor: now relying on automatic fallback insertion for `token()`. This change provides an improved experience for consumers who don't have Atlassian Design tokens enabled.
|
|
14
|
+
|
|
3
15
|
## 1.0.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -17,7 +17,7 @@ var _excluded = ["children", "isSelected", "testId", "appearance", "type"];
|
|
|
17
17
|
* which prevents dragging.
|
|
18
18
|
*/
|
|
19
19
|
var buttonStyles = (0, _react2.css)({
|
|
20
|
-
borderRadius: "var(--ds-border-radius-100,
|
|
20
|
+
borderRadius: "var(--ds-border-radius-100, 4px)",
|
|
21
21
|
padding: "var(--ds-space-0, 0px)",
|
|
22
22
|
width: 'max-content',
|
|
23
23
|
border: 'none',
|
|
@@ -9,7 +9,7 @@ import FocusRing from '@atlaskit/focus-ring';
|
|
|
9
9
|
* which prevents dragging.
|
|
10
10
|
*/
|
|
11
11
|
const buttonStyles = css({
|
|
12
|
-
borderRadius: "var(--ds-border-radius-100,
|
|
12
|
+
borderRadius: "var(--ds-border-radius-100, 4px)",
|
|
13
13
|
padding: "var(--ds-space-0, 0px)",
|
|
14
14
|
width: 'max-content',
|
|
15
15
|
border: 'none',
|
|
@@ -11,7 +11,7 @@ import FocusRing from '@atlaskit/focus-ring';
|
|
|
11
11
|
* which prevents dragging.
|
|
12
12
|
*/
|
|
13
13
|
var buttonStyles = css({
|
|
14
|
-
borderRadius: "var(--ds-border-radius-100,
|
|
14
|
+
borderRadius: "var(--ds-border-radius-100, 4px)",
|
|
15
15
|
padding: "var(--ds-space-0, 0px)",
|
|
16
16
|
width: 'max-content',
|
|
17
17
|
border: 'none',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/pragmatic-drag-and-drop-react-accessibility",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
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",
|
|
@@ -13,10 +13,7 @@
|
|
|
13
13
|
"releaseModel": "continuous",
|
|
14
14
|
"website": {
|
|
15
15
|
"name": "React accessibility",
|
|
16
|
-
"category": "Libraries"
|
|
17
|
-
"status": {
|
|
18
|
-
"type": "alpha"
|
|
19
|
-
}
|
|
16
|
+
"category": "Libraries"
|
|
20
17
|
}
|
|
21
18
|
},
|
|
22
19
|
"repository": "https://github.com/atlassian/pragmatic-drag-and-drop",
|