magic-grid
Advanced tools
Comparing version 3.4.3 to 3.4.4
{ | ||
"name": "magic-grid", | ||
"version": "3.4.3", | ||
"version": "3.4.4", | ||
"description": "Super lightweight javascript library for dynamic grid layouts.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -1,5 +0,4 @@ | ||
export const POSITIONING_COMPLETE_EVENT = "positionComplete"; | ||
export const REPOSITIONING_DELAY = 200; | ||
module.exports = { | ||
POSITIONING_COMPLETE_EVENT: "positionComplete", | ||
REPOSITIONING_DELAY: 200 | ||
} |
@@ -5,7 +5,2 @@ | ||
class EventEmitter { | ||
/* | ||
array of emitter | ||
emitter: takes in an event and handler | ||
handler: is the function it calls | ||
*/ | ||
listeners; | ||
@@ -43,2 +38,3 @@ #idCounter | ||
} | ||
export default EventEmitter; | ||
module.exports = EventEmitter; |
@@ -1,2 +0,2 @@ | ||
class Listener{ | ||
class Listener { | ||
/* | ||
@@ -15,4 +15,4 @@ Listener class holds the event, | ||
} | ||
} | ||
} | ||
export default Listener; | ||
module.exports = Listener; |
@@ -64,2 +64,5 @@ /** | ||
export {checkParams, getMin}; | ||
module.exports = { | ||
checkParams, | ||
getMin | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
602
40951