Evan Thibodeau

Results 29 comments of Evan Thibodeau

@pat270 could you answer this? I think you know the context on this one, right?

I think the questions we need to be asking are the following: - What should the default behavior be? - ie: focus-visible-only (only display focus for keyboard interaction) or focus-visible...

Shouldn't we be adding this to our docs site too? https://clayui.com/docs/components/input

There is another option, but I'm not sure you'll like it... 😉 ``` .btn { background-color: var(--btn-default-background-color); &:hover { --btn-default-background-color: var(--btn-hover-background-color); } &:active { --btn-default-background-color: var(--btn-active-background-color); } &:disabled { --btn-default-background-color:...

Hey @pat270 Yeah, I think this would solve the problem of having to redeclare the disabled colors for the variants. Check out this code pen example: https://codepen.io/ethib137/pen/zYmqzqV. Additionally I don't...

Yeah, it would be important to communicate, since one of the benefits of this is it would make it easier to override our css since it would reduce the specificity...

> I also noticed that the multiSelect creates a new hidden input for every new item selected, I think this might be wrong and it should instead aggregate all the...

Yes, same name is allowed for all inputs, and it’s expected in this case. When you access the Param on the backend it returns an array of all the values.

Yeah, the work Marcos is doing will tie in nicely with this. Additionally, it could be worthwhile for us to specifically consider the Objects apis when submitting a form, since...

Thanks Matu! This looks like a great improvement. Would it be difficult to also make the code blocks for examples editable on the site?