saafe-redirection-flow 2.2.1 → 2.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.2.2](https://gitlab.com/Networth360/saafe-redirection/compare/v2.2.1...v2.2.2) (2025-07-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * event propogation with account selection allowed ([af8543d](https://gitlab.com/Networth360/saafe-redirection/commit/af8543d5ed871be76a2dc2ab7de5c062b2be9e21))
7
+
1
8
  ## [2.2.1](https://gitlab.com/Networth360/saafe-redirection/compare/v2.2.0...v2.2.1) (2025-07-24)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saafe-redirection-flow",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -657,11 +657,13 @@ const AccountsToProceed = ({
657
657
  subText={`${account.type} | **${formatAccountNumber(account.maskedAccountNumber || "0")}`}
658
658
  onClick={() => toggleBankSelection(account.id)}
659
659
  rightSection={
660
- <Checkbox
661
- id={`checkbox-${account.id}`}
662
- checked={selectedAccounts.includes(account.id)}
663
- onCheckedChange={() => toggleBankSelection(account.id)}
664
- />
660
+ <div onClick={(e) => e.stopPropagation()}>
661
+ <Checkbox
662
+ id={`checkbox-${account.id}`}
663
+ checked={selectedAccounts.includes(account.id)}
664
+ onCheckedChange={() => toggleBankSelection(account.id)}
665
+ />
666
+ </div>
665
667
  }
666
668
  />
667
669
  </OuterCard>
index e8dd9a4..ffe6972 100644
Binary file
Binary file
Binary file