Is there a roadmap? #47
-
|
I start by saying I really like this project and I love the fact that I basically use only c# and I have a (almost) perfect result all the time. This is very good. I was wondering if there was a roadmap for future implementations? I know they are not core components, but I think these could really help to speed up the development of enterprise apps: Grid Stepper Layout Tables Select Are there any thoughts/plans on these? Or even suggestions on how to approach a solution? Thanks PS Keep up the good work! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Hi @matteobonin, Thanks for your feedback, I am glad you liked the project. Grid, and Stepper will be supported in the upcoming v0.10.0, releasing next week. We are still deciding whether the Table component should be ported. As for Select, we already support this as shown here: https://blazority.com/select As for the Layout component, it is not yet published in their official docs. The storybook contains components that are still in design/draft stage. In the meantime, you should be able to achieve all of this by using display:flex or display:grid via CSS. Hope this helps, thanks! |
Beta Was this translation helpful? Give feedback.
-
|
Please use the combination of issue list/milestone as roadmap. |
Beta Was this translation helpful? Give feedback.
Hi @matteobonin,
Thanks for your feedback, I am glad you liked the project.
Grid, and Stepper will be supported in the upcoming v0.10.0, releasing next week.
They are now tracked as feature issues here::
We are still deciding whether the Table component should be ported.
The table implementation in Clarity is simple and clean, and works directly with natively supported HTML table tag.
You should be able to use it in your project as-is, let me know if you run into any challenges.
NOTE: A new version of table is currently in design with Clarity, preview is available in their storybook.
As for Select, we already support this as shown here: https://blazority.com/select
Is there…