@connectid-tools/idp-selector-react 6.12.3 → 6.12.5
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/CidButtonHowItWorks.d.ts +1 -1
- package/CidButtonHowItWorks.js +3 -2
- package/CidButtonInfo.d.ts +1 -1
- package/LearnMore.d.ts +1 -1
- package/ParticipantsLoader.d.ts +1 -1
- package/Process.d.ts +1 -1
- package/README.md +6 -0
- package/package.json +12 -12
package/CidButtonHowItWorks.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './CidButtonHowItWorks.css';
|
|
2
|
-
export declare const CidButtonHowItWorks: () => import("react
|
|
2
|
+
export declare const CidButtonHowItWorks: () => import("react").JSX.Element;
|
package/CidButtonHowItWorks.js
CHANGED
|
@@ -5,14 +5,15 @@ import { ThemeContext } from "./ThemeContext.js";
|
|
|
5
5
|
import { useContext } from "react";
|
|
6
6
|
export const CidButtonHowItWorks = () => {
|
|
7
7
|
const theme = useContext(ThemeContext);
|
|
8
|
+
const howDoesItWorkUrl = "https://www.auspayplus.com.au/solutions/connectid-for-consumers#how-it-works";
|
|
8
9
|
const handleClick = () => {
|
|
9
10
|
if (typeof analytics !== "undefined") {
|
|
10
11
|
analytics.track("Link to External Page Clicked", {
|
|
11
12
|
source: "how_does_it_work",
|
|
12
|
-
link_url:
|
|
13
|
+
link_url: howDoesItWorkUrl,
|
|
13
14
|
rp_sub_brand: getCurrentUrlOrigin(),
|
|
14
15
|
});
|
|
15
16
|
}
|
|
16
17
|
};
|
|
17
|
-
return (_jsx("a", { href:
|
|
18
|
+
return (_jsx("a", { href: howDoesItWorkUrl, onClick: handleClick, target: "_blank", tabIndex: 0, className: `cid-idp-selector-how-it-works ${theme === "light" ? "cid-idp-selector-how-it-works--light" : ""}`, "data-testid": "how-it-works", children: "How does it work?" }));
|
|
18
19
|
};
|
package/CidButtonInfo.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './CidButtonInfo.css';
|
|
2
|
-
export declare const CidButtonInfo: () => import("react
|
|
2
|
+
export declare const CidButtonInfo: () => import("react").JSX.Element;
|
package/LearnMore.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './LearnMore.css';
|
|
2
|
-
export declare const LearnMore: () => import("react
|
|
2
|
+
export declare const LearnMore: () => import("react").JSX.Element;
|
package/ParticipantsLoader.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './ParticipantsLoader.css';
|
|
2
|
-
export declare const ParticipantsLoader: () => import("react
|
|
2
|
+
export declare const ParticipantsLoader: () => import("react").JSX.Element;
|
package/Process.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './Process.css';
|
|
2
|
-
export declare const Process: () => import("react
|
|
2
|
+
export declare const Process: () => import("react").JSX.Element;
|
package/README.md
CHANGED
|
@@ -260,6 +260,12 @@ The SVG image below the ConnectID button has either option dark or light mode. B
|
|
|
260
260
|
|
|
261
261
|
## 🚀 Release Notes
|
|
262
262
|
|
|
263
|
+
### 6.12.5 (Aug 17, 2026)
|
|
264
|
+
- Update `How does it work` link.
|
|
265
|
+
|
|
266
|
+
### 6.12.4 (Jun 11, 2026)
|
|
267
|
+
- Update dependencies.
|
|
268
|
+
|
|
263
269
|
### 6.12.3 (Nov 21, 2025)
|
|
264
270
|
- `vite` as `devDependency`.
|
|
265
271
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectid-tools/idp-selector-react",
|
|
3
|
-
"version": "6.12.
|
|
3
|
+
"version": "6.12.5",
|
|
4
4
|
"description": "React component for IDP Selector.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,24 +25,24 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/connectid-tools/idp-selector-react",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@babel/preset-typescript": "^7.
|
|
29
|
-
"@types/node": "^22.
|
|
30
|
-
"@types/react": "^18.3.
|
|
28
|
+
"@babel/preset-typescript": "^7.29.7",
|
|
29
|
+
"@types/node": "^22.20.1",
|
|
30
|
+
"@types/react": "^18.3.31",
|
|
31
31
|
"@types/react-dom": "^18.3.7",
|
|
32
|
-
"cypress": "^15.
|
|
33
|
-
"jest-environment-jsdom": "^30.
|
|
34
|
-
"prettier": "^3.6
|
|
32
|
+
"cypress": "^15.20.0",
|
|
33
|
+
"jest-environment-jsdom": "^30.4.1",
|
|
34
|
+
"prettier": "^3.9.6",
|
|
35
35
|
"react": "^18.3.1",
|
|
36
36
|
"react-dom": "^18.3.1",
|
|
37
|
-
"replace-in-file": "^8.
|
|
37
|
+
"replace-in-file": "^8.4.0",
|
|
38
38
|
"ts-add-js-extension": "^1.6.6",
|
|
39
|
-
"tsx": "^4.
|
|
39
|
+
"tsx": "^4.23.11",
|
|
40
40
|
"typescript": "^5.9.3",
|
|
41
|
-
"vite": "^7.
|
|
41
|
+
"vite": "^7.3.6"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"detectincognitojs": "^1.
|
|
44
|
+
"detectincognitojs": "^1.9.0",
|
|
45
45
|
"react-responsive": "^10.0.1",
|
|
46
|
-
"swr": "^2.
|
|
46
|
+
"swr": "^2.5.0"
|
|
47
47
|
}
|
|
48
48
|
}
|