@drippr/embed-react 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -213,6 +213,7 @@ interface DripprFlowApi {
213
213
  - External button with controlled `open`/`onOpenChange` props
214
214
  - **Z-Index**: Automatically set to high values (99999+) to prevent conflicts with CSS frameworks like Tailwind CSS
215
215
  - **Prefetching**: Enabled by default (`prefetch={true}`) for faster loading. The component automatically prefetches the page content when mounted (modal/drawer modes only). If this causes issues with your implementation (e.g., unwanted network requests, conflicts with your routing), you can disable it with `prefetch={false}`.
216
+ - **Console Warnings**: You may see a browser console warning about "Blocked autofocusing on a <textarea> element in a cross-origin subframe." This is expected browser security behavior and can be safely ignored - autofocus still works correctly. This warning comes from the browser's cross-origin iframe security policy, not from the embed package.
216
217
 
217
218
  ## Requirements
218
219
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drippr/embed-react",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "React component for embedding Drippr feedback flows",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",