@cocreate/users
Advanced tools
Comparing version 1.28.2 to 1.28.3
{ | ||
"name": "@cocreate/users", | ||
"version": "1.28.2", | ||
"version": "1.28.3", | ||
"description": "A simple users component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.", | ||
@@ -61,9 +61,9 @@ "keywords": [ | ||
"dependencies": { | ||
"@cocreate/actions": "^1.11.6", | ||
"@cocreate/crud-client": "^1.28.4", | ||
"@cocreate/element-prototype": "^1.11.5", | ||
"@cocreate/elements": "^1.23.4", | ||
"@cocreate/local-storage": "^1.10.5", | ||
"@cocreate/render": "^1.28.3" | ||
"@cocreate/actions": "^1.12.0", | ||
"@cocreate/crud-client": "^1.28.10", | ||
"@cocreate/element-prototype": "^1.11.7", | ||
"@cocreate/elements": "^1.25.1", | ||
"@cocreate/local-storage": "^1.10.7", | ||
"@cocreate/render": "^1.29.0" | ||
} | ||
} |
(function (root, factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
define(["./client"], function(CoCreateUsers) { | ||
return factory(CoCreateUsers) | ||
define(["./client"], function (CoCreateUsers) { | ||
return factory(CoCreateUsers) | ||
}); | ||
} else if (typeof module === 'object' && module.exports) { | ||
const CoCreateUsers = require("./server.js") | ||
module.exports = factory(CoCreateUsers); | ||
const CoCreateUsers = require("./server.js") | ||
module.exports = factory(CoCreateUsers); | ||
} else { | ||
root.returnExports = factory(root["./client.js"]); | ||
} | ||
} | ||
}(typeof self !== 'undefined' ? self : this, function (CoCreateUsers) { | ||
return CoCreateUsers; | ||
return CoCreateUsers; | ||
})); |
Sorry, the diff of this file is too big to display
149674