@solidgate/react-sdk 1.3.1 → 1.4.0
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/package.json +4 -4
- package/CHANGELOG.md +0 -38
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidgate/react-sdk",
|
|
3
3
|
"repository": "https://bitbucket.org/solidgate/react-sdk",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Solidgate",
|
|
7
7
|
"description": "Solidgate react sdk loader",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@solidgate/client-sdk-loader": "^1.
|
|
15
|
+
"@solidgate/client-sdk-loader": "^1.6.0",
|
|
16
16
|
"react-scripts": "5.0.0",
|
|
17
17
|
"styled-components": "^5.3.3"
|
|
18
18
|
},
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"typescript": "^4.4.2"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"react": "^17.0.2",
|
|
66
|
-
"react-dom": "^17.0.2"
|
|
65
|
+
"react": "^17.0.2 || ^18.0.0",
|
|
66
|
+
"react-dom": "^17.0.2 || ^18.0.0"
|
|
67
67
|
}
|
|
68
68
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
**1.3.1**
|
|
2
|
-
|
|
3
|
-
Fixed try to render before container exists bug during second initialization
|
|
4
|
-
|
|
5
|
-
***
|
|
6
|
-
|
|
7
|
-
**1.3.0**
|
|
8
|
-
|
|
9
|
-
Added **formParams.buttonType** config param
|
|
10
|
-
|
|
11
|
-
You may use it to set **continue** button type
|
|
12
|
-
```typescript
|
|
13
|
-
import { FormButtonType } from '@solidgate/react-sdk'
|
|
14
|
-
|
|
15
|
-
initConfig.formParams.buttonType = FormButtonType.Continue
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
***
|
|
19
|
-
|
|
20
|
-
**1.2.0**
|
|
21
|
-
|
|
22
|
-
Added **formParams.autoFocus** config param
|
|
23
|
-
|
|
24
|
-
***
|
|
25
|
-
|
|
26
|
-
**1.1.2**
|
|
27
|
-
|
|
28
|
-
Added license
|
|
29
|
-
|
|
30
|
-
***
|
|
31
|
-
|
|
32
|
-
**1.1.0**
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
- Added **AdditionalFields** enum
|
|
36
|
-
- Fixed types which controlling labels visibility (like **initConfig.formParams.cardNumberLabel**)
|
|
37
|
-
- Deprecated **initConfig.allowedAdditionalFields** usage
|
|
38
|
-
- Added **CardMessage** event
|