piral-ng 0.15.8 → 0.15.9-beta.5387

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.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -722,6 +722,35 @@ import 'core-js/proposals/reflect-metadata';
722
722
  import '@angular/compiler';
723
723
  ```
724
724
 
725
+ ### Angular 14
726
+
727
+ In general, Angular 14 seems to work and is **supported**.
728
+
729
+ The basic dependencies look as follows:
730
+
731
+ ```json
732
+ {
733
+ "@angular/common": "^14",
734
+ "@angular/compiler": "^14",
735
+ "@angular/core": "^14",
736
+ "@angular/router": "^14",
737
+ "@angular/platform-browser": "^14",
738
+ "@angular/platform-browser-dynamic": "^14",
739
+ "core-js": "^3.19.0",
740
+ "rxjs": "~7.4",
741
+ "zone.js": "~0.11"
742
+ }
743
+ ```
744
+
745
+ Besides the usual imports the explicit import of the `@angular/compiler` package may be necessary.
746
+
747
+ So include in your app shell as preamble:
748
+
749
+ ```js
750
+ import 'core-js/proposals/reflect-metadata';
751
+ import '@angular/compiler';
752
+ ```
753
+
725
754
  ## License
726
755
 
727
756
  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.15.8",
3
+ "version": "0.15.9-beta.5387",
4
4
  "description": "Plugin for integrating Angular components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -81,7 +81,7 @@
81
81
  "@angular/platform-browser-dynamic": "^14.0.0",
82
82
  "@angular/router": "^14.0.0",
83
83
  "ng-packagr": "^14.0.0",
84
- "piral-core": "^0.15.8",
84
+ "piral-core": "0.15.9-beta.5387",
85
85
  "rxjs": "^7.3.0"
86
86
  },
87
87
  "peerDependencies": {
@@ -92,5 +92,5 @@
92
92
  "@angular/router": "^2.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
93
93
  "rxjs": "^5.0.0 || ^6.0.0 || ^7.0.0"
94
94
  },
95
- "gitHead": "0d9486dedbf2a368be8c7debf9be8a8f89b8139f"
95
+ "gitHead": "7e8a09cd29f25a8986169bad38e270b95be0059a"
96
96
  }