@lwc/template-compiler 2.48.0 → 2.49.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.
@@ -1,3 +1,4 @@
1
+ import { ElementDirectiveName } from './types';
1
2
  export declare const SECURE_REGISTER_TEMPLATE_METHOD_NAME = "registerTemplate";
2
3
  export declare const PARSE_FRAGMENT_METHOD_NAME = "parseFragment";
3
4
  export declare const PARSE_SVG_FRAGMENT_METHOD_NAME = "parseSVGFragment";
@@ -9,3 +10,4 @@ export declare const TEMPLATE_PARAMS: {
9
10
  [label: string]: string;
10
11
  };
11
12
  export declare const DASHED_TAGNAME_ELEMENT_SET: Set<string>;
13
+ export declare const STATIC_SAFE_DIRECTIVES: Set<keyof typeof ElementDirectiveName>;
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": "2.48.0",
7
+ "version": "2.49.0",
8
8
  "description": "Template compiler package",
9
9
  "keywords": [
10
10
  "lwc"
@@ -42,10 +42,10 @@
42
42
  }
43
43
  },
44
44
  "dependencies": {
45
- "@lwc/errors": "2.48.0",
46
- "@lwc/shared": "2.48.0",
45
+ "@lwc/errors": "2.49.0",
46
+ "@lwc/shared": "2.49.0",
47
47
  "acorn": "~8.8.2",
48
- "astring": "~1.8.3",
48
+ "astring": "~1.8.6",
49
49
  "estree-walker": "~2.0.2",
50
50
  "he": "~1.2.0",
51
51
  "parse5": "~6.0.1"