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

### Description LWC can't subscribe to a Platform Event if there is an Aura component that is subscribing to a Platform event in the same Lightning Page. #### Steps to...

External: Lightning Locker

https://github.com/salesforce/lwc/pull/2929 fixed an issue with hydrating components during custom element upgrades. However it's not a perfect solution in some cases. Let's say you have some pre-existing HTML like this: ```html...

BUG P3

## 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...

Follow-up to https://github.com/salesforce/lwc/issues/1536#issuecomment-535518329 `@font-face` in CSS is currently global. It should be scoped to the component that declares it. ```css @font-face { font-family: "My Cool Font"; src: url("/my-cool-font.woff2") format("woff2"); }...

BUG P3
Synthetic Shadow

We currently cannot insert styles to `document.adoptedStyleSheets`, because for backwards compatibility we need to continue appending global stylesheets as ``s to the `document.head`. However, there is some data showing that...

enhancement

**Is your feature request related to a problem? Please describe.** In some components we use many template files in a single component (20+ SVG templates is an example). If we...

enhancement

### Description When I try to get the UserRecordAccess from any record with the getRecord method I get the following error message in the JavaScript console. ``` Uncaught (in promise)...

External: Lightning Data Service

### Description @Salesforce/Schema behaves inconsistently - it's possible to import standard and custom sObject's fields, e.g. Contact.Name, but if there's an import for RecordType.DeveloperName there's an error on the deployment...

External: Other Salesforce

## Details This is an implementation of template refs, as defined in [this RFC](https://github.com/salesforce/lwc-rfcs/pull/59). ## Does this pull request introduce a breaking change? * ✅ No, it does not introduce...

Consider this example: ```html Hello ``` ```html ``` ```html ``` This throws an error during compilation: ``` [!] (plugin rollup-plugin-lwc-compiler) Error: LWC1134: Invalid attribute(s) 'slot' on slot. Slots in Light...

enhancement
BUG P2