@wral/profile-image-editor 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -15628,7 +15628,9 @@ class Mi extends Ct {
15628
15628
  renderPlaceholder() {
15629
15629
  return ut`
15630
15630
  <div class="placeholder"
15631
- @click=${this._openFilePicker}
15631
+ @click=${(N) => {
15632
+ N.preventDefault(), N.stopImmediatePropagation(), this._openFilePicker();
15633
+ }}
15632
15634
  >
15633
15635
  <img src="${Di}"></img>
15634
15636
  <div>Click to browse or drag and drop</div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wral/profile-image-editor",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "description": "Lit web component for showing and editing a user's profile picture.",
6
6
  "author": "Noah Rojahn <nrojahn@wral.com>",