Skip to content

Commit

Permalink
v 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scholtz committed Sep 7, 2024
1 parent d64545d commit 547f75c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
34 changes: 17 additions & 17 deletions src/QRCodeVue3.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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<Props>(), {
Expand Down
34 changes: 17 additions & 17 deletions src/QRCodeVue3Async.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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<Props>(), {
Expand Down

0 comments on commit 547f75c

Please sign in to comment.