@@ -7,7 +7,7 @@ export type PartialDeepOptions = {
7
7
/**
8
8
Whether to affect the individual elements of arrays and tuples.
9
9
10
- @default true
10
+ @default false
11
11
*/
12
12
readonly recurseIntoArrays ?: boolean ;
13
13
} ;
@@ -40,7 +40,7 @@ const applySavedSettings = (savedSettings: PartialDeep<Settings>) => {
40
40
settings = applySavedSettings({textEditor: {fontWeight: 500}});
41
41
```
42
42
43
- By default, this also affects array and tuple types:
43
+ By default, this does not affect elements in array and tuple types. You can change this by passing `{recurseIntoArrays: true}` as the second type argument :
44
44
45
45
```
46
46
import type {PartialDeep} from 'type-fest';
@@ -49,13 +49,11 @@ interface Settings {
49
49
languages: string[];
50
50
}
51
51
52
- const partialSettings: PartialDeep<Settings> = {
52
+ const partialSettings: PartialDeep<Settings, {recurseIntoArrays: true} > = {
53
53
languages: [undefined]
54
54
};
55
55
```
56
56
57
- If this is undesirable, you can pass `{recurseIntoArrays: false}` as the second type argument.
58
-
59
57
@category Object
60
58
@category Array
61
59
@category Set
@@ -75,13 +73,13 @@ export type PartialDeep<T, Options extends PartialDeepOptions = {}> = T extends
75
73
? T | undefined
76
74
: T extends object
77
75
? T extends ReadonlyArray < infer ItemType > // Test for arrays/tuples, per https://github.com/microsoft/TypeScript/issues/35156
78
- ? Options [ 'recurseIntoArrays' ] extends false // If they opt out of array testing, just use the original type
79
- ? T
80
- : ItemType [ ] extends T // Test for arrays (non-tuples) specifically
76
+ ? Options [ 'recurseIntoArrays' ] extends true
77
+ ? ItemType [ ] extends T // Test for arrays (non-tuples) specifically
81
78
? readonly ItemType [ ] extends T // Differentiate readonly and mutable arrays
82
79
? ReadonlyArray < PartialDeep < ItemType | undefined , Options > >
83
80
: Array < PartialDeep < ItemType | undefined , Options > >
84
81
: PartialObjectDeep < T , Options > // Tuples behave properly
82
+ : T // If they don't opt into array testing, just use the original type
85
83
: PartialObjectDeep < T , Options >
86
84
: unknown ;
87
85
0 commit comments