Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More โ†’
Socket
Socket
Sign inDemoInstall

@hello-pangea/dnd

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hello-pangea/dnd - npm Package Compare versions

Comparing version 16.0.0 to 16.0.1

52

package.json
{
"name": "@hello-pangea/dnd",
"version": "16.0.0",
"version": "16.0.1",
"private": false,

@@ -77,9 +77,9 @@ "description": "Beautiful and accessible drag and drop for lists with React",

"dependencies": {
"@babel/runtime": "^7.18.9",
"@babel/runtime": "^7.19.4",
"css-box-model": "^1.2.1",
"memoize-one": "^6.0.0",
"raf-schd": "^4.0.3",
"react-redux": "^8.0.2",
"react-redux": "^8.0.4",
"redux": "^4.2.0",
"use-memo-one": "^1.1.2"
"use-memo-one": "^1.1.3"
},

@@ -89,4 +89,4 @@ "devDependencies": {

"@atlaskit/theme": "12.1.9",
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",

@@ -97,4 +97,4 @@ "@babel/plugin-proposal-private-methods": "7.18.6",

"@babel/plugin-transform-object-assign": "7.18.6",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",

@@ -109,3 +109,3 @@ "@babel/preset-typescript": "7.18.6",

"@emotion/styled": "11.10.0",
"@jest/environment": "28.1.3",
"@jest/environment": "29.0.1",
"@release-it/conventional-changelog": "5.1.0",

@@ -128,9 +128,7 @@ "@rollup/plugin-babel": "5.3.1",

"@testing-library/react": "13.3.0",
"@testing-library/react-16-17": "npm:@testing-library/react@12.1.5",
"@types/enzyme": "3.10.12",
"@testing-library/react-16-17": "npm:@testing-library/react@^12.1.5",
"@types/express": "4.17.13",
"@types/fs-extra": "9.0.13",
"@types/jest": "28.1.7",
"@types/jest-axe": "3.5.4",
"@types/jsdom": "16.2.15",
"@types/jsdom": "20.0.0",
"@types/markdown-it": "12.2.3",

@@ -146,5 +144,5 @@ "@types/node": "16.11.52",

"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"babel-jest": "28.1.3",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"babel-jest": "29.1.2",
"babel-loader": "8.2.5",

@@ -158,7 +156,6 @@ "babel-plugin-dev-expression": "0.2.3",

"dotenv": "16.0.1",
"emotion-theming": "11.0.0",
"eslint": "8.22.0",
"eslint": "8.23.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.4.2",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-cypress": "2.12.1",

@@ -171,3 +168,3 @@ "eslint-plugin-es5": "1.5.0",

"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",

@@ -179,8 +176,8 @@ "eslint-plugin-storybook": "0.6.4",

"husky": "8.0.1",
"jest": "28.1.3",
"jest": "29.0.1",
"jest-axe": "6.0.0",
"jest-environment-jsdom": "28.1.3",
"jest-junit": "14.0.0",
"jest-watch-typeahead": "2.0.0",
"jsdom": "19.0.0",
"jest-environment-jsdom": "29.0.1",
"jest-junit": "14.0.1",
"jest-watch-typeahead": "2.1.1",
"jsdom": "20.0.0",
"lighthouse": "9.6.6",

@@ -199,3 +196,3 @@ "markdown-it": "13.0.1",

"react-window": "1.8.7",
"release-it": "15.3.0",
"release-it": "15.4.0",
"require-from-string": "2.0.2",

@@ -215,4 +212,3 @@ "rimraf": "3.0.2",

"stylelint-processor-styled-components": "1.10.0",
"ts-jest": "28.0.8",
"typescript": "4.7.4",
"typescript": "4.8.2",
"wait-on": "6.0.1",

@@ -219,0 +215,0 @@ "webpack": "5.74.0"

@@ -73,3 +73,3 @@ <p align="center">

There are a lot of libraries out there that allow for drag and drop interactions within React. Most notable of these is the amazing [`react-dnd`](https://github.com/react-dnd/react-dnd). It does an incredible job at providing a great set of drag and drop primitives which work especially well with the [wildly inconsistent](https://www.quirksmode.org/blog/archives/2009/09/the_html5_drag.html) html5 drag and drop feature. `@hello-pangea/dnd` is a higher level abstraction specifically built for lists (vertical, horizontal, movement between lists, nested lists and so on). Within that subset of functionality `@hello-pangea/dnd` offers a powerful, natural and beautiful drag and drop experience. However, it does not provide the breadth of functionality offered by `react-dnd`. So `@hello-pangea/dnd` might not be for you depending on what your use case is.
There are a lot of libraries out there that allow for drag and drop interactions within React. Most notable of these is the amazing [`react-dnd`](https://github.com/react-dnd/react-dnd). It does an incredible job at providing a great set of drag and drop primitives which work especially well with the [wildly inconsistent](https://www.quirksmode.org/blog/archives/2009/09/the_html5_drag.html) html5 drag and drop feature. `@hello-pangea/dnd` is a higher level abstraction specifically built for lists (vertical, horizontal, movement between lists, nested lists and so on). Within that subset of functionality `@hello-pangea/dnd` offers a powerful, natural and beautiful drag and drop experience. However, it does not provide the breadth of functionality offered by `react-dnd`. One shortcoming is that grid layouts are not supported (yet). So `@hello-pangea/dnd` might not be for you depending on what your use case is.

@@ -76,0 +76,0 @@ ## Documentation ๐Ÿ“–

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc