@igloo-ui/avatar
Advanced tools
+1
-61
| import './avatar.css'; | ||
| import * as React from 'react'; | ||
| import cx from 'classnames'; | ||
@@ -36,63 +37,2 @@ /****************************************************************************** | ||
| var classnames = {exports: {}}; | ||
| /*! | ||
| Copyright (c) 2018 Jed Watson. | ||
| Licensed under the MIT License (MIT), see | ||
| http://jedwatson.github.io/classnames | ||
| */ | ||
| (function (module) { | ||
| /* global define */ | ||
| (function () { | ||
| var hasOwn = {}.hasOwnProperty; | ||
| function classNames() { | ||
| var classes = []; | ||
| for (var i = 0; i < arguments.length; i++) { | ||
| var arg = arguments[i]; | ||
| if (!arg) continue; | ||
| var argType = typeof arg; | ||
| if (argType === 'string' || argType === 'number') { | ||
| classes.push(arg); | ||
| } else if (Array.isArray(arg)) { | ||
| if (arg.length) { | ||
| var inner = classNames.apply(null, arg); | ||
| if (inner) { | ||
| classes.push(inner); | ||
| } | ||
| } | ||
| } else if (argType === 'object') { | ||
| if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) { | ||
| classes.push(arg.toString()); | ||
| continue; | ||
| } | ||
| for (var key in arg) { | ||
| if (hasOwn.call(arg, key) && arg[key]) { | ||
| classes.push(key); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| return classes.join(' '); | ||
| } | ||
| if (module.exports) { | ||
| classNames.default = classNames; | ||
| module.exports = classNames; | ||
| } else { | ||
| window.classNames = classNames; | ||
| } | ||
| }()); | ||
| }(classnames)); | ||
| var cx = classnames.exports; | ||
| const Avatar = (_a) => { | ||
@@ -99,0 +39,0 @@ var { alt = "Avatar", className, dataTest, size = "medium", src } = _a, rest = __rest(_a, ["alt", "className", "dataTest", "size", "src"]); |
+2
-2
| { | ||
| "name": "@igloo-ui/avatar", | ||
| "version": "0.5.1", | ||
| "version": "0.6.0", | ||
| "main": "dist/Avatar.js", | ||
@@ -36,3 +36,3 @@ "module": "dist/Avatar.js", | ||
| ], | ||
| "gitHead": "860dc9cc48b5781faac47b43fadf665a8e890016" | ||
| "gitHead": "bdc4c2acd44801ff1b0d12e1deef2e61240bccbf" | ||
| } |
18886
-5.87%63
-42.73%