Katja Lutz

Results 55 comments of Katja Lutz

@jmikrut Thank you so much for your work! I wish you an amazzzing Christmas with lots of payload in form of Christmas presents 🥳

Another quick alternative might be something like this: ```js new Quill(editorEl, { modules: { keyboard: { bindings: { "list autofill": { shortKey: true } } }, }, }); ``` This...

@ryansolid "pass through external to ssr" thats the important one 💪, tried it out with the redis example and it works :heart:. The ugly thing is that `pkg.dependencies` still have...

@ryansolid Another quick info on this: maybe we should track this on a separate issue, but there is a special detail with dynamic imports. E.g if I have a dynamic...

I think this issue might be related, since its also about the timing of Suspense vs transition-group: https://github.com/solidjs-community/solid-transition-group/issues/38

> would it apply to the communication from a mobile phone to the server node? Hole punching is just a way to establish direct udp communication between two devices, usually...

> If I understand correctly, with the architecture you suggest, I would need to host a general STUN server and act as a registry for the nodes. Yes and no:...

Minor update on this. I figured out the lines which result in the accordion trigger being focused instead of the proper accordion content element: - https://github.com/kobaltedev/kobalte/blob/5dd86f7f557fcb9f00b7b004aa0686ee61769330/packages/core/src/selection/create-selectable-item.ts#L208 - https://github.com/kobaltedev/kobalte/blob/5dd86f7f557fcb9f00b7b004aa0686ee61769330/packages/core/src/selection/create-selectable-collection.ts#L381 - https://github.com/kobaltedev/kobalte/blob/5dd86f7f557fcb9f00b7b004aa0686ee61769330/packages/core/src/selection/create-selectable-collection.ts#L382...

I took another look at this and think I understand it better now. The source of this problem is, that the accordion is based on the concept, that the triggers...