Skip to content

Commit

Permalink
Merge branch 'master' into feat/20928-vdatepicker-today-attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
maryamBaratii authored Feb 11, 2025
2 parents 9b5b397 + 9d30fa5 commit e114bb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { MaybeTransition } from '@/composables/transition'

// Utilities
import { computed, ref, shallowRef, watch } from 'vue'
import { genericComponent, propsFactory } from '@/util'
import { genericComponent, omit, propsFactory } from '@/util'

// Types
import type { PropType } from 'vue'
Expand Down Expand Up @@ -41,7 +41,7 @@ export const makeVDatePickerMonthProps = propsFactory({
default: 'picker-reverse-transition',
},

...makeCalendarProps(),
...omit(makeCalendarProps(), ['displayValue']),
}, 'VDatePickerMonth')

export const VDatePickerMonth = genericComponent<VDatePickerMonthSlots>()({
Expand Down
2 changes: 1 addition & 1 deletion packages/vuetify/src/composables/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type { PropType } from 'vue'
export interface CalendarProps {
allowedDates: unknown[] | ((date: unknown) => boolean) | undefined
disabled: boolean
displayValue: unknown
displayValue?: unknown
modelValue: unknown[] | undefined
max: unknown
min: unknown
Expand Down

0 comments on commit e114bb9

Please sign in to comment.