Skip to content

Releases: themesberg/flowbite-react

[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

[email protected]

27 Jul 18:49
66abdf0

Choose a tag to compare

Patch Changes

  • #1607 a89a098 Thanks @SutuSebastian! - fix: Error: Cannot find module 'tailwindcss/plugin'

  • #1605 262cde0 Thanks @SutuSebastian! - Search for <ThemeInit /> in the project and warn if it's not found instead of warning all the time

    Changes

    • during commands build and dev check files content for custom configuration and display a warning if <ThemeInit /> is not found
    • switch tests in src/cli and src/helpers from vitest -> bun:test

[email protected]

24 Jul 08:24
5f4e35e

Choose a tag to compare

Patch Changes

  • #1600 12d3290 Thanks @SutuSebastian! - fix(ui/cli/setup-init): nextjs warning

    Changes

    • rename config -> CONFIG export in .flowbite-react/init.(jsx|tsx)

[email protected]

22 Jul 15:22
17c3380

Choose a tag to compare

Patch Changes

  • #1596 ab26436 Thanks @SutuSebastian! - refactor(setup-init): relax checks on React imports due to IDE formatters removing it if not necessary

    • filter out import React from "react" from the AST when parsing current and new content

[email protected]

22 Jul 13:32
2df11f3

Choose a tag to compare

Patch Changes

  • #1594 9017065 Thanks @SutuSebastian! - fix(compareNodes): support:

    - different quote styles
    - with and without semicolons
    - trailing commas in objects and arrays
    
    • add tests