@auscope/angular2parse 20.0.0 → 20.3.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.
- package/README.md +1 -17
- package/fesm2022/auscope-angular2parse.mjs +2033 -0
- package/fesm2022/auscope-angular2parse.mjs.map +1 -0
- package/index.d.ts +32 -0
- package/package.json +22 -30
- package/.editorconfig +0 -13
- package/LICENSE +0 -21
- package/angular.json +0 -56
- package/projects/angular2parse/README.md +0 -49
- package/projects/angular2parse/ng-package.json +0 -7
- package/projects/angular2parse/package.json +0 -19
- package/projects/angular2parse/src/lib/angular/compiler/assertions.ts +0 -49
- package/projects/angular2parse/src/lib/angular/compiler/ast.ts +0 -393
- package/projects/angular2parse/src/lib/angular/compiler/chars.ts +0 -89
- package/projects/angular2parse/src/lib/angular/compiler/interpolation-config.ts +0 -25
- package/projects/angular2parse/src/lib/angular/compiler/lexer.ts +0 -383
- package/projects/angular2parse/src/lib/angular/compiler/parser.ts +0 -811
- package/projects/angular2parse/src/lib/angular/compiler.ts +0 -6
- package/projects/angular2parse/src/lib/angular/facade/lang.ts +0 -124
- package/projects/angular2parse/src/lib/angular/facade.ts +0 -1
- package/projects/angular2parse/src/lib/angular.ts +0 -2
- package/projects/angular2parse/src/lib/module.ts +0 -12
- package/projects/angular2parse/src/lib/parse.ts +0 -78
- package/projects/angular2parse/src/lib/util/binary-operations.ts +0 -17
- package/projects/angular2parse/src/lib/util/lang.ts +0 -15
- package/projects/angular2parse/src/lib/util.ts +0 -2
- package/projects/angular2parse/src/lib/visitors/parse-visitor-compiler.ts +0 -149
- package/projects/angular2parse/src/lib/visitors/parse-visitor-resolver.ts +0 -208
- package/projects/angular2parse/src/lib/visitors.ts +0 -2
- package/projects/angular2parse/src/public-api.ts +0 -5
- package/projects/angular2parse/tsconfig.lib.json +0 -19
- package/projects/angular2parse/tsconfig.lib.prod.json +0 -9
- package/tsconfig.json +0 -33
package/README.md
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
# angular2parse
|
|
2
|
-
Parse util for angular expressions: html string -> angular
|
|
3
|
-
|
|
4
|
-
**This is a fork of Articode's [angular2parse](https://github.com/articodeltd/angular2parse), adapted for Angular v12 - v19**
|
|
5
|
-
|
|
6
|
-
**Available from 'npmjs' https://www.npmjs.com/package/@auscope/angular2parse**
|
|
7
|
-
|
|
8
|
-
| Angular Version | Branch |
|
|
9
|
-
|-----------------|-------------|
|
|
10
|
-
| v19 | upgrade-v19 |
|
|
11
|
-
| v18 | upgrade-v18 |
|
|
12
|
-
| v17 | upgrade-v17 |
|
|
13
|
-
| v16 | upgrade-v16 |
|
|
14
|
-
| v15 | upgrade-v15 |
|
|
15
|
-
| v14 | upgrade-v14 |
|
|
16
|
-
| v13 | upgrade-v13 |
|
|
17
|
-
| v12 | upgrade-v12 |
|
|
18
|
-
|
|
2
|
+
Parse util for angular expressions: html string -> angular temaplte
|
|
19
3
|
|
|
20
4
|
# install
|
|
21
5
|
`npm install angular2parse`
|