From 6fbd0e63537618f69827af7e6164a380c8e98808 Mon Sep 17 00:00:00 2001 From: Rahul Vyas Date: Sun, 2 Aug 2026 11:28:34 +0530 Subject: [PATCH 1/3] feat: add overflow-hidden class to SupportUsButton for improved layout --- package-lock.json | 54 ------------------------------ src/components/SupportUsButton.tsx | 2 +- 2 files changed, 1 insertion(+), 55 deletions(-) diff --git a/package-lock.json b/package-lock.json index e1b4af4..ff475e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1063,9 +1063,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1083,9 +1080,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -1103,9 +1097,6 @@ "ppc64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1123,9 +1114,6 @@ "s390x" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1143,9 +1131,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -1163,9 +1148,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -2690,9 +2672,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -2710,9 +2689,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -2730,9 +2706,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MIT", "optional": true, "os": [ @@ -2750,9 +2723,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MIT", "optional": true, "os": [ @@ -2969,9 +2939,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -2993,9 +2960,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -3017,9 +2981,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -3041,9 +3002,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -6296,9 +6254,6 @@ "arm64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -6320,9 +6275,6 @@ "arm64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -6344,9 +6296,6 @@ "x64" ], "dev": true, - "libc": [ - "glibc" - ], "license": "MPL-2.0", "optional": true, "os": [ @@ -6368,9 +6317,6 @@ "x64" ], "dev": true, - "libc": [ - "musl" - ], "license": "MPL-2.0", "optional": true, "os": [ diff --git a/src/components/SupportUsButton.tsx b/src/components/SupportUsButton.tsx index 7dbe0c9..edca532 100644 --- a/src/components/SupportUsButton.tsx +++ b/src/components/SupportUsButton.tsx @@ -100,7 +100,7 @@ function SupportUsButton({ } : undefined } - className={`relative w-full h-full px-12 sm:px-14 md:px-20 py-10 sm:py-10 md:py-14 text-center ${isAuto ? "bg-transparent font-inherit text-inherit" : "font-sans"} ${classAccordingToTheme(Theme)} ${className}`} + className={`relative overflow-hidden w-full h-full px-12 sm:px-14 md:px-20 py-10 sm:py-10 md:py-14 text-center ${isAuto ? "bg-transparent font-inherit text-inherit" : "font-sans"} ${classAccordingToTheme(Theme)} ${className}`} > {Logo && (
From f58bbc823a8951cecea09646bc2d70a5cd7db61b Mon Sep 17 00:00:00 2001 From: Rahul Vyas Date: Sun, 2 Aug 2026 11:29:05 +0530 Subject: [PATCH 2/3] 2.2.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index ff475e4..b745235 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "support-us-button", - "version": "2.1.2", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "support-us-button", - "version": "2.1.2", + "version": "2.2.0", "license": "GNU General Public License v3.0", "dependencies": { "tslib": "^2.8.1" diff --git a/package.json b/package.json index 746f9a1..e0babb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "support-us-button", - "version": "2.1.2", + "version": "2.2.0", "description": "A customizable and flexible Support Us button component for integrating sponsorship and donation options into web applications.", "keywords": [ "aossie", From bdf92b243bc978b7d3014ceda94c701b433c8f85 Mon Sep 17 00:00:00 2001 From: Rahul Vyas Date: Sun, 2 Aug 2026 11:29:39 +0530 Subject: [PATCH 3/3] chore: update version to 2.2.0 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8f9174b..e3a4f19 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.2 \ No newline at end of file +2.2.0 \ No newline at end of file