Sebastiaan

Results 10 comments of Sebastiaan

@d3pendent Are you providing your own `submitter` element as parameter for the `requestSubmit` call? I just call `requestSubmit()` on the `form` element and I don't experience any issues with Safari...

> We will move this preset into `preset-env` soon (either in the next Babel minor release or in the one after), so it will be enough to use `@babel/preset-env` with...

Why aren't you using the `css` tagged template literal? ``` static styles = css` @media (min-width: 768px) { body { color: red; } } `; ``` https://lit.dev/docs/components/styles/

Yes please! :) It's hard to find a simple and robust router that supports Shadow DOM (Web Components) and `navaid` seems to tick all the boxes. By adding a few...

I've just upgraded to Storybook `8.0.1` and this plugin still works fine. `.storybook/preview.js|ts` file: ```ts import { vueRouter } from 'storybook-vue3-router'; export default { decorators: [vueRouter()], // other preview config...

Explicitly setting the namespace (`ns` and `defaultNS`) is also a workaround: ``` const { COUNTRY = 'nl' } = process.env; const config: AstroI18nextConfig = { defaultLocale: COUNTRY, // defaultNamespace: 'site',...

We had the same issue. I wrote a quick and dirty plugin based on this one. It contains a recursive function that checks for partials within a Handlebars (partial) template....

Ah, according to the docs this feature is disabled, but it seems to be active in the code: https://github.com/pattern-lab/styleguidekit-assets-default/blob/9935ac6155a1afe86dc894df68773e72de94c441/src/js/styleguide.js#L116

OK, thanks for the heads up. Too bad that the usage of access keys still causes problems after so many years...