@angular/forms 21.2.1 → 21.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "21.2.1",
3
+ "version": "21.2.3",
4
4
  "description": "Angular - directives and services for creating forms",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -12,9 +12,9 @@
12
12
  "@standard-schema/spec": "^1.0.0"
13
13
  },
14
14
  "peerDependencies": {
15
- "@angular/core": "21.2.1",
16
- "@angular/common": "21.2.1",
17
- "@angular/platform-browser": "21.2.1",
15
+ "@angular/core": "21.2.3",
16
+ "@angular/common": "21.2.3",
17
+ "@angular/platform-browser": "21.2.3",
18
18
  "rxjs": "^6.5.3 || ^7.4.0"
19
19
  },
20
20
  "repository": {
Binary file
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.2.1
2
+ * @license Angular v21.2.3
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
package/types/forms.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.2.1
2
+ * @license Angular v21.2.3
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.2.1
2
+ * @license Angular v21.2.3
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.2.1
2
+ * @license Angular v21.2.3
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -536,12 +536,12 @@ interface FormCheckboxControl extends FormUiControl {
536
536
  * the field is touched, or the most recently debounced update resolves.
537
537
  *
538
538
  * @param path The target path to debounce.
539
- * @param durationOrDebouncer Either a debounce duration in milliseconds, or a custom
540
- * {@link Debouncer} function.
539
+ * @param config A debounce configuration, which can be either a debounce duration in milliseconds,
540
+ * `'blur'` to debounce until the field is blurred, or a custom {@link Debouncer} function.
541
541
  *
542
542
  * @experimental 21.0.0
543
543
  */
544
- declare function debounce<TValue, TPathKind extends PathKind = PathKind.Root>(path: SchemaPath<TValue, SchemaPathRules.Supported, TPathKind>, durationOrDebouncer: number | Debouncer<TValue, TPathKind>): void;
544
+ declare function debounce<TValue, TPathKind extends PathKind = PathKind.Root>(path: SchemaPath<TValue, SchemaPathRules.Supported, TPathKind>, config: number | 'blur' | Debouncer<TValue, TPathKind>): void;
545
545
 
546
546
  /**
547
547
  * Result of parsing a raw value into a model value.