@lwc/template-compiler 8.4.0 → 8.5.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 +8800 -9967
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +8801 -9968
- package/dist/index.js.map +1 -1
- package/dist/parser/constants.d.ts +1 -4
- package/dist/parser/html.d.ts +1 -2
- package/package.json +5 -5
|
@@ -10,12 +10,9 @@ export declare const DATA_RE: RegExp;
|
|
|
10
10
|
export declare const SUPPORTED_SVG_TAGS: Set<string>;
|
|
11
11
|
export declare const DISALLOWED_MATHML_TAGS: Set<string>;
|
|
12
12
|
export declare const ATTRS_PROPS_TRANFORMS: {
|
|
13
|
-
[
|
|
13
|
+
[attr: string]: string;
|
|
14
14
|
};
|
|
15
15
|
export declare const DISALLOWED_HTML_TAGS: Set<string>;
|
|
16
|
-
export declare const HTML_ATTRIBUTES_REVERSE_LOOKUP: {
|
|
17
|
-
[attr: string]: string[];
|
|
18
|
-
};
|
|
19
16
|
export declare const KNOWN_HTML_AND_SVG_ELEMENTS: Set<string>;
|
|
20
17
|
export declare const HTML_TAG: {
|
|
21
18
|
A: string;
|
package/dist/parser/html.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import * as parse5 from 'parse5';
|
|
2
1
|
import ParserCtx from './parser';
|
|
3
|
-
export declare function parseHTML(ctx: ParserCtx, source: string): parse5.
|
|
2
|
+
export declare function parseHTML(ctx: ParserCtx, source: string): import("parse5/dist/tree-adapters/default").DocumentFragment;
|
|
4
3
|
export declare function cleanTextNode(value: string): string;
|
|
5
4
|
export declare function decodeTextContent(source: string): string;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/template-compiler",
|
|
7
|
-
"version": "8.
|
|
7
|
+
"version": "8.5.0",
|
|
8
8
|
"description": "Template compiler package",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lwc/errors": "8.
|
|
46
|
-
"@lwc/shared": "8.
|
|
47
|
-
"acorn": "~8.
|
|
45
|
+
"@lwc/errors": "8.5.0",
|
|
46
|
+
"@lwc/shared": "8.5.0",
|
|
47
|
+
"acorn": "~8.14.0",
|
|
48
48
|
"astring": "~1.9.0",
|
|
49
49
|
"he": "~1.2.0"
|
|
50
50
|
},
|
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
"@types/estree": "1.0.6",
|
|
54
54
|
"@types/he": "^1.2.3",
|
|
55
55
|
"estree-walker": "~3.0.3",
|
|
56
|
-
"parse5": "^7.2.
|
|
56
|
+
"parse5": "^7.2.1"
|
|
57
57
|
}
|
|
58
58
|
}
|