Skip to content

Releases: themesberg/flowbite-react

flowbite-react@0.12.10

27 Oct 09:24
74499c5

Choose a tag to compare

Patch Changes

flowbite-react@0.12.9

08 Sep 13:03
7197b25

Choose a tag to compare

Patch Changes

flowbite-react@0.12.8

01 Sep 10:48
6dfbd8e

Choose a tag to compare

Patch Changes

flowbite-react@0.12.7

11 Aug 13:44
d61afda

Choose a tag to compare

Patch Changes

flowbite-react@0.12.6

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));

flowbite-react@0.12.5

28 Jul 09:04
93c24aa

Choose a tag to compare

Patch Changes

flowbite-react@0.12.4

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

flowbite-react@0.12.3

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)

flowbite-react@0.12.2

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

flowbite-react@0.12.1

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