@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/define.standalone.js +1230 -1228
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
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=${
|
|
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