@angular/core 21.0.0-rc.2 → 21.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.
Files changed (67) hide show
  1. package/fesm2022/_attribute-chunk.mjs +1 -1
  2. package/fesm2022/_debug_node-chunk.mjs +25 -17
  3. package/fesm2022/_debug_node-chunk.mjs.map +1 -1
  4. package/fesm2022/_effect-chunk.mjs +1 -1
  5. package/fesm2022/_linked_signal-chunk.mjs +1 -1
  6. package/fesm2022/_not_found-chunk.mjs +1 -1
  7. package/fesm2022/_resource-chunk.mjs +4 -9
  8. package/fesm2022/_resource-chunk.mjs.map +1 -1
  9. package/fesm2022/_untracked-chunk.mjs +2 -2
  10. package/fesm2022/_untracked-chunk.mjs.map +1 -1
  11. package/fesm2022/_weak_ref-chunk.mjs +1 -1
  12. package/fesm2022/core.mjs +1 -1
  13. package/fesm2022/core.mjs.map +1 -1
  14. package/fesm2022/primitives-di.mjs +1 -1
  15. package/fesm2022/primitives-event-dispatch.mjs +1 -1
  16. package/fesm2022/primitives-signals.mjs +2 -2
  17. package/fesm2022/primitives-signals.mjs.map +1 -1
  18. package/fesm2022/rxjs-interop.mjs +1 -1
  19. package/fesm2022/rxjs-interop.mjs.map +1 -1
  20. package/fesm2022/testing.mjs +1 -1
  21. package/package.json +2 -2
  22. package/schematics/bundles/add-bootstrap-context-to-server-main.cjs +1 -1
  23. package/schematics/bundles/application-config-core.cjs +1 -1
  24. package/schematics/bundles/apply_import_manager-1Zs_gpB6.cjs +1 -1
  25. package/schematics/bundles/bootstrap-options-migration.cjs +1 -1
  26. package/schematics/bundles/cleanup-unused-imports.cjs +1 -1
  27. package/schematics/bundles/common-to-standalone-migration.cjs +1 -1
  28. package/schematics/bundles/compiler_host-DBwYMlTo.cjs +1 -1
  29. package/schematics/bundles/control-flow-migration.cjs +1 -1
  30. package/schematics/bundles/imports-DP72APSx.cjs +1 -1
  31. package/schematics/bundles/index-B7I9sIUx.cjs +1 -1
  32. package/schematics/bundles/inject-migration.cjs +1 -1
  33. package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
  34. package/schematics/bundles/migrate_ts_type_references-UGIUl7En.cjs +1 -1
  35. package/schematics/bundles/ng_component_template-Dsuq1Lw7.cjs +1 -1
  36. package/schematics/bundles/ng_decorators-DSFlWYQY.cjs +1 -1
  37. package/schematics/bundles/ngclass-to-class-migration.cjs +1 -1
  38. package/schematics/bundles/ngstyle-to-style-migration.cjs +1 -1
  39. package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
  40. package/schematics/bundles/output-migration.cjs +1 -1
  41. package/schematics/bundles/parse_html-8VLCL37B.cjs +1 -1
  42. package/schematics/bundles/project_paths-DvD50ouC.cjs +1 -1
  43. package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +1 -1
  44. package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
  45. package/schematics/bundles/route-lazy-loading.cjs +1 -1
  46. package/schematics/bundles/router-current-navigation.cjs +1 -1
  47. package/schematics/bundles/router-last-successful-navigation.cjs +1 -1
  48. package/schematics/bundles/router-testing-module-migration.cjs +1 -1
  49. package/schematics/bundles/self-closing-tags-migration.cjs +1 -1
  50. package/schematics/bundles/signal-input-migration.cjs +1 -1
  51. package/schematics/bundles/signal-queries-migration.cjs +1 -1
  52. package/schematics/bundles/signals.cjs +1 -1
  53. package/schematics/bundles/standalone-migration.cjs +1 -1
  54. package/schematics/bundles/symbol-BObKoqes.cjs +1 -1
  55. package/types/_api-chunk.d.ts +8 -1
  56. package/types/_chrome_dev_tools_performance-chunk.d.ts +12 -2
  57. package/types/_discovery-chunk.d.ts +44 -6
  58. package/types/_effect-chunk.d.ts +1 -1
  59. package/types/_event_dispatcher-chunk.d.ts +1 -1
  60. package/types/_formatter-chunk.d.ts +1 -1
  61. package/types/_weak_ref-chunk.d.ts +1 -1
  62. package/types/core.d.ts +56 -15
  63. package/types/primitives-di.d.ts +1 -1
  64. package/types/primitives-event-dispatch.d.ts +1 -1
  65. package/types/primitives-signals.d.ts +1 -1
  66. package/types/rxjs-interop.d.ts +11 -1
  67. package/types/testing.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.0-rc.2
2
+ * @license Angular v21.0.0
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -31,6 +31,7 @@ import { Observable, MonoTypeOperatorFunction, Subscribable } from 'rxjs';
31
31
  * nameChange = outputFromObservable(this.nameChange$);
32
32
  * }
33
33
  * ```
34
+ * @see [RxJS interop with component and directive outputs](ecosystem/rxjs-interop/output-interop)
34
35
  *
35
36
  * @publicApi 19.0
36
37
  */
@@ -43,6 +44,8 @@ declare function outputFromObservable<T>(observable: Observable<T>, opts?: Outpu
43
44
  *
44
45
  * You can subscribe to the output via `Observable.subscribe` then.
45
46
  *
47
+ * @see [RxJS interop with component and directive outputs](ecosystem/rxjs-interop/output-interop)
48
+ *
46
49
  * @publicApi 19.0
47
50
  */
48
51
  declare function outputToObservable<T>(ref: OutputRef<T>): Observable<T>;
@@ -55,6 +58,8 @@ declare function outputToObservable<T>(ref: OutputRef<T>): Observable<T>;
55
58
  * passed explicitly to use `takeUntilDestroyed` outside of an [injection
56
59
  * context](guide/di/dependency-injection-context). Otherwise, the current `DestroyRef` is injected.
57
60
  *
61
+ * @see [Unsubscribing with takeUntilDestroyed](ecosystem/rxjs-interop/take-until-destroyed)
62
+ *
58
63
  * @publicApi 19.0
59
64
  */
60
65
  declare function takeUntilDestroyed<T>(destroyRef?: DestroyRef): MonoTypeOperatorFunction<T>;
@@ -81,6 +86,9 @@ interface ToObservableOptions {
81
86
  *
82
87
  * `toObservable` must be called in an injection context unless an injector is provided via options.
83
88
  *
89
+ * @see [RxJS interop with Angular signals](ecosystem/rxjs-interop)
90
+ * @see [Create an RxJS Observable from a signal with toObservable](ecosystem/rxjs-interop#create-an-rxjs-observable-from-a-signal-with-toobservable)
91
+ *
84
92
  * @publicApi 20.0
85
93
  */
86
94
  declare function toObservable<T>(source: Signal<T>, options?: ToObservableOptions): Observable<T>;
@@ -169,6 +177,8 @@ interface RxResourceOptions<T, R> extends BaseResourceOptions<T, R> {
169
177
  * Like `resource` but uses an RxJS based `loader` which maps the request to an `Observable` of the
170
178
  * resource's value.
171
179
  *
180
+ * @see [Using rxResource for async data](ecosystem/rxjs-interop#using-rxresource-for-async-data)
181
+ *
172
182
  * @experimental
173
183
  */
174
184
  declare function rxResource<T, R>(opts: RxResourceOptions<T, R> & {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.0-rc.2
2
+ * @license Angular v21.0.0
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */