Skip to content

Releases: themesberg/flowbite-react

[email protected]

15 Dec 10:56
251fcf4

Choose a tag to compare

Patch Changes

[email protected]

09 Dec 16:02
9d7731e

Choose a tag to compare

Patch Changes

[email protected]

08 Dec 14:19
024886e

Choose a tag to compare

Patch Changes

[email protected]

08 Dec 13:38
d6ce2d8

Choose a tag to compare

Patch Changes

  • #1635 2024216 Thanks @SutuSebastian! - Use CSS variables for tailwindcss@v4 instead of inline colors.

    Changes

    • automatically generate tailwindcss@v4 config file
    • use css variables for the v4 config

    Breaking changes

    Only applicable to tailwindcss@v4:

    before
    @plugin "flowbite-react/plugins/tailwindcss" - this points to the legacy JS plugin (that uses inline colors)

    after
    @import "flowbite-react/plugins/tailwindcss" - this points to the CSS-based plugin (that uses CSS variables)

    The breaking change is self-managed once upgrading flowbite-react and starting/building the app, which runs the flowbite-react dev or respectively flowbite-react build command that triggers the patch/fix/migration automatically.

[email protected]

27 Oct 09:24
74499c5

Choose a tag to compare

Patch Changes

[email protected]

08 Sep 13:03
7197b25

Choose a tag to compare

Patch Changes

[email protected]

01 Sep 10:48
6dfbd8e

Choose a tag to compare

Patch Changes

[email protected]

11 Aug 13:44
d61afda

Choose a tag to compare

Patch Changes

[email protected]

05 Aug 08:36
0018bc6

Choose a tag to compare

Patch Changes

  • #1612 941a075 Thanks @SutuSebastian! - Fix nextjs plugin to work on all environments

    Changes

    • fix(ui): nextjs plugin to run properly on NODE_ENV environments: production, development and test
    • log file writes in dev

    Breaking changes

    withFlowbiteReact now always returns async configuration (see: Async Configuration) so make sure to wrap any other HOC (higher-order-functions) such as withContentlayer because most of them do not forward pass async config arguments (eg: phase, options)

    // ❌ not working
    export default withContentlayer(withFlowbiteReact(nextConfig));
    
    // ✅ working
    export default withFlowbiteReact(withContentlayer(nextConfig));

[email protected]

28 Jul 09:04
93c24aa

Choose a tag to compare

Patch Changes