@atlaskit/pragmatic-drag-and-drop 1.1.0 → 1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +3 -39
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/pragmatic-drag-and-drop
2
2
 
3
+ ## 1.1.1
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
+
3
13
  ## 1.1.0
4
14
 
5
15
  ### Minor Changes
package/README.md CHANGED
@@ -1,43 +1,7 @@
1
1
  # Pragmatic drag and drop
2
2
 
3
- A performance optimized drag and drop framework
3
+ > Fast drag and drop for any experience on any tech stack
4
4
 
5
- > ℹ️ This package is in early access. We have not yet guaranteed API stability
5
+ The core package for Pragmatic drag and drop.
6
6
 
7
- ## Background
8
-
9
- There are a wealth of existing drag and drop libraries for the web. Some drag and drop libraries are general purpose (e.g. `@shopify/draggable`, `react-dnd`), and some are for specific experiences (e.g. `react-beautiful-dnd` is for lists and connected lists). Some libraries leverage the platform's built in drag and drop capabilities, and some rebuild the drag and drop operation from scratch.
10
-
11
- Every drag and drop solution will make tradeoffs regarding feature sets, user experience, startup performance and runtime performance.
12
-
13
- The goals of `@atlaskit/pragmatic-drag-and-drop` are:
14
-
15
- - 🚀 Speed: Best of class startup and runtime performance
16
- - 🤸 Flexibility: Can be used to power any interaction
17
- - 🧑‍🦽 Accessibility\*: Ensuring that all users have a good experience
18
-
19
- > \*Accessible experiences are achieved through alternative keyboard and screen reader flows. Unfortunately, the browsers drag and drop behaviour is not accessible (yet). But don't worry, we have a comprehensive guide and toolchain to help you be successful here
20
-
21
- ## Core characteristics
22
-
23
- - 🌎 Platform powered: leverages the browsers drag and drop capabilities
24
- - 🐁 Tiny: ~`4.5kB` base
25
- - 🪡 Incremental: only pay for what you use
26
- - ⏳ Deferred compatible: consumers can delay the loading of `@atlaskit/pragmatic-drag-and-drop` (and related packages) in order to improve page load speeds
27
- - 🎨 Headless: full rendering and style control
28
- - 🦊 Cross browser support: full feature support in Firefox, Safari and Chrome
29
- - 📱 Touch device compatible
30
- - 🎁 Addons: patterns that allow sharing small pieces of functionality that can be added together
31
- - 🎄 Framework agnostic: works with any frontend framework
32
- - 👾 Virtualization support
33
- - 🧑‍🦽 Accessible: comprehensive toolchain and patterns for creating highly accessible experiences
34
-
35
- ## Installation
36
-
37
- ```sh
38
- yarn add @atlaskit/pragmatic-drag-and-drop
39
- ```
40
-
41
- ## Usage
42
-
43
- Detailed docs and example usage can be found on [atlassian.design](https://atlassian.design/components/pragmatic-drag-and-drop/).
7
+ [📖 Documentation](https://atlassian.design/components/pragmatic-drag-and-drop/)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaskit/pragmatic-drag-and-drop",
3
- "version": "1.1.0",
4
- "description": "Fast drag and drop for any experience on any tech stack",
3
+ "version": "1.1.1",
4
+ "description": "The core package for Pragmatic drag and drop - enabling fast drag and drop for any experience on any tech stack",
5
5
  "repository": "https://github.com/atlassian/pragmatic-drag-and-drop",
6
6
  "author": "Atlassian Pty Ltd",
7
7
  "license": "Apache-2.0",