Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/neat-things-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"flowbite-react": patch
---

up packages
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ runs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.18
bun-version: 1.3.1

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24

- name: Install packages
shell: bash
Expand Down
1 change: 1 addition & 0 deletions apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"react-icons": "5.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "8.1.10",
"@storybook/addon-essentials": "8.1.10",
"@storybook/addon-interactions": "8.1.10",
"@storybook/addon-links": "8.1.10",
Expand Down
2 changes: 0 additions & 2 deletions apps/web/content/docs/getting-started/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,10 @@ Creates a new component with the proper structure and theming setup.
The `create` command uses the configuration options from `.flowbite-react/config.json` to determine:

1. **Where to create the component** (`path`):

- Determines the directory where the component will be created
- Default: `"src/components"`

2. **Language format** (`tsx`):

- When `true`: Creates a TypeScript component (`.tsx`) with full type definitions
- When `false`: Creates a JavaScript component (`.jsx`) without TypeScript syntax
- Default: `true`
Expand Down
2 changes: 0 additions & 2 deletions apps/web/content/docs/getting-started/server-components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,10 @@ function ClientComponent() {
## Important Notes

1. **Flowbite React Compatibility**

- All Flowbite React components are server-component ready
- They can be used in both server and client components

2. **Event Handlers**

- User events (`onClick`, `onBlur`, etc.) require `"use client"`
- The component containing these events must be a client component

Expand Down
4 changes: 3 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@
"dependencies": {
"contentlayer2": "0.5.3",
"flowbite-react": "workspace:*",
"flowbite-react-icons": "1.3.0",
"flowbite-react-icons": "1.3.1",
"react-icons": "5.2.1",
"remark-gfm": "4.0.1",
"tailwind-merge": "2.6.0"
},
"devDependencies": {
"@docsearch/css": "3.8.2",
"@docsearch/react": "3.8.2",
"@types/mdx": "2.0.13",
"@types/node": "24.9.1",
"@types/prismjs": "1.26.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
Expand Down
2,376 changes: 1,379 additions & 997 deletions bun.lock

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.28.1",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/bun": "1.2.4",
"@types/web": "0.0.208",
"@changesets/cli": "2.29.7",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@types/bun": "1.3.1",
"@types/web": "0.0.283",
"clean-package": "2.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-tailwindcss": "3.17.5",
"npm-check-updates": "17.1.15",
"prettier": "3.5.3",
"prettier-plugin-packagejson": "2.5.10",
"prettier-plugin-tailwindcss": "0.6.11",
"turbo": "2.5.5"
"npm-check-updates": "19.1.1",
"prettier": "3.6.2",
"prettier-plugin-packagejson": "2.5.19",
"prettier-plugin-tailwindcss": "0.7.1",
"turbo": "2.5.8"
},
"packageManager": "bun@1.2.18"
"packageManager": "bun@1.3.11"
}
1 change: 0 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
### Minor Changes

- [#1498](https://github.com/themesberg/flowbite-react/pull/1498) [`169b5dd`](https://github.com/themesberg/flowbite-react/commit/169b5dd9ecae6878a411d4ec90d253265a5bba86) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - - Added new project templates:

- `blitzjs` - Blitz.js
- `bun` - Bun
- `esbuild` - ESBuild
Expand Down
Loading
Loading