@lwc/template-compiler 8.20.0 → 8.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dist/index.cjs.js +9753 -8825
- package/dist/index.js +9753 -8825
- package/dist/parser/html.d.ts +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -64,7 +64,6 @@ const { code, warnings } = compile(`<template><h1>Hello World!</h1></template>`,
|
|
|
64
64
|
- `customRendererConfig` (CustomRendererConfig, optional) - specifies a configuration to use to match elements. Matched elements will get a custom renderer hook in the generated template.
|
|
65
65
|
- `instrumentation` (InstrumentationObject, optional) - instrumentation object to gather metrics and non-error logs for internal use. See the `@lwc/errors` package for details on the interface.
|
|
66
66
|
- `disableSyntheticShadowSupport` (type: `boolean`, default: `false`) - Set to true if synthetic shadow DOM support is not needed, which can result in smaller/faster output.
|
|
67
|
-
|
|
68
67
|
- Example 1: Config to match `<use>` elements under the `svg` namespace and have `href` attribute set.
|
|
69
68
|
|
|
70
69
|
```
|