Skip to content

Commit

Permalink
chore: 2.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Baroshem committed Apr 3, 2024
1 parent e2d04a3 commit a57debb
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
10 changes: 9 additions & 1 deletion .stackblitz/app.vue
Expand Up @@ -27,7 +27,15 @@ const buttonId = "open-btn";
picture-in-picture-toggle
/>
<!-- Usage of `CldUploadWidget.vue` component -->
<CldUploadWidget v-slot="{ open }" upload-preset="nuxt-cloudinary-unsigned">
<CldUploadWidget
v-slot="{ open }"
upload-preset="nuxt-cloudinary-unsigned"
:on-upload="
(result, w) => {
console.log(result, w);
}
"
>
<button type="button" @click="open">Upload an Image</button>
</CldUploadWidget>
<!-- Usage of `CldUploadButton.vue` component -->
Expand Down
2 changes: 1 addition & 1 deletion .stackblitz/package.json
Expand Up @@ -11,6 +11,6 @@
"nuxt": "^3.8.0"
},
"dependencies": {
"@nuxtjs/cloudinary": "^2.7.2"
"@nuxtjs/cloudinary": "^2.7.3"
}
}
8 changes: 4 additions & 4 deletions .stackblitz/yarn.lock
Expand Up @@ -1173,10 +1173,10 @@
vite-plugin-checker "^0.6.2"
vue-bundle-renderer "^2.0.0"

"@nuxtjs/cloudinary@^2.7.2":
version "2.7.2"
resolved "https://registry.yarnpkg.com/@nuxtjs/cloudinary/-/cloudinary-2.7.2.tgz#74110eee3b7e4de159ae81baafa1437cfc5d2a6f"
integrity sha512-BreBrTM54X5PT7i7BiB9/VuFM4eKV7UhseKSgIRjCuWbf4AR2wCvXJV/FvW6ReYFx2JylhwWLbNWIcq9wT9FOA==
"@nuxtjs/cloudinary@^2.7.3":
version "2.7.3"
resolved "https://registry.yarnpkg.com/@nuxtjs/cloudinary/-/cloudinary-2.7.3.tgz#0540f90c51d5cded0dbd3b7ec2c4d88006c1ff1b"
integrity sha512-8QeXLTb1/7nwSj+85bdubhMBONiW7fHMTidzAcWSEkj7w2hxpYrwnOLKoTOvPZgCZQBoVLb6C6hkpXHyD1I0Iw==
dependencies:
"@cloudinary-util/types" "1.0.1"
"@cloudinary-util/url-loader" "^5.2.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Expand Up @@ -17,6 +17,6 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@nuxtjs/cloudinary": "^2.7.2"
"@nuxtjs/cloudinary": "^2.7.3"
}
}
8 changes: 4 additions & 4 deletions docs/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/cloudinary",
"version": "2.7.2",
"version": "2.7.3",
"description": "Cloudinary module for Nuxt",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/CldUploadWidget.vue
Expand Up @@ -143,7 +143,7 @@ function triggerOnIdle(callback: any) {
return setTimeout(() => callback(), 1);
}
const WIDGET_WATCHED_EVENTS = ["success", "display-changed"];
const WIDGET_WATCHED_EVENTS = ["success"];
const props = defineProps<CldUploadWidgetProps>();
Expand Down

0 comments on commit a57debb

Please sign in to comment.