Skip to content

Commit

Permalink
fix(VSelectionContolGroup): update ripple prop type (#19465)
Browse files Browse the repository at this point in the history
fixes #19462
  • Loading branch information
EvgenyWas authored Mar 26, 2024
1 parent 2e993ef commit 12cc8cc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { deepEqual, genericComponent, getUid, propsFactory, useRender } from '@/

// Types
import type { InjectionKey, PropType, Ref } from 'vue'
import type { RippleDirectiveBinding } from '@/directives/ripple'
import type { GenericProps } from '@/util'

export interface VSelectionGroupContext {
Expand All @@ -38,7 +39,7 @@ export const makeSelectionControlGroupProps = propsFactory({
falseIcon: IconValue,
trueIcon: IconValue,
ripple: {
type: Boolean,
type: [Boolean, Object] as PropType<RippleDirectiveBinding['value']>,
default: true,
},
multiple: {
Expand Down

0 comments on commit 12cc8cc

Please sign in to comment.