Browse Source

feat: allow Monday to be the first column in date picker

pull/9952/head
MaryamAlkhater 1 week ago committed by Maryam Alkhater
parent
commit
4df6a1f197
  1. 4
      packages/nc-gui/components/nc/DatePicker.vue

4
packages/nc-gui/components/nc/DatePicker.vue

@ -9,6 +9,7 @@ interface Props {
type: 'date' | 'time' | 'year' | 'month'
isOpen: boolean
showCurrentDateOption?: boolean | 'disabled'
isMondayFirst?: boolean
}
const props = withDefaults(defineProps<Props>(), {
@ -18,6 +19,7 @@ const props = withDefaults(defineProps<Props>(), {
isCellInputField: false,
type: 'date',
isOpen: false,
isMondayFirst: true,
})
const emit = defineEmits(['update:selectedDate', 'update:pageDate', 'update:selectedWeek', 'currentDate'])
// Page date is the date we use to manage which month/date that is currently being displayed
@ -131,7 +133,7 @@ onMounted(() => {
v-model:page-date="localStatePageDate"
v-model:selected-date="localStateSelectedDate"
:picker-type="pickerType"
:is-monday-first="false"
:is-monday-first="props.isMondayFirst"
is-cell-input-field
size="medium"
:show-current-date-option="showCurrentDateOption"

Loading…
Cancel
Save