Skip to content

Commit 05685a9

Browse files
edison1105yyx990803
authored andcommittedOct 11, 2024··
fix(types): retain union type narrowing with defaults applied (#12108)
close #12106
1 parent cde2c06 commit 05685a9

File tree

2 files changed

+34
-15
lines changed

2 files changed

+34
-15
lines changed
 

‎packages-private/dts-test/setupHelpers.test-d.ts

+17
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,23 @@ describe('withDefaults w/ defineProp type is different from the defaults type',
240240
res1.value
241241
})
242242

243+
describe('withDefaults w/ defineProp discriminate union type', () => {
244+
const props = withDefaults(
245+
defineProps<
246+
{ type: 'button'; buttonType?: 'submit' } | { type: 'link'; href: string }
247+
>(),
248+
{
249+
type: 'button',
250+
},
251+
)
252+
if (props.type === 'button') {
253+
expectType<'submit' | undefined>(props.buttonType)
254+
}
255+
if (props.type === 'link') {
256+
expectType<string>(props.href)
257+
}
258+
})
259+
243260
describe('defineProps w/ runtime declaration', () => {
244261
// runtime declaration
245262
const props = defineProps({

‎packages/runtime-core/src/apiSetupHelpers.ts

+17-15
Original file line numberDiff line numberDiff line change
@@ -331,21 +331,23 @@ type PropsWithDefaults<
331331
T,
332332
Defaults extends InferDefaults<T>,
333333
BKeys extends keyof T,
334-
> = Readonly<MappedOmit<T, keyof Defaults>> & {
335-
readonly [K in keyof Defaults as K extends keyof T
336-
? K
337-
: never]-?: K extends keyof T
338-
? Defaults[K] extends undefined
339-
? IfAny<Defaults[K], NotUndefined<T[K]>, T[K]>
340-
: NotUndefined<T[K]>
341-
: never
342-
} & {
343-
readonly [K in BKeys]-?: K extends keyof Defaults
344-
? Defaults[K] extends undefined
345-
? boolean | undefined
346-
: boolean
347-
: boolean
348-
}
334+
> = T extends unknown
335+
? Readonly<MappedOmit<T, keyof Defaults>> & {
336+
readonly [K in keyof Defaults as K extends keyof T
337+
? K
338+
: never]-?: K extends keyof T
339+
? Defaults[K] extends undefined
340+
? IfAny<Defaults[K], NotUndefined<T[K]>, T[K]>
341+
: NotUndefined<T[K]>
342+
: never
343+
} & {
344+
readonly [K in BKeys]-?: K extends keyof Defaults
345+
? Defaults[K] extends undefined
346+
? boolean | undefined
347+
: boolean
348+
: boolean
349+
}
350+
: never
349351

350352
/**
351353
* Vue `<script setup>` compiler macro for providing props default values when

0 commit comments

Comments
 (0)
Please sign in to comment.