@angular/forms 21.0.0-next.3 → 21.0.0-next.4
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/fesm2022/forms.mjs +128 -128
- package/fesm2022/forms.mjs.map +1 -1
- package/fesm2022/signals.mjs +20 -10
- package/fesm2022/signals.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +4 -4
- package/signals/index.d.ts +11 -3
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/forms",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.4",
|
|
4
4
|
"description": "Angular - directives and services for creating forms",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "21.0.0-next.
|
|
15
|
-
"@angular/common": "21.0.0-next.
|
|
16
|
-
"@angular/platform-browser": "21.0.0-next.
|
|
14
|
+
"@angular/core": "21.0.0-next.4",
|
|
15
|
+
"@angular/common": "21.0.0-next.4",
|
|
16
|
+
"@angular/platform-browser": "21.0.0-next.4",
|
|
17
17
|
"@standard-schema/spec": "^1.0.0",
|
|
18
18
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
19
19
|
},
|
package/signals/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.0-next.
|
|
2
|
+
* @license Angular v21.0.0-next.4
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1720,7 +1720,7 @@ declare class FieldNodeState {
|
|
|
1720
1720
|
* Whether this field is considered dirty.
|
|
1721
1721
|
*
|
|
1722
1722
|
* A field is considered dirty if one of the following is true:
|
|
1723
|
-
* - It was directly dirtied
|
|
1723
|
+
* - It was directly dirtied and is interactive
|
|
1724
1724
|
* - One of its children is considered dirty
|
|
1725
1725
|
*/
|
|
1726
1726
|
readonly dirty: Signal<boolean>;
|
|
@@ -1728,7 +1728,7 @@ declare class FieldNodeState {
|
|
|
1728
1728
|
* Whether this field is considered touched.
|
|
1729
1729
|
*
|
|
1730
1730
|
* A field is considered touched if one of the following is true:
|
|
1731
|
-
* - It was directly touched
|
|
1731
|
+
* - It was directly touched and is interactive
|
|
1732
1732
|
* - One of its children is considered touched
|
|
1733
1733
|
*/
|
|
1734
1734
|
readonly touched: Signal<boolean>;
|
|
@@ -1764,6 +1764,14 @@ declare class FieldNodeState {
|
|
|
1764
1764
|
*/
|
|
1765
1765
|
readonly hidden: Signal<boolean>;
|
|
1766
1766
|
readonly name: Signal<string>;
|
|
1767
|
+
/** Whether this field is considered non-interactive.
|
|
1768
|
+
*
|
|
1769
|
+
* A field is considered non-interactive if one of the following is true:
|
|
1770
|
+
* - It is hidden
|
|
1771
|
+
* - It is disabled
|
|
1772
|
+
* - It is readonly
|
|
1773
|
+
*/
|
|
1774
|
+
private readonly isNonInteractive;
|
|
1767
1775
|
}
|
|
1768
1776
|
|
|
1769
1777
|
/**
|