Replies: 54 comments 154 replies
-
It would be nice to know what the changes are, so we know what could be tested. Otherwise it's just shots in the dark. |
Beta Was this translation helpful? Give feedback.
-
I love DaisyUI. I suggest a date picker. |
Beta Was this translation helpful? Give feedback.
-
Hey there , Date and Calendar most important for development, I also not find multi select, I see these in future |
Beta Was this translation helpful? Give feedback.
-
Hi! I would like to see progress with percentage feedback |
Beta Was this translation helpful? Give feedback.
-
A context menu (https://primeng.org/contextmenu) would be very pog |
Beta Was this translation helpful? Give feedback.
-
I suggest Select with search, for example. I made the gif component using input + dropdown from DaisyUI S2. |
Beta Was this translation helpful? Give feedback.
-
Would love to see a way to control state for inputs like So for example, something like this would be super handy for me to control props and styling with.
|
Beta Was this translation helpful? Give feedback.
-
The new "shiny" effect on buttons should be optional, not used as default. |
Beta Was this translation helpful? Give feedback.
-
I will suggest the date picker with range date definition. Example you can select only the date from range. |
Beta Was this translation helpful? Give feedback.
-
Animating progress and radial progress bar. For radial progress bar I've managed to upgrade my previous attempt on the problem #3206 by using some javascript (edit: sorry for angular notation)
|
Beta Was this translation helpful? Give feedback.
-
Working with table I see a little problem with the table-zebra class, I have a bg-color set to the specifi case where I need to change a bg color for entry. Maybe you can add a important tag for bg color? |
Beta Was this translation helpful? Give feedback.
-
Are you guys planning to add Combo boxes? (select + text field search) |
Beta Was this translation helpful? Give feedback.
-
Ability to extend the colors, base-400, base-500 etc would be great |
Beta Was this translation helpful? Give feedback.
-
I don't think VanillaFramework use any JS to achieve this. I am kind of assuming it's feasible for DaisyUI too. Lastly, thank you so much for all your hard work and sacrifices in creating this for us. |
Beta Was this translation helpful? Give feedback.
-
Just wanted to say thank you so much for this incredible project. Looking forward to the animated progress components ❤️ |
Beta Was this translation helpful? Give feedback.
-
table inherit style from parent
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Amazing, I'm going to try the beta! Amazing job @saadeghi |
Beta Was this translation helpful? Give feedback.
-
Alert goes off-screen when margin is applied because of <div class="alert alert-info m-10">New software update available.</div> |
Beta Was this translation helpful? Give feedback.
-
OMG I love the Component design improvement so much! A small detail, but it makes the whole thing even more lovable! |
Beta Was this translation helpful? Give feedback.
-
@saadeghi looks like |
Beta Was this translation helpful? Give feedback.
-
Maybe this is not related to V5, but... html {
scrollbar-gutter: auto !important;
} Is that possible to fix that in V5? You can observe it in documentation of V4 and V5. Just use DevTools if you can't see that. |
Beta Was this translation helpful? Give feedback.
-
@saadeghi Is there a way to combine 2 types of labels, I mean |
Beta Was this translation helpful? Give feedback.
-
The join button has a shadow gap 🙏🏻 |
Beta Was this translation helpful? Give feedback.
-
Would be great to have some modern theme for designs close to what Vercel, V0, Nextjs, shadcn/ui, Resend, Scalar, Supabase, etc have. I don't know what has to be changed visually, but I've tried all themes from v5 dropdown and the generator. All of them look somewhat childish and don't feel like modern minimal ones, generator output also wasn't close to desired designs. some inspiration:
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Toggle and range border radius not follow radius setting Textarea border radius not follow radius setting only in this preview (hardcoded rounded-xl) |
Beta Was this translation helpful? Give feedback.
-
I still love the classic shrinking effect for the button, it would be nice if there is a ready-to-use option for it. For example, another class |
Beta Was this translation helpful? Give feedback.
-
It will be nice to have an option to disable |
Beta Was this translation helpful? Give feedback.
-
In v4, implementing a polyfill for popovers is challenging. It works well in Chrome, but I found that in Safari, I needed to apply additional styles for it to function properly. <template>
<button popovertarget="popover-container-list" class="btn btn-xs md:btn-sm anchor font-mono">
{{ container.name }} <carbon:caret-down />
</button>
<ul popover id="popover-container-list" class="dropdown menu rounded-box bg-base-100 tethered shadow-sm">
<li v-for="other in otherContainers">
<router-link :to="{ name: '/container/[id]', params: { id: other.id } }">
<div
class="status data-[state=exited]:status-error data-[state=running]:status-success"
:data-state="other.state"
></div>
<div class="font-mono" v-if="other.isSwarm">{{ other.swarmId }}</div>
<div class="font-mono" v-else>{{ other.name }}</div>
<div v-if="other.state === 'running'">running</div>
<DistanceTime :date="other.created" strict class="text-base-content/70 text-xs" v-else />
</router-link>
</li>
</ul>
</template>
<script lang="ts" setup>
const wrapper = useTemplateRef("wrapper");
onMounted(async () => {
if (!("anchorName" in document.documentElement.style)) {
const module = await import("@oddbird/css-anchor-positioning/fn");
await module.default([wrapper.value]);
}
});
</script>
<style scoped>
/* https://github.com/oddbird/css-anchor-positioning/issues/282 */
.wrapper {
anchor-scope: --anchor;
}
.anchor {
anchor-name: --anchor;
}
.tethered {
margin: 0;
padding: 0;
position-anchor: --anchor;
position: absolute;
top: anchor(bottom);
left: anchor(left);
}
</style> Also in oddbird/css-anchor-positioning#282. Here are the changes:
Adding this here as it might be helpful for others. But perhaps, DaisyUI should also have these styles applied for better support with |
Beta Was this translation helpful? Give feedback.
-
Hello and welcome 💚
daisyUI 5 is in development [v5 branch]
There's no docs or changelog yetRelease notes, ChangelogsSome components are not readymanybugsand anyalphabeta version may break thingsdieget sickTry it
You can try this Tailwind Play link which includes a big dump of components
Or you can try the new
full.cssdaisyui.css or the new chunks.css!Or if you're brave enough to try Tailwind CSS 4 beta + daisyUI 5
alphabeta,Install Tailwind CSS 4
alphabeta
and then install daisyUIalphabetaYour CSS file:
Use options
Add a custom theme
Feedbacks needed
Here's how you can help:
alphabeta? Let me know.Put your comments 👇
Beta Was this translation helpful? Give feedback.
All reactions