daisyui 3.3.2 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/full.css +3 -2
- package/dist/styled.css +2 -1
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/unstyled.css +1 -1
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/package.json +1 -1
package/dist/full.css
CHANGED
|
@@ -2535,7 +2535,7 @@ html {
|
|
|
2535
2535
|
align-content: flex-start;
|
|
2536
2536
|
align-items: center;
|
|
2537
2537
|
gap: 0.5rem;
|
|
2538
|
-
grid-auto-columns: max-content auto max-content;
|
|
2538
|
+
grid-auto-columns: minmax(auto, max-content) auto max-content;
|
|
2539
2539
|
user-select: none}
|
|
2540
2540
|
.menu li.disabled {
|
|
2541
2541
|
cursor: not-allowed;
|
|
@@ -4155,7 +4155,8 @@ details.collapse summary::-webkit-details-marker {
|
|
|
4155
4155
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
4156
4156
|
transition-duration: 200ms;
|
|
4157
4157
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
4158
|
-
border-radius: var(--rounded-btn, 0.5rem)
|
|
4158
|
+
border-radius: var(--rounded-btn, 0.5rem);
|
|
4159
|
+
text-wrap: balance}
|
|
4159
4160
|
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active).focus,
|
|
4160
4161
|
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active):focus,
|
|
4161
4162
|
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):is(summary):not(.active):focus-visible,
|
package/dist/styled.css
CHANGED
|
@@ -804,7 +804,7 @@
|
|
|
804
804
|
align-content: flex-start;
|
|
805
805
|
align-items: center;
|
|
806
806
|
gap: 0.5rem;
|
|
807
|
-
grid-auto-columns: max-content auto max-content;
|
|
807
|
+
grid-auto-columns: minmax(auto, max-content) auto max-content;
|
|
808
808
|
user-select: none
|
|
809
809
|
}
|
|
810
810
|
.menu li.disabled {
|
|
@@ -3163,6 +3163,7 @@ details.collapse summary {
|
|
|
3163
3163
|
transition-duration: 200ms;
|
|
3164
3164
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3165
3165
|
border-radius: var(--rounded-btn, 0.5rem);
|
|
3166
|
+
text-wrap: balance;
|
|
3166
3167
|
}
|
|
3167
3168
|
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active).focus,
|
|
3168
3169
|
:where(.menu li:not(.menu-title):not(.disabled) > *:not(ul):not(details):not(.menu-title)):not(summary):not(.active):focus,
|