Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
aabdef0
add: frame1 and frame2 Eye Frame Shape
adolfo1971 Dec 19, 2024
5c20371
new: add frame 4
adolfo1971 Dec 20, 2024
5f9cd98
new: add Eye Ball Shape ball1
adolfo1971 Dec 20, 2024
f1f767c
new: add Eye Ball Shape ball2
adolfo1971 Dec 20, 2024
7bf316a
new: add Eye Ball Shape ball3
adolfo1971 Dec 20, 2024
0ca6658
new: add Eye Ball Shape ball15
adolfo1971 Dec 20, 2024
c8e62ec
new: add Eye Ball Shape ball18
adolfo1971 Dec 23, 2024
086edef
new: add Eye Ball Shape ball15
adolfo1971 Dec 23, 2024
25aa1c3
new: add Eye Ball Shape ball19
adolfo1971 Dec 23, 2024
37b17b5
first test QR Dots
adolfo1971 Dec 24, 2024
de5804f
new: add Eye Ball Shape ball12
adolfo1971 Dec 24, 2024
cb4f05f
new: add Eye Ball Shape ball13
adolfo1971 Dec 24, 2024
5ff5ea6
new: add circle-zebra dot
adolfo1971 Dec 26, 2024
5fbfc76
new: add circle-zebra-vertical dot
adolfo1971 Dec 27, 2024
7c34e18
new: add Eye Frame Shape frame3
adolfo1971 Dec 27, 2024
8351d5a
update: fix Eye Frame Shape frame1
adolfo1971 Dec 30, 2024
af1029a
new: add Eye Frame Shape frame2
adolfo1971 Dec 30, 2024
1f0a3ae
new: add Eye Frame Shape frame16
adolfo1971 Dec 31, 2024
c10a209
update: change name package
adolfo1971 Dec 31, 2024
f49354f
chore(release): v1.9.5
adolfo1971 Dec 31, 2024
def125b
chore(release): v1.9.7
adolfo1971 Dec 31, 2024
0c13296
add mosaic Dot
adolfo1971 Jan 31, 2025
c2b9c23
chore(release): v1.9.9
adolfo1971 Jan 31, 2025
f2c8eb6
chore(release): v1.9.10
adolfo1971 Feb 12, 2025
d9c6b5b
chore(release): v1.9.11
adolfo1971 Feb 12, 2025
d4313ed
chore(release): v1.9.12
adolfo1971 Feb 13, 2025
9b034f6
chore(release): v1.9.13
adolfo1971 Feb 13, 2025
6b7b3ee
chore(release): v1.9.14
adolfo1971 Feb 13, 2025
381664b
chore(release): v1.9.15
adolfo1971 Feb 13, 2025
35428c9
chore(release): v1.9.16
adolfo1971 Feb 13, 2025
a11dc6f
chore(release): v1.9.17
adolfo1971 Feb 13, 2025
7430483
chore(release): v1.10.0
adolfo1971 Feb 13, 2025
581bf7a
chore(release): v2.0.0
adolfo1971 Feb 13, 2025
76d138c
fix negative values
adolfo1971 Feb 13, 2025
1cd712b
chore(release): v2.0.1
adolfo1971 Feb 13, 2025
e64958f
chore(release): v2.1.0
adolfo1971 Feb 13, 2025
77e7027
chore(release): v2.1.1
adolfo1971 Feb 13, 2025
0b597bd
chore(release): v2.1.2
adolfo1971 Feb 13, 2025
88746b5
chore(release): v2.1.3
adolfo1971 Feb 14, 2025
c443115
chore(release): v2.1.4
adolfo1971 Feb 15, 2025
643586e
chore(release): v2.1.5
adolfo1971 Feb 15, 2025
9fa5eea
update some eye balls
adolfo1971 Feb 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19,679 changes: 4,748 additions & 14,931 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qr-code-styling",
"version": "1.8.4",
"name": "trakid-qr-code-styling",
"version": "2.1.5",
"description": "Add a style and an image to your QR code",
"main": "lib/qr-code-styling.js",
"types": "lib/index.d.ts",
Expand Down
11 changes: 10 additions & 1 deletion src/constants/cornerDotTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,14 @@ import { CornerDotTypes } from "../types";

export default {
dot: "dot",
square: "square"
square: "square",
ball1: "ball1",
ball2: "ball2",
ball3: "ball3",
ball5: "ball5",
ball12: "ball12",
ball13: "ball13",
ball15: "ball15",
ball18: "ball18",
ball19: "ball19",
} as CornerDotTypes;
8 changes: 7 additions & 1 deletion src/constants/cornerSquareTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@ import { CornerSquareTypes } from "../types";
export default {
dot: "dot",
square: "square",
extraRounded: "extra-rounded"
extraRounded: "extra-rounded",
frame1: "frame1",
frame2: "frame2",
frame3: "frame3",
frame4: "frame4",
frame7: "frame7",
frame16: "frame16"
} as CornerSquareTypes;
5 changes: 4 additions & 1 deletion src/constants/dotTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ export default {
classy: "classy",
classyRounded: "classy-rounded",
square: "square",
extraRounded: "extra-rounded"
extraRounded: "extra-rounded",
circleZebra: "circle-zebra",
circleZebraVertical: "circle-zebra-vertical",
mosaic: "mosaic"
} as DotTypes;
Loading