@auscope/angular2parse 2.0.4 → 4.0.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.
- package/esm2020/lib/angular/compiler/interpolation-config.mjs +5 -5
- package/esm2020/lib/module.mjs +5 -5
- package/esm2020/lib/parse.mjs +4 -4
- package/fesm2015/auscope-angular2parse.mjs +11 -11
- package/fesm2015/auscope-angular2parse.mjs.map +1 -1
- package/fesm2020/auscope-angular2parse.mjs +11 -11
- package/fesm2020/auscope-angular2parse.mjs.map +1 -1
- package/package.json +7 -6
- /package/{auscope-angular2parse.d.ts → index.d.ts} +0 -0
|
@@ -608,10 +608,6 @@ function isAsciiHexDigit(code) {
|
|
|
608
608
|
* found in the LICENSE file at https://angular.io/license
|
|
609
609
|
*/
|
|
610
610
|
class InterpolationConfig {
|
|
611
|
-
constructor(start, end) {
|
|
612
|
-
this.start = start;
|
|
613
|
-
this.end = end;
|
|
614
|
-
}
|
|
615
611
|
static fromArray(markers) {
|
|
616
612
|
if (!markers) {
|
|
617
613
|
return DEFAULT_INTERPOLATION_CONFIG;
|
|
@@ -619,6 +615,10 @@ class InterpolationConfig {
|
|
|
619
615
|
assertInterpolationSymbols('interpolation', markers);
|
|
620
616
|
return new InterpolationConfig(markers[0], markers[1]);
|
|
621
617
|
}
|
|
618
|
+
constructor(start, end) {
|
|
619
|
+
this.start = start;
|
|
620
|
+
this.end = end;
|
|
621
|
+
}
|
|
622
622
|
;
|
|
623
623
|
}
|
|
624
624
|
const DEFAULT_INTERPOLATION_CONFIG = new InterpolationConfig('{{', '}}');
|
|
@@ -1994,9 +1994,9 @@ class Parse {
|
|
|
1994
1994
|
return calcParse;
|
|
1995
1995
|
}
|
|
1996
1996
|
}
|
|
1997
|
-
Parse.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1998
|
-
Parse.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1999
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1997
|
+
Parse.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Parse, deps: [{ token: PIPES_CONFIG, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1998
|
+
Parse.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Parse, providedIn: 'root' });
|
|
1999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Parse, decorators: [{
|
|
2000
2000
|
type: Injectable,
|
|
2001
2001
|
args: [{ providedIn: 'root' }]
|
|
2002
2002
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -2014,10 +2014,10 @@ class Angular2ParseModule {
|
|
|
2014
2014
|
};
|
|
2015
2015
|
}
|
|
2016
2016
|
}
|
|
2017
|
-
Angular2ParseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2018
|
-
Angular2ParseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
2019
|
-
Angular2ParseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2017
|
+
Angular2ParseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Angular2ParseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2018
|
+
Angular2ParseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.6", ngImport: i0, type: Angular2ParseModule });
|
|
2019
|
+
Angular2ParseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Angular2ParseModule });
|
|
2020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.6", ngImport: i0, type: Angular2ParseModule, decorators: [{
|
|
2021
2021
|
type: NgModule
|
|
2022
2022
|
}] });
|
|
2023
2023
|
|