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

oribella-aurelia-sortable

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oribella-aurelia-sortable - npm Package Compare versions

Comparing version 0.13.0 to 0.13.1

4

dist/amd/utils.js

@@ -215,3 +215,3 @@ define(["require", "exports", "oribella-framework", "./sortable"], function (require, exports, oribella_framework_1, sortable_1) {

}
else if (x <= left - scrollSensitivity) {
else if (x <= left + scrollSensitivity) {
direction.x = -1;

@@ -222,3 +222,3 @@ }

}
else if (y <= top - scrollSensitivity) {
else if (y <= top + scrollSensitivity) {
direction.y = -1;

@@ -225,0 +225,0 @@ }

@@ -216,3 +216,3 @@ "use strict";

}
else if (x <= left - scrollSensitivity) {
else if (x <= left + scrollSensitivity) {
direction.x = -1;

@@ -223,3 +223,3 @@ }

}
else if (y <= top - scrollSensitivity) {
else if (y <= top + scrollSensitivity) {
direction.y = -1;

@@ -226,0 +226,0 @@ }

@@ -203,3 +203,3 @@ import { Point, matchesSelector } from 'oribella-framework';

}
else if (x <= left - scrollSensitivity) {
else if (x <= left + scrollSensitivity) {
direction.x = -1;

@@ -210,3 +210,3 @@ }

}
else if (y <= top - scrollSensitivity) {
else if (y <= top + scrollSensitivity) {
direction.y = -1;

@@ -213,0 +213,0 @@ }

@@ -226,3 +226,3 @@ System.register(["oribella-framework", "./sortable"], function (exports_1, context_1) {

}
else if (x <= left - scrollSensitivity) {
else if (x <= left + scrollSensitivity) {
direction.x = -1;

@@ -233,3 +233,3 @@ }

}
else if (y <= top - scrollSensitivity) {
else if (y <= top + scrollSensitivity) {
direction.y = -1;

@@ -236,0 +236,0 @@ }

{
"name": "oribella-aurelia-sortable",
"version": "0.13.0",
"version": "0.13.1",
"description": "Aurelia Sortable plugin powered by Oribella",

@@ -5,0 +5,0 @@ "repository": {

@@ -283,3 +283,3 @@ import { Point, matchesSelector } from 'oribella-framework';

direction.x = 1;
} else if (x <= left - scrollSensitivity) {
} else if (x <= left + scrollSensitivity) {
direction.x = -1;

@@ -289,3 +289,3 @@ }

direction.y = 1;
} else if (y <= top - scrollSensitivity) {
} else if (y <= top + scrollSensitivity) {
direction.y = -1;

@@ -292,0 +292,0 @@ }

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