@lwc/template-compiler 8.10.0 → 8.11.0
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/dist/index.cjs.js +13 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -9625,6 +9625,18 @@ const KNOWN_HTML_AND_SVG_ELEMENTS = new Set([...HTML_ELEMENTS, ...SVG_ELEMENTS])
|
|
|
9625
9625
|
const HTML_TAG = {
|
|
9626
9626
|
A: 'a',
|
|
9627
9627
|
AREA: 'area',
|
|
9628
|
+
BODY: 'body',
|
|
9629
|
+
CAPTION: 'caption',
|
|
9630
|
+
COL: 'col',
|
|
9631
|
+
COLGROUP: 'colgroup',
|
|
9632
|
+
HEAD: 'head',
|
|
9633
|
+
HTML: 'html',
|
|
9634
|
+
TBODY: 'tbody',
|
|
9635
|
+
TD: 'td',
|
|
9636
|
+
TFOOT: 'tfoot',
|
|
9637
|
+
TH: 'th',
|
|
9638
|
+
THEAD: 'thead',
|
|
9639
|
+
TR: 'tr',
|
|
9628
9640
|
USE: 'use',
|
|
9629
9641
|
};
|
|
9630
9642
|
const ATTR_NAME = {
|
|
@@ -14699,5 +14711,5 @@ exports.generateScopeTokens = generateScopeTokens;
|
|
|
14699
14711
|
exports.kebabcaseToCamelcase = kebabcaseToCamelcase;
|
|
14700
14712
|
exports.parse = parse;
|
|
14701
14713
|
exports.toPropertyName = toPropertyName;
|
|
14702
|
-
/** version: 8.
|
|
14714
|
+
/** version: 8.11.0 */
|
|
14703
14715
|
//# sourceMappingURL=index.cjs.js.map
|