@knocklabs/react 0.9.3 → 0.9.4
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 +27 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f4529cc: Enable use of SlackKit with branches
|
|
8
|
+
|
|
9
|
+
The `useSlackAuth` hook exported by `@knocklabs/react-core` has been updated so
|
|
10
|
+
that it works with branches. You can now use either this hook or the
|
|
11
|
+
`<SlackAuthButton>` component exported by `@knocklabs/react` to test connecting
|
|
12
|
+
Slack workspaces to Knock tenants while working on a branch.
|
|
13
|
+
|
|
14
|
+
- f278892: Enable use of TeamsKit with branches
|
|
15
|
+
|
|
16
|
+
The `useMsTeamsAuth` hook exported by `@knocklabs/react-core` has been updated
|
|
17
|
+
so that it works with branches. You can now use either this hook or the
|
|
18
|
+
`<MsTeamsAuthButton>` component exported by `@knocklabs/react` to test
|
|
19
|
+
connecting Microsoft Teams organizations to Knock tenants while working on a
|
|
20
|
+
branch.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [571abb1]
|
|
23
|
+
- Updated dependencies [f4529cc]
|
|
24
|
+
- Updated dependencies [f278892]
|
|
25
|
+
- Updated dependencies [571abb1]
|
|
26
|
+
- Updated dependencies [571abb1]
|
|
27
|
+
- @knocklabs/react-core@0.11.3
|
|
28
|
+
- @knocklabs/client@0.19.3
|
|
29
|
+
|
|
3
30
|
## 0.9.3
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@knocklabs/react",
|
|
3
3
|
"description": "A set of React components to build notification experiences powered by Knock",
|
|
4
4
|
"author": "@knocklabs",
|
|
5
|
-
"version": "0.9.
|
|
5
|
+
"version": "0.9.4",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/cjs/index.js",
|
|
8
8
|
"module": "dist/esm/index.mjs",
|
|
@@ -72,8 +72,8 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@knocklabs/client": "^0.19.
|
|
76
|
-
"@knocklabs/react-core": "^0.11.
|
|
75
|
+
"@knocklabs/client": "^0.19.3",
|
|
76
|
+
"@knocklabs/react-core": "^0.11.3",
|
|
77
77
|
"@popperjs/core": "^2.11.8",
|
|
78
78
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
79
79
|
"@telegraph/combobox": "^0.1.16",
|