From 547f75c90aa3d81fd0bcb9e8125c2edc680cb854 Mon Sep 17 00:00:00 2001 From: Ludovit Scholtz Date: Sat, 7 Sep 2024 20:32:15 +0200 Subject: [PATCH] v 1.7.1 --- package.json | 2 +- src/QRCodeVue3.vue | 34 +++++++++++++++++----------------- src/QRCodeVue3Async.vue | 34 +++++++++++++++++----------------- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/package.json b/package.json index 18bb445..384afed 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "qrcode-vue3", "private": false, - "version": "1.7.0", + "version": "1.7.1", "type": "module", "description": "Add a style and an image to your QR code Vue3", "main": "./dist/index.umd.js", diff --git a/src/QRCodeVue3.vue b/src/QRCodeVue3.vue index 6c2c620..0f66729 100644 --- a/src/QRCodeVue3.vue +++ b/src/QRCodeVue3.vue @@ -4,23 +4,23 @@ import QRCodeVue3Async from "./QRCodeVue3Async.vue"; export interface Props { value: string; - width: number | undefined; - height: number | undefined; - margin: number | undefined; - imgclass: string | undefined; - myclass: string | undefined; - downloadButton: string | undefined; - buttonName: string | undefined; - qrOptions: any | undefined; - imageOptions: any | undefined; - dotsOptions: any | undefined; - backgroundOptions: any | undefined; - cornersSquareOptions: any | undefined; - cornersDotOptions: any | undefined; - fileExt: string | undefined; - image: string | undefined; - download: boolean | undefined; - downloadOptions: any | undefined; + width?: number; + height?: number; + margin?: number; + imgclass?: string; + myclass?: string; + downloadButton?: string; + buttonName?: string; + qrOptions?: any; + imageOptions?: any; + dotsOptions?: any; + backgroundOptions?: any; + cornersSquareOptions?: any; + cornersDotOptions?: any; + fileExt?: string; + image?: string; + download?: boolean; + downloadOptions?: any; } const props = withDefaults(defineProps(), { diff --git a/src/QRCodeVue3Async.vue b/src/QRCodeVue3Async.vue index ddb1bc8..5b4fe39 100644 --- a/src/QRCodeVue3Async.vue +++ b/src/QRCodeVue3Async.vue @@ -4,23 +4,23 @@ import QRCodeStyling from "./core/QRCodeStyling"; export interface Props { value: string; - width: number | undefined; - height: number | undefined; - margin: number | undefined; - imgclass: string | undefined; - myclass: string | undefined; - downloadButton: string | undefined; - buttonName: string | undefined; - qrOptions: any | undefined; - imageOptions: any | undefined; - dotsOptions: any | undefined; - backgroundOptions: any | undefined; - cornersSquareOptions: any | undefined; - cornersDotOptions: any | undefined; - fileExt: string | undefined; - image: string | undefined; - download: boolean | undefined; - downloadOptions: any | undefined; + width?: number; + height?: number; + margin?: number; + imgclass?: string; + myclass?: string; + downloadButton?: string; + buttonName?: string; + qrOptions?: any; + imageOptions?: any; + dotsOptions?: any; + backgroundOptions?: any; + cornersSquareOptions?: any; + cornersDotOptions?: any; + fileExt?: string; + image?: string; + download?: boolean; + downloadOptions?: any; } const props = withDefaults(defineProps(), {