@tap-payments/connect-v2 1.0.11-development → 1.0.12-development
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 +3 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ You can also use the SDK without a React build setup by including the UMD bundle
|
|
|
77
77
|
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
|
|
78
78
|
|
|
79
79
|
<!-- Tap Connect SDK UMD bundle -->
|
|
80
|
-
<script src="https://cdn.tap.company/tap-sdks/connect-v2/build-1.0.
|
|
80
|
+
<script src="https://cdn.tap.company/tap-sdks/connect-v2/build-1.0.12-development/index.js"></script>
|
|
81
81
|
|
|
82
82
|
<script>
|
|
83
83
|
function openConnect() {
|
|
@@ -146,6 +146,8 @@ You can also use the SDK without a React build setup by including the UMD bundle
|
|
|
146
146
|
| dialogStartTransition | `ConnectDialogTransition` | Dialog opening animation. |
|
|
147
147
|
| dialogEndTransition | `ConnectDialogTransition` | Dialog closing animation. |
|
|
148
148
|
| dialogEdgeFormat | `ConnectDialogEdgeFormat` | Dialog edge style. |
|
|
149
|
+
| emailAuth | `boolean` | Enable email flow for Qatar. |
|
|
150
|
+
| zIndex | `number` | zInde value for connect. |
|
|
149
151
|
|
|
150
152
|
##### `ConnectPaymentProvider`
|
|
151
153
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/connect-v2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12-development",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "build/index.cjs.js",
|
|
6
6
|
"module": "build/index.esm.js",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"build": "yarn clean && yarn build:npm && yarn build:umd",
|
|
26
26
|
"build:production": "cross-env MODE=production npm run build",
|
|
27
27
|
"build:beta": "cross-env MODE=beta npm run build",
|
|
28
|
+
"build:sandbox": "cross-env MODE=sandbox npm run build",
|
|
28
29
|
"build:development": "cross-env MODE=development npm run build",
|
|
29
30
|
"lint": "eslint .",
|
|
30
31
|
"lint:fix": "eslint . --fix",
|