Skip to content

Commit d864845

Browse files
authored
Merge branch 'saadeghi:master' into patch-1
2 parents 7355c93 + 485c881 commit d864845

File tree

10 files changed

+36
-21
lines changed

10 files changed

+36
-21
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## 5.5.18 (2026-02-05)
6+
7+
8+
### Bug Fixes
9+
10+
* apply `z-1` on box tab when focus-visible ([#4425](https://github.com/saadeghi/daisyui/issues/4425)) ([b2907eb](https://github.com/saadeghi/daisyui/commit/b2907eb92f5aa887f8ff8ea267c72ab6d0162a43)), closes [#4424](https://github.com/saadeghi/daisyui/issues/4424)
11+
12+
## 5.5.17 (2026-02-02)
13+
14+
## 5.5.16 (2026-02-01)
15+
16+
## 5.5.15 (2026-02-01)
17+
18+
19+
### Bug Fixes
20+
21+
* hide underline for `.btn` when used in `.prose` closes [#4400](https://github.com/saadeghi/daisyui/issues/4400) ([c1e1e11](https://github.com/saadeghi/daisyui/commit/c1e1e112545423f41fae99a4b3bf7379749bbebe))
22+
523
## 5.5.14 (2025-12-14)
624

725

packages/bundle/daisyui-theme.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bundle/daisyui-theme.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

packages/bundle/daisyui.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bundle/daisyui.mjs

Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.

packages/daisyui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"name": "daisyui",
4-
"version": "5.5.14",
4+
"version": "5.5.18",
55
"description": "daisyUI 5 - The Tailwind CSS Component Library",
66
"author": "Pouya Saadeghi",
77
"license": "MIT",

packages/daisyui/src/components/button.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}
55
}
66

7-
.prose :where(.btn-link):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
7+
.prose :where(a.btn:not(.btn-link)):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
88
@apply no-underline;
99
}
1010

packages/daisyui/src/components/tab.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,9 @@
469469
&:is(label:has(:checked:focus-visible)) {
470470
outline-offset: 2px;
471471
}
472+
&:focus-visible {
473+
@apply z-1;
474+
}
472475
}
473476

474477
> :is(.tab-active, [aria-selected="true"], [aria-current="true"], [aria-current="page"]):not(

packages/daisyui/src/components/toggle.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
}
5555
}
5656
&:before {
57-
@apply rounded-selector relative start-0 col-start-2 row-start-1 aspect-square h-full bg-current;
57+
@apply rounded-selector relative start-0 col-start-2 row-start-1 aspect-square h-full w-full bg-current;
5858
translate: 0;
5959
--tw-content: "";
6060
content: var(--tw-content);

packages/docs/src/routes/(routes)/components/dropdown/+page.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ Anchor positioning is a new CSS standard for positioning elements relative to an
104104
> `popovertarget` is the unique ID of the popover content.
105105
> `anchor-name`/`position-anchor` is the unique name of the anchor.
106106
107-
> :INFO:
108-
>
109-
> CSS Anchor Positioning is a new standard but isn't yet supported in Firefox and Safari ([caniuse.com](https://caniuse.com/css-anchor-positioning)).
110-
> In those browsers, the dropdown will appear centered like a modal.
111-
> There's also [this polyfill](https://github.com/oddbird/css-anchor-positioning) that can be helpful.
112-
113107
### ~Dropdown using popover API and anchor positioning
114108
<button class="btn" popovertarget="popover-1" style="anchor-name:--anchor-1">
115109
Button

0 commit comments

Comments
 (0)