Skip to content

Releases: cortex-reply/react-components

v2.29.0-beta.11

20 Jan 08:53
4951448

Choose a tag to compare

v2.29.0-beta.11 Pre-release
Pre-release

2.29.0-beta.11 (2026-01-20)

Bug Fixes

  • issue with rendering mismatch server/client (d15f6df)

v2.29.0-beta.10

20 Jan 08:18
711c154

Choose a tag to compare

v2.29.0-beta.10 Pre-release
Pre-release

2.29.0-beta.10 (2026-01-20)

Bug Fixes

  • ensure consistency with different timezones (0da1ce8)

v3.0.7

06 Jan 13:03

Choose a tag to compare

3.0.7 (2026-01-06)

Bug Fixes

v3.0.6

30 Dec 19:18

Choose a tag to compare

3.0.6 (2025-12-30)

Bug Fixes

v3.0.5

30 Dec 15:30

Choose a tag to compare

3.0.5 (2025-12-30)

Bug Fixes

  • ThemeWithShapes content-centre (68a9116)

v3.0.4

30 Dec 14:59

Choose a tag to compare

3.0.4 (2025-12-30)

Bug Fixes

v3.0.3

30 Dec 14:24

Choose a tag to compare

3.0.3 (2025-12-30)

Bug Fixes

v3.0.2

30 Dec 14:17

Choose a tag to compare

3.0.2 (2025-12-30)

Bug Fixes

v3.0.1

30 Dec 14:00

Choose a tag to compare

3.0.1 (2025-12-30)

Bug Fixes

v3.0.0

30 Dec 13:44

Choose a tag to compare

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:

  1. Replace import 'cortex-react-components/globals.css' with import 'cortex-react-components/styles.css'
  2. 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}',
      ],
    };