Changes
- ⚠️ Breaking change:
useCallFrame
: Instead of accepting the resolved value for a given parentEl
, it will now accept a React Ref parentElRef
. This generally improves the DX when working with conditionally rendered call frame wrappers.
// Before
const ref = useRef(null);
const callFrame = useCallFrame({
parentEl: ref.current,
});
// Now
const ref = useRef(null);
const callFrame = useCallFrame({
parentElRef: ref,
});
- Removed unnecessary
playsInline
attributes from rendered <audio>
elements
- Updated devDependencies