Skip to content

v1.7.13

Compare
Choose a tag to compare
@jodarove jodarove released this 29 Aug 02:23
· 1823 commits to master since this release

Improvements

  • #1952 - template-compiler: Changes how boolean attributes and attributes used as boolean on standard HTML elements are rendered.
    • All the attributes declared in the template on standard HTML elements are now set via attributes.
    • Known boolean attributes (for example, hidden and required, but with the exception of checked) are set if their value is truthy. Otherwise, the attribute is omitted. For the rest of the attributes (for example, class, data-*, and foo-bar), the values are set if they are not nullish.

Internal

  • #2010 - lwc: Adds typing for the static CustomElementConstructor available on LightningElement.
  • #2013 - lwc: Adds typings for wire adapters and the context API.