@atlaskit/pragmatic-drag-and-drop-react-accessibility 1.0.3 → 1.0.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/pragmatic-drag-and-drop-react-accessibility
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#83702](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83702) [`4d9e25ab4eaa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d9e25ab4eaa) - Updating the descriptions of Pragmatic drag and drop packages, so they each provide a consistent description to various consumers, and so they are consistently formed amongst each other.
8
+
9
+ - `package.json` `description`
10
+ - `README.md`
11
+ - Website documentation
12
+
13
+ ## 1.0.4
14
+
15
+ ### Patch Changes
16
+
17
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
18
+
3
19
  ## 1.0.3
4
20
 
5
21
  ### Patch Changes
package/README.md CHANGED
@@ -1,9 +1,5 @@
1
- # PragmaticDragAndDropReactAccessibility
1
+ ## Pragmatic drag and drop
2
2
 
3
- Accessibility helpers for pragmatic-drag-and-drop, written in React.
3
+ An optional package for Pragmatic drag and drop containing `react` components to assist with setting up accessible experiences.
4
4
 
5
- ## Usage
6
-
7
- `import PragmaticDragAndDropReactAccessibility from '@atlaskit/pragmatic-drag-and-drop-react-accessibility';`
8
-
9
- Detailed docs and example usage can be found [here](https://atlaskit.atlassian.com/packages/pragmatic-drag-and-drop/pragmatic-drag-and-drop-react-accessibility).
5
+ [📖 Documentation](https://atlassian.design/components/pragmatic-drag-and-drop/)
@@ -1,17 +1,16 @@
1
1
  ---
2
2
  order: 0
3
+ title: React accessibility
4
+ description: An optional package for Pragmatic drag and drop containing react components to assist with setting up accessible experiences
3
5
  ---
4
6
 
5
7
  import SectionMessage from '@atlaskit/section-message';
6
8
 
7
- This package provides some optional `react` components that can be used to build
8
- alternative flows for accessibility.
9
-
10
9
  <SectionMessage>
11
10
 
12
11
  This package depends on:
13
12
 
14
- - [the core package](/components/drag-and-drop/core-package)
13
+ - [the core package](/components/pragmatic-drag-and-drop/core-package)
15
14
  - [`react`](https://react.dev/)
16
15
  - [`@emotion/react`](https://emotion.sh/docs/introduction) for styling
17
16
  - Some Atlassian Design System packages
@@ -21,3 +20,7 @@ This package depends on:
21
20
  You are welcome to reimplement this (small) package using your own tech stack.
22
21
 
23
22
  </SectionMessage>
23
+
24
+ ### Outputs
25
+
26
+ - [drag-handle-button](./drag-handle-button)
@@ -6,7 +6,7 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/drag-handle-button.d.ts",
8
8
  "typesVersions": {
9
- ">=4.5 <4.9": {
9
+ ">=4.5 <5.4": {
10
10
  "*": [
11
11
  "../dist/types-ts4.5/drag-handle-button.d.ts"
12
12
  ]
@@ -6,7 +6,7 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/drag-handle-button-small.d.ts",
8
8
  "typesVersions": {
9
- ">=4.5 <4.9": {
9
+ ">=4.5 <5.4": {
10
10
  "*": [
11
11
  "../dist/types-ts4.5/drag-handle-button-small.d.ts"
12
12
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaskit/pragmatic-drag-and-drop-react-accessibility",
3
- "version": "1.0.3",
4
- "description": "Optional react components to help implement accessible alternative flows for Pragmatic drag and drop",
3
+ "version": "1.0.5",
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",
7
7
  "publishConfig": {
@@ -42,8 +42,8 @@
42
42
  "dependencies": {
43
43
  "@atlaskit/focus-ring": "^1.3.4",
44
44
  "@atlaskit/icon": "^22.1.0",
45
- "@atlaskit/primitives": "^5.0.0",
46
- "@atlaskit/tokens": "^1.41.0",
45
+ "@atlaskit/primitives": "^5.1.0",
46
+ "@atlaskit/tokens": "^1.42.0",
47
47
  "@babel/runtime": "^7.0.0",
48
48
  "@emotion/react": "^11.7.1"
49
49
  },
@@ -58,7 +58,7 @@
58
58
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
59
59
  "@testing-library/react": "^12.1.5",
60
60
  "react-dom": "^16.8.0",
61
- "typescript": "~4.9.5",
61
+ "typescript": "~5.4.2",
62
62
  "wait-for-expect": "^1.2.0"
63
63
  },
64
64
  "techstack": {
@@ -97,4 +97,4 @@
97
97
  }
98
98
  },
99
99
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.0"
100
- }
100
+ }