tts-react
tts-react copied to clipboard
Convert text to speech using React.
https://react.dev/reference/react/Children#alternatives
## problem when using with SSR, e.g. with a framework like Next.js, the code is rendered twice: first on the server, then on the client. you can use the `"use...
## problem when initialising the hook, you pass the text to be spoken as `children` parameter. my text is coming from a component prop. when the prop is changed after...
error occurs when using with SSR, e.g. in a Next.js app fixes #83 - [x] build successful - [x] tests passing - [x] lint & prettier
Bumps [rollup](https://github.com/rollup/rollup) from 4.18.0 to 4.22.4. Release notes Sourced from rollup's releases. v4.22.4 4.22.4 2024-09-21 Bug Fixes Fix a vulnerability in generated code that affects IIFE, UMD and CJS bundles...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.3.1 to 5.4.6. Release notes Sourced from vite's releases. [email protected] Please refer to CHANGELOG.md for details. Changelog Sourced from vite's changelog. 5.4.6 (2024-09-16) fix: avoid DOM Clobbering...
Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.7 to 4.0.8. Release notes Sourced from micromatch's releases. 4.0.8 Ultimate release that fixes both CVE-2024-4067 and CVE-2024-4068. We consider the issues low-priority, so even if you...
Bumps and [glob](https://github.com/isaacs/node-glob). These dependencies needed to be updated together. Updates `glob` from 11.0.3 to 11.1.0 Changelog Sourced from glob's changelog. changeglob 12 Remove the unsafe --shell option. The --shell...
Bumps and [js-yaml](https://github.com/nodeca/js-yaml). These dependencies needed to be updated together. Updates `js-yaml` from 3.14.1 to 3.14.2 Changelog Sourced from js-yaml's changelog. [3.14.2] - 2025-11-15 Security Backported v4.1.1 fix to v3...
This PR removes the legacy `Children.map` usage from the tts-react library and replaces it with modern React patterns, following the guidance from React's documentation on [Children.map alternatives](https://react.dev/reference/react/Children#alternatives). ## Changes Made...