lwc icon indicating copy to clipboard operation
lwc copied to clipboard

⚡️ LWC - A Blazing Fast, Enterprise-Grade Web Components Foundation

Results 279 lwc issues
Sort by recently updated
recently updated
newest added

As of #3442, we check for CSS that cannot be inlined into `` tags (e.g. because it contains the string ``, which could could cause an XSS vulnerability). Right now...

enhancement
BUG P2

**Is your feature request related to a problem? Please describe.** In addition to warning on usages of `if:true` and `if:false` as part of issue #3342 we can take a step...

enhancement

### Description Currently an LWC component can do: ```js import * as wireService from 'wire-service' ``` Instead it should do: ```js import * as wireService from '@lwc/wire-service' ``` We support...

enhancement

[Marko](https://markojs.com/) has an optimization where, for components that are fully static, the following happens: 1. The components are SSR'ed, but 2. The components are not hydrated/CSR'ed ![Screenshot 2023-05-23 at 4...

perf

[Repro](https://stackblitz.com/edit/salesforce-lwc-nsjbdc?file=src%2Fmodules%2Fx%2Fapp%2Fapp.html,rollup.config.js,src%2Fmodules%2Fx%2Fapp%2Fapp.js&title=LWC%20playground) ```html one(row)}> one two(row)}> two ``` Generates: ```js function tmpl($api, $cmp, $slotset, $ctx) { /* ... */ return api_iterator($cmp.rows, function(row) { return api_element("tr", { key: api_key(0, row.id) }, [api_element("td",...

bug

### Description ``s with the `xmlns:xlink` attribute cause a runtime error that only occurs with dynamic VNodes (not static ones). #### Steps to Reproduce ```html ``` Result ``` Uncaught DOMException:...

bug
BUG P3

The [Custom Elements Everywhere](https://custom-elements-everywhere.com/) benchmark is an industry-standard tool to measure the degree that a web framework supports custom elements (web components). Now that we have `lwc:external`, we should be...

BUG P3
Up for grabs

Follow-up to #3758 ```js // superclass.js export default class extends LightningElement { @api foo() {} } ``` ```js // subclass.js export default class extends Superclass { foo() {} } ```...

bug

### Description Pre-existing props on an HTML element, when combined with `CustomElementConstructor`, do not result in the correct props being set on the LWC component. ```html ``` ```js // app.js...

CustomElementConstructor
Up for grabs

We're adding a flag to enable legacy CSS scope token rendering (`ENABLE_LEGACY_SCOPE_TOKENS`). We don't want to support it forever, so this bug is to track that.

enhancement