@tongo_fintech/react-broker-signup-integration 0.1.0 → 0.1.1
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/README.md +1 -12
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -78,15 +78,4 @@ ${base}/integration/signup?signupToken=${encodeURIComponent(token)}
|
|
|
78
78
|
- A fullscreen dark backdrop
|
|
79
79
|
- A white rounded modal shell
|
|
80
80
|
- A full-size iframe inside the shell
|
|
81
|
-
|
|
82
|
-
## What The iFrame Owns
|
|
83
|
-
|
|
84
|
-
- The close button in the top-right corner
|
|
85
|
-
- All headers, logos, progress steps, forms and buttons
|
|
86
|
-
- All inner layout and styling inside the modal
|
|
87
|
-
|
|
88
|
-
## Release process
|
|
89
|
-
|
|
90
|
-
1. Update the version in `package.json`.
|
|
91
|
-
2. Push to `main`.
|
|
92
|
-
3. GitHub Actions will build, test and publish the package if that version is not already in npm.
|
|
81
|
+
>>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tongo_fintech/react-broker-signup-integration",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "React library for broker signup with Tongo using signup tokens.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -31,11 +31,16 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "tsup",
|
|
34
|
+
"build:consumer-sandbox": "npm --prefix consumer-sandbox run build",
|
|
34
35
|
"build:playground": "vite build --config vite.playground.config.ts",
|
|
36
|
+
"dev:consumer-sandbox": "npm --prefix consumer-sandbox run dev",
|
|
35
37
|
"dev:playground": "vite --config vite.playground.config.ts",
|
|
38
|
+
"install:consumer-sandbox": "npm install --prefix consumer-sandbox",
|
|
36
39
|
"lint": "eslint .",
|
|
40
|
+
"preview:consumer-sandbox": "npm --prefix consumer-sandbox run preview",
|
|
37
41
|
"preview:playground": "vite preview --config vite.playground.config.ts",
|
|
38
42
|
"test": "vitest run test",
|
|
43
|
+
"test:coverage": "vitest run test --coverage.enabled",
|
|
39
44
|
"typecheck": "tsc --noEmit"
|
|
40
45
|
},
|
|
41
46
|
"peerDependencies": {
|
|
@@ -48,6 +53,7 @@
|
|
|
48
53
|
"@testing-library/react": "^16.1.0",
|
|
49
54
|
"@types/react": "^19.0.2",
|
|
50
55
|
"@types/react-dom": "^19.0.2",
|
|
56
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
51
57
|
"eslint": "^9.18.0",
|
|
52
58
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
53
59
|
"globals": "^15.14.0",
|