Dale Bustad
Dale Bustad
## Details This adds support for dispatching events during SSR. Everything is synchronous, and only the `bubble` phase of event propagation is supported. This implementation seems to be working as...
### Description Loading the `@lwc/synthetic-shadow` polyfill pollutes the global namespace, resulting in errors in several web platform tests. #### Steps to Reproduce ```bash git clone https://github.com/divmain/wpt.git cd wpt git checkout...
Depends on https://github.com/FormidableLabs/rapscallion/issues/51.
When `provideState` is invoked like so: ```javascript provideState({ namespace: "myNamespace", initialState: () => ({ value: "myValue" }), effects: { setVal: softUpdate((state, value) => ({ value })) } }); ``` All...
Capturing an out-of-band conversation with @ryan-roemer: Using a global singleton for the cache strategy is potentially undesirable. Or, inversely, it might be desirable to use different caching solutions for different...
## Details Before this change, newlines in HTML attrs would be rendered as `` when serialized in `@lwc/engine-server`. This wasn't interpreted correctly when parsed in the browser, resulting in literal...
During SSR, `connectedCallback` is invoked for a component after a `HostElement` has been created from the VDOM generated during render. In other words, the `HostElement` is created and accessible to...
When in Light DOM mode, the host token is not always applied to children correctly. This results in a hydration mismatch and issues with rendering. This is illustrated as a...