piral-ng 0.14.1-beta.3256 → 0.14.2
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 +29 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -622,6 +622,35 @@ The basic dependencies look as follows:
|
|
|
622
622
|
}
|
|
623
623
|
```
|
|
624
624
|
|
|
625
|
+
### Angular 13
|
|
626
|
+
|
|
627
|
+
In general, Angular 13 seems to work and is **supported**.
|
|
628
|
+
|
|
629
|
+
The basic dependencies look as follows:
|
|
630
|
+
|
|
631
|
+
```json
|
|
632
|
+
{
|
|
633
|
+
"@angular/common": "^13",
|
|
634
|
+
"@angular/compiler": "^13",
|
|
635
|
+
"@angular/core": "^13",
|
|
636
|
+
"@angular/router": "^13",
|
|
637
|
+
"@angular/platform-browser": "^13",
|
|
638
|
+
"@angular/platform-browser-dynamic": "^13",
|
|
639
|
+
"core-js": "^3.19.0",
|
|
640
|
+
"rxjs": "~7.4",
|
|
641
|
+
"zone.js": "~0.9"
|
|
642
|
+
}
|
|
643
|
+
```
|
|
644
|
+
|
|
645
|
+
Besides the usual imports the explicit import of the `@angular/compiler` package may be necessary.
|
|
646
|
+
|
|
647
|
+
So include in your app shell as preamble:
|
|
648
|
+
|
|
649
|
+
```js
|
|
650
|
+
import 'core-js/proposals/reflect-metadata';
|
|
651
|
+
import '@angular/compiler';
|
|
652
|
+
```
|
|
653
|
+
|
|
625
654
|
## License
|
|
626
655
|
|
|
627
656
|
Piral is released using the MIT license. For more information see the [license file](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-ng",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "Plugin for integrating Angular components in Piral.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"piral",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@angular/platform-browser": "^8.0.0",
|
|
53
53
|
"@angular/platform-browser-dynamic": "^8.0.0",
|
|
54
54
|
"@angular/router": "^8.0.0",
|
|
55
|
-
"piral-core": "0.14.
|
|
55
|
+
"piral-core": "^0.14.2",
|
|
56
56
|
"rxjs": "^7.3.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"rxjs": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
67
67
|
"zone.js": "~0.9.0 || ~0.10.0 || ~0.11.0"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "eaaab0f56b872802a70d83de27a77911af37ed22"
|
|
70
70
|
}
|