Skip to content

Commit fd2f64b

Browse files
committed
chore: fix type errors
1 parent 381b081 commit fd2f64b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

packages/vuetify/src/components/VCheckbox/VCheckbox.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { filterInputAttrs, genericComponent, getUid, omit, propsFactory, useRend
1717
import type { VSelectionControlSlots } from '../VSelectionControl/VSelectionControl'
1818
import type { VInputSlots } from '@/components/VInput/VInput'
1919

20-
export type VCheckboxSlots = VInputSlots & VSelectionControlSlots
20+
export type VCheckboxSlots = Omit<VInputSlots, 'default'> & VSelectionControlSlots
2121

2222
export const makeVCheckboxProps = propsFactory({
2323
...makeVInputProps(),

packages/vuetify/src/components/VRadioGroup/VRadioGroup.tsx

+7-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,14 @@ import { filterInputAttrs, genericComponent, getUid, omit, propsFactory, useRend
1717

1818
// Types
1919
import type { VInputSlots } from '@/components/VInput/VInput'
20-
import type { VSelectionControlSlots } from '@/components/VSelectionControl/VSelectionControl'
2120

22-
export type VRadioGroupSlots = VInputSlots & VSelectionControlSlots
21+
export type VRadioGroupSlots = Omit<VInputSlots, 'default'> & {
22+
default: never
23+
label: {
24+
label: string | undefined
25+
props: Record<string, any>
26+
}
27+
}
2328

2429
export const makeVRadioGroupProps = propsFactory({
2530
height: {

0 commit comments

Comments
 (0)