@cuekit-ai/react 1.2.0 → 1.2.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/README.md +0 -1
- package/dist/cuekit.css +0 -3
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -215,7 +215,6 @@ If you're having trouble, here are a few things to check:
|
|
|
215
215
|
- **Microphone Not Working**: Ensure that you've granted microphone permissions to your site. Also, the SDK requires a secure (HTTPS) connection to function.
|
|
216
216
|
- **Voice Commands Not Recognized**: Check your internet connection and ensure that you've provided a valid API key and app ID to the `CuekitProvider`.
|
|
217
217
|
- **Styling Issues**: Make sure you've imported the CSS file as described in the [Installation](#-installation) section.
|
|
218
|
-
- **WebRTC Connection Issues**: Check your browser's console for any error messages related to WebRTC. Ensure your network doesn't block the necessary ports.
|
|
219
218
|
|
|
220
219
|
---
|
|
221
220
|
|
package/dist/cuekit.css
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuekit-ai/react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
8
9
|
"import": "./dist/index.mjs",
|
|
9
10
|
"require": "./dist/index.js"
|
|
10
11
|
},
|
|
11
12
|
"./babel": "./babel/index.js",
|
|
12
|
-
"./styles.css":
|
|
13
|
-
"import": "./dist/cuekit.css",
|
|
14
|
-
"require": "./dist/cuekit.css"
|
|
15
|
-
}
|
|
13
|
+
"./styles.css": "./dist/cuekit.css"
|
|
16
14
|
},
|
|
17
15
|
"files": [
|
|
18
16
|
"dist",
|