@uppy/provider-views
Advanced tools
Comparing version 3.8.0 to 3.9.0
# @uppy/provider-views | ||
## 3.9.0 | ||
Released: 2024-02-19 | ||
Included in: Uppy v3.22.0 | ||
- @uppy/provider-views: update uppy-providerbrowser-viewtype--list.scss (aditya patadia / #4913) | ||
- @uppy/provider-views: add referrerpolicy to images (merlijn vos / #4853) | ||
## 3.8.0 | ||
@@ -4,0 +12,0 @@ |
@@ -63,2 +63,3 @@ import { h } from 'preact'; | ||
alt: alt, | ||
referrerPolicy: "no-referrer", | ||
loading: "lazy", | ||
@@ -65,0 +66,0 @@ width: 16, |
@@ -13,3 +13,3 @@ function _classPrivateFieldLooseBase(receiver, privateKey) { if (!Object.prototype.hasOwnProperty.call(receiver, privateKey)) { throw new TypeError("attempted to use private field on non-instance"); } return receiver; } | ||
const packageJson = { | ||
"version": "3.8.0" | ||
"version": "3.9.0" | ||
}; | ||
@@ -479,3 +479,3 @@ function formatBreadcrumbs(breadcrumbs) { | ||
// prevent multiple requests in parallel from causing race conditions | ||
(_classPrivateFieldLoo = _classPrivateFieldLooseBase(this, _abortController)[_abortController]) == null ? void 0 : _classPrivateFieldLoo.abort(); | ||
(_classPrivateFieldLoo = _classPrivateFieldLooseBase(this, _abortController)[_abortController]) == null || _classPrivateFieldLoo.abort(); | ||
const abortController = new AbortController(); | ||
@@ -482,0 +482,0 @@ _classPrivateFieldLooseBase(this, _abortController)[_abortController] = abortController; |
@@ -10,3 +10,3 @@ function _classPrivateFieldLooseBase(receiver, privateKey) { if (!Object.prototype.hasOwnProperty.call(receiver, privateKey)) { throw new TypeError("attempted to use private field on non-instance"); } return receiver; } | ||
const packageJson = { | ||
"version": "3.8.0" | ||
"version": "3.9.0" | ||
}; | ||
@@ -13,0 +13,0 @@ /** |
{ | ||
"name": "@uppy/provider-views", | ||
"description": "View library for Uppy remote provider plugins.", | ||
"version": "3.8.0", | ||
"version": "3.9.0", | ||
"license": "MIT", | ||
@@ -23,3 +23,3 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@uppy/utils": "^5.7.0", | ||
"@uppy/utils": "^5.7.1", | ||
"classnames": "^2.2.6", | ||
@@ -31,4 +31,4 @@ "nanoid": "^4.0.0", | ||
"peerDependencies": { | ||
"@uppy/core": "^3.8.0" | ||
"@uppy/core": "^3.9.0" | ||
} | ||
} |
@@ -41,5 +41,5 @@ import { h } from 'preact' | ||
const { alt } = props | ||
return <img src={itemIconString} alt={alt} loading="lazy" width={16} height={16} /> | ||
return <img src={itemIconString} alt={alt} referrerPolicy="no-referrer" loading="lazy" width={16} height={16} /> | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
271197
3866
Updated@uppy/utils@^5.7.1