Skip to content

Commit c2b8795

Browse files
Version Packages (#1544)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 868e485 commit c2b8795

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

.changeset/slimy-wombats-poke.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

packages/ui/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## 0.11.3
4+
5+
### Patch Changes
6+
7+
- [#1543](https://github.com/themesberg/flowbite-react/pull/1543) [`868e485`](https://github.com/themesberg/flowbite-react/commit/868e4857ad91e67b791bbef290b6334c7595639c) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - add new `migrate` CLI command
8+
9+
- add new transformer from compound components to singular imports
10+
11+
```tsx
12+
import { Button } from "flowbite-react";
13+
14+
// from
15+
<Button.Group>
16+
<Button>tab 1</Button>
17+
<Button>tab 2</Button>
18+
<Button>tab 3</Button>
19+
</Button.Group>
20+
21+
// to
22+
import { Button, ButtonGroup } from "flowbite-react";
23+
24+
<ButtonGroup>
25+
<Button>tab 1</Button>
26+
<Button>tab 2</Button>
27+
<Button>tab 3</Button>
28+
</ButtonGroup>
29+
```
30+
331
## 0.11.2
432

533
### Patch Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flowbite-react",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "Official React components built for Flowbite and Tailwind CSS",
55
"keywords": [
66
"design-system",

0 commit comments

Comments
 (0)