Results 185 comments of Kasper Peulen

Strangely though, I do get autocompletion for sub commands:

@shilman @JReinhold I think features in `main.ts` is the wrong place for this. This is really about CSF right, not really about storybook? This also should work in portable stories....

> Should we name the arg something else than children? We've talked about $children before. Using an exotic name like that could mean that this wouldn't be a breaking change,...

@larsrickert Should be `next` indeed. I added patch:yes, so that it will automatically patched back to `main` as well. Let me now when you are finished with this!

@larsrickert At this moment @shilman is managing the blog. 💯 Let's do a blog about this.

@larsrickert Could you check the CI failures?

Looking more into the svelte code. Shouldn't this line be in the SlotDecorator instead? https://github.com/storybookjs/storybook/blob/595a08c44141eeadf4768ae7b54a68cd1e56c304/code/renderers/svelte/src/components/PreviewRender.svelte#L47-L56 Normally the component here is the `SlotDecorator` itself. The error should be there if the...

Could it be related to this issue? https://github.com/testing-library/user-event/issues/1075#issuecomment-1948093169

In 7.x we used an older version which didnt had this bug. But this older version had other bugs that had no workaround.. So we decided it was most sensible...

Workaround: ```diff export const Submitting = { play: async ({ canvasElement }) => { const canvas = within(canvasElement); const submitButton = canvas.getByRole('button', { name: /Submit/i }); - await userEvent.click(submitButton); +...