@connectid-tools/idp-selector-react 6.10.0-alpha.6 → 6.10.0-alpha.7
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/IdpLogoList.js +1 -1
- package/README.md +3 -0
- package/package.json +1 -1
package/IdpLogoList.js
CHANGED
|
@@ -12,5 +12,5 @@ export const IdpLogoList = ({ loading, logoLockupStyle }) => {
|
|
|
12
12
|
const isDarkMode = logoLockupStyle === 'dark';
|
|
13
13
|
const imgSrc = isDarkMode ? logoLockupUrl.dark : logoLockupUrl.light;
|
|
14
14
|
const dataTestId = isDarkMode ? 'logo-lockup-dark' : 'logo-lockup-light';
|
|
15
|
-
return (_jsx("div", { className: "cid-idp-selector-idp-logo-list-wrapper", "data-testid": "idp-logo-list-wrapper", children: _jsx("img", { "data-testid": dataTestId, className: "cid-logo-lockup", src: imgSrc, alt: "
|
|
15
|
+
return (_jsx("div", { className: "cid-idp-selector-idp-logo-list-wrapper", "data-testid": "idp-logo-list-wrapper", children: _jsx("img", { "data-testid": dataTestId, className: "cid-logo-lockup", src: imgSrc, alt: "Available on: CommBank, NAB, ANZ Plus and Westpac" }) }));
|
|
16
16
|
};
|
package/README.md
CHANGED
|
@@ -259,6 +259,9 @@ The SVG image below the ConnectID button has either option dark or light mode. B
|
|
|
259
259
|
|
|
260
260
|
## 🚀 Release Notes
|
|
261
261
|
|
|
262
|
+
### 6.10.0-alpha.7 (Jun 27, 2025)
|
|
263
|
+
- Fix bank logos `alt` attribute.
|
|
264
|
+
|
|
262
265
|
### 6.10.0-alpha.6 (Jun 26, 2025)
|
|
263
266
|
- Add `disableAnalytics` option.
|
|
264
267
|
|