Releases: cortex-reply/react-components
Releases · cortex-reply/react-components
v2.29.0-beta.11
20 Jan 08:53
Compare
Sorry, something went wrong.
No results found
Bug Fixes
issue with rendering mismatch server/client (d15f6df )
v2.29.0-beta.10
20 Jan 08:18
Compare
Sorry, something went wrong.
No results found
Bug Fixes
ensure consistency with different timezones (0da1ce8 )
v3.0.7
06 Jan 13:03
Compare
Sorry, something went wrong.
No results found
3.0.7 (2026-01-06)
Bug Fixes
v3.0.6
30 Dec 19:18
Compare
Sorry, something went wrong.
No results found
3.0.6 (2025-12-30)
Bug Fixes
v3.0.5
30 Dec 15:30
Compare
Sorry, something went wrong.
No results found
3.0.5 (2025-12-30)
Bug Fixes
ThemeWithShapes content-centre (68a9116 )
v3.0.4
30 Dec 14:59
Compare
Sorry, something went wrong.
No results found
3.0.4 (2025-12-30)
Bug Fixes
v3.0.3
30 Dec 14:24
Compare
Sorry, something went wrong.
No results found
3.0.3 (2025-12-30)
Bug Fixes
v3.0.2
30 Dec 14:17
Compare
Sorry, something went wrong.
No results found
3.0.2 (2025-12-30)
Bug Fixes
v3.0.1
30 Dec 14:00
Compare
Sorry, something went wrong.
No results found
3.0.1 (2025-12-30)
Bug Fixes
v3.0.0
30 Dec 13:44
Compare
Sorry, something went wrong.
No results found
3.0.0 (2025-12-30)
feat!: change CSS distribution strategy for Tailwind CSS compatibility (d518a39 )
BREAKING CHANGES
The way styles are imported has changed to prevent CSS conflicts with consuming applications.
Removed direct Tailwind utilities from the exported CSS
Added styles.css export containing only CSS custom properties (design tokens)
Added tailwind-preset export for consumers to extend their Tailwind config
globals.css is now only for non-Tailwind projects
Migration guide:
Replace import 'cortex-react-components/globals.css' with import 'cortex-react-components/styles.css'
Add the preset to your tailwind.config.js:
import cortexPreset from 'cortex-react-components/tailwind-preset' ;
export default {
presets : [ cortexPreset ] ,
content : [
'./node_modules/cortex-react-components/dist/**/*.{js,mjs}' ,
] ,
} ;