@adhese/sdk-react 1.10.0-nightly-20260216132921 → 1.10.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/CHANGELOG.md +31 -3
- package/README.md +2 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,39 @@
|
|
|
1
1
|
# @adhese/sdk-react
|
|
2
2
|
|
|
3
|
-
## 1.10.
|
|
3
|
+
## 1.10.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- Updated dependencies [
|
|
8
|
-
- @adhese/sdk@1.10.
|
|
7
|
+
- Updated dependencies [1bf415d]
|
|
8
|
+
- @adhese/sdk@1.10.1
|
|
9
|
+
|
|
10
|
+
## 1.10.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [333e931]
|
|
15
|
+
- @adhese/sdk@1.10.0
|
|
16
|
+
|
|
17
|
+
## 1.9.9
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [0626b90]
|
|
22
|
+
- @adhese/sdk-shared@1.5.3
|
|
23
|
+
- @adhese/sdk@1.9.9
|
|
24
|
+
|
|
25
|
+
## 1.9.8
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- d6f11ea: Updated README
|
|
30
|
+
|
|
31
|
+
## 1.9.7
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies [33c0503]
|
|
36
|
+
- @adhese/sdk@1.9.7
|
|
9
37
|
|
|
10
38
|
## 1.9.6
|
|
11
39
|
|
package/README.md
CHANGED
|
@@ -34,7 +34,8 @@ function Devtools() {
|
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## `useAdhese`
|
|
37
|
-
The `useAdhese` hook returns the Adhese instance that is created by the `AdheseProvider`. It can be used to access the
|
|
37
|
+
The `useAdhese` hook returns the Adhese instance that is created by the `AdheseProvider`. It can be used to access the
|
|
38
|
+
Adhese instance in any child component.
|
|
38
39
|
|
|
39
40
|
```jsx
|
|
40
41
|
import { useAdhese } from '@adhese/sdk-react';
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhese/sdk-react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.1",
|
|
5
5
|
"description": "Adhese SDK",
|
|
6
6
|
"license": "GPL-3.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/adhese/sdk_typescript.git"
|
|
9
|
+
"url": "git+https://github.com/adhese/sdk_typescript.git",
|
|
10
|
+
"directory": "packages/sdk-react"
|
|
10
11
|
},
|
|
11
12
|
"exports": {
|
|
12
13
|
".": {
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
"react-dom": ">=16.13"
|
|
52
53
|
},
|
|
53
54
|
"dependencies": {
|
|
54
|
-
"@adhese/sdk": "1.10.
|
|
55
|
-
"@adhese/sdk-shared": "1.5.
|
|
55
|
+
"@adhese/sdk": "1.10.1",
|
|
56
|
+
"@adhese/sdk-shared": "1.5.3"
|
|
56
57
|
}
|
|
57
58
|
}
|