Skip to content

Commit a57debb

Browse files
committed
chore: 2.7.3
1 parent e2d04a3 commit a57debb

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

.stackblitz/app.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,15 @@ const buttonId = "open-btn";
2727
picture-in-picture-toggle
2828
/>
2929
<!-- Usage of `CldUploadWidget.vue` component -->
30-
<CldUploadWidget v-slot="{ open }" upload-preset="nuxt-cloudinary-unsigned">
30+
<CldUploadWidget
31+
v-slot="{ open }"
32+
upload-preset="nuxt-cloudinary-unsigned"
33+
:on-upload="
34+
(result, w) => {
35+
console.log(result, w);
36+
}
37+
"
38+
>
3139
<button type="button" @click="open">Upload an Image</button>
3240
</CldUploadWidget>
3341
<!-- Usage of `CldUploadButton.vue` component -->

.stackblitz/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"nuxt": "^3.8.0"
1212
},
1313
"dependencies": {
14-
"@nuxtjs/cloudinary": "^2.7.2"
14+
"@nuxtjs/cloudinary": "^2.7.3"
1515
}
1616
}

.stackblitz/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,10 +1173,10 @@
11731173
vite-plugin-checker "^0.6.2"
11741174
vue-bundle-renderer "^2.0.0"
11751175

1176-
"@nuxtjs/cloudinary@^2.7.2":
1177-
version "2.7.2"
1178-
resolved "https://registry.yarnpkg.com/@nuxtjs/cloudinary/-/cloudinary-2.7.2.tgz#74110eee3b7e4de159ae81baafa1437cfc5d2a6f"
1179-
integrity sha512-BreBrTM54X5PT7i7BiB9/VuFM4eKV7UhseKSgIRjCuWbf4AR2wCvXJV/FvW6ReYFx2JylhwWLbNWIcq9wT9FOA==
1176+
"@nuxtjs/cloudinary@^2.7.3":
1177+
version "2.7.3"
1178+
resolved "https://registry.yarnpkg.com/@nuxtjs/cloudinary/-/cloudinary-2.7.3.tgz#0540f90c51d5cded0dbd3b7ec2c4d88006c1ff1b"
1179+
integrity sha512-8QeXLTb1/7nwSj+85bdubhMBONiW7fHMTidzAcWSEkj7w2hxpYrwnOLKoTOvPZgCZQBoVLb6C6hkpXHyD1I0Iw==
11801180
dependencies:
11811181
"@cloudinary-util/types" "1.0.1"
11821182
"@cloudinary-util/url-loader" "^5.2.1"

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"typescript": "^5.3.3"
1818
},
1919
"dependencies": {
20-
"@nuxtjs/cloudinary": "^2.7.2"
20+
"@nuxtjs/cloudinary": "^2.7.3"
2121
}
2222
}

docs/pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxtjs/cloudinary",
3-
"version": "2.7.2",
3+
"version": "2.7.3",
44
"description": "Cloudinary module for Nuxt",
55
"license": "MIT",
66
"type": "module",

src/runtime/components/CldUploadWidget.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function triggerOnIdle(callback: any) {
143143
return setTimeout(() => callback(), 1);
144144
}
145145
146-
const WIDGET_WATCHED_EVENTS = ["success", "display-changed"];
146+
const WIDGET_WATCHED_EVENTS = ["success"];
147147
148148
const props = defineProps<CldUploadWidgetProps>();
149149

0 commit comments

Comments
 (0)