Fredrik Mikal Wold

Results 12 comments of Fredrik Mikal Wold

https://github.com/equinor/design-system/pull/3200

Yes! We currently have an application that is essentially a big table with log entries and a form to add/edit. That form is currently in a modal. The users want...

Your issue is with the styles not the radix primatives. You need to swap all `height -> widths `and `widths -> height` and change to `flex-direction: column;` Here are some...

I am not able to reporduce the error in responsive mode or directly on a mobile deivce. What browser are you using? Is it up to date? Do you get...

Radix dialog has a component called `Dialog.Close` that will close the dialog as long as its used within `Dialog.Root`: ```js Close ``` Would that solve yout issue?

Then it sounds like you are trying to do something react wasnt made for. Closing the modal is a ui change and since the ui is a function of state....

If you open up the devtools and look at the accordion content when opening and closing an item you can see that the content gets unmounted when the item is...

What about add a new prop boolean to `` called `asChild` if asChild is fasle then `` will wrap the children in a `Typography` if asChild is true then then...

The issue with checking if `children` is a string and only wrapping it in that case is that it could create a breaking change. Since the styling properties of `Typography`...

I am having issue with this as well. Its making it so that I cant pass the result from calling `useFieldArray` as a prop in a good way. [https://codesandbox.io/p/devbox/brave-resonance-6dkqyc?file=%2Fsrc%2FApp.tsx%3A27%2C20&workspaceId=ws_4FZNYNsk5KKEpTzN4z6yqN](https://codesandbox.io/p/devbox/brave-resonance-6dkqyc?file=%2Fsrc%2FApp.tsx%3A27%2C20&workspaceId=ws_4FZNYNsk5KKEpTzN4z6yqN) The...