@@ -921,3 +921,107 @@ export declare class MyModule {
921921 static ɵinj : i0 . ɵɵInjectorDeclaration < MyModule > ;
922922}
923923
924+ /****************************************************************************************************
925+ * PARTIAL FILE: self_closing_tags.js
926+ ****************************************************************************************************/
927+ import { Component , NgModule } from '@angular/core' ;
928+ import * as i0 from "@angular/core" ;
929+ export class MyComp {
930+ }
931+ MyComp . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyComp , deps : [ ] , target : i0 . ɵɵFactoryTarget . Component } ) ;
932+ MyComp . ɵcmp = i0 . ɵɵngDeclareComponent ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , type : MyComp , selector : "my-comp" , ngImport : i0 , template : 'hello' , isInline : true } ) ;
933+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyComp , decorators : [ {
934+ type : Component ,
935+ args : [ { selector : 'my-comp' , template : 'hello' } ]
936+ } ] } ) ;
937+ export class App {
938+ }
939+ App . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : App , deps : [ ] , target : i0 . ɵɵFactoryTarget . Component } ) ;
940+ App . ɵcmp = i0 . ɵɵngDeclareComponent ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , type : App , selector : "ng-component" , ngImport : i0 , template : `<my-comp/>` , isInline : true , dependencies : [ { kind : "component" , type : MyComp , selector : "my-comp" } ] } ) ;
941+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : App , decorators : [ {
942+ type : Component ,
943+ args : [ { template : `<my-comp/>` } ]
944+ } ] } ) ;
945+ export class MyModule {
946+ }
947+ MyModule . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , deps : [ ] , target : i0 . ɵɵFactoryTarget . NgModule } ) ;
948+ MyModule . ɵmod = i0 . ɵɵngDeclareNgModule ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , declarations : [ App , MyComp ] } ) ;
949+ MyModule . ɵinj = i0 . ɵɵngDeclareInjector ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule } ) ;
950+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , decorators : [ {
951+ type : NgModule ,
952+ args : [ { declarations : [ App , MyComp ] } ]
953+ } ] } ) ;
954+
955+ /****************************************************************************************************
956+ * PARTIAL FILE: self_closing_tags.d.ts
957+ ****************************************************************************************************/
958+ import * as i0 from "@angular/core" ;
959+ export declare class MyComp {
960+ static ɵfac : i0 . ɵɵFactoryDeclaration < MyComp , never > ;
961+ static ɵcmp : i0 . ɵɵComponentDeclaration < MyComp , "my-comp" , never , { } , { } , never , never , false , never > ;
962+ }
963+ export declare class App {
964+ static ɵfac : i0 . ɵɵFactoryDeclaration < App , never > ;
965+ static ɵcmp : i0 . ɵɵComponentDeclaration < App , "ng-component" , never , { } , { } , never , never , false , never > ;
966+ }
967+ export declare class MyModule {
968+ static ɵfac : i0 . ɵɵFactoryDeclaration < MyModule , never > ;
969+ static ɵmod : i0 . ɵɵNgModuleDeclaration < MyModule , [ typeof App , typeof MyComp ] , never , never > ;
970+ static ɵinj : i0 . ɵɵInjectorDeclaration < MyModule > ;
971+ }
972+
973+ /****************************************************************************************************
974+ * PARTIAL FILE: self_closing_tags_nested.js
975+ ****************************************************************************************************/
976+ import { Component , NgModule } from '@angular/core' ;
977+ import * as i0 from "@angular/core" ;
978+ export class MyComp {
979+ }
980+ MyComp . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyComp , deps : [ ] , target : i0 . ɵɵFactoryTarget . Component } ) ;
981+ MyComp . ɵcmp = i0 . ɵɵngDeclareComponent ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , type : MyComp , selector : "my-comp" , ngImport : i0 , template : 'hello' , isInline : true } ) ;
982+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyComp , decorators : [ {
983+ type : Component ,
984+ args : [ { selector : 'my-comp' , template : 'hello' } ]
985+ } ] } ) ;
986+ export class App {
987+ }
988+ App . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : App , deps : [ ] , target : i0 . ɵɵFactoryTarget . Component } ) ;
989+ App . ɵcmp = i0 . ɵɵngDeclareComponent ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , type : App , selector : "ng-component" , ngImport : i0 , template : `
990+ <my-comp title="a">Before<my-comp title="b"></my-comp>After</my-comp>
991+ ` , isInline : true , dependencies : [ { kind : "component" , type : MyComp , selector : "my-comp" } ] } ) ;
992+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : App , decorators : [ {
993+ type : Component ,
994+ args : [ {
995+ template : `
996+ <my-comp title="a">Before<my-comp title="b"></my-comp>After</my-comp>
997+ `
998+ } ]
999+ } ] } ) ;
1000+ export class MyModule {
1001+ }
1002+ MyModule . ɵfac = i0 . ɵɵngDeclareFactory ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , deps : [ ] , target : i0 . ɵɵFactoryTarget . NgModule } ) ;
1003+ MyModule . ɵmod = i0 . ɵɵngDeclareNgModule ( { minVersion : "14.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , declarations : [ App , MyComp ] } ) ;
1004+ MyModule . ɵinj = i0 . ɵɵngDeclareInjector ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule } ) ;
1005+ i0 . ɵɵngDeclareClassMetadata ( { minVersion : "12.0.0" , version : "0.0.0-PLACEHOLDER" , ngImport : i0 , type : MyModule , decorators : [ {
1006+ type : NgModule ,
1007+ args : [ { declarations : [ App , MyComp ] } ]
1008+ } ] } ) ;
1009+
1010+ /****************************************************************************************************
1011+ * PARTIAL FILE: self_closing_tags_nested.d.ts
1012+ ****************************************************************************************************/
1013+ import * as i0 from "@angular/core" ;
1014+ export declare class MyComp {
1015+ static ɵfac : i0 . ɵɵFactoryDeclaration < MyComp , never > ;
1016+ static ɵcmp : i0 . ɵɵComponentDeclaration < MyComp , "my-comp" , never , { } , { } , never , never , false , never > ;
1017+ }
1018+ export declare class App {
1019+ static ɵfac : i0 . ɵɵFactoryDeclaration < App , never > ;
1020+ static ɵcmp : i0 . ɵɵComponentDeclaration < App , "ng-component" , never , { } , { } , never , never , false , never > ;
1021+ }
1022+ export declare class MyModule {
1023+ static ɵfac : i0 . ɵɵFactoryDeclaration < MyModule , never > ;
1024+ static ɵmod : i0 . ɵɵNgModuleDeclaration < MyModule , [ typeof App , typeof MyComp ] , never , never > ;
1025+ static ɵinj : i0 . ɵɵInjectorDeclaration < MyModule > ;
1026+ }
1027+
0 commit comments