@angular/core 15.0.0-rc.4 → 15.0.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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.0.0-rc.4
2
+ * @license Angular v15.0.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -2385,8 +2385,13 @@ export declare interface Directive {
2385
2385
  standalone?: boolean;
2386
2386
  /**
2387
2387
  * Standalone directives that should be applied to the host whenever the directive is matched.
2388
- * By default none of the inputs or outputs of the host directives will be available on the host,
2388
+ * By default, none of the inputs or outputs of the host directives will be available on the host,
2389
2389
  * unless they are specified in the `inputs` or `outputs` properties.
2390
+ *
2391
+ * You can additionally alias inputs and outputs by putting a colon and the alias after the
2392
+ * original input or output name. For example, if a directive applied via `hostDirectives`
2393
+ * defines an input named `menuDisabled`, you can alias this to `disabled` by adding
2394
+ * `'menuDisabled: disabled'` as an entry to `inputs`.
2390
2395
  */
2391
2396
  hostDirectives?: (Type<unknown> | {
2392
2397
  directive: Type<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "15.0.0-rc.4",
3
+ "version": "15.0.0",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.0.0-rc.4
2
+ * @license Angular v15.0.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */