@floe-ai/sdk 0.1.0-dev.2 → 0.1.0-dev.6
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 +5 -3
- package/dist-sdk/floe-sdk.es.js +4853 -4331
- package/dist-sdk/floe-sdk.es.js.map +1 -1
- package/dist-sdk/floe-sdk.iife.js +47 -47
- package/dist-sdk/floe-sdk.iife.js.map +1 -1
- package/dist-sdk/floe-sdk.umd.js +47 -47
- package/dist-sdk/floe-sdk.umd.js.map +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
AI-powered onboarding SDK for React applications. Add voice-guided product tours and interactive onboarding to your app with a single function call.
|
|
4
4
|
|
|
5
|
+
**Supports React 18 and React 19.**
|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -117,15 +119,15 @@ const sdk = Floe(config);
|
|
|
117
119
|
|
|
118
120
|
## Requirements
|
|
119
121
|
|
|
120
|
-
- React 18
|
|
122
|
+
- React 18 or React 19
|
|
121
123
|
- Modern browser with WebRTC support
|
|
122
124
|
|
|
123
125
|
## Peer Dependencies
|
|
124
126
|
|
|
125
127
|
```json
|
|
126
128
|
{
|
|
127
|
-
"react": "^18.0.0",
|
|
128
|
-
"react-dom": "^18.0.0"
|
|
129
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
130
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
129
131
|
}
|
|
130
132
|
```
|
|
131
133
|
|