Adrien Wald
Adrien Wald
Hey @adbar, thanks for your response! I discovered this also happens with other formatting tags like `hi` and `code`. If you run the following, you can see many examples in...
Hey @rtivital, would be awesome if withFocusReturn were dynamic. My use case is under certain circumstances I do want the focus to return when I close the modal, but other...
Thank you @johnwalley. Will give this a test today or tomorrow!
Hey @johnwalley it seems the exposed classes are placed before the internal ones so it's not possible to override z-index without applying `!important`
Heya thanks for clarifying. I've now made sure to import our css after allotment. The `.sash` selector is now taking precedence over the internal one, but my `.split-view-view:not(:first-child)::before` selector is...
yeah I tried to replicate that selector but noticed `separator-border` isn't exposed. No worries though, we're just keeping the `!important` around for now
i have taken the following approach: ```javascript { onMessage: { subscribe: async (_, { channel }) => { // do you auth logic here if (channel !== 'happy') { unauthorized()...
@lopuhin is that json-encoded without any indentation? I.e. `json.dumps(value)` as opposed to e.g. `json.dumps(value, indent=2)`
Hey there, I've encountered the same issue. It's because nothing in `` calls `node.setPortalProps` on unmount. Edit: I've created a PR with an initial implementation of portal prop resetting. Let...