@uppy/dashboard
Advanced tools
Comparing version 1.10.1 to 1.10.2
@@ -55,3 +55,4 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; } | ||
class: "uppy-DashboardTab", | ||
role: "presentation" | ||
role: "presentation", | ||
"data-uppy-acquirer-id": "MyDevice" | ||
}, h("button", { | ||
@@ -106,3 +107,4 @@ type: "button", | ||
class: "uppy-DashboardTab", | ||
role: "presentation" | ||
role: "presentation", | ||
"data-uppy-acquirer-id": acquirer.id | ||
}, h("button", { | ||
@@ -109,0 +111,0 @@ type: "button", |
@@ -139,5 +139,5 @@ var _require = require('preact'), | ||
onClick: function onClick() { | ||
return removeFile(file.id); | ||
return removeFile(file.id, 'removed-by-user'); | ||
} | ||
}) : null); | ||
}; |
@@ -1087,2 +1087,2 @@ var _class, _temp; | ||
return Dashboard; | ||
}(Plugin), _class.VERSION = "1.10.1", _temp); | ||
}(Plugin), _class.VERSION = "1.10.2", _temp); |
{ | ||
"name": "@uppy/dashboard", | ||
"description": "Universal UI plugin for Uppy.", | ||
"version": "1.10.1", | ||
"version": "1.10.2", | ||
"license": "MIT", | ||
@@ -26,7 +26,7 @@ "main": "lib/index.js", | ||
"@transloadit/prettier-bytes": "0.0.7", | ||
"@uppy/informer": "^1.5.7", | ||
"@uppy/provider-views": "^1.6.8", | ||
"@uppy/status-bar": "^1.7.0", | ||
"@uppy/thumbnail-generator": "^1.6.2", | ||
"@uppy/utils": "^3.1.0", | ||
"@uppy/informer": "^1.5.8", | ||
"@uppy/provider-views": "^1.7.0", | ||
"@uppy/status-bar": "^1.7.1", | ||
"@uppy/thumbnail-generator": "^1.6.3", | ||
"@uppy/utils": "^3.2.0", | ||
"classnames": "^2.2.6", | ||
@@ -45,3 +45,3 @@ "cuid": "^2.1.1", | ||
}, | ||
"gitHead": "aacaff256c64739337c9148963e874d7c06c9e58" | ||
"gitHead": "16686fc0cae55dd40f449f63005273145aba7df3" | ||
} |
@@ -68,3 +68,7 @@ const { h, Component } = require('preact') | ||
return ( | ||
<div class="uppy-DashboardTab" role="presentation"> | ||
<div | ||
class="uppy-DashboardTab" | ||
role="presentation" | ||
data-uppy-acquirer-id="MyDevice" | ||
> | ||
<button | ||
@@ -115,3 +119,7 @@ type="button" | ||
return ( | ||
<div class="uppy-DashboardTab" role="presentation"> | ||
<div | ||
class="uppy-DashboardTab" | ||
role="presentation" | ||
data-uppy-acquirer-id={acquirer.id} | ||
> | ||
<button | ||
@@ -118,0 +126,0 @@ type="button" |
@@ -115,3 +115,3 @@ const { h } = require('preact') | ||
log={props.log} | ||
onClick={() => removeFile(file.id)} | ||
onClick={() => removeFile(file.id, 'removed-by-user')} | ||
/> | ||
@@ -118,0 +118,0 @@ ) : null} |
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
356554
7263
Updated@uppy/informer@^1.5.8
Updated@uppy/provider-views@^1.7.0
Updated@uppy/status-bar@^1.7.1
Updated@uppy/utils@^3.2.0