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

react-sortablejs

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-sortablejs - npm Package Compare versions

Comparing version 2.0.10 to 2.0.11

1

dist/types.d.ts
import { CSSProperties, ForwardRefExoticComponent, ReactHTML, RefAttributes } from "react";
import Sortable, { MoveEvent, Options, SortableEvent } from "sortablejs";
import { ReactSortable } from "./react-sortable";
import { Omit } from './util';
export interface ItemInterface {

@@ -5,0 +6,0 @@ /** The unique id associated with your item. It's recommended this is the same as the key prop for your list item. */

@@ -43,2 +43,7 @@ import { PropsWithChildren } from "react";

export declare function destructurePropsForOptions<T>(props: PropsWithChildren<ReactSortableProps<T>>): Exclude<Options, AllMethodNames>;
/**
* Construct a type with the properties of T except for those in type K.
* Including this allows for backwards compatibility with earlier versions of TS.
*/
export declare type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;
//# sourceMappingURL=util.d.ts.map

2

package.json

@@ -8,3 +8,3 @@ {

"license": "MIT",
"version": "2.0.10",
"version": "2.0.11",
"private": false,

@@ -11,0 +11,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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