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

svelte-dnd-action

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-dnd-action - npm Package Compare versions

Comparing version 0.9.30 to 0.9.31

1

dist/index.d.ts

@@ -30,2 +30,3 @@ /**

zoneTabIndex?: number; // set the tabindex of the list container when not dragging
zoneItemTabIndex?: number; // set the tabindex of the list container items when not dragging
dropTargetClasses?: string[];

@@ -32,0 +33,0 @@ dropTargetStyle?: Record<string, string>;

2

package.json

@@ -46,3 +46,3 @@ {

"description": "*An awesome drag and drop library for Svelte 3 and 4 (not using the browser's built-in dnd, thanks god): Rich animations, nested containers, touch support and more *",
"version": "0.9.30",
"version": "0.9.31",
"repository": {

@@ -49,0 +49,0 @@ "type": "git",

@@ -115,2 +115,3 @@ # SVELTE DND ACTION [![Known Vulnerabilities](https://snyk.io/test/github/isaacHagoel/svelte-dnd-action/badge.svg?targetFile=package.json)](https://snyk.io/test/github/isaacHagoel/svelte-dnd-action?targetFile=package.json)

| `zoneTabIndex` | Number | No | `0` | Allow user to set custom tabindex to the list container when not dragging. Can be useful if you want to make the screen reader to skip the list container. You can change it at any time. |
| `zoneItemTabIndex` | Number | No | `0` | Allow user to set custom tabindex to the list container items when not dragging. Can be useful if you use [Drag handles](https://github.com/isaacHagoel/svelte-dnd-action#examples-and-recipes). You can change it at any time. |
| `dropTargetStyle` | Object&lt;String&gt; | No | `{outline: 'rgba(255, 255, 102, 0.7) solid 2px'}` | An object of styles to apply to the dnd-zone when items can be dragged into it. Note: the styles override any inline styles applied to the dnd-zone. When the styles are removed, any original inline styles will be lost |

@@ -117,0 +118,0 @@ | `dropTargetClasses`| Array&lt;String&gt; | No | `[]` | A list of classes to apply to the dnd-zone when items can be dragged into it. Note: make sure the classes you use are global. |

@@ -20,2 +20,3 @@ import {dndzone as pointerDndZone} from "./pointerAction";

* @property {number} [zoneTabIndex] - set the tabindex of the list container when not dragging
* @property {number} [zoneItemTabIndex] - set the tabindex of the list container items when not dragging
* @property {object} [dropTargetStyle]

@@ -71,2 +72,3 @@ * @property {string[]} [dropTargetClasses]

zoneTabIndex,
zoneItemTabIndex,
dropTargetStyle,

@@ -96,2 +98,5 @@ dropTargetClasses,

}
if (zoneItemTabIndex && !isInt(zoneItemTabIndex)) {
throw new Error(`zoneItemTabIndex should be a number but instead it is a ${typeof zoneItemTabIndex}, ${toString(zoneItemTabIndex)}`);
}
}

@@ -98,0 +103,0 @@

@@ -160,2 +160,3 @@ import {decrementActiveDropZoneCount, incrementActiveDropZoneCount, ITEM_ID_KEY, SOURCES, TRIGGERS} from "./constants";

zoneTabIndex: 0,
zoneItemTabIndex: 0,
dropFromOthersDisabled: false,

@@ -265,3 +266,3 @@ dropTargetStyle: DEFAULT_DROP_TARGET_STYLE,

focusedItem = draggableEl;
focusedItem.tabIndex = 0;
focusedItem.tabIndex = config.zoneItemTabIndex;
focusedItemId = items[focusedItemIdx][ITEM_ID_KEY];

@@ -276,2 +277,3 @@ focusedItemLabel = children[focusedItemIdx].getAttribute("aria-label") || "";

zoneTabIndex = 0,
zoneItemTabIndex = 0,
dropFromOthersDisabled = false,

@@ -286,2 +288,3 @@ dropTargetStyle = DEFAULT_DROP_TARGET_STYLE,

config.zoneTabIndex = zoneTabIndex;
config.zoneItemTabIndex = zoneItemTabIndex;
config.dropTargetStyle = dropTargetStyle;

@@ -319,3 +322,3 @@ config.dropTargetClasses = dropTargetClasses;

allDragTargets.add(draggableEl);
draggableEl.tabIndex = isDragging ? -1 : 0;
draggableEl.tabIndex = isDragging ? -1 : config.zoneItemTabIndex;
if (!autoAriaDisabled) {

@@ -336,3 +339,3 @@ draggableEl.setAttribute("role", "listitem");

focusedItem = draggableEl;
focusedItem.tabIndex = 0;
focusedItem.tabIndex = config.zoneItemTabIndex;
// without this the element loses focus if it moves backwards in the list

@@ -339,0 +342,0 @@ draggableEl.focus();

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

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