Tobias Reich

Results 62 comments of Tobias Reich

Yes, basicLightbox can show whatever you pass to it. Here's a quick example (untested): ```js import * as basicLightbox from 'basiclightbox' const img = document.querySelector('#img') const html = img.outerHTML const...

ARIA support would be nice. Keyboard support is possible, but not directly part of basicModal. You can simply check if the user presses the ESC key and fire `basicModal.close`. It's...

That's fine. It's because you're building or using your modules in an environment without a `window` object. You can ignore it if your site is working fine 😊 We should...

It's not related to this issue, but it might be worth to try `from: 0` instead of `from: "0"`. Not sure if that helps. It might also be because of...

This isn't just alpine related. I've tried micro with Node.js v14, v16 and v18 on macOS. Non of them worked with 9.4.1. Downgrading to 9.4.0 fixes the issue. This even...

Getting the same error when using @vendia/serverless-express via apollo-server-lambda on Vercel. ``` [POST] /api 19:28:08:34 2022-01-09T18:28:10.719Z 2014d7ba-295d-4344-a94a-007608d4788b ERROR Invoke Error {"errorType":"Error","errorMessage":"Unable to determine event source based on event.","stack":["Error: Unable to...

This would fix #102 and #58. Edit: There're already some pull-request available for this issue: #98

This issue is responsible for #58. The workaround worked.

Here's an ESM setup I'm currently trying to use, but the replaced module is only replaced inside the test, not in the function calling it. This leads me to the...

@searls Thanks for the feedback. I will give it a try. I guess it's the following sentence from the docs that confused me: > As a result, feel free to...