@solidgate/react-sdk 1.2.0 → 1.3.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/CHANGELOG.md +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
|
+
**1.3.0**
|
|
2
|
+
|
|
3
|
+
Added **formParams.buttonType** config param
|
|
4
|
+
|
|
5
|
+
You may use it to set **continue** button type
|
|
6
|
+
```typescript
|
|
7
|
+
import { FormButtonType } from '@solidgate/react-sdk'
|
|
8
|
+
|
|
9
|
+
initConfig.formParams.buttonType = FormButtonType.Continue
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
***
|
|
13
|
+
|
|
1
14
|
**1.2.0**
|
|
2
15
|
|
|
3
16
|
Added **formParams.autoFocus** config param
|
|
4
17
|
|
|
18
|
+
***
|
|
19
|
+
|
|
5
20
|
**1.1.2**
|
|
6
21
|
|
|
7
22
|
Added license
|
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.3.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.5.0",
|
|
16
16
|
"react-scripts": "5.0.0",
|
|
17
17
|
"styled-components": "^5.3.3"
|
|
18
18
|
},
|