@angular/compiler 19.0.0-next.7 → 19.0.0-next.9
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/LICENSE +21 -0
- package/fesm2022/compiler.mjs +119 -65
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +7 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.0.0-next.
|
|
2
|
+
* @license Angular v19.0.0-next.9
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -2898,6 +2898,10 @@ export declare interface R3ComponentMetadata<DeclarationT extends R3TemplateDepe
|
|
|
2898
2898
|
* A collection of styling data that will be applied and scoped to the component.
|
|
2899
2899
|
*/
|
|
2900
2900
|
styles: string[];
|
|
2901
|
+
/**
|
|
2902
|
+
* A collection of style paths for external stylesheets that will be applied and scoped to the component.
|
|
2903
|
+
*/
|
|
2904
|
+
externalStyles?: string[];
|
|
2901
2905
|
/**
|
|
2902
2906
|
* An encapsulation policy for the component's styling.
|
|
2903
2907
|
* Possible values:
|
|
@@ -3892,6 +3896,7 @@ export declare class R3Identifiers {
|
|
|
3892
3896
|
static templateRefExtractor: outputAst.ExternalReference;
|
|
3893
3897
|
static forwardRef: outputAst.ExternalReference;
|
|
3894
3898
|
static resolveForwardRef: outputAst.ExternalReference;
|
|
3899
|
+
static replaceMetadata: outputAst.ExternalReference;
|
|
3895
3900
|
static ɵɵdefineInjectable: outputAst.ExternalReference;
|
|
3896
3901
|
static declareInjectable: outputAst.ExternalReference;
|
|
3897
3902
|
static InjectableDeclaration: outputAst.ExternalReference;
|
|
@@ -3949,6 +3954,7 @@ export declare class R3Identifiers {
|
|
|
3949
3954
|
static ProvidersFeature: outputAst.ExternalReference;
|
|
3950
3955
|
static HostDirectivesFeature: outputAst.ExternalReference;
|
|
3951
3956
|
static InputTransformsFeatureFeature: outputAst.ExternalReference;
|
|
3957
|
+
static ExternalStylesFeature: outputAst.ExternalReference;
|
|
3952
3958
|
static listener: outputAst.ExternalReference;
|
|
3953
3959
|
static getInheritedFactory: outputAst.ExternalReference;
|
|
3954
3960
|
static sanitizeHtml: outputAst.ExternalReference;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.9",
|
|
4
4
|
"description": "Angular - the compiler library",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "19.0.0-next.
|
|
14
|
+
"@angular/core": "19.0.0-next.9"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|