@angular/compiler 14.0.0-next.8 → 14.0.0-rc.1

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.
Files changed (148) hide show
  1. package/esm2020/src/compiler.mjs +3 -2
  2. package/esm2020/src/compiler_facade_interface.mjs +7 -1
  3. package/esm2020/src/core.mjs +6 -6
  4. package/esm2020/src/expression_parser/parser.mjs +12 -12
  5. package/esm2020/src/i18n/i18n_parser.mjs +3 -3
  6. package/esm2020/src/jit_compiler_facade.mjs +74 -42
  7. package/esm2020/src/ml_parser/html_whitespaces.mjs +2 -2
  8. package/esm2020/src/ml_parser/lexer.mjs +36 -36
  9. package/esm2020/src/ml_parser/parser.mjs +41 -41
  10. package/esm2020/src/render3/partial/api.mjs +1 -1
  11. package/esm2020/src/render3/partial/class_metadata.mjs +1 -1
  12. package/esm2020/src/render3/partial/component.mjs +28 -37
  13. package/esm2020/src/render3/partial/directive.mjs +6 -3
  14. package/esm2020/src/render3/partial/factory.mjs +1 -1
  15. package/esm2020/src/render3/partial/injectable.mjs +1 -1
  16. package/esm2020/src/render3/partial/injector.mjs +1 -1
  17. package/esm2020/src/render3/partial/ng_module.mjs +3 -3
  18. package/esm2020/src/render3/partial/pipe.mjs +6 -3
  19. package/esm2020/src/render3/r3_ast.mjs +3 -3
  20. package/esm2020/src/render3/r3_factory.mjs +6 -6
  21. package/esm2020/src/render3/r3_identifiers.mjs +2 -1
  22. package/esm2020/src/render3/r3_pipe_compiler.mjs +5 -1
  23. package/esm2020/src/render3/util.mjs +4 -4
  24. package/esm2020/src/render3/view/api.mjs +7 -2
  25. package/esm2020/src/render3/view/compiler.mjs +45 -35
  26. package/esm2020/src/render3/view/i18n/get_msg_utils.mjs +58 -5
  27. package/esm2020/src/render3/view/i18n/meta.mjs +4 -4
  28. package/esm2020/src/render3/view/i18n/util.mjs +2 -2
  29. package/esm2020/src/render3/view/style_parser.mjs +19 -19
  30. package/esm2020/src/render3/view/styling_builder.mjs +6 -6
  31. package/esm2020/src/render3/view/template.mjs +25 -25
  32. package/esm2020/src/render3/view/util.mjs +14 -5
  33. package/esm2020/src/selector.mjs +8 -8
  34. package/esm2020/src/template_parser/binding_parser.mjs +8 -8
  35. package/esm2020/src/util.mjs +8 -8
  36. package/esm2020/src/version.mjs +1 -1
  37. package/fesm2015/compiler.mjs +416 -301
  38. package/fesm2015/compiler.mjs.map +1 -1
  39. package/fesm2015/testing.mjs +1 -1
  40. package/fesm2020/compiler.mjs +424 -314
  41. package/fesm2020/compiler.mjs.map +1 -1
  42. package/fesm2020/testing.mjs +1 -1
  43. package/index.d.ts +4964 -5
  44. package/package.json +3 -3
  45. package/testing/index.d.ts +22 -5
  46. package/compiler.d.ts +0 -8
  47. package/public_api.d.ts +0 -13
  48. package/src/assertions.d.ts +0 -8
  49. package/src/chars.d.ts +0 -75
  50. package/src/compiler.d.ts +0 -77
  51. package/src/compiler_facade_interface.d.ts +0 -284
  52. package/src/compiler_util/expression_converter.d.ts +0 -71
  53. package/src/config.d.ts +0 -25
  54. package/src/constant_pool.d.ts +0 -37
  55. package/src/core.d.ts +0 -216
  56. package/src/expression_parser/ast.d.ts +0 -440
  57. package/src/expression_parser/lexer.d.ts +0 -47
  58. package/src/expression_parser/parser.d.ts +0 -315
  59. package/src/i18n/big_integer.d.ts +0 -108
  60. package/src/i18n/digest.d.ts +0 -44
  61. package/src/i18n/extractor_merger.d.ts +0 -27
  62. package/src/i18n/i18n_ast.d.ts +0 -148
  63. package/src/i18n/i18n_html_parser.d.ts +0 -19
  64. package/src/i18n/i18n_parser.d.ts +0 -18
  65. package/src/i18n/index.d.ts +0 -15
  66. package/src/i18n/message_bundle.d.ts +0 -28
  67. package/src/i18n/parse_util.d.ts +0 -14
  68. package/src/i18n/serializers/placeholder.d.ts +0 -25
  69. package/src/i18n/serializers/serializer.d.ts +0 -46
  70. package/src/i18n/serializers/xliff.d.ts +0 -19
  71. package/src/i18n/serializers/xliff2.d.ts +0 -19
  72. package/src/i18n/serializers/xmb.d.ts +0 -22
  73. package/src/i18n/serializers/xml_helper.d.ts +0 -52
  74. package/src/i18n/serializers/xtb.d.ts +0 -20
  75. package/src/i18n/translation_bundle.d.ts +0 -27
  76. package/src/injectable_compiler_2.d.ts +0 -24
  77. package/src/jit_compiler_facade.d.ts +0 -46
  78. package/src/ml_parser/ast.d.ts +0 -89
  79. package/src/ml_parser/entities.d.ts +0 -9
  80. package/src/ml_parser/html_parser.d.ts +0 -13
  81. package/src/ml_parser/html_tags.d.ts +0 -33
  82. package/src/ml_parser/html_whitespaces.d.ts +0 -45
  83. package/src/ml_parser/icu_ast_expander.d.ts +0 -42
  84. package/src/ml_parser/interpolation_config.d.ts +0 -14
  85. package/src/ml_parser/lexer.d.ts +0 -114
  86. package/src/ml_parser/parser.d.ts +0 -26
  87. package/src/ml_parser/tags.d.ts +0 -29
  88. package/src/ml_parser/tokens.d.ts +0 -141
  89. package/src/ml_parser/xml_parser.d.ts +0 -13
  90. package/src/ml_parser/xml_tags.d.ts +0 -24
  91. package/src/output/abstract_emitter.d.ts +0 -66
  92. package/src/output/abstract_js_emitter.d.ts +0 -19
  93. package/src/output/map_util.d.ts +0 -18
  94. package/src/output/output_ast.d.ts +0 -575
  95. package/src/output/output_jit.d.ts +0 -73
  96. package/src/output/output_jit_trusted_types.d.ts +0 -43
  97. package/src/output/source_map.d.ts +0 -29
  98. package/src/parse_util.d.ts +0 -75
  99. package/src/render3/partial/api.d.ts +0 -441
  100. package/src/render3/partial/class_metadata.d.ts +0 -10
  101. package/src/render3/partial/component.d.ts +0 -39
  102. package/src/render3/partial/directive.d.ts +0 -13
  103. package/src/render3/partial/factory.d.ts +0 -3
  104. package/src/render3/partial/injectable.d.ts +0 -19
  105. package/src/render3/partial/injector.d.ts +0 -3
  106. package/src/render3/partial/ng_module.d.ts +0 -3
  107. package/src/render3/partial/pipe.d.ts +0 -12
  108. package/src/render3/partial/util.d.ts +0 -33
  109. package/src/render3/r3_ast.d.ts +0 -211
  110. package/src/render3/r3_class_metadata_compiler.d.ts +0 -35
  111. package/src/render3/r3_factory.d.ts +0 -94
  112. package/src/render3/r3_identifiers.d.ts +0 -182
  113. package/src/render3/r3_injector_compiler.d.ts +0 -18
  114. package/src/render3/r3_jit.d.ts +0 -22
  115. package/src/render3/r3_module_compiler.d.ts +0 -103
  116. package/src/render3/r3_pipe_compiler.d.ts +0 -50
  117. package/src/render3/r3_template_transform.d.ts +0 -24
  118. package/src/render3/util.d.ts +0 -94
  119. package/src/render3/view/api.d.ts +0 -328
  120. package/src/render3/view/compiler.d.ts +0 -86
  121. package/src/render3/view/i18n/context.d.ts +0 -68
  122. package/src/render3/view/i18n/get_msg_utils.d.ts +0 -13
  123. package/src/render3/view/i18n/icu_serializer.d.ts +0 -9
  124. package/src/render3/view/i18n/localize_utils.d.ts +0 -24
  125. package/src/render3/view/i18n/meta.d.ts +0 -78
  126. package/src/render3/view/i18n/util.d.ts +0 -78
  127. package/src/render3/view/style_parser.d.ts +0 -18
  128. package/src/render3/view/styling_builder.d.ts +0 -211
  129. package/src/render3/view/t2_api.d.ts +0 -152
  130. package/src/render3/view/t2_binder.d.ts +0 -57
  131. package/src/render3/view/template.d.ts +0 -450
  132. package/src/render3/view/util.d.ts +0 -94
  133. package/src/resource_loader.d.ts +0 -17
  134. package/src/schema/dom_element_schema_registry.d.ts +0 -45
  135. package/src/schema/dom_security_schema.d.ts +0 -11
  136. package/src/schema/element_schema_registry.d.ts +0 -29
  137. package/src/schema/trusted_types_sinks.d.ts +0 -15
  138. package/src/selector.d.ts +0 -105
  139. package/src/shadow_css.d.ts +0 -76
  140. package/src/style_url_resolver.d.ts +0 -8
  141. package/src/template_parser/binding_parser.d.ts +0 -91
  142. package/src/template_parser/template_preparser.d.ts +0 -24
  143. package/src/util.d.ts +0 -42
  144. package/src/version.d.ts +0 -14
  145. package/testing/package.json +0 -9
  146. package/testing/public_api.d.ts +0 -13
  147. package/testing/src/testing.d.ts +0 -23
  148. package/testing/testing.d.ts +0 -4
@@ -1,29 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import { SchemaMetadata, SecurityContext } from '../core';
9
- export declare abstract class ElementSchemaRegistry {
10
- abstract hasProperty(tagName: string, propName: string, schemaMetas: SchemaMetadata[]): boolean;
11
- abstract hasElement(tagName: string, schemaMetas: SchemaMetadata[]): boolean;
12
- abstract securityContext(elementName: string, propName: string, isAttribute: boolean): SecurityContext;
13
- abstract allKnownElementNames(): string[];
14
- abstract getMappedPropName(propName: string): string;
15
- abstract getDefaultComponentElementName(): string;
16
- abstract validateProperty(name: string): {
17
- error: boolean;
18
- msg?: string;
19
- };
20
- abstract validateAttribute(name: string): {
21
- error: boolean;
22
- msg?: string;
23
- };
24
- abstract normalizeAnimationStyleProperty(propName: string): string;
25
- abstract normalizeAnimationStyleValue(camelCaseProp: string, userProvidedProp: string, val: string | number): {
26
- error: string;
27
- value: string;
28
- };
29
- }
@@ -1,15 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * isTrustedTypesSink returns true if the given property on the given DOM tag is a Trusted Types
10
- * sink. In that case, use `ElementSchemaRegistry.securityContext` to determine which particular
11
- * Trusted Type is required for values passed to the sink:
12
- * - SecurityContext.HTML corresponds to TrustedHTML
13
- * - SecurityContext.RESOURCE_URL corresponds to TrustedScriptURL
14
- */
15
- export declare function isTrustedTypesSink(tagName: string, propName: string): boolean;
package/src/selector.d.ts DELETED
@@ -1,105 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * A css selector contains an element name,
10
- * css classes and attribute/value pairs with the purpose
11
- * of selecting subsets out of them.
12
- */
13
- export declare class CssSelector {
14
- element: string | null;
15
- classNames: string[];
16
- /**
17
- * The selectors are encoded in pairs where:
18
- * - even locations are attribute names
19
- * - odd locations are attribute values.
20
- *
21
- * Example:
22
- * Selector: `[key1=value1][key2]` would parse to:
23
- * ```
24
- * ['key1', 'value1', 'key2', '']
25
- * ```
26
- */
27
- attrs: string[];
28
- notSelectors: CssSelector[];
29
- static parse(selector: string): CssSelector[];
30
- /**
31
- * Unescape `\$` sequences from the CSS attribute selector.
32
- *
33
- * This is needed because `$` can have a special meaning in CSS selectors,
34
- * but we might want to match an attribute that contains `$`.
35
- * [MDN web link for more
36
- * info](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors).
37
- * @param attr the attribute to unescape.
38
- * @returns the unescaped string.
39
- */
40
- unescapeAttribute(attr: string): string;
41
- /**
42
- * Escape `$` sequences from the CSS attribute selector.
43
- *
44
- * This is needed because `$` can have a special meaning in CSS selectors,
45
- * with this method we are escaping `$` with `\$'.
46
- * [MDN web link for more
47
- * info](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors).
48
- * @param attr the attribute to escape.
49
- * @returns the escaped string.
50
- */
51
- escapeAttribute(attr: string): string;
52
- isElementSelector(): boolean;
53
- hasElementSelector(): boolean;
54
- setElement(element?: string | null): void;
55
- /** Gets a template string for an element that matches the selector. */
56
- getMatchingElementTemplate(): string;
57
- getAttrs(): string[];
58
- addAttribute(name: string, value?: string): void;
59
- addClassName(name: string): void;
60
- toString(): string;
61
- }
62
- /**
63
- * Reads a list of CssSelectors and allows to calculate which ones
64
- * are contained in a given CssSelector.
65
- */
66
- export declare class SelectorMatcher<T = any> {
67
- static createNotMatcher(notSelectors: CssSelector[]): SelectorMatcher<null>;
68
- private _elementMap;
69
- private _elementPartialMap;
70
- private _classMap;
71
- private _classPartialMap;
72
- private _attrValueMap;
73
- private _attrValuePartialMap;
74
- private _listContexts;
75
- addSelectables(cssSelectors: CssSelector[], callbackCtxt?: T): void;
76
- /**
77
- * Add an object that can be found later on by calling `match`.
78
- * @param cssSelector A css selector
79
- * @param callbackCtxt An opaque object that will be given to the callback of the `match` function
80
- */
81
- private _addSelectable;
82
- private _addTerminal;
83
- private _addPartial;
84
- /**
85
- * Find the objects that have been added via `addSelectable`
86
- * whose css selector is contained in the given css selector.
87
- * @param cssSelector A css selector
88
- * @param matchedCallback This callback will be called with the object handed into `addSelectable`
89
- * @return boolean true if a match was found
90
- */
91
- match(cssSelector: CssSelector, matchedCallback: ((c: CssSelector, a: T) => void) | null): boolean;
92
- }
93
- export declare class SelectorListContext {
94
- selectors: CssSelector[];
95
- alreadyMatched: boolean;
96
- constructor(selectors: CssSelector[]);
97
- }
98
- export declare class SelectorContext<T = any> {
99
- selector: CssSelector;
100
- cbContext: T;
101
- listContext: SelectorListContext;
102
- notSelectors: CssSelector[];
103
- constructor(selector: CssSelector, cbContext: T, listContext: SelectorListContext);
104
- finalize(cssSelector: CssSelector, callback: ((c: CssSelector, a: T) => void) | null): boolean;
105
- }
@@ -1,76 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * This file is a port of shadowCSS from webcomponents.js to TypeScript.
10
- *
11
- * Please make sure to keep to edits in sync with the source file.
12
- *
13
- * Source:
14
- * https://github.com/webcomponents/webcomponentsjs/blob/4efecd7e0e/src/ShadowCSS/ShadowCSS.js
15
- *
16
- * The original file level comment is reproduced below
17
- */
18
- export declare class ShadowCss {
19
- strictStyling: boolean;
20
- shimCssText(cssText: string, selector: string, hostSelector?: string): string;
21
- private _insertDirectives;
22
- private _insertPolyfillDirectivesInCssText;
23
- private _insertPolyfillRulesInCssText;
24
- private _scopeCssText;
25
- private _extractUnscopedRulesFromCssText;
26
- private _convertColonHost;
27
- private _convertColonHostContext;
28
- private _convertShadowDOMSelectors;
29
- private _scopeSelectors;
30
- /**
31
- * Handle a css text that is within a rule that should not contain scope selectors by simply
32
- * removing them! An example of such a rule is `@font-face`.
33
- *
34
- * `@font-face` rules cannot contain nested selectors. Nor can they be nested under a selector.
35
- * Normally this would be a syntax error by the author of the styles. But in some rare cases, such
36
- * as importing styles from a library, and applying `:host ::ng-deep` to the imported styles, we
37
- * can end up with broken css if the imported styles happen to contain @font-face rules.
38
- *
39
- * For example:
40
- *
41
- * ```
42
- * :host ::ng-deep {
43
- * import 'some/lib/containing/font-face';
44
- * }
45
- *
46
- * Similar logic applies to `@page` rules which can contain a particular set of properties,
47
- * as well as some specific at-rules. Since they can't be encapsulated, we have to strip
48
- * any scoping selectors from them. For more information: https://www.w3.org/TR/css-page-3
49
- * ```
50
- */
51
- private _stripScopingSelectors;
52
- private _scopeSelector;
53
- private _selectorNeedsScoping;
54
- private _makeScopeMatcher;
55
- private _applySelectorScope;
56
- private _applySimpleSelectorScope;
57
- private _insertPolyfillHostInCssText;
58
- }
59
- export declare class CssRule {
60
- selector: string;
61
- content: string;
62
- constructor(selector: string, content: string);
63
- }
64
- export declare function processRules(input: string, ruleCallback: (rule: CssRule) => CssRule): string;
65
- /**
66
- * Mutate the given `groups` array so that there are `multiples` clones of the original array
67
- * stored.
68
- *
69
- * For example `repeatGroups([a, b], 3)` will result in `[a, b, a, b, a, b]` - but importantly the
70
- * newly added groups will be clones of the original.
71
- *
72
- * @param groups An array of groups of strings that will be repeated. This array is mutated
73
- * in-place.
74
- * @param multiples The number of times the current groups should appear.
75
- */
76
- export declare function repeatGroups(groups: string[][], multiples: number): void;
@@ -1,8 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- export declare function isStyleUrlResolvable(url: string | null): url is string;
@@ -1,91 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import { SecurityContext } from '../core';
9
- import { ASTWithSource, BindingPipe, BoundElementProperty, ParsedEvent, ParsedProperty, ParsedVariable, RecursiveAstVisitor } from '../expression_parser/ast';
10
- import { Parser } from '../expression_parser/parser';
11
- import { InterpolationConfig } from '../ml_parser/interpolation_config';
12
- import { InterpolatedAttributeToken, InterpolatedTextToken } from '../ml_parser/tokens';
13
- import { ParseError, ParseSourceSpan } from '../parse_util';
14
- import { ElementSchemaRegistry } from '../schema/element_schema_registry';
15
- export interface HostProperties {
16
- [key: string]: string;
17
- }
18
- export interface HostListeners {
19
- [key: string]: string;
20
- }
21
- /**
22
- * Parses bindings in templates and in the directive host area.
23
- */
24
- export declare class BindingParser {
25
- private _exprParser;
26
- private _interpolationConfig;
27
- private _schemaRegistry;
28
- errors: ParseError[];
29
- constructor(_exprParser: Parser, _interpolationConfig: InterpolationConfig, _schemaRegistry: ElementSchemaRegistry, errors: ParseError[]);
30
- get interpolationConfig(): InterpolationConfig;
31
- createBoundHostProperties(properties: HostProperties, sourceSpan: ParseSourceSpan): ParsedProperty[] | null;
32
- createDirectiveHostEventAsts(hostListeners: HostListeners, sourceSpan: ParseSourceSpan): ParsedEvent[] | null;
33
- parseInterpolation(value: string, sourceSpan: ParseSourceSpan, interpolatedTokens: InterpolatedAttributeToken[] | InterpolatedTextToken[] | null): ASTWithSource;
34
- /**
35
- * Similar to `parseInterpolation`, but treats the provided string as a single expression
36
- * element that would normally appear within the interpolation prefix and suffix (`{{` and `}}`).
37
- * This is used for parsing the switch expression in ICUs.
38
- */
39
- parseInterpolationExpression(expression: string, sourceSpan: ParseSourceSpan): ASTWithSource;
40
- /**
41
- * Parses the bindings in a microsyntax expression, and converts them to
42
- * `ParsedProperty` or `ParsedVariable`.
43
- *
44
- * @param tplKey template binding name
45
- * @param tplValue template binding value
46
- * @param sourceSpan span of template binding relative to entire the template
47
- * @param absoluteValueOffset start of the tplValue relative to the entire template
48
- * @param targetMatchableAttrs potential attributes to match in the template
49
- * @param targetProps target property bindings in the template
50
- * @param targetVars target variables in the template
51
- */
52
- parseInlineTemplateBinding(tplKey: string, tplValue: string, sourceSpan: ParseSourceSpan, absoluteValueOffset: number, targetMatchableAttrs: string[][], targetProps: ParsedProperty[], targetVars: ParsedVariable[], isIvyAst: boolean): void;
53
- /**
54
- * Parses the bindings in a microsyntax expression, e.g.
55
- * ```
56
- * <tag *tplKey="let value1 = prop; let value2 = localVar">
57
- * ```
58
- *
59
- * @param tplKey template binding name
60
- * @param tplValue template binding value
61
- * @param sourceSpan span of template binding relative to entire the template
62
- * @param absoluteKeyOffset start of the `tplKey`
63
- * @param absoluteValueOffset start of the `tplValue`
64
- */
65
- private _parseTemplateBindings;
66
- parseLiteralAttr(name: string, value: string | null, sourceSpan: ParseSourceSpan, absoluteOffset: number, valueSpan: ParseSourceSpan | undefined, targetMatchableAttrs: string[][], targetProps: ParsedProperty[], keySpan: ParseSourceSpan): void;
67
- parsePropertyBinding(name: string, expression: string, isHost: boolean, sourceSpan: ParseSourceSpan, absoluteOffset: number, valueSpan: ParseSourceSpan | undefined, targetMatchableAttrs: string[][], targetProps: ParsedProperty[], keySpan: ParseSourceSpan): void;
68
- parsePropertyInterpolation(name: string, value: string, sourceSpan: ParseSourceSpan, valueSpan: ParseSourceSpan | undefined, targetMatchableAttrs: string[][], targetProps: ParsedProperty[], keySpan: ParseSourceSpan, interpolatedTokens: InterpolatedAttributeToken[] | InterpolatedTextToken[] | null): boolean;
69
- private _parsePropertyAst;
70
- private _parseAnimation;
71
- private _parseBinding;
72
- createBoundElementProperty(elementSelector: string, boundProp: ParsedProperty, skipValidation?: boolean, mapPropertyName?: boolean): BoundElementProperty;
73
- parseEvent(name: string, expression: string, isAssignmentEvent: boolean, sourceSpan: ParseSourceSpan, handlerSpan: ParseSourceSpan, targetMatchableAttrs: string[][], targetEvents: ParsedEvent[], keySpan: ParseSourceSpan): void;
74
- calcPossibleSecurityContexts(selector: string, propName: string, isAttribute: boolean): SecurityContext[];
75
- private _parseAnimationEvent;
76
- private _parseRegularEvent;
77
- private _parseAction;
78
- private _reportError;
79
- private _reportExpressionParserErrors;
80
- /**
81
- * @param propName the name of the property / attribute
82
- * @param sourceSpan
83
- * @param isAttr true when binding to an attribute
84
- */
85
- private _validatePropertyOrAttributeName;
86
- }
87
- export declare class PipeCollector extends RecursiveAstVisitor {
88
- pipes: Map<string, BindingPipe>;
89
- visitPipe(ast: BindingPipe, context: any): any;
90
- }
91
- export declare function calcPossibleSecurityContexts(registry: ElementSchemaRegistry, selector: string, propName: string, isAttribute: boolean): SecurityContext[];
@@ -1,24 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import * as html from '../ml_parser/ast';
9
- export declare function preparseElement(ast: html.Element): PreparsedElement;
10
- export declare enum PreparsedElementType {
11
- NG_CONTENT = 0,
12
- STYLE = 1,
13
- STYLESHEET = 2,
14
- SCRIPT = 3,
15
- OTHER = 4
16
- }
17
- export declare class PreparsedElement {
18
- type: PreparsedElementType;
19
- selectAttr: string;
20
- hrefAttr: string | null;
21
- nonBindable: boolean;
22
- projectAs: string;
23
- constructor(type: PreparsedElementType, selectAttr: string, hrefAttr: string | null, nonBindable: boolean, projectAs: string);
24
- }
package/src/util.d.ts DELETED
@@ -1,42 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- export declare function dashCaseToCamelCase(input: string): string;
9
- export declare function splitAtColon(input: string, defaultValues: string[]): string[];
10
- export declare function splitAtPeriod(input: string, defaultValues: string[]): string[];
11
- export declare function noUndefined<T>(val: T | undefined): T;
12
- export declare function error(msg: string): never;
13
- export declare function escapeRegExp(s: string): string;
14
- export declare type Byte = number;
15
- export declare function utf8Encode(str: string): Byte[];
16
- export declare function stringify(token: any): string;
17
- export declare class Version {
18
- full: string;
19
- readonly major: string;
20
- readonly minor: string;
21
- readonly patch: string;
22
- constructor(full: string);
23
- }
24
- export interface Console {
25
- log(message: string): void;
26
- warn(message: string): void;
27
- }
28
- declare const _global: {
29
- [name: string]: any;
30
- };
31
- export { _global as global };
32
- export declare function newArray<T = any>(size: number): T[];
33
- export declare function newArray<T>(size: number, value: T): T[];
34
- /**
35
- * Partitions a given array into 2 arrays, based on a boolean value returned by the condition
36
- * function.
37
- *
38
- * @param arr Input array that should be partitioned
39
- * @param conditionFn Condition function that is called for each item in a given array and returns a
40
- * boolean value.
41
- */
42
- export declare function partitionArray<T, F = T>(arr: (T | F)[], conditionFn: (value: T | F) => boolean): [T[], F[]];
package/src/version.d.ts DELETED
@@ -1,14 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * @module
10
- * @description
11
- * Entry point for all public APIs of the compiler package.
12
- */
13
- import { Version } from './util';
14
- export declare const VERSION: Version;
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@angular/compiler/testing",
3
- "fesm2020": "../fesm2020/testing.mjs",
4
- "fesm2015": "../fesm2015/testing.mjs",
5
- "esm2020": "../esm2020/testing/testing.mjs",
6
- "typings": "./testing.d.ts",
7
- "module": "../fesm2015/testing.mjs",
8
- "es2020": "../fesm2020/testing.mjs"
9
- }
@@ -1,13 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * @module
10
- * @description
11
- * Entry point for all public APIs of this package.
12
- */
13
- export * from './src/testing';
@@ -1,23 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /**
9
- * @module
10
- * @description
11
- * Entry point for all APIs of the compiler package.
12
- *
13
- * <div class="callout is-critical">
14
- * <header>Unstable APIs</header>
15
- * <p>
16
- * All compiler apis are currently considered experimental and private!
17
- * </p>
18
- * <p>
19
- * We expect the APIs in this package to keep on changing. Do not rely on them.
20
- * </p>
21
- * </div>
22
- */
23
- export declare const unusedExport = true;
@@ -1,4 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './index';