Daniëlle Huisman
Daniëlle Huisman
Including, but not limited to: - #19 Traefik 2.1.1 support - #20 Traefik 2 acme file format compatibility I personally haven't used this tool in a while, so maintaining this...
This tool should be more configurable: - input/output folder names - choosing directory structure (subfolders/flat/both) - only extract specific domains (#2) Python has a built-in argument parser: https://docs.python.org/3.3/library/argparse.html.
**Describe the bug** When a ref is remounted, for example inside a ``, the `on_load` handler panics. The issue appears to be that `on_load` uses `Cell.take()` in the render effect,...
Add bindings for `VisualViewport`([MDN](https://developer.mozilla.org/en-US/docs/Web/API/VisualViewport), [specification](https://drafts.csswg.org/cssom-view/#visualViewport)). I think the comment about `SameObject` above `window.screen` might also apply to `window.visualViewport`. For now, I just copied the IDL from the specification.
Tests should be added to easily confirm this project uses the latest Takeaway API.
The current version of `@prisma/internals` depends on an insecure version of `undici`. By updating `@prisma/internals` this issue is resolved. ``` undici
**Describe the bug** Passing a `MaybeProp` as attribute gives an error: ```rust #[component] fn TestButton(#[prop(into, optional)] id: MaybeProp, children: Children) -> impl IntoView { view! { {children()} } } ```...
**Describe the bug** Passing a `Callback` as listener gives an error: ```rust #[component] fn TestButton(#[prop(into)] on_click: Callback, children: Children) -> impl IntoView { view! { {children()} } } ``` ```...