{"version":3,"file":"register.c25968ab.js","sources":["../../../node_modules/@quasar/quasar-ui-qcalendar/dist/index.esm.js","../../../node_modules/@quasar/quasar-app-extension-qcalendar/src/boot/register.js"],"sourcesContent":["/*!\n * @quasar/quasar-ui-qcalendar v4.0.0-beta.16\n * (c) 2023 Jeff Galbraith \n * Released under the MIT License.\n */\n\nimport { reactive, ref, computed, withDirectives, h, watch, getCurrentInstance, onBeforeUnmount, defineComponent, onBeforeUpdate, onMounted, Transition, nextTick } from 'vue';\n\nconst PARSE_REGEX = /^(\\d{4})-(\\d{1,2})(-(\\d{1,2}))?([^\\d]+(\\d{1,2}))?(:(\\d{1,2}))?(:(\\d{1,2}))?(.(\\d{1,3}))?$/;\nconst PARSE_DATE = /^(\\d{4})-(\\d{1,2})(-(\\d{1,2}))/;\nconst PARSE_TIME = /(\\d\\d?)(:(\\d\\d?)|)(:(\\d\\d?)|)/;\n\nconst DAYS_IN_MONTH = [ 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];\nconst DAYS_IN_MONTH_LEAP = [ 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];\nconst DAYS_IN_MONTH_MIN = 28;\nconst DAYS_IN_MONTH_MAX = 31;\nconst MONTH_MAX = 12;\nconst MONTH_MIN = 1;\nconst DAY_MIN = 1;\nconst DAYS_IN_WEEK = 7;\nconst MINUTES_IN_HOUR = 60;\nconst HOURS_IN_DAY = 24;\nconst FIRST_HOUR = 0;\nconst MILLISECONDS_IN_MINUTE = 60000;\nconst MILLISECONDS_IN_HOUR = 3600000;\nconst MILLISECONDS_IN_DAY = 86400000;\nconst MILLISECONDS_IN_WEEK = 604800000;\n\n/* eslint-disable no-multi-spaces */\n/**\n * @typedef {Object} Timestamp The Timestamp object\n * @property {string=} Timestamp.date Date string in format 'YYYY-MM-DD'\n * @property {string=} Timestamp.time Time string in format 'HH:MM'\n * @property {number} Timestamp.year The numeric year\n * @property {number} Timestamp.month The numeric month (Jan = 1, ...)\n * @property {number} Timestamp.day The numeric day\n * @property {number} Timestamp.weekday The numeric weekday (Sun = 0, ..., Sat = 6)\n * @property {number=} Timestamp.hour The numeric hour\n * @property {number} Timestamp.minute The numeric minute\n * @property {number=} Timestamp.doy The numeric day of the year (doy)\n * @property {number=} Timestamp.workweek The numeric workweek\n * @property {boolean} Timestamp.hasDay True if Timestamp.date is filled in and usable\n * @property {boolean} Timestamp.hasTime True if Timestamp.time is filled in and usable\n * @property {boolean=} Timestamp.past True if the Timestamp is in the past\n * @property {boolean=} Timestamp.current True if Timestamp is current day (now)\n * @property {boolean=} Timestamp.future True if Timestamp is in the future\n * @property {boolean=} Timestamp.disabled True if this is a disabled date\n * @property {boolean=} Timestamp.currentWeekday True if this date corresponds to current weekday\n */\nconst Timestamp = {\n date: '', // YYYY-MM-DD\n time: '', // HH:MM (optional)\n year: 0, // YYYY\n month: 0, // MM (Jan = 1, etc)\n day: 0, // day of the month\n weekday: 0, // week day (0=Sunday...6=Saturday)\n hour: 0, // 24-hr format\n minute: 0, // mm\n doy: 0, // day of year\n workweek: 0, // workweek number\n hasDay: false, // if this timestamp is supposed to have a date\n hasTime: false, // if this timestamp is supposed to have a time\n past: false, // if timestamp is in the past (based on `now` property)\n current: false, // if timestamp is current date (based on `now` property)\n future: false, // if timestamp is in the future (based on `now` property)\n disabled: false, // if timestamp is disabled\n currentWeekday: false // if this date corresponds to current weekday \n};\n\nconst TimeObject = {\n hour: 0, // Number\n minute: 0 // Number\n};\n/* eslint-enable no-multi-spaces */\n\n// returns YYYY-MM-dd format\n/**\n * Returns today's date\n * @returns {string} Date string in the form 'YYYY-MM-DD'\n */\nfunction today () {\n const d = new Date(),\n month = '' + (d.getMonth() + 1),\n day = '' + d.getDate(),\n year = d.getFullYear();\n\n return [ year, padNumber(month, 2), padNumber(day, 2) ].join('-')\n}\n\n/**\n * Returns the start of the week give a {@link Timestamp} and weekdays (in which it finds the day representing the start of the week).\n * If today {@link Timestamp} is passed in then this is used to update relative information in the returned {@link Timestamp}.\n * @param {Timestamp} timestamp The {@link Timestamp} to use to find the start of the week\n * @param {number[]} weekdays The array is [0,1,2,3,4,5,6] where 0=Sunday and 6=Saturday\n * @param {Timestamp=} today If passed in then the {@link Timestamp} is updated with relative information\n * @returns {Timestamp} The {@link Timestamp} representing the start of the week\n */\nfunction getStartOfWeek (timestamp, weekdays, today) {\n let start = copyTimestamp(timestamp);\n if (start.day === 1 || start.weekday === 0) {\n while (!weekdays.includes(start.weekday)) {\n start = nextDay(start);\n }\n }\n start = findWeekday(start, weekdays[ 0 ], prevDay);\n start = updateFormatted(start);\n if (today) {\n start = updateRelative(start, today, start.hasTime);\n }\n return start\n}\n\n/**\n * Returns the end of the week give a {@link Timestamp} and weekdays (in which it finds the day representing the last of the week).\n * If today {@link Timestamp} is passed in then this is used to update relative information in the returned {@link Timestamp}.\n * @param {Timestamp} timestamp The {@link Timestamp} to use to find the end of the week\n * @param {number[]} weekdays The array is [0,1,2,3,4,5,6] where 0=Sunday and 6=Saturday\n * @param {Timestamp=} today If passed in then the {@link Timestamp} is updated with relative information\n * @returns {Timestamp} The {@link Timestamp} representing the end of the week\n */\nfunction getEndOfWeek (timestamp, weekdays, today) {\n let end = copyTimestamp(timestamp);\n // is last day of month?\n const lastDay = daysInMonth(end.year, end.month);\n if (lastDay === end.day || end.weekday === 6) {\n while (!weekdays.includes(end.weekday)) {\n end = prevDay(end);\n }\n }\n end = findWeekday(end, weekdays[ weekdays.length - 1 ], nextDay);\n end = updateFormatted(end);\n if (today) {\n end = updateRelative(end, today, end.hasTime);\n }\n return end\n}\n\n/**\n * Finds the start of the month based on the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use to find the start of the month\n * @returns {Timestamp} A {@link Timestamp} of the start of the month\n */\nfunction getStartOfMonth (timestamp) {\n const start = copyTimestamp(timestamp);\n start.day = DAY_MIN;\n updateFormatted(start);\n return start\n}\n\n/**\n * Finds the end of the month based on the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use to find the end of the month\n * @returns {Timestamp} A {@link Timestamp} of the end of the month\n */\nfunction getEndOfMonth (timestamp) {\n const end = copyTimestamp(timestamp);\n end.day = daysInMonth(end.year, end.month);\n updateFormatted(end);\n return end\n}\n\n// returns minutes since midnight\nfunction parseTime (input) {\n const type = Object.prototype.toString.call(input);\n switch (type) {\n case '[object Number]':\n // when a number is given, it's minutes since 12:00am\n return input\n case '[object String]':\n {\n // when a string is given, it's a hh:mm:ss format where seconds are optional, but not used\n const parts = PARSE_TIME.exec(input);\n if (!parts) {\n return false\n }\n return parseInt(parts[ 1 ], 10) * 60 + parseInt(parts[ 3 ] || 0, 10)\n }\n case '[object Object]':\n // when an object is given, it must have hour and minute\n if (typeof input.hour !== 'number' || typeof input.minute !== 'number') {\n return false\n }\n return input.hour * 60 + input.minute\n }\n\n return false\n}\n\n/**\n * Validates the passed input ('YYY-MM-DD') as a date or ('YYY-MM-DD HH:MM') date time combination\n * @param {string} input A string in the form 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM'\n * @returns {boolean} True if parseable\n */\nfunction validateTimestamp (input) {\n return !!PARSE_REGEX.exec(input)\n}\n\n/**\n * Compares two {@link Timestamp}s for exactness\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @returns {boolean} True if the two {@link Timestamp}s are an exact match\n */\nfunction compareTimestamps (ts1, ts2) {\n return JSON.stringify(ts1) === JSON.stringify(ts2)\n}\n\n/**\n * Compares the date of two {@link Timestamp}s that have been updated with relative data\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @returns {boolean} True if the two dates are the same\n */\nfunction compareDate (ts1, ts2) {\n return getDate(ts1) === getDate(ts2)\n}\n\n/**\n * Compares the time of two {@link Timestamp}s that have been updated with relative data\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @returns {boolean} True if the two times are an exact match\n */\nfunction compareTime (ts1, ts2) {\n return getTime(ts1) === getTime(ts2)\n}\n\n/**\n * Compares the date and time of two {@link Timestamp}s that have been updated with relative data\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @returns {boolean} True if the date and time are an exact match\n */\nfunction compareDateTime (ts1, ts2) {\n return getDateTime(ts1) === getDateTime(ts2)\n}\n\n/**\n * Fast low-level parser for a date string ('YYYY-MM-DD'). Does not update formatted or relative date.\n * Use 'parseTimestamp' for formatted and relative updates\n * @param {string} input In the form 'YYYY-MM-DD hh:mm:ss' (seconds are optional, but not used)\n * @returns {Timestamp} This {@link Timestamp} is minimally filled in. The {@link Timestamp.date} and {@link Timestamp.time} as well as relative data will not be filled in.\n */\nfunction parsed (input) {\n const parts = PARSE_REGEX.exec(input);\n\n if (!parts) return null\n\n return {\n date: input,\n time: padNumber(parseInt(parts[ 6 ], 10) || 0, 2) + ':' + padNumber(parseInt(parts[ 8 ], 10) || 0, 2),\n year: parseInt(parts[ 1 ], 10),\n month: parseInt(parts[ 2 ], 10),\n day: parseInt(parts[ 4 ], 10) || 1,\n hour: !isNaN(parseInt(parts[ 6 ], 10)) ? parseInt(parts[ 6 ], 10) : 0,\n minute: !isNaN(parseInt(parts[ 8 ], 10)) ? parseInt(parts[ 8 ], 10) : 0,\n weekday: 0,\n doy: 0,\n workweek: 0,\n hasDay: !!parts[ 4 ],\n hasTime: true, // there is always time because no time is '00:00', which is valid\n past: false,\n current: false,\n future: false,\n disabled: false\n }\n}\n\n/**\n * High-level parser that converts the passed in string to {@link Timestamp} and uses 'now' to update relative information.\n * @param {string} input In the form 'YYYY-MM-DD hh:mm:ss' (seconds are optional, but not used)\n * @param {Timestamp} now A {@link Timestamp} to use for relative data updates\n * @returns {Timestamp} The {@link Timestamp.date} will be filled in as well as the {@link Timestamp.time} if a time is supplied and formatted fields (doy, weekday, workweek, etc). If 'now' is supplied, then relative data will also be updated.\n */\nfunction parseTimestamp (input, now) {\n let timestamp = parsed(input);\n if (timestamp === null) return null\n\n timestamp = updateFormatted(timestamp);\n\n if (now) {\n updateRelative(timestamp, now, timestamp.hasTime);\n }\n\n return timestamp\n}\n\n/**\n * Takes a JavaScript Date and returns a {@link Timestamp}. The {@link Timestamp} is not updated with relative information.\n * @param {date} date JavaScript Date\n * @param {boolean} utc If set the {@link Timestamp} will parse the Date as UTC\n * @returns {Timestamp} A minimal {@link Timestamp} without updated or relative updates.\n */\nfunction parseDate (date, utc = false) {\n const UTC = !!utc ? 'UTC' : '';\n return updateFormatted({\n date: padNumber(date[ `get${ UTC }FullYear` ](), 4) + '-' + padNumber(date[ `get${ UTC }Month` ]() + 1, 2) + '-' + padNumber(date[ `get${ UTC }Date` ](), 2),\n time: padNumber(date[ `get${ UTC }Hours` ]() || 0, 2) + ':' + padNumber(date[ `get${ UTC }Minutes` ]() || 0, 2),\n year: date[ `get${ UTC }FullYear` ](),\n month: date[ `get${ UTC }Month` ]() + 1,\n day: date[ `get${ UTC }Date` ](),\n hour: date[ `get${ UTC }Hours` ](),\n minute: date[ `get${ UTC }Minutes` ](),\n weekday: 0,\n doy: 0,\n workweek: 0,\n hasDay: true,\n hasTime: true, // Date always has time, even if it is '00:00'\n past: false,\n current: false,\n future: false,\n disabled: false\n })\n}\n\n/**\n * Converts a {@link Timestamp} into a numeric date identifier based on the passed {@link Timestamp}'s date\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The numeric date identifier\n */\nfunction getDayIdentifier (timestamp) {\n return timestamp.year * 100000000 + timestamp.month * 1000000 + timestamp.day * 10000\n}\n\n/**\n * Converts a {@link Timestamp} into a numeric time identifier based on the passed {@link Timestamp}'s time\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The numeric time identifier\n */\nfunction getTimeIdentifier (timestamp) {\n return timestamp.hour * 100 + timestamp.minute\n}\n\n/**\n * Converts a {@link Timestamp} into a numeric date and time identifier based on the passed {@link Timestamp}'s date and time\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The numeric date+time identifier\n */\nfunction getDayTimeIdentifier (timestamp) {\n return getDayIdentifier(timestamp) + getTimeIdentifier(timestamp)\n}\n\n/**\n * Returns the difference between two {@link Timestamp}s\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @param {boolean=} strict Optional flag to not to return negative numbers\n * @returns {number} The difference\n */\nfunction diffTimestamp (ts1, ts2, strict) {\n const utc1 = Date.UTC(ts1.year, ts1.month - 1, ts1.day, ts1.hour, ts1.minute);\n const utc2 = Date.UTC(ts2.year, ts2.month - 1, ts2.day, ts2.hour, ts2.minute);\n if (strict === true && utc2 < utc1) {\n // Not negative number\n // utc2 - utc1 < 0 -> utc2 < utc1 -> NO: utc1 >= utc2\n return 0\n }\n return utc2 - utc1\n}\n\n/**\n * Updates a {@link Timestamp} with relative data (past, current and future)\n * @param {Timestamp} timestamp The {@link Timestamp} that needs relative data updated\n * @param {Timestamp} now {@link Timestamp} that represents the current date (optional time)\n * @param {boolean=} time Optional flag to include time ('timestamp' and 'now' params should have time values)\n * @returns {Timestamp} The updated {@link Timestamp}\n */\nfunction updateRelative (timestamp, now, time = false) {\n let a = getDayIdentifier(now);\n let b = getDayIdentifier(timestamp);\n let current = a === b;\n\n if (timestamp.hasTime && time && current) {\n a = getTimeIdentifier(now);\n b = getTimeIdentifier(timestamp);\n current = a === b;\n }\n\n timestamp.past = b < a;\n timestamp.current = current;\n timestamp.future = b > a;\n timestamp.currentWeekday = timestamp.weekday === now.weekday;\n\n return timestamp\n}\n\n/**\n * Sets a Timestamp{@link Timestamp} to number of minutes past midnight (modifies hour and minutes if needed)\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @param {number} minutes The number of minutes to set from midnight\n * @param {Timestamp=} now Optional {@link Timestamp} representing current date and time\n * @returns {Timestamp} The updated {@link Timestamp}\n */\nfunction updateMinutes (timestamp, minutes, now) {\n timestamp.hasTime = true;\n timestamp.hour = Math.floor(minutes / MINUTES_IN_HOUR);\n timestamp.minute = minutes % MINUTES_IN_HOUR;\n timestamp.time = getTime(timestamp);\n if (now) {\n updateRelative(timestamp, now, true);\n }\n\n return timestamp\n}\n\n/**\n * Updates the {@link Timestamp} with the weekday\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @returns The modified Timestamp\n */\nfunction updateWeekday (timestamp) {\n timestamp.weekday = getWeekday(timestamp);\n\n return timestamp\n}\n\n/**\n * Updates the {@link Timestamp} with the day of the year (doy)\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @returns The modified Timestamp\n */\nfunction updateDayOfYear (timestamp) {\n timestamp.doy = getDayOfYear(timestamp);\n\n return timestamp\n}\n\n/**\n * Updates the {@link Timestamp} with the workweek\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @returns The modified {@link Timestamp}\n */\nfunction updateWorkWeek (timestamp) {\n timestamp.workweek = getWorkWeek(timestamp);\n\n return timestamp\n}\n\n/**\n * Updates the passed {@link Timestamp} with disabled, if needed\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @param {string} [disabledBefore] In 'YYY-MM-DD' format\n * @param {string} [disabledAfter] In 'YYY-MM-DD' format\n * @param {number[]} [disabledWeekdays] An array of numbers representing weekdays [0 = Sun, ..., 6 = Sat]\n * @param {string[]} [disabledDays] An array of days in 'YYYY-MM-DD' format. If an array with a pair of dates is in first array, then this is treated as a range.\n * @returns The modified {@link Timestamp}\n */\nfunction updateDisabled (timestamp, disabledBefore, disabledAfter, disabledWeekdays, disabledDays) {\n const t = getDayIdentifier(timestamp);\n\n if (disabledBefore !== undefined) {\n const before = getDayIdentifier(parsed(disabledBefore));\n if (t <= before) {\n timestamp.disabled = true;\n }\n }\n\n if (timestamp.disabled !== true && disabledAfter !== undefined) {\n const after = getDayIdentifier(parsed(disabledAfter));\n if (t >= after) {\n timestamp.disabled = true;\n }\n }\n\n if (timestamp.disabled !== true && Array.isArray(disabledWeekdays) && disabledWeekdays.length > 0) {\n for (const weekday in disabledWeekdays) {\n if (disabledWeekdays[ weekday ] === timestamp.weekday) {\n timestamp.disabled = true;\n break\n }\n }\n }\n\n if (timestamp.disabled !== true && Array.isArray(disabledDays) && disabledDays.length > 0) {\n for (const day in disabledDays) {\n if (Array.isArray(disabledDays[ day ]) && disabledDays[ day ].length === 2) {\n const start = parsed(disabledDays[ day ][ 0 ]);\n const end = parsed(disabledDays[ day ][ 1 ]);\n if (isBetweenDates(timestamp, start, end)) {\n timestamp.disabled = true;\n break\n }\n }\n else {\n const d = getDayIdentifier(parseTimestamp(disabledDays[ day ] + ' 00:00'));\n if (d === t) {\n timestamp.disabled = true;\n break\n }\n }\n }\n }\n\n return timestamp\n}\n\n/**\n * Updates the passed {@link Timestamp} with formatted data (time string, date string, weekday, day of year and workweek)\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @returns The modified {@link Timestamp}\n */\nfunction updateFormatted (timestamp) {\n timestamp.hasTime = true;\n timestamp.time = getTime(timestamp);\n timestamp.date = getDate(timestamp);\n timestamp.weekday = getWeekday(timestamp);\n timestamp.doy = getDayOfYear(timestamp);\n timestamp.workweek = getWorkWeek(timestamp);\n\n return timestamp\n}\n\n/**\n * Returns day of the year (doy) for the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The day of the year\n */\nfunction getDayOfYear (timestamp) {\n if (timestamp.year === 0) return\n return (Date.UTC(timestamp.year, timestamp.month - 1, timestamp.day) - Date.UTC(timestamp.year, 0, 0)) / 24 / 60 / 60 / 1000\n}\n\n/**\n * Returns workweek for the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The work week\n */\nfunction getWorkWeek (timestamp) {\n if (timestamp.year === 0) {\n timestamp = parseTimestamp(today());\n }\n\n const date = makeDate(timestamp);\n if (isNaN(date)) return 0\n\n // Remove time components of date\n const weekday = new Date(date.getFullYear(), date.getMonth(), date.getDate());\n\n // Change date to Thursday same week\n weekday.setDate(weekday.getDate() - ((weekday.getDay() + 6) % 7) + 3);\n\n // Take January 4th as it is always in week 1 (see ISO 8601)\n const firstThursday = new Date(weekday.getFullYear(), 0, 4);\n\n // Change date to Thursday same week\n firstThursday.setDate(firstThursday.getDate() - ((firstThursday.getDay() + 6) % 7) + 3);\n\n // Check if daylight-saving-time-switch occurred and correct for it\n const ds = weekday.getTimezoneOffset() - firstThursday.getTimezoneOffset();\n weekday.setHours(weekday.getHours() - ds);\n\n // Number of weeks between target Thursday and first Thursday\n const weekDiff = (weekday - firstThursday) / (MILLISECONDS_IN_WEEK);\n return 1 + Math.floor(weekDiff)\n}\n\n/**\n * Returns weekday for the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {number} The weekday\n */\nfunction getWeekday (timestamp) {\n let weekday = timestamp.weekday;\n if (timestamp.hasDay) {\n const floor = Math.floor;\n const day = timestamp.day;\n const month = ((timestamp.month + 9) % MONTH_MAX) + 1;\n const century = floor(timestamp.year / 100);\n const year = (timestamp.year % 100) - (timestamp.month <= 2 ? 1 : 0);\n\n weekday = (((day + floor(2.6 * month - 0.2) - 2 * century + year + floor(year / 4) + floor(century / 4)) % 7) + 7) % 7;\n }\n\n return weekday\n}\n\n/**\n * Returns if the passed year is a leap year\n * @param {number} year The year to check (ie: 1999, 2020)\n * @returns {boolean} True if the year is a leap year\n */\nfunction isLeapYear (year) {\n return ((year % 4 === 0) ^ (year % 100 === 0) ^ (year % 400 === 0)) === 1\n}\n\n/**\n * Returns the days of the specified month in a year\n * @param {number} year The year (ie: 1999, 2020)\n * @param {number} month The month (zero-based)\n * @returns {number} The number of days in the month (corrected for leap years)\n */\nfunction daysInMonth (year, month) {\n return isLeapYear(year) ? DAYS_IN_MONTH_LEAP[ month ] : DAYS_IN_MONTH[ month ]\n}\n\n/**\n * Makes a copy of the passed in {@link Timestamp}\n * @param {Timestamp} timestamp The original {@link Timestamp}\n * @returns {Timestamp} A copy of the original {@link Timestamp}\n */\nfunction copyTimestamp (timestamp) {\n return { ...timestamp }\n}\n\n/**\n * Padds a passed in number to length (converts to a string). Good for converting '5' as '05'.\n * @param {number} x The number to pad\n * @param {number} length The length of the required number as a string\n * @returns {string} The padded number (as a string). (ie: 5 = '05')\n */\nfunction padNumber (x, length) {\n let padded = String(x);\n while (padded.length < length) {\n padded = '0' + padded;\n }\n\n return padded\n}\n\n/**\n * Used internally to convert {@link Timestamp} used with 'parsed' or 'parseDate' so the 'date' portion of the {@link Timestamp} is correct.\n * @param {Timestamp} timestamp The (raw) {@link Timestamp}\n * @returns {string} A formatted date ('YYYY-MM-DD')\n */\nfunction getDate (timestamp) {\n let str = `${ padNumber(timestamp.year, 4) }-${ padNumber(timestamp.month, 2) }`;\n\n if (timestamp.hasDay) str += `-${ padNumber(timestamp.day, 2) }`;\n\n return str\n}\n\n/**\n * Used intenally to convert {@link Timestamp} with 'parsed' or 'parseDate' so the 'time' portion of the {@link Timestamp} is correct.\n * @param {Timestamp} timestamp The (raw) {@link Timestamp}\n * @returns {string} A formatted time ('hh:mm')\n */\nfunction getTime (timestamp) {\n if (!timestamp.hasTime) {\n return ''\n }\n\n return `${ padNumber(timestamp.hour, 2) }:${ padNumber(timestamp.minute, 2) }`\n}\n\n/**\n * Returns a formatted string date and time ('YYYY-YY-MM hh:mm')\n * @param {Timestamp} timestamp The {@link Timestamp}\n * @returns {string} A formatted date time ('YYYY-MM-DD HH:mm')\n */\nfunction getDateTime (timestamp) {\n return getDate(timestamp) + ' ' + (timestamp.hasTime ? getTime(timestamp) : '00:00')\n}\n\n/**\n * Returns a {@link Timestamp} of next day from passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {Timestamp} The modified {@link Timestamp} as the next day\n */\nfunction nextDay (timestamp) {\n ++timestamp.day;\n timestamp.weekday = (timestamp.weekday + 1) % DAYS_IN_WEEK;\n if (timestamp.day > DAYS_IN_MONTH_MIN && timestamp.day > daysInMonth(timestamp.year, timestamp.month)) {\n timestamp.day = DAY_MIN;\n ++timestamp.month;\n if (timestamp.month > MONTH_MAX) {\n timestamp.month = MONTH_MIN;\n ++timestamp.year;\n }\n }\n\n return timestamp\n}\n\n/**\n * Returns a {@link Timestamp} of previous day from passed in {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @returns {Timestamp} The modified {@link Timestamp} as the previous day\n */\nfunction prevDay (timestamp) {\n timestamp.day--;\n timestamp.weekday = (timestamp.weekday + 6) % DAYS_IN_WEEK;\n if (timestamp.day < DAY_MIN) {\n timestamp.month--;\n if (timestamp.month < MONTH_MIN) {\n timestamp.year--;\n timestamp.month = MONTH_MAX;\n }\n timestamp.day = daysInMonth(timestamp.year, timestamp.month);\n }\n\n return timestamp\n}\n\n/**\n * An alias for {relativeDays}\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @param {function} [mover=nextDay] The mover function to use (ie: {nextDay} or {prevDay}).\n * @param {number} [days=1] The number of days to move.\n * @param {number[]} [allowedWeekdays=[ 0, 1, 2, 3, 4, 5, 6 ]] An array of numbers representing the weekdays. ie: [0 = Sun, ..., 6 = Sat].\n * @returns The modified {@link Timestamp}\n */\nfunction moveRelativeDays (timestamp, mover = nextDay, days = 1, allowedWeekdays = [ 0, 1, 2, 3, 4, 5, 6 ]) {\n return relativeDays(timestamp, mover, days, allowedWeekdays)\n}\n\n/**\n * Moves the {@link Timestamp} the number of relative days\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @param {function} [mover=nextDay] The mover function to use (ie: {nextDay} or {prevDay}).\n * @param {number} [days=1] The number of days to move.\n * @param {number[]} [allowedWeekdays=[ 0, 1, 2, 3, 4, 5, 6 ]] An array of numbers representing the weekdays. ie: [0 = Sun, ..., 6 = Sat].\n * @returns The modified {@link Timestamp}\n */\nfunction relativeDays (timestamp, mover = nextDay, days = 1, allowedWeekdays = [ 0, 1, 2, 3, 4, 5, 6 ]) {\n if (!allowedWeekdays.includes(timestamp.weekday) && timestamp.weekday === 0 && mover === nextDay) {\n ++days;\n }\n while (--days >= 0) {\n timestamp = mover(timestamp);\n if (allowedWeekdays.length < 7 && !allowedWeekdays.includes(timestamp.weekday)) {\n ++days;\n }\n }\n\n return timestamp\n}\n\n/**\n * Finds the specified weekday (forward or back) based on the {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to modify\n * @param {number} weekday The weekday number (Sun = 0, ..., Sat = 6)\n * @param {function} [mover=nextDay] The function to use ({prevDay} or {nextDay}).\n * @param {number} [maxDays=6] The number of days to look forward or back.\n * @returns The modified {@link Timestamp}\n */\nfunction findWeekday (timestamp, weekday, mover = nextDay, maxDays = 6) {\n while (timestamp.weekday !== weekday && --maxDays >= 0) timestamp = mover(timestamp);\n return timestamp\n}\n\n/**\n * Returns an array of 0's and mostly 1's representing skipped days (used internally)\n * @param {number[]} weekdays An array of numbers representing the weekdays. ie: [0 = Sun, ..., 6 = Sat].\n * @returns {number[]} An array of 0's and mostly 1's (other numbers may occur previous to skipped days)\n */\nfunction getWeekdaySkips (weekdays) {\n const skips = [ 1, 1, 1, 1, 1, 1, 1 ];\n const filled = [ 0, 0, 0, 0, 0, 0, 0 ];\n for (let i = 0; i < weekdays.length; ++i) {\n filled[ weekdays[ i ] ] = 1;\n }\n for (let k = 0; k < DAYS_IN_WEEK; ++k) {\n let skip = 1;\n for (let j = 1; j < DAYS_IN_WEEK; ++j) {\n const next = (k + j) % DAYS_IN_WEEK;\n if (filled[ next ]) {\n break\n }\n ++skip;\n }\n skips[ k ] = filled[ k ] * skip;\n }\n\n return skips\n}\n\n/**\n * Creates an array of {@link Timestamp}s based on start and end params\n * @param {Timestamp} start The starting {@link Timestamp}\n * @param {Timestamp} end The ending {@link Timestamp}\n * @param {Timestamp} now The relative day\n * @param {number[]} weekdaySkips An array representing available and skipped weekdays\n * @param {string} [disabledBefore] Days before this date are disabled (YYYY-MM-DD)\n * @param {string} [disabledAfter] Days after this date are disabled (YYYY-MM-DD)\n * @param {number[]} [disabledWeekdays] An array representing weekdays that are disabled [0 = Sun, ..., 6 = Sat]\n * @param {string[]} [disabledDays] An array of days in 'YYYY-MM-DD' format. If an array with a pair of dates is in first array, then this is treated as a range.\n * @param {number} [max=42] Max days to do\n * @param {number} [min=0] Min days to do\n * @returns {Timestamp[]} The requested array of {@link Timestamp}s\n */\nfunction createDayList (start, end, now, weekdaySkips, disabledBefore, disabledAfter, disabledWeekdays = [], disabledDays = [], max = 42, min = 0) {\n const stop = getDayIdentifier(end);\n const days = [];\n let current = copyTimestamp(start);\n let currentIdentifier = 0;\n let stopped = currentIdentifier === stop;\n\n if (stop < getDayIdentifier(start)) {\n return days\n }\n\n while ((!stopped || days.length < min) && days.length < max) {\n currentIdentifier = getDayIdentifier(current);\n stopped = stopped || (currentIdentifier > stop && days.length >= min);\n if (stopped) {\n break\n }\n if (weekdaySkips[ current.weekday ] === 0) {\n current = relativeDays(current, nextDay);\n continue\n }\n const day = copyTimestamp(current);\n updateFormatted(day);\n updateRelative(day, now);\n updateDisabled(day, disabledBefore, disabledAfter, disabledWeekdays, disabledDays);\n days.push(day);\n current = relativeDays(current, nextDay);\n }\n\n return days\n}\n\n/**\n * Creates an array of interval {@link Timestamp}s based on params\n * @param {Timestamp} timestamp The starting {@link Timestamp}\n * @param {number} first The starting interval time\n * @param {number} minutes How many minutes between intervals (ie: 60, 30, 15 would be common ones)\n * @param {number} count The number of intervals needed\n * @param {Timestamp} now A relative {@link Timestamp} with time\n * @returns {Timestamp[]} The requested array of interval {@link Timestamp}s\n */\nfunction createIntervalList (timestamp, first, minutes, count, now) {\n const intervals = [];\n\n for (let i = 0; i < count; ++i) {\n const mins = (first + i) * minutes;\n const ts = copyTimestamp(timestamp);\n intervals.push(updateMinutes(ts, mins, now));\n }\n\n return intervals\n}\n\n/**\n * @callback getOptions\n * @param {Timestamp} timestamp A {@link Timestamp} object\n * @param {boolean} short True if using short options\n * @returns {Object} An Intl object representing optioons to be used\n */\n\n/**\n * @callback formatter\n * @param {Timestamp} timestamp The {@link Timestamp} being used\n * @param {boolean} short If short format is being requested\n * @returns {string} The localized string of the formatted {@link Timestamp}\n */\n\n/**\n * Returns a function that uses Intl.DateTimeFormat formatting\n * @param {string} locale The locale to use (ie: en-US)\n * @param {getOptions} cb The function to call for options. This function should return an Intl formatted object. The function is passed (timestamp, short).\n * @returns {formatter} The function has params (timestamp, short). The short is to use the short options.\n */\nfunction createNativeLocaleFormatter (locale, cb) {\n const emptyFormatter = (_t, _s) => '';\n\n /* istanbul ignore next */\n if (typeof Intl === 'undefined' || typeof Intl.DateTimeFormat === 'undefined') {\n return emptyFormatter\n }\n\n return (timestamp, short) => {\n try {\n const intlFormatter = new Intl.DateTimeFormat(locale || undefined, cb(timestamp, short));\n return intlFormatter.format(makeDateTime(timestamp))\n }\n catch (e) /* istanbul ignore next */ {\n /* eslint-disable-next-line */\n console.error(`Intl.DateTimeFormat: ${e.message} -> ${getDateTime(timestamp)}`);\n return emptyFormatter\n }\n }\n}\n\n/**\n * Makes a JavaScript Date from the passed {@link Timestamp}\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @param {boolean} utc True to get Date object using UTC\n * @returns {date} A JavaScript Date\n */\nfunction makeDate (timestamp, utc = true) {\n if (utc) return new Date(Date.UTC(timestamp.year, timestamp.month - 1, timestamp.day, 0, 0))\n return new Date(timestamp.year, timestamp.month - 1, timestamp.day, 0, 0)\n}\n\n/**\n * Makes a JavaScript Date from the passed {@link Timestamp} (with time)\n * @param {Timestamp} timestamp The {@link Timestamp} to use\n * @param {boolean} utc True to get Date object using UTC\n * @returns {date} A JavaScript Date\n */\nfunction makeDateTime (timestamp, utc = true) {\n if (utc) return new Date(Date.UTC(timestamp.year, timestamp.month - 1, timestamp.day, timestamp.hour, timestamp.minute))\n return new Date(timestamp.year, timestamp.month - 1, timestamp.day, timestamp.hour, timestamp.minute)\n}\n\n// validate a number IS a number\n/**\n * Teting is passed value is a number\n * @param {(string|number)} input The value to use\n * @returns {boolean} True if a number (not floating point)\n */\nfunction validateNumber (input) {\n return isFinite(parseInt(input, 10))\n}\n\n/**\n * Given an array of {@link Timestamp}s, finds the max date (and possible time)\n * @param {Timestamp[]} timestamps This is an array of {@link Timestamp}s\n * @param {boolean=} useTime Default false; if true, uses time in the comparison as well\n * @returns The {@link Timestamp} with the highest date (and possibly time) value\n */\nfunction maxTimestamp (timestamps, useTime = false) {\n const func = useTime === true ? getDayTimeIdentifier : getDayIdentifier;\n return timestamps.reduce((prev, cur) => {\n return Math.max(func(prev), func(cur)) === func(prev) ? prev : cur\n })\n}\n\n/**\n * Given an array of {@link Timestamp}s, finds the min date (and possible time)\n * @param {Timestamp[]} timestamps This is an array of {@link Timestamp}s\n * @param {boolean=} useTime Default false; if true, uses time in the comparison as well\n * @returns The {@link Timestamp} with the lowest date (and possibly time) value\n */\n function minTimestamp (timestamps, useTime = false) {\n const func = useTime === true ? getDayTimeIdentifier : getDayIdentifier;\n return timestamps.reduce((prev, cur) => {\n return Math.min(func(prev), func(cur)) === func(prev) ? prev : cur\n })\n}\n\n/**\n * Determines if the passed {@link Timestamp} is between (or equal) to two {@link Timestamp}s (range)\n * @param {Timestamp} timestamp The {@link Timestamp} for testing\n * @param {Timestamp} startTimestamp The starting {@link Timestamp}\n * @param {Timestamp} endTimestamp The ending {@link Timestamp}\n * @param {boolean=} useTime If true, use time from the {@link Timestamp}s\n * @returns {boolean} True if {@link Timestamp} is between (or equal) to two {@link Timestamp}s (range)\n */\nfunction isBetweenDates (timestamp, startTimestamp, endTimestamp, useTime /* = false */) {\n const cd = getDayIdentifier(timestamp) + (useTime === true ? getTimeIdentifier(timestamp) : 0);\n const sd = getDayIdentifier(startTimestamp) + (useTime === true ? getTimeIdentifier(startTimestamp) : 0);\n const ed = getDayIdentifier(endTimestamp) + (useTime === true ? getTimeIdentifier(endTimestamp) : 0);\n\n return cd >= sd && cd <= ed\n}\n\n/**\n * Determine if two ranges of {@link Timestamp}s overlap each other\n * @param {Timestamp} startTimestamp The starting {@link Timestamp} of first range\n * @param {Timestamp} endTimestamp The endinging {@link Timestamp} of first range\n * @param {Timestamp} firstTimestamp The starting {@link Timestamp} of second range\n * @param {Timestamp} lastTimestamp The ending {@link Timestamp} of second range\n * @returns {boolean} True if the two ranges overlap each other\n */\nfunction isOverlappingDates (startTimestamp, endTimestamp, firstTimestamp, lastTimestamp) {\n const start = getDayIdentifier(startTimestamp);\n const end = getDayIdentifier(endTimestamp);\n const first = getDayIdentifier(firstTimestamp);\n const last = getDayIdentifier(lastTimestamp);\n return (\n (start >= first && start <= last) // overlap left\n || (end >= first && end <= last) // overlap right\n || (first >= start && end >= last) // surrounding\n )\n}\n\n/**\n * Add or decrements years, months, days, hours or minutes to a timestamp\n * @param {Timestamp} timestamp The {@link Timestamp} object\n * @param {Object} options configuration data\n * @param {number=} options.year If positive, adds years. If negative, removes years.\n * @param {number=} options.month If positive, adds months. If negative, removes month.\n * @param {number=} options.day If positive, adds days. If negative, removes days.\n * @param {number=} options.hour If positive, adds hours. If negative, removes hours.\n * @param {number=} options.minute If positive, adds minutes. If negative, removes minutes.\n * @returns {Timestamp} A modified copy of the passed in {@link Timestamp}\n */\nfunction addToDate (timestamp, options) {\n const ts = copyTimestamp(timestamp);\n let minType;\n __forEachObject(options, (value, key) => {\n if (ts[ key ] !== undefined) {\n ts[ key ] += parseInt(value, 10);\n const indexType = NORMALIZE_TYPES.indexOf(key);\n if (indexType !== -1) {\n if (minType === undefined) {\n minType = indexType;\n }\n else {\n /* istanbul ignore next */\n minType = Math.min(indexType, minType);\n }\n }\n }\n });\n\n // normalize timestamp\n if (minType !== undefined) {\n __normalize(ts, NORMALIZE_TYPES[ minType ]);\n }\n updateFormatted(ts);\n return ts\n}\n\nconst NORMALIZE_TYPES = [ 'minute', 'hour', 'day', 'month' ];\n\n// addToDate helper\nfunction __forEachObject (obj, cb) {\n Object.keys(obj).forEach(k => cb(obj[ k ], k));\n}\n\n// normalize minutes\nfunction __normalizeMinute (ts) {\n if (ts.minute >= MINUTES_IN_HOUR || ts.minute < 0) {\n const hours = Math.floor(ts.minute / MINUTES_IN_HOUR);\n ts.minute -= hours * MINUTES_IN_HOUR;\n ts.hour += hours;\n __normalizeHour(ts);\n }\n return ts\n}\n\n// normalize hours\nfunction __normalizeHour (ts) {\n if (ts.hour >= HOURS_IN_DAY || ts.hour < 0) {\n const days = Math.floor(ts.hour / HOURS_IN_DAY);\n ts.hour -= days * HOURS_IN_DAY;\n ts.day += days;\n __normalizeDay(ts);\n }\n return ts\n}\n\n// normalize days\nfunction __normalizeDay (ts) {\n __normalizeMonth(ts);\n let dim = daysInMonth(ts.year, ts.month);\n if (ts.day > dim) {\n ++ts.month;\n if (ts.month > MONTH_MAX) {\n __normalizeMonth(ts);\n }\n let days = ts.day - dim;\n dim = daysInMonth(ts.year, ts.month);\n do {\n if (days > dim) {\n ++ts.month;\n if (ts.month > MONTH_MAX) {\n __normalizeMonth(ts);\n }\n days -= dim;\n dim = daysInMonth(ts.year, ts.month);\n }\n } while (days > dim)\n ts.day = days;\n }\n else if (ts.day <= 0) {\n let days = -1 * ts.day;\n --ts.month;\n if (ts.month <= 0) {\n __normalizeMonth(ts);\n }\n dim = daysInMonth(ts.year, ts.month);\n do {\n if (days > dim) /* istanbul ignore next */ {\n days -= dim;\n --ts.month;\n if (ts.month <= 0) {\n __normalizeMonth(ts);\n }\n dim = daysInMonth(ts.year, ts.month);\n }\n } while (days > dim)\n ts.day = dim - days;\n }\n return ts\n}\n\n// normalize months\nfunction __normalizeMonth (ts) {\n if (ts.month > MONTH_MAX) {\n const years = Math.floor(ts.month / MONTH_MAX);\n ts.month = ts.month % MONTH_MAX;\n ts.year += years;\n }\n else if (ts.month < MONTH_MIN) {\n ts.month += MONTH_MAX;\n --ts.year;\n }\n return ts\n}\n\n// normalize all\nfunction __normalize (ts, type) {\n switch (type) {\n case 'minute':\n return __normalizeMinute(ts)\n case 'hour':\n return __normalizeHour(ts)\n case 'day':\n return __normalizeDay(ts)\n case 'month':\n return __normalizeMonth(ts)\n }\n}\n\n/**\n * Returns number of days between two {@link Timestamp}s\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n * @returns Number of days\n */\nfunction daysBetween (ts1, ts2) {\n const diff = diffTimestamp(ts1, ts2, true);\n return Math.floor(diff / MILLISECONDS_IN_DAY)\n}\n\n/**\n * Returns number of weeks between two {@link Timestamp}s\n * @param {Timestamp} ts1 The first {@link Timestamp}\n * @param {Timestamp} ts2 The second {@link Timestamp}\n */\n function weeksBetween (ts1, ts2) {\n let t1 = copyTimestamp(ts1);\n let t2 = copyTimestamp(ts2);\n t1 = findWeekday(t1, 0);\n t2 = findWeekday(t2, 6);\n return Math.ceil(daysBetween(t1, t2) / DAYS_IN_WEEK)\n}\n\n// Known dates - starting week on a monday to conform to browser\nconst weekdayDateMap = {\n Sun: new Date('2020-01-05T00:00:00.000Z'),\n Mon: new Date('2020-01-06T00:00:00.000Z'),\n Tue: new Date('2020-01-07T00:00:00.000Z'),\n Wed: new Date('2020-01-08T00:00:00.000Z'),\n Thu: new Date('2020-01-09T00:00:00.000Z'),\n Fri: new Date('2020-01-10T00:00:00.000Z'),\n Sat: new Date('2020-01-11T00:00:00.000Z')\n};\n\nfunction getWeekdayFormatter () {\n const emptyFormatter = (_d, _t) => '';\n const options = {\n long: { timeZone: 'UTC', weekday: 'long' },\n short: { timeZone: 'UTC', weekday: 'short' },\n narrow: { timeZone: 'UTC', weekday: 'narrow' }\n };\n\n /* istanbul ignore next */\n if (typeof Intl === 'undefined' || typeof Intl.DateTimeFormat === 'undefined') {\n return emptyFormatter\n }\n\n // type = 'narrow', 'short', 'long'\n function weekdayFormatter (weekday, type, locale) {\n try {\n const intlFormatter = new Intl.DateTimeFormat(locale || undefined, options[ type ] || options[ 'long' ]);\n return intlFormatter.format(weekdayDateMap[ weekday ])\n }\n catch (e) /* istanbul ignore next */ {\n /* eslint-disable-next-line */\n console.error(`Intl.DateTimeFormat: ${e.message} -> day of week: ${ weekday }`);\n return emptyFormatter\n }\n }\n\n return weekdayFormatter\n}\n\nfunction getWeekdayNames (type, locale) {\n const shortWeekdays = Object.keys(weekdayDateMap);\n const weekdayFormatter = getWeekdayFormatter();\n return shortWeekdays.map(weekday => weekdayFormatter(weekday, type, locale))\n}\n\nfunction getMonthFormatter () {\n const emptyFormatter = (_m, _t) => '';\n const options = {\n long: { timeZone: 'UTC', month: 'long' },\n short: { timeZone: 'UTC', month: 'short' },\n narrow: { timeZone: 'UTC', month: 'narrow' }\n };\n\n /* istanbul ignore next */\n if (typeof Intl === 'undefined' || typeof Intl.DateTimeFormat === 'undefined') {\n return emptyFormatter\n }\n\n // type = 'narrow', 'short', 'long'\n function monthFormatter (month, type, locale) {\n try {\n const intlFormatter = new Intl.DateTimeFormat(locale || undefined, options[ type ] || options[ 'long' ]);\n const date = new Date();\n date.setDate(1);\n date.setMonth(month);\n return intlFormatter.format(date)\n }\n catch (e) /* istanbul ignore next */ {\n /* eslint-disable-next-line */\n console.error(`Intl.DateTimeFormat: ${e.message} -> month: ${ month }`);\n return emptyFormatter\n }\n }\n\n return monthFormatter\n}\n\nfunction getMonthNames (type, locale) {\n const monthFormatter = getMonthFormatter();\n return [...Array(12).keys()]\n .map(month => monthFormatter(month, type, locale))\n}\n\nfunction convertToUnit (input, unit = 'px') {\n if (input == null || input === '') {\n return undefined\n }\n else if (isNaN(input)) {\n return String(input)\n }\n else if (input === 'auto') {\n return input\n }\n else {\n return `${ Number(input) }${ unit }`\n }\n}\n\nfunction indexOf (array, cb) {\n for (let i = 0; i < array.length; i++) {\n if (cb(array[ i ], i) === true) {\n return i\n }\n }\n return -1\n}\n\nfunction minCharWidth (str, count) {\n if (count === 0) return str\n return str.slice(0, count)\n}\n\nvar ResizeObserver$1 = {\n name: 'ResizeObserver',\n\n mounted (el, { modifiers, value }) {\n if (!value) return // callback\n\n const opts = {};\n opts.callback = value;\n opts.size = { width: 0, height: 0 };\n\n opts.observer = new ResizeObserver(entries => {\n const rect = entries[ 0 ].contentRect;\n if (rect.width !== opts.size.width || rect.height !== opts.size.height) {\n opts.size.width = rect.width;\n opts.size.height = rect.height;\n opts.callback(opts.size);\n }\n });\n\n // start the observing\n opts.observer.observe(el);\n\n // save to element\n el.__onResizeObserver = opts;\n },\n\n beforeUnmount (el) {\n if (!el.__onResizeObserver) return\n const { observer } = el.__onResizeObserver;\n observer.unobserve(el);\n delete el.__onResizeObserver;\n }\n};\n\n/**\n * The main QCalendar wrapper\n * All others are a child to this one\n */\n\nfunction useCalendar (props, renderFunc, {\n scrollArea,\n pane\n}) {\n if (!renderFunc) {\n const msg = '[error: renderCalendar] no renderFunc has been supplied to useCalendar';\n console.error(msg);\n throw new Error(msg)\n }\n\n const size = reactive({ width: 0, height: 0 }),\n rootRef = ref(null);\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n const scrollWidth = computed(() => {\n return props.noScroll !== true\n ? scrollArea.value && pane.value && size.height // force recalc with height change\n ? (scrollArea.value.offsetWidth - pane.value.offsetWidth)\n : 0\n : 0\n });\n\n function __initCalendar () {\n //\n }\n\n function __renderCalendar () {\n const data = {\n ref: rootRef,\n role: 'complementary',\n lang: props.locale,\n class: {\n 'q-calendar--dark': props.dark === true,\n 'q-calendar': true,\n 'q-calendar__bordered': props.bordered === true\n }\n };\n\n return withDirectives(\n h('div', data, [\n renderFunc()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]\n )\n\n // return h('div', data, [\n // renderFunc()\n // ])\n }\n\n return {\n rootRef,\n scrollWidth,\n __initCalendar,\n __renderCalendar\n }\n}\n\n// common composables\n\nconst useCommonProps = {\n modelValue: { // v-model\n type: String,\n default: today(),\n validator: v => v === '' || validateTimestamp(v)\n },\n weekdays: {\n type: Array,\n default: () => [ 0, 1, 2, 3, 4, 5, 6 ]\n },\n dateType: {\n type: String,\n default: 'round',\n validator: v => [ 'round', 'rounded', 'square' ].includes(v)\n },\n weekdayAlign: {\n type: String,\n default: 'center',\n validator: v => [ 'left', 'center', 'right' ].includes(v)\n },\n dateAlign: {\n type: String,\n default: 'center',\n validator: v => [ 'left', 'center', 'right' ].includes(v)\n },\n bordered: Boolean,\n dark: Boolean,\n noAria: Boolean,\n noActiveDate: Boolean,\n noHeader: Boolean,\n noScroll: Boolean,\n shortWeekdayLabel: Boolean,\n noDefaultHeaderText: Boolean,\n noDefaultHeaderBtn: Boolean,\n minWeekdayLabel: {\n type: [ Number, String ],\n default: 1\n },\n weekdayBreakpoints: {\n type: Array,\n default: () => [ 75, 35 ],\n validator: v => v.length === 2\n },\n locale: {\n type: String,\n default: 'en-US'\n },\n animated: Boolean,\n transitionPrev: {\n type: String,\n default: 'slide-right'\n },\n transitionNext: {\n type: String,\n default: 'slide-left'\n },\n disabledDays: Array,\n disabledBefore: String,\n disabledAfter: String,\n disabledWeekdays: {\n type: Array,\n default: () => []\n },\n dragEnterFunc: {\n type: Function\n // event, timestamp\n },\n dragOverFunc: {\n type: Function\n // event, timestamp\n },\n dragLeaveFunc: {\n type: Function\n // event, timestamp\n },\n dropFunc: {\n type: Function\n // event, timestamp\n },\n selectedDates: {\n type: Array,\n default: () => []\n },\n selectedStartEndDates: {\n type: Array,\n default: () => []\n },\n hoverable: Boolean,\n focusable: Boolean,\n focusType: {\n type: Array,\n default: ['date'],\n validator: v => {\n let val = true;\n // v is an array of selected types\n v.forEach(type => {\n if ([ 'day', 'date', 'weekday', 'interval', 'time', 'resource', 'task' ].includes(type) !== true) {\n val = false;\n }\n });\n return val\n }\n }\n};\n\nfunction useCommon (props, {\n startDate,\n endDate,\n times\n}) {\n const weekdaySkips = computed(() => getWeekdaySkips(props.weekdays));\n const parsedStart = computed(() => parseTimestamp(startDate.value));\n const parsedEnd = computed(() => {\n if (endDate.value === '0000-00-00') {\n return endOfWeek(parsedStart.value)\n }\n return parseTimestamp(endDate.value)\n });\n\n // different from 'createDayList' in useIntervals\n // const days = computed(() => createDayList(\n // parsedStart.value,\n // parsedEnd.value,\n // times.today,\n // weekdaySkips.value,\n // props.disabledBefore,\n // props.disabledAfter,\n // props.disabledWeekdays,\n // props.disabledDays\n // ))\n\n const dayFormatter = computed(() => {\n const options = { timeZone: 'UTC', day: 'numeric' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (_tms, _short) => options\n )\n });\n\n const weekdayFormatter = computed(() => {\n const longOptions = { timeZone: 'UTC', weekday: 'long' };\n const shortOptions = { timeZone: 'UTC', weekday: 'short' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (_tms, short) => (short ? shortOptions : longOptions)\n )\n });\n\n const ariaDateFormatter = computed(() => {\n const longOptions = { timeZone: 'UTC', dateStyle: 'full' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (_tms) => longOptions\n )\n });\n\n function arrayHasDate (arr, timestamp) {\n return arr && arr.length > 0 && arr.includes(timestamp.date)\n }\n\n function checkDays (arr, timestamp) {\n const days = {\n firstDay: false,\n betweenDays: false,\n lastDay: false\n };\n\n // array must have two dates ('YYYY-MM-DD') in it\n if (arr && arr.length === 2) {\n const current = getDayIdentifier(timestamp);\n const first = getDayIdentifier(parsed(arr[ 0 ]));\n const last = getDayIdentifier(parsed(arr[ 1 ]));\n days.firstDay = first === current;\n days.lastDay = last === current;\n days.betweenDays = first < current && last > current;\n }\n return days\n }\n\n function getRelativeClasses (timestamp, outside = false, selectedDays = [], startEndDays = [], hover = false) {\n const isSelected = arrayHasDate(selectedDays, timestamp);\n const { firstDay, lastDay, betweenDays } = checkDays(startEndDays, timestamp);\n\n return {\n 'q-past-day': firstDay !== true && betweenDays !== true && lastDay !== true && isSelected !== true && outside !== true && timestamp.past,\n 'q-future-day': firstDay !== true && betweenDays !== true && lastDay !== true && isSelected !== true && outside !== true && timestamp.future,\n 'q-outside': outside, // outside the current month\n 'q-current-day': timestamp.current,\n 'q-selected': isSelected,\n 'q-range-first': firstDay === true,\n 'q-range': betweenDays === true,\n 'q-range-last': lastDay === true,\n 'q-range-hover': hover === true && (firstDay === true || lastDay === true || betweenDays === true),\n 'q-disabled-day disabled': timestamp.disabled === true\n }\n }\n\n function startOfWeek (timestamp) {\n return getStartOfWeek(timestamp, props.weekdays, times.today)\n }\n\n function endOfWeek (timestamp) {\n return getEndOfWeek(timestamp, props.weekdays, times.today)\n }\n\n function dayStyleDefault (timestamp) {\n return undefined\n }\n\n return {\n weekdaySkips,\n parsedStart,\n parsedEnd,\n // days,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n arrayHasDate,\n checkDays,\n getRelativeClasses,\n startOfWeek,\n endOfWeek,\n dayStyleDefault\n }\n}\n\nfunction scrollTo (scrollTarget, offset) {\n if (scrollTarget === window) {\n window.scrollTo(window.pageXOffset || window.scrollX || document.body.scrollLeft || 0, offset);\n return\n }\n scrollTarget.scrollTop = offset;\n}\n\nfunction scrollToHorizontal (scrollTarget, offset) {\n if (scrollTarget === window) {\n window.scrollTo(offset, window.pageYOffset || window.scrollY || document.body.scrollTop || 0);\n return\n }\n scrollTarget.scrollLeft = offset;\n}\n\nfunction getVerticalScrollPosition (scrollTarget) {\n return scrollTarget === window\n ? window.pageYOffset || window.scrollY || document.body.scrollTop || 0\n : scrollTarget.scrollTop\n}\n\nfunction getHorizontalScrollPosition (scrollTarget) {\n return scrollTarget === window\n ? window.pageXOffset || window.scrollX || document.body.scrollLeft || 0\n : scrollTarget.scrollLeft\n}\n\nfunction animVerticalScrollTo (el, to, duration = 0 /* , prevTime */) {\n const prevTime = arguments[ 3 ] === void 0 ? performance.now() : arguments[ 3 ];\n const pos = getVerticalScrollPosition(el);\n\n if (duration <= 0) {\n if (pos !== to) {\n scrollTo(el, to);\n }\n return\n }\n\n requestAnimationFrame(nowTime => {\n const frameTime = nowTime - prevTime;\n const newPos = pos + (to - pos) / Math.max(frameTime, duration) * frameTime;\n scrollTo(el, newPos);\n if (newPos !== to) {\n animVerticalScrollTo(el, to, duration - frameTime, nowTime);\n }\n });\n}\n\nfunction animHorizontalScrollTo (el, to, duration = 0 /* , prevTime */) {\n const prevTime = arguments[ 3 ] === void 0 ? performance.now() : arguments[ 3 ];\n const pos = getHorizontalScrollPosition(el);\n\n if (duration <= 0) {\n if (pos !== to) {\n scrollToHorizontal(el, to);\n }\n return\n }\n\n requestAnimationFrame(nowTime => {\n const frameTime = nowTime - prevTime;\n const newPos = pos + (to - pos) / Math.max(frameTime, duration) * frameTime;\n setHorizontalScroll(el, newPos);\n if (newPos !== to) {\n animHorizontalScrollTo(el, to, duration - frameTime, nowTime);\n }\n });\n}\n\n// interval composables\n\nconst useIntervalProps = {\n view: {\n type: String,\n validator: v => [ 'day', 'week', 'month', 'month-interval' ].includes(v),\n default: 'day'\n },\n shortIntervalLabel: Boolean,\n intervalHeight: {\n type: [ Number, String ],\n default: 40,\n validator: validateNumber\n },\n intervalMinutes: {\n type: [ Number, String ],\n default: 60,\n validator: validateNumber\n },\n intervalStart: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n intervalCount: {\n type: [ Number, String ],\n default: 24,\n validator: validateNumber\n },\n intervalStyle: {\n type: Function,\n default: null\n },\n intervalClass: {\n type: Function,\n default: null\n },\n weekdayStyle: {\n type: Function,\n default: null\n },\n weekdayClass: {\n type: Function,\n default: null\n },\n showIntervalLabel: {\n type: Function,\n default: null\n },\n hour24Format: Boolean,\n timeClicksClamped: Boolean,\n dateHeader: {\n type: String,\n default: 'stacked',\n validator: v => [ 'stacked', 'inline', 'inverted' ].includes(v)\n }\n};\n\nconst useSchedulerProps = {\n view: {\n type: String,\n validator: v => [ 'day', 'week', 'month', 'month-interval' ].includes(v),\n default: 'day'\n },\n modelResources: {\n type: Array\n // required: true\n },\n resourceKey: {\n type: [ String, Number ],\n default: 'id'\n },\n resourceLabel: {\n type: [ String, Number ],\n default: 'label'\n },\n resourceHeight: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n resourceMinHeight: {\n type: [ Number, String ],\n default: 70,\n validator: validateNumber\n },\n resourceStyle: {\n type: Function,\n default: null\n },\n resourceClass: {\n type: Function,\n default: null\n },\n weekdayStyle: {\n type: Function,\n default: null\n },\n weekdayClass: {\n type: Function,\n default: null\n },\n dayStyle: {\n type: Function,\n default: null\n },\n dayClass: {\n type: Function,\n default: null\n },\n dateHeader: {\n type: String,\n default: 'stacked',\n validator: v => [ 'stacked', 'inline', 'inverted' ].includes(v)\n }\n};\n\nconst useAgendaProps = {\n view: {\n type: String,\n validator: v => [ 'day', 'week', 'month', 'month-interval' ].includes(v),\n default: 'day'\n },\n leftColumnOptions: {\n type: Array\n },\n rightColumnOptions: {\n type: Array\n },\n columnOptionsId: {\n type: String\n },\n columnOptionsLabel: {\n type: String\n },\n weekdayStyle: {\n type: Function,\n default: null\n },\n weekdayClass: {\n type: Function,\n default: null\n },\n dayStyle: {\n type: Function,\n default: null\n },\n dayClass: {\n type: Function,\n default: null\n },\n dateHeader: {\n type: String,\n default: 'stacked',\n validator: v => [ 'stacked', 'inline', 'inverted' ].includes(v)\n },\n dayHeight: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n dayMinHeight: {\n type: [ Number, String ],\n default: 40,\n validator: validateNumber\n }\n};\n\nconst useResourceProps = {\n modelResources: {\n type: Array\n // required: true\n },\n resourceKey: {\n type: [ String, Number ],\n default: 'id'\n },\n resourceLabel: {\n type: [ String, Number ],\n default: 'label'\n },\n resourceHeight: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n resourceMinHeight: {\n type: [ Number, String ],\n default: 70,\n validator: validateNumber\n },\n resourceStyle: {\n type: Function,\n default: null\n },\n resourceClass: {\n type: Function,\n default: null\n },\n cellWidth: {\n type: [ Number, String ],\n default: 100\n },\n intervalHeaderHeight: {\n type: [ Number, String ],\n default: 20,\n validator: validateNumber\n },\n noSticky: Boolean\n};\n\nfunction useInterval (props, {\n weekdaySkips,\n times,\n scrollArea,\n parsedStart,\n parsedEnd,\n maxDays,\n size,\n headerColumnRef\n}) {\n const parsedIntervalStart = computed(() => parseInt(props.intervalStart, 10));\n const parsedIntervalMinutes = computed(() => parseInt(props.intervalMinutes, 10));\n const parsedIntervalCount = computed(() => parseInt(props.intervalCount, 10));\n const parsedIntervalHeight = computed(() => parseFloat(props.intervalHeight));\n const parsedCellWidth = computed(() => {\n let width = 0;\n if (props.cellWidth) {\n width = props.cellWidth;\n }\n else if (size.width > 0 && headerColumnRef.value) {\n width = headerColumnRef.value.offsetWidth / (props.columnCount > 1 ? props.columnCount : maxDays.value);\n }\n return width\n });\n const parsedStartMinute = computed(() => parsedIntervalStart.value * parsedIntervalMinutes.value);\n const bodyHeight = computed(() => parsedIntervalCount.value * parsedIntervalHeight.value);\n const bodyWidth = computed(() => parsedIntervalCount.value * parsedCellWidth.value);\n\n const parsedWeekStart = computed(() => startOfWeek(parsedStart.value));\n const parsedWeekEnd = computed(() => endOfWeek(parsedEnd.value));\n\n /**\n * Returns the days of the specified week\n */\n const days = computed(() => {\n return createDayList(\n parsedStart.value,\n parsedEnd.value,\n times.today,\n weekdaySkips.value,\n props.disabledBefore,\n props.disabledAfter,\n props.disabledWeekdays,\n props.disabledDays,\n maxDays.value\n )\n });\n\n /**\n * Returns an interval list for each day\n */\n const intervals = computed(() => {\n return days.value.map(day => createIntervalList(\n day,\n parsedIntervalStart.value,\n parsedIntervalMinutes.value,\n parsedIntervalCount.value,\n times.now\n ))\n });\n\n function startOfWeek (timestamp) {\n return getStartOfWeek(timestamp, props.weekdays, times.today)\n }\n\n function endOfWeek (timestamp) {\n return getEndOfWeek(timestamp, props.weekdays, times.today)\n }\n\n /**\n * Returns true if Timestamp is within passed Array of Timestamps\n * @param {Array.} arr\n * @param {Timestamp} timestamp\n */\n function arrayHasDateTime (arr, timestamp) {\n return arr && arr.length > 0 && arr.includes(getDateTime(timestamp))\n }\n\n /**\n * Takes an array of 2 Timestamps and validates the passed Timestamp (second param)\n * @param {Array.} arr\n * @param {Timestamp} timestamp\n * @returns {Object.<{firstDay: Boolean, betweenDays: Boolean, lastDay: Boolean}>}\n */\n function checkIntervals (arr, timestamp) {\n const days = {\n firstDay: false,\n betweenDays: false,\n lastDay: false\n };\n\n // array must have two dates ('YYYY-MM-DD HH:MM') in it\n if (arr && arr.length === 2) {\n const current = getDayTimeIdentifier(timestamp);\n const first = getDayTimeIdentifier(parsed(arr[ 0 ]));\n const last = getDayTimeIdentifier(parsed(arr[ 1 ]));\n days.firstDay = first === current;\n days.lastDay = last === current;\n days.betweenDays = first < current && last > current;\n }\n return days\n }\n\n function getIntervalClasses (interval, selectedDays = [], startEndDays = []) {\n const isSelected = arrayHasDateTime(selectedDays, interval);\n const { firstDay, lastDay, betweenDays } = checkIntervals(startEndDays, interval);\n\n return {\n 'q-selected': isSelected,\n 'q-range-first': firstDay === true,\n 'q-range': betweenDays === true,\n 'q-range-last': lastDay === true,\n 'q-disabled-interval disabled': interval.disabled === true\n }\n }\n\n function getResourceClasses (interval, selectedDays = [], startEndDays = []) {\n return []\n }\n\n /**\n * Returns a function that uses the locale property\n * The function takes a timestamp and a boolean (to indicate short format)\n * and returns a formatted hour value from the browser\n */\n const intervalFormatter = computed(() => {\n const longOptions = { timeZone: 'UTC', hour12: !props.hour24Format, hour: '2-digit', minute: '2-digit' };\n const shortOptions = { timeZone: 'UTC', hour12: !props.hour24Format, hour: 'numeric', minute: '2-digit' };\n const shortHourOptions = { timeZone: 'UTC', hour12: !props.hour24Format, hour: 'numeric' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (tms, short) => (short ? (tms.minute === 0 ? shortHourOptions : shortOptions) : longOptions)\n )\n });\n\n /**\n * Returns a function that uses the locale property\n * The function takes a timestamp and a boolean (to indicate short format)\n * and returns a fully formatted timestamp string from the browser\n * that can be read with screen readers.\n * Note: This value also contains the time.\n */\n const ariaDateTimeFormatter = computed(() => {\n const longOptions = { timeZone: 'UTC', dateStyle: 'full', timeStyle: 'short' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (_tms) => longOptions\n )\n });\n\n function showIntervalLabelDefault (interval) {\n const first = intervals.value[ 0 ][ 0 ];\n const isFirst = first.hour === interval.hour && first.minute === interval.minute;\n return !isFirst && interval.minute === 0\n }\n\n function showResourceLabelDefault (resource) {\n }\n\n function styleDefault (interval) {\n return undefined\n }\n\n /**\n * Returns a Timestamp based on mouse click position on the calendar\n * Also handles touch events\n * This function is used for vertical intervals\n * @param {MouseEvent} e Browser MouseEvent\n * @param {Timestamp} day Timestamp associated with event\n * @param {Boolean} clamp Whether to clamp values to nearest interval\n * @param {Timestamp*} now Optional Timestamp for now date/time\n */\n function getTimestampAtEventInterval (e, day, clamp = false, now = undefined) {\n let timestamp = copyTimestamp(day);\n const bounds = (e.currentTarget).getBoundingClientRect();\n const touchEvent = e;\n const mouseEvent = e;\n const touches = touchEvent.changedTouches || touchEvent.touches;\n const clientY = touches && touches[ 0 ] ? touches[ 0 ].clientY : mouseEvent.clientY;\n const addIntervals = (clientY - bounds.top) / parsedIntervalHeight.value;\n const addMinutes = Math.floor((clamp ? Math.floor(addIntervals) : addIntervals) * parsedIntervalMinutes.value);\n\n if (addMinutes !== 0) {\n timestamp = addToDate(timestamp, { minute: addMinutes });\n }\n\n if (now) {\n updateRelative(timestamp, now, true);\n }\n\n return timestamp\n }\n\n /**\n * Returns a Timestamp based on mouse click position on the calendar\n * Also handles touch events\n * This function is used for vertical intervals\n * @param {MouseEvent} e Browser MouseEvent\n * @param {Timestamp} day Timestamp associated with event\n * @param {Boolean} clamp Whether to clamp values to nearest interval\n * @param {Timestamp*} now Optional Timestamp for now date/time\n */\n function getTimestampAtEvent (e, day, clamp = false, now = undefined) {\n let timestamp = copyTimestamp(day);\n const bounds = (e.currentTarget).getBoundingClientRect();\n const touchEvent = e;\n const mouseEvent = e;\n const touches = touchEvent.changedTouches || touchEvent.touches;\n const clientY = touches && touches[ 0 ] ? touches[ 0 ].clientY : mouseEvent.clientY;\n const addIntervals = (clientY - bounds.top) / parsedIntervalHeight.value;\n const addMinutes = Math.floor((clamp ? Math.floor(addIntervals) : addIntervals) * parsedIntervalMinutes.value);\n\n if (addMinutes !== 0) {\n timestamp = addToDate(timestamp, { minute: addMinutes });\n }\n\n if (now) {\n updateRelative(timestamp, now, true);\n }\n\n return timestamp\n }\n\n /**\n * Returns a Timestamp based on mouse click position on the calendar\n * Also handles touch events\n * This function is used for horizontal intervals\n * @param {MouseEvent} e Browser MouseEvent\n * @param {Timestamp} day Timestamp associated with event\n * @param {Boolean} clamp Whether to clamp values to nearest interval\n * @param {Timestamp*} now Optional Timestamp for now date/time\n */\n function getTimestampAtEventX (e, day, clamp = false, now = undefined) {\n let timestamp = copyTimestamp(day);\n const bounds = (e.currentTarget).getBoundingClientRect();\n const touchEvent = e;\n const mouseEvent = e;\n const touches = touchEvent.changedTouches || touchEvent.touches;\n const clientX = touches && touches[ 0 ] ? touches[ 0 ].clientX : mouseEvent.clientX;\n const addIntervals = (clientX - bounds.left) / parsedCellWidth.value;\n const addMinutes = Math.floor((clamp ? Math.floor(addIntervals) : addIntervals) * parsedIntervalMinutes.value);\n\n if (addMinutes !== 0) {\n timestamp = addToDate(timestamp, { minute: addMinutes });\n }\n\n if (now) {\n updateRelative(timestamp, now, true);\n }\n\n return timestamp\n }\n\n /**\n * Returns the scope for the associated Timestamp\n * This function is used for vertical intervals\n * @param {Timestamp} timestamp\n * @param {Number} columnIndex\n */\n function getScopeForSlot (timestamp, columnIndex) {\n const scope = { timestamp };\n scope.timeStartPos = timeStartPos;\n scope.timeDurationHeight = timeDurationHeight;\n if (columnIndex !== undefined) {\n scope.columnIndex = columnIndex;\n }\n return scope\n }\n\n /**\n * Returns the scope for the associated Timestamp\n * This function is used for horizontal intervals\n * @param {Timestamp} timestamp\n * @param {Number*} index\n */\n function getScopeForSlotX (timestamp, index) {\n const scope = { timestamp: copyTimestamp(timestamp) };\n scope.timeStartPosX = timeStartPosX;\n scope.timeDurationWidth = timeDurationWidth;\n if (index !== undefined) {\n scope.index = index;\n }\n return scope\n }\n\n /**\n * Forces the browser to scroll to the specified time\n * This function is used for vertical intervals\n * @param {String} time in format HH:MM\n * @param {Number*} duration in milliseconds\n */\n function scrollToTime (time, duration = 0) {\n const y = timeStartPos(time);\n\n if (y === false || !scrollArea.value) {\n return false\n }\n\n animVerticalScrollTo (scrollArea.value, y, duration);\n\n return true\n }\n\n /**\n * Forces the browser to scroll to the specified time\n * This function is used for horizontal intervals\n * @param {String} time in format HH:MM\n * @param {Number*} duration in milliseconds\n */\n function scrollToTimeX (time, duration = 0) {\n const x = timeStartPosX(time);\n\n if (x === false || !scrollArea.value) {\n return false\n }\n\n animHorizontalScrollTo (scrollArea.value, x, duration);\n\n return true\n }\n\n function timeDurationHeight (minutes) {\n return minutes / parsedIntervalMinutes.value * parsedIntervalHeight.value\n }\n\n function timeDurationWidth (minutes) {\n return minutes / parsedIntervalMinutes.value * parsedCellWidth.value\n }\n\n function heightToMinutes (height) {\n return parseInt(height, 10) * parsedIntervalMinutes.value / parsedIntervalHeight.value\n }\n\n function widthToMinutes (width) {\n return parseInt(width, 10) * parsedIntervalMinutes.value / parsedCellWidth.value\n }\n\n function timeStartPos (time, clamp = true) {\n const minutes = parseTime(time);\n if (minutes === false) return false\n\n const min = parsedStartMinute.value;\n const gap = parsedIntervalCount.value * parsedIntervalMinutes.value;\n const delta = (minutes - min) / gap;\n let y = delta * bodyHeight.value;\n\n if (clamp) {\n if (y < 0) {\n y = 0;\n }\n if (y > bodyHeight.value) {\n y = bodyHeight.value;\n }\n }\n\n return y\n }\n\n function timeStartPosX (time, clamp = true) {\n const minutes = parseTime(time);\n if (minutes === false) return false\n\n const min = parsedStartMinute.value;\n const gap = parsedIntervalCount.value * parsedIntervalMinutes.value;\n const delta = (minutes - min) / gap;\n let x = delta * bodyWidth.value;\n\n if (clamp) {\n if (x < 0) {\n x = 0;\n }\n if (x > bodyWidth.value) {\n x = bodyWidth.value;\n }\n }\n\n return x\n }\n\n return {\n parsedIntervalStart,\n parsedIntervalMinutes,\n parsedIntervalCount,\n parsedIntervalHeight,\n parsedCellWidth,\n parsedStartMinute,\n bodyHeight,\n bodyWidth,\n parsedWeekStart,\n parsedWeekEnd,\n days,\n intervals,\n intervalFormatter,\n ariaDateTimeFormatter,\n arrayHasDateTime,\n checkIntervals,\n getIntervalClasses,\n getResourceClasses,\n showIntervalLabelDefault,\n showResourceLabelDefault,\n styleDefault,\n getTimestampAtEventInterval,\n getTimestampAtEvent,\n getTimestampAtEventX,\n getScopeForSlot,\n getScopeForSlotX,\n scrollToTime,\n scrollToTimeX,\n timeDurationHeight,\n timeDurationWidth,\n heightToMinutes,\n widthToMinutes,\n timeStartPos,\n timeStartPosX\n }\n}\n\n// column composables\n\nconst useColumnProps = {\n columnCount: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n columnIndexStart: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n }\n};\n\n// MaxDays composables\n\n/**\n * export of useMaxDaysProps\n * @returns 'maxDays' property\n */\nconst useMaxDaysProps = {\n maxDays: {\n type: Number,\n default: 1\n }\n};\n\n/**\n * export of useTimesProps\n * @returns 'now' property\n */\nconst useTimesProps = {\n now: {\n type: String,\n validator: v => v === '' || validateTimestamp(v),\n default: ''\n }\n};\n\n/**\n * export of default funtion\n * @param {Object} props object passed to 'setup' function\n */\nfunction useTimes (props) {\n /**\n * 'times' is a reactive object containing 'now' and 'today'\n */\n const times = reactive({\n now: parseTimestamp('0000-00-00 00:00'),\n today: parseTimestamp('0000-00-00')\n });\n\n /**\n * parsedNow is a computed property based on 'props.now' or current date\n */\n const parsedNow = computed(() => (props.now ? parseTimestamp(props.now) : getNow()));\n\n /**\n * watcher if parsedNow should change\n */\n watch(() => parsedNow, val => updateCurrent());\n\n /**\n * sets 'times.now' (relative) to 'times.today' (relative)\n */\n function setCurrent () {\n times.now.current = times.today.current = true;\n times.now.past = times.today.past = false;\n times.now.future = times.today.future = false;\n }\n\n /**\n * updates current dates\n */\n function updateCurrent () {\n const now = parsedNow.value || getNow();\n updateDay(now, times.now);\n updateTime(now, times.now);\n updateDay(now, times.today);\n }\n\n /**\n * return 'Timestamp' with current date and time\n */\n function getNow () {\n return parseDate(new Date())\n }\n\n /**\n * Updates target timestamp date info with now timestamp date info\n * @param {Timestamp} now\n * @param {Timestamp} target\n */\n function updateDay (now, target) {\n if (now.date !== target.date) {\n target.year = now.year;\n target.month = now.month;\n target.day = now.day;\n target.weekday = now.weekday;\n target.date = now.date;\n }\n }\n\n /**\n * Updates target timestamp times with now timestamp times\n * @param {Timestamp} now\n * @param {Timestamp} target\n */\n function updateTime (now, target) {\n if (now.time !== target.time) {\n target.hour = now.hour;\n target.minute = now.minute;\n target.time = now.time;\n }\n }\n\n return {\n times,\n parsedNow,\n setCurrent,\n updateCurrent,\n getNow,\n updateDay,\n updateTime\n }\n}\n\nfunction useRenderValues (props, {\n parsedView,\n parsedValue,\n times\n}) {\n const renderValues = computed(() => {\n const around = parsedValue.value;\n let maxDays = props.maxDays;\n let start = around;\n let end = around;\n switch (parsedView.value) {\n case 'month':\n start = getStartOfMonth(around);\n end = getEndOfMonth(around);\n maxDays = daysInMonth(start.year, start.month);\n break\n case 'week':\n case 'week-agenda':\n case 'week-scheduler':\n start = getStartOfWeek(around, props.weekdays, times.today);\n end = getEndOfWeek(start, props.weekdays, times.today);\n maxDays = props.weekdays.length;\n break\n case 'day':\n case 'scheduler':\n case 'agenda':\n end = moveRelativeDays(copyTimestamp(end), nextDay, maxDays > 1 ? maxDays - 1 : maxDays, props.weekdays);\n updateFormatted(end);\n break\n case 'month-interval':\n case 'month-scheduler':\n case 'month-agenda':\n start = getStartOfMonth(around);\n end = getEndOfMonth(around);\n updateFormatted(end);\n maxDays = daysInMonth(start.year, start.month);\n break\n case 'resource':\n maxDays = 1;\n end = moveRelativeDays(copyTimestamp(end), nextDay, maxDays, props.weekdays);\n updateFormatted(end);\n break\n }\n return { start, end, maxDays }\n });\n\n return {\n renderValues\n }\n}\n\nconst toCamelCase = str => str.replace(/(-\\w)/g, m => m[ 1 ].toUpperCase());\nlet $listeners, $emit;\n\n/**\n * Used by render function to set up specialized mouse events\n * The mouse event will not be set if there is no listener for it to key callbacks to a minimum\n * @param {Object} events undecorated events (ie: 'click-day' will be transformed to 'onClickDay')\n * @param {Function} getEvent callback for event\n * @returns {Object} contents of decorated mouse events\n */\nfunction getMouseEventHandlers (events, getEvent) {\n const on = {};\n for (const eventName in events) {\n const eventOptions = events[ eventName ];\n\n // convert eventName to vue camelCase (decorated)\n const eventKey = toCamelCase('on-' + eventName);\n\n // make sure listeners has been set up properly\n if ($listeners === undefined) {\n // someone forgot to call the default function export\n console.warn('$listeners has not been set up');\n return\n }\n\n // if there is no listener for this, then don't process it\n if ($listeners.value[ eventKey ] === undefined) continue\n\n // https://vuejs.org/v2/guide/render-function.html#Event-amp-Key-Modifiers\n // const prefix = eventOptions.passive ? '&' : ((eventOptions.once ? '~' : '') + (eventOptions.capture ? '!' : ''))\n // const key = prefix + eventOptions.event\n\n // prefix 'on' and capitalize first character\n const key = 'on' + eventOptions.event.charAt(0).toUpperCase() + eventOptions.event.slice(1);\n\n const handler = (event) => {\n const mouseEvent = event;\n if (eventOptions.button === undefined || (mouseEvent.buttons > 0 && mouseEvent.button === eventOptions.button)) {\n if (eventOptions.prevent) {\n mouseEvent.preventDefault();\n }\n if (eventOptions.stop) {\n mouseEvent.stopPropagation();\n }\n $emit(eventName, getEvent(mouseEvent, eventName));\n }\n\n return eventOptions.result\n };\n\n if (key in on) {\n if (Array.isArray(on[ key ])) {\n (on[ key ]).push(handler);\n }\n else {\n on[ key ] = [ on[ key ], handler ];\n }\n }\n else {\n on[ key ] = handler;\n }\n }\n\n return on\n}\n\n/**\n *\n * @param {String} suffix\n * @param {Function} getEvent The callback\n * @returns {Object} contains decorated mouse events based on listeners of that event and for each a callback\n */\nfunction getDefaultMouseEventHandlers (suffix, getEvent) {\n return getMouseEventHandlers(getMouseEventName(suffix), getEvent)\n}\n\n/**\n *\n * @param {String} suffix\n * @returns {Object}\n */\nfunction getMouseEventName (suffix) {\n return {\n [ 'click' + suffix ]: { event: 'click' },\n [ 'contextmenu' + suffix ]: { event: 'contextmenu', prevent: true, result: false },\n [ 'mousedown' + suffix ]: { event: 'mousedown' },\n [ 'mousemove' + suffix ]: { event: 'mousemove' },\n [ 'mouseup' + suffix ]: { event: 'mouseup' },\n [ 'mouseenter' + suffix ]: { event: 'mouseenter' },\n [ 'mouseleave' + suffix ]: { event: 'mouseleave' },\n [ 'touchstart' + suffix ]: { event: 'touchstart' },\n [ 'touchmove' + suffix ]: { event: 'touchmove' },\n [ 'touchend' + suffix ]: { event: 'touchend' }\n }\n}\n\n/**\n *\n * @param {String} suffix\n * @returns {Array} the array or raw listeners (ie: 'click-day' as opposed to 'onClickDay')\n */\nfunction getRawMouseEvents (suffix) {\n return Object.keys(getMouseEventName(suffix))\n}\n\n/**\n * export of default funtion\n * @param {VTTCue.emit} emit\n * @param {Array} listeners on the instance\n */\nfunction useMouse (emit, listeners) {\n $emit = emit;\n $listeners = listeners;\n return {\n getMouseEventHandlers,\n getDefaultMouseEventHandlers,\n getMouseEventName,\n getRawMouseEvents\n }\n}\n\nconst useMoveEmits = [\n 'moved'\n];\n\n/**\n * export of default funtion\n * @param {Object} props object passed to 'setup' function\n */\n\n/**\n * export of default funtion\n * @param {Object} props object passed to 'setup' function\n * @param {Object} param object containing various needed values and functions\n * @param {String} param.parsedView the computed calendar view\n * @param {import('vue').Ref} param.parsedValue computed value (YYYY-YY-MM)\n * @param {Array} param.weekdaySkips an array of 1's and 0's representing if a day is on/off\n * @param {import('vue').Ref} param.direction the direction for animation\n * @param {Number} param.maxDays comes from props.maxDays, not applicable for week or month views\n * @param {import('vue').ReactiveEffect} param.times reactive object (contains `today` and `now` - both Timestamp objects)\n * @param {import('vue').Ref} param.emittedValue reactive sting that is emitted when changed (YYYY-MM-DD)\n * @param {Function} param.emit Vue emit function\n */\nfunction useMove (props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays,\n times,\n emittedValue,\n emit\n}) {\n /**\n * Moves the calendar the desired amount. This is based on the 'view'.\n * A month calendar moves by prev/next month\n * A week calendar moves by prev/next week\n * Other considerations are the 'weekdaySkips'; if a day of the week shoud be displayed (ie: weekends turned off)\n * @param {Number} amount The amount to move (default 1)\n * @fires 'moved' with current Timestamp\n */\n function move (amount = 1) {\n if (amount === 0) {\n emittedValue.value = today();\n return\n }\n let moved = copyTimestamp(parsedValue.value);\n const forward = amount > 0;\n const mover = forward ? nextDay : prevDay;\n const limit = forward ? DAYS_IN_MONTH_MAX : DAY_MIN;\n let count = forward ? amount : -amount;\n direction.value = forward ? 'next' : 'prev';\n const dayCount = weekdaySkips.value.filter(x => x !== 0).length;\n\n while (--count >= 0) {\n switch (parsedView.value) {\n case 'month':\n moved.day = limit;\n mover(moved);\n updateWeekday(moved);\n while (weekdaySkips.value[ moved.weekday ] === 0) {\n moved = addToDate(moved, { day: forward === true ? 1 : -1 });\n }\n break\n case 'week':\n case 'week-agenda':\n case 'week-scheduler':\n relativeDays(moved, mover, dayCount, props.weekdays);\n break\n case 'day':\n case 'scheduler':\n case 'agenda':\n relativeDays(moved, mover, maxDays.value, props.weekdays);\n break\n case 'month-interval':\n case 'month-agenda':\n case 'month-scheduler':\n moved.day = limit;\n mover(moved);\n break\n case 'resource':\n relativeDays(moved, mover, maxDays.value, props.weekdays);\n break\n }\n }\n\n updateWeekday(moved);\n updateFormatted(moved);\n updateDayOfYear(moved);\n updateRelative(moved, times.now);\n\n emittedValue.value = moved.date;\n emit('moved', moved);\n }\n\n return {\n move\n }\n}\n\nconst listenerRE = /^on[A-Z]/;\n\n/**\n * export of default funtion\n * @param {Vue.getCurrentInstance} [vm]\n * @returns {Object} computed listeners on the instance\n */\nfunction useEmitListeners (vm = getCurrentInstance()) {\n return {\n emitListeners: computed(() => {\n const acc = {};\n\n if (vm.vnode !== void 0 && vm.vnode !== null && vm.vnode.props !== null) {\n Object.keys(vm.vnode.props).forEach(key => {\n if (listenerRE.test(key) === true) {\n acc[ key ] = true;\n }\n });\n }\n\n return acc\n })\n }\n}\n\nfunction useFocusHelper () {\n return [\n h('span', {\n ariaHidden: 'true',\n class: 'q-calendar__focus-helper'\n })\n ]\n}\n\nfunction useButton (props, data, slotData) {\n const isFocusable = props.focusable === true && props.focusType.includes('date') === true;\n data.tabindex = isFocusable === true ? 0 : -1;\n return h('button', data, [\n slotData,\n isFocusable === true && useFocusHelper()\n ])\n}\n\n// cellWidth composables\n\n/**\n * export of useStickyProps\n * @returns 'cellWidth' property\n */\n\nconst useCellWidthProps = {\n cellWidth: [ Number, String ],\n};\n\nfunction useCellWidth (props) {\n const isSticky = computed(() => props.cellWidth !== undefined);\n\n return {\n isSticky\n }\n}\n\nconst useCheckChangeEmits = [\n 'change'\n];\n\nfunction useCheckChange (emit, {\n days,\n lastStart,\n lastEnd\n}) {\n function checkChange () {\n if (days.value && days.value.length > 0) {\n const start = days.value[ 0 ].date;\n const end = days.value[ days.value.length - 1 ].date;\n if (lastStart.value === null\n || lastEnd.value === null\n || start !== lastStart.value\n || end !== lastEnd.value\n ) {\n lastStart.value = start;\n lastEnd.value = end;\n emit('change', { start, end, days: days.value });\n return true\n }\n }\n return false\n }\n\n return {\n checkChange\n }\n}\n\nfunction useEvents () {\n function createEvent (name, { bubbles = false, cancelable = false } = {}) {\n try {\n return new CustomEvent(name, { bubbles, cancelable })\n }\n catch (e) {\n // IE doesn't support `new Event()`, so...\n const evt = document.createEvent('Event');\n evt.initEvent(name, bubbles, cancelable);\n return evt\n }\n }\n\n function isKeyCode (evt, keyCodes) {\n return [].concat(keyCodes).includes(evt.keyCode)\n }\n\n return {\n createEvent,\n isKeyCode\n }\n}\n\nconst { isKeyCode } = useEvents();\n\nconst useNavigationProps = {\n useNavigation: Boolean\n};\n\nfunction useKeyboard (props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n}) {\n // pgUp -> 33, pgDown -> 34, end -> 35, home -> 36\n // left -> 37, up -> 38, right -> 39, down -> 40\n // space -> 32, enter -> 13\n\n let initialized = false;\n\n onBeforeUnmount(() => {\n endNavigation();\n });\n\n watch(() => props.useNavigation, val => {\n if (val === true) {\n startNavigation();\n }\n else {\n endNavigation();\n }\n });\n\n // check at start up what should be happening\n if (props.useNavigation === true) {\n startNavigation();\n }\n\n // start keyup/keydown listeners\n function startNavigation () {\n if (initialized === true) return\n if (document) {\n initialized = true;\n document.addEventListener('keyup', onKeyUp);\n document.addEventListener('keydown', onKeyDown);\n }\n }\n\n // end keyup/keydown listeners\n function endNavigation () {\n if (document) {\n document.removeEventListener('keyup', onKeyUp);\n document.removeEventListener('keydown', onKeyDown);\n initialized = false;\n }\n }\n\n function canNavigate (e) {\n if (e === void 0) {\n return false\n }\n\n // if (e.defaultPrevented === true) {\n // return false\n // }\n\n if (document) {\n const el = document.activeElement;\n if (el !== document.body\n && rootRef.value.contains(el) === true\n // required for iOS and desktop Safari\n // && el.contains(rootRef.value) === false\n ) {\n return true\n }\n }\n\n return false\n }\n\n // attempts to set focus on the focusRef date\n // this function is called when the dates change,\n // so retry until we get it (or count expires)\n function tryFocus () {\n let count = 0;\n const interval = setInterval(() => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n if (++count === 50 || document.activeElement === datesRef.value[ focusRef.value ]) {\n clearInterval(interval);\n }\n }\n else {\n clearInterval(interval);\n }\n }, 250);\n }\n\n function onKeyDown (e) {\n if (canNavigate(e) && isKeyCode(e, [ 33, 34, 35, 36, 37, 38, 39, 40 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n }\n\n function onKeyUp (e) {\n if (canNavigate(e) && isKeyCode(e, [ 33, 34, 35, 36, 37, 38, 39, 40 ])) {\n switch (e.keyCode) {\n case 33:\n onPgUp();\n break\n case 34:\n onPgDown();\n break\n case 35:\n onEnd();\n break\n case 36:\n onHome();\n break\n case 37:\n onLeftArrow();\n break\n case 38:\n onUpArrow();\n break\n case 39:\n onRightArrow();\n break\n case 40:\n onDownArrow();\n break\n }\n }\n }\n\n function onUpArrow (e) {\n let tm = copyTimestamp(focusValue.value);\n // console.log(tm)\n\n if (parsedView.value === 'month') {\n tm = addToDate(tm, { day: -7 });\n if (focusValue.value.month !== tm.month) {\n direction.value = 'prev';\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'day'\n || parsedView.value === 'week'\n || parsedView.value === 'month-interval') {\n tm = addToDate(tm, { minute: parseInt(props.intervalMinutes) });\n }\n\n direction.value = 'prev';\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n function onDownArrow (e) {\n let tm = copyTimestamp(focusValue.value);\n // console.log(tm)\n\n if (parsedView.value === 'month') {\n tm = addToDate(tm, { day: 7 });\n if (focusValue.value.month !== tm.month) {\n direction.value = 'next';\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'day'\n || parsedView.value === 'week'\n || parsedView.value === 'month-interval') {\n tm = addToDate(tm, { minute: parseInt(props.intervalMinutes) });\n }\n\n direction.value = 'next';\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n /**\n * Sets focus on previous day/week/month. Takes into account weekdaySkips. Applies to all calendars.\n * @param {KeyboardEvent} e The keyboard event\n */\n function onLeftArrow (e) {\n let tm = copyTimestamp(focusValue.value);\n direction.value = 'prev';\n\n do {\n tm = addToDate(tm, { day: -1 });\n } while (weekdaySkips.value[ tm.weekday ] === 0)\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n if (focusValue.value.month !== tm.month) {\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'week') {\n if (tm.weekday > focusValue.value.weekday) {\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'day') {\n emittedValue.value = tm.date;\n return\n }\n\n focusRef.value = tm.date;\n }\n\n /**\n * Sets focus on next day/week/month. Takes into account weekdaySkips. Applies to all calendars.\n * @param {KeyboardEvent} e The keyboard event\n */\n function onRightArrow (e) {\n let tm = copyTimestamp(focusValue.value);\n direction.value = 'next';\n\n do {\n tm = addToDate(tm, { day: 1 });\n } while (weekdaySkips.value[ tm.weekday ] === 0)\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n if (focusValue.value.month !== tm.month) {\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'week') {\n if (tm.weekday < focusValue.value.weekday) {\n emittedValue.value = tm.date;\n return\n }\n }\n else if (parsedView.value === 'day') {\n emittedValue.value = tm.date;\n return\n }\n\n focusRef.value = tm.date;\n }\n\n function onPgUp (e) {\n let tm = copyTimestamp(focusValue.value);\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n tm = addToDate(tm, { month: -1 });\n const next = tm.day <= 15 ? 1 : -1;\n while (weekdaySkips.value[ tm.weekday ] === 0) {\n tm = addToDate(tm, { day: next });\n }\n }\n else if (parsedView.value === 'day') {\n tm = addToDate(tm, { day: -1 });\n }\n else if (parsedView.value === 'week') {\n tm = addToDate(tm, { day: -7 });\n }\n\n direction.value = 'prev';\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n function onPgDown (e) {\n let tm = copyTimestamp(focusValue.value);\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n tm = addToDate(tm, { month: 1 });\n const next = tm.day <= 15 ? 1 : -1;\n while (weekdaySkips.value[ tm.weekday ] === 0) {\n tm = addToDate(tm, { day: next });\n }\n }\n else if (parsedView.value === 'day') {\n tm = addToDate(tm, { day: 1 });\n }\n else if (parsedView.value === 'week') {\n tm = addToDate(tm, { day: 7 });\n }\n\n direction.value = 'next';\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n function onHome (e) {\n let tm = copyTimestamp(focusValue.value);\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n tm = getStartOfMonth(tm);\n }\n else if (parsedView.value === 'week') {\n tm = getStartOfWeek(tm, props.weekdays, times.today);\n }\n\n while (weekdaySkips.value[ tm.weekday ] === 0) {\n tm = addToDate(tm, { day: -1 });\n }\n\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n function onEnd (e) {\n let tm = copyTimestamp(focusValue.value);\n\n if (parsedView.value === 'month'\n || parsedView.value === 'month-interval') {\n tm = getEndOfMonth(tm);\n }\n else if (parsedView.value === 'week') {\n tm = getEndOfWeek(tm, props.weekdays, times.today);\n }\n\n while (weekdaySkips.value[ tm.weekday ] === 0) {\n tm = addToDate(tm, { day: -1 });\n }\n\n // emittedValue.value = tm.date\n focusRef.value = tm.date;\n }\n\n return {\n startNavigation,\n endNavigation,\n tryFocus\n }\n}\n\n// Vue\n\nvar QCalendarAgenda = defineComponent({\n name: 'QCalendarAgenda',\n\n directives: [ResizeObserver$1],\n\n props: {\n ...useCommonProps,\n ...useAgendaProps,\n ...useColumnProps,\n ...useMaxDaysProps,\n ...useTimesProps,\n ...useCellWidthProps,\n ...useNavigationProps\n },\n\n emits: [\n 'update:model-value',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-head-day'),\n ...getRawMouseEvents('-time')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n headerColumnRef = ref(null),\n focusRef = ref(null),\n focusValue = ref(null),\n datesRef = ref({}),\n headDayEventsParentRef = ref({}),\n headDayEventsChildRef = ref({}),\n direction = ref('next'),\n startDate = ref(today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0),\n emittedValue = ref(props.modelValue),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n watch(() => props.view, () => {\n // reset maxDaysRendered\n maxDaysRendered.value = 0;\n });\n\n const parsedView = computed(() => {\n if (props.view === 'month') {\n return 'month-interval'\n }\n return props.view\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n isSticky\n } = useCellWidth(props);\n\n watch(isSticky, (val) => {\n // console.log('isSticky', isSticky.value)\n });\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n parsedEnd,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n // methods\n dayStyleDefault,\n getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n parsedValue,\n times\n });\n\n const {\n rootRef,\n scrollWidth,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderAgenda, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n // ariaDateTimeFormatter,\n parsedCellWidth,\n // methods\n // styleDefault,\n getScopeForSlot,\n } = useInterval(props, {\n weekdaySkips,\n times,\n scrollArea,\n parsedStart,\n parsedEnd,\n maxDays: maxDaysRendered,\n size,\n headerColumnRef\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n const parsedColumnCount = computed(() => {\n return days.value.length\n + (isLeftColumnOptionsValid.value === true ? props.leftColumnOptions.length : 0)\n + (isRightColumnOptionsValid.value === true ? props.rightColumnOptions.length : 0)\n + days.value.length === 1 && parseInt(props.columnCount, 10) > 0 ? parseInt(props.columnCount, 10) : 0\n });\n\n const isLeftColumnOptionsValid = computed(() => {\n return props.leftColumnOptions !== undefined && Array.isArray(props.leftColumnOptions)\n });\n\n const isRightColumnOptionsValid = computed(() => {\n return props.rightColumnOptions !== undefined && Array.isArray(props.rightColumnOptions)\n });\n\n const computedWidth = computed(() => {\n if (rootRef.value) {\n const width = size.width || rootRef.value.getBoundingClientRect().width;\n if (width && parsedColumnCount.value) {\n return (\n (width - scrollWidth.value) / parsedColumnCount.value\n ) + 'px'\n }\n }\n return (100 / parsedColumnCount.value) + '%'\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== val) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume month is changing\n tryFocus();\n }\n });\n\n watch(() => props.maxDays, val => {\n maxDaysRendered.value = val;\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n });\n\n onMounted(() => {\n __initCalendar();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n // private functions\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n // Render functions\n\n function __renderHeadColumn (column, index) {\n const slot = slots[ 'head-column' ];\n const scope = { column, index, days: days.value };\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const isFocusable = props.focusable === true && props.focusType.includes('weekday');\n const id = (props.columnOptionsId !== undefined ? column[ props.columnOptionsId ] : undefined);\n\n const style = {\n maxWidth: width,\n width\n };\n\n return h('div', {\n key: id,\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-agenda__head--day': true,\n 'q-column-day': true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n ...getDefaultMouseEventHandlers('-head-column', (event, eventName) => {\n return { scope: { column, index }, event }\n })\n }, [\n props.noDefaultHeaderText !== true && __renderHeadColumnLabel(column),\n slot && slot(scope),\n useFocusHelper()\n ])\n }\n\n function __renderHeadColumnLabel (column) {\n const slot = slots[ 'head-column-label' ];\n const scope = { column };\n const label = props.columnOptionsLabel !== undefined ? column[ props.columnOptionsLabel ] : column.label;\n\n const vNode = h('div', {\n class: {\n 'q-calendar-agenda__head--weekday': true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n ellipsis: true\n },\n style: {\n alignSelf: 'center'\n }\n }, [\n slot && slot({ scope }),\n !slot && h('span', {\n class: 'ellipsis'\n }, label)\n ]);\n\n return props.dateHeader === 'stacked'\n ? vNode\n : h('div', {\n class: 'q-calendar__header--inline',\n style: {\n height: '100%'\n }\n }, [\n vNode\n ])\n }\n\n // ---\n\n function __renderHead () {\n return h('div', {\n roll: 'presentation',\n class: {\n 'q-calendar-agenda__head': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style: {\n marginRight: scrollWidth.value + 'px'\n }\n }, [\n __renderHeadDaysColumn()\n ])\n }\n\n function __renderHeadDaysColumn () {\n return h('div', {\n ref: headerColumnRef,\n class: {\n 'q-calendar-agenda__head--days__column': true\n }\n }, [\n __renderHeadDaysRow(),\n __renderHeadDaysEventsRow()\n ])\n }\n\n function __renderHeadDaysRow () {\n return h('div', {\n class: {\n 'q-calendar-agenda__head--days__weekdays': true\n }\n }, [\n ...__renderHeadDays()\n ])\n }\n\n function __renderHeadDaysEventsRow () {\n const slot = slots[ 'head-days-events' ];\n\n nextTick(() => {\n if (headDayEventsChildRef.value && props.columnCount === 0 && window) {\n try {\n const styles = window.getComputedStyle(headDayEventsChildRef.value);\n headDayEventsParentRef.value.parentElement.style.height = styles.height;\n headDayEventsParentRef.value.style.height = styles.height;\n }\n catch (e) {}\n }\n });\n\n return h('div', {\n class: {\n 'q-calendar-agenda__head--days__event': true\n }\n }, [\n slot && h('div', {\n // TODO: need a class\n ref: headDayEventsParentRef,\n style: {\n position: 'absolute',\n left: 0,\n top: 0,\n right: 0,\n overflow: 'hidden',\n zIndex: 1\n }\n }, [\n slot({ scope: { days: days.value, ref: headDayEventsChildRef } })\n ]),\n ...__renderHeadDaysEvents()\n ])\n }\n\n function __renderHeadDays () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return [\n isLeftColumnOptionsValid.value === true && props.leftColumnOptions.map((column, index) => __renderHeadColumn(column, index)),\n Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDay(days.value[ 0 ], columnIndex)),\n isRightColumnOptionsValid.value === true && props.rightColumnOptions.map((column, index) => __renderHeadColumn(column, index))\n ]\n }\n else {\n return [\n isLeftColumnOptionsValid.value === true && props.leftColumnOptions.map((column, index) => __renderHeadColumn(column, index)),\n days.value.map(day => __renderHeadDay(day)),\n isRightColumnOptionsValid.value === true && props.rightColumnOptions.map((column, index) => __renderHeadColumn(column, index))\n ]\n }\n }\n\n function __renderHeadDaysEvents () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return [\n Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDayEvent(days.value[ 0 ], columnIndex))\n ]\n }\n else {\n return days.value.map(day => __renderHeadDayEvent(day))\n }\n }\n\n function __renderHeadDay (day, columnIndex) {\n const headDaySlot = slots[ 'head-day' ];\n const headDateSlot = slots[ 'head-date' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = getScopeForSlot(day, columnIndex);\n scope.activeDate = activeDate;\n scope.droppable = dragOverHeadDayRef.value === day.date;\n scope.disabled = (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false);\n\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const styler = props.weekdayStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n ...styler({ scope })\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n const weekdayClass = typeof props.weekdayClass === 'function' ? props.weekdayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('weekday');\n\n const data = {\n key: day.date + (columnIndex !== undefined ? '-' + columnIndex : ''),\n ref: (el) => { datesRef.value[ day.date ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-agenda__head--day': true,\n ...weekdayClass,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = day.date;\n }\n },\n ...getDefaultMouseEventHandlers('-head-day', event => {\n return { scope, event }\n })\n };\n\n return h('div', data, [\n // head-day slot replaces everything below it\n headDaySlot !== undefined && headDaySlot({ scope }),\n headDaySlot === undefined && __renderDateHeader(day),\n headDaySlot === undefined && headDateSlot && headDateSlot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderDateHeader (day) {\n if (props.dateHeader === 'stacked') {\n return [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ]\n }\n else if (props.dateHeader === 'inline') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n }\n else if (props.dateHeader === 'inverted') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n }\n }\n\n function __renderHeadDayEvent (day, columnIndex) {\n const headDayEventSlot = slots[ 'head-day-event' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = getScopeForSlot(day, columnIndex);\n scope.activeDate = activeDate;\n scope.disabled = (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false);\n\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const style = {\n width,\n maxWidth: width\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n\n return h('div', {\n key: 'event-' + day.date + (columnIndex !== undefined ? '-' + columnIndex : ''),\n class: {\n 'q-calendar-agenda__head--day__event': true,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate\n },\n style\n }, [\n headDayEventSlot && headDayEventSlot({ scope })\n ])\n }\n\n function __renderHeadWeekday (day) {\n const slot = slots[ 'head-weekday-label' ];\n const scope = getScopeForSlot(day);\n scope.shortWeekdayLabel = props.shortWeekdayLabel;\n\n const data = {\n class: {\n 'q-calendar-agenda__head--weekday': true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n 'q-calendar__ellipsis': true\n }\n };\n\n return h('div', data, (slot && slot({ scope })) || __renderHeadWeekdayLabel(day, props.shortWeekdayLabel))\n }\n\n function __renderHeadWeekdayLabel (day, shortWeekdayLabel) {\n const weekdayLabel = weekdayFormatter.value(day, shortWeekdayLabel || (props.weekdayBreakpoints[ 0 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 0 ]));\n return h('span', {\n class: 'q-calendar__ellipsis'\n }, props.weekdayBreakpoints[ 1 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 1 ] ? minCharWidth(weekdayLabel, props.minWeekdayLabel) : weekdayLabel)\n }\n\n function __renderHeadDayDate (day) {\n const data = {\n class: {\n 'q-calendar-agenda__head--date': true,\n [ 'q-calendar__' + props.dateAlign ]: true\n }\n };\n\n return h('div', data, __renderHeadDayBtn(day))\n }\n\n function __renderHeadDayBtn (day) {\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n const dayLabel = dayFormatter.value(day, false);\n const headDayLabelSlot = slots[ 'head-day-label' ];\n const headDayButtonSlot = slots[ 'head-day-button' ];\n\n const scope = {\n dayLabel,\n timestamp: day,\n activeDate,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const data = {\n class: {\n 'q-calendar-agenda__head--day__label': true,\n 'q-calendar__button': true,\n 'q-calendar__button--round': props.dateType === 'round',\n 'q-calendar__button--rounded': props.dateType === 'rounded',\n 'q-calendar__button--bordered': day.current === true,\n 'q-calendar__focusable': true\n },\n disabled: day.disabled,\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n if (emitListeners.value.onClickDate !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-date', { scope });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-date', (event, eventName) => {\n if (eventName === 'click-date' || eventName === 'contextmenu-date') {\n emittedValue.value = day.date;\n if (eventName === 'click-date') {\n event.preventDefault();\n }\n }\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return headDayButtonSlot\n ? headDayButtonSlot({ scope })\n : useButton(props, data, headDayLabelSlot ? headDayLabelSlot({ scope }) : dayLabel)\n }\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-agenda__body'\n }, [\n __renderScrollArea()\n ])\n }\n\n function __renderScrollArea () {\n if (isSticky.value === true) {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-agenda__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderDayContainer()\n ])\n }\n else if (props.noScroll === true) {\n return __renderPane()\n }\n else {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-agenda__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderPane()\n ])\n }\n }\n\n function __renderPane () {\n return h('div', {\n ref: pane,\n class: 'q-calendar-agenda__pane'\n }, [\n __renderDayContainer()\n ])\n }\n\n function __renderDayContainer () {\n const slot = slots[ 'day-container' ];\n\n return h('div', {\n class: 'q-calendar-agenda__day-container'\n }, [\n isSticky.value === true && props.noHeader !== true && __renderHead(),\n h('div', {\n style: {\n display: 'flex',\n flexDirection: 'row',\n height: '100%'\n }\n }, [\n ...__renderDays()\n ]),\n slot && slot({ scope: { days: days.value } })\n ])\n }\n\n function __renderDays () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return [\n isLeftColumnOptionsValid.value === true && props.leftColumnOptions.map((column, index) => __renderColumn(column, index)),\n Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(i => __renderDay(days.value[ 0 ], 0, i)),\n isRightColumnOptionsValid.value === true && props.rightColumnOptions.map((column, index) => __renderColumn(column, index))\n ]\n }\n else {\n return [\n isLeftColumnOptionsValid.value === true && props.leftColumnOptions.map((column, index) => __renderColumn(column, index)),\n days.value.map((day, index) => __renderDay(day)),\n isRightColumnOptionsValid.value === true && props.rightColumnOptions.map((column, index) => __renderColumn(column, index))\n ]\n }\n }\n\n function __renderColumn (column, index) {\n const slot = slots.column;\n const scope = { column, days: days.value, index };\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const isFocusable = props.focusable === true && props.focusType.includes('day');\n const id = (props.columnOptionsId !== undefined ? column[ props.columnOptionsId ] : undefined);\n\n return h('div', {\n key: id,\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-agenda__day': true,\n 'q-column-day': true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style: {\n maxWidth: width,\n width\n },\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'column', scope) === true\n ? dragOverHeadDayRef.value = id\n : dragOverHeadDayRef.value = '';\n }\n },\n ...getDefaultMouseEventHandlers('-column', (event, eventName) => {\n return { scope, event }\n })\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderDay (day, dayIndex, columnIndex) {\n const slot = slots.day;\n const scope = getScopeForSlot(day, columnIndex);\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const style = {\n width,\n maxWidth: width\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n style.height = parseInt(props.dayHeight, 10) > 0 ? convertToUnit(parseInt(props.dayHeight, 10)) : 'auto';\n if (parseInt(props.dayMinHeight, 10) > 0) {\n style.minHeight = convertToUnit(parseInt(props.dayMinHeight, 10));\n }\n\n return h('div', {\n key: day.date + (columnIndex !== undefined ? ':' + columnIndex : ''),\n class: {\n 'q-calendar-agenda__day': true,\n ...getRelativeClasses(day)\n },\n style\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderAgenda () {\n const { start, end, maxDays } = renderValues.value;\n if (startDate.value !== start.date || endDate.value !== end.date || maxDaysRendered.value !== maxDays) {\n startDate.value = start.date;\n endDate.value = end.date;\n maxDaysRendered.value = maxDays; \n }\n\n const hasWidth = size.width > 0;\n\n const agenda = withDirectives(h('div', {\n class: 'q-calendar-agenda',\n key: startDate.value\n }, [\n hasWidth === true && isSticky.value !== true && props.noHeader !== true && __renderHead(),\n hasWidth === true && __renderBody()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => agenda)\n }\n\n return agenda\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent,\n });\n\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent,\n // })\n\n return () => __renderCalendar()\n }\n});\n\n// Vue\n\nvar QCalendarDay = defineComponent({\n name: 'QCalendarDay',\n\n directives: [ResizeObserver$1],\n\n props: {\n ...useCommonProps,\n ...useIntervalProps,\n ...useColumnProps,\n ...useMaxDaysProps,\n ...useTimesProps,\n ...useCellWidthProps,\n ...useNavigationProps\n },\n\n emits: [\n 'update:model-value',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-interval'),\n ...getRawMouseEvents('-head-intervals'),\n ...getRawMouseEvents('-head-day'),\n ...getRawMouseEvents('-time')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n headerColumnRef = ref(null),\n focusRef = ref(null),\n focusValue = ref(null),\n datesRef = ref({}),\n headDayEventsParentRef = ref({}),\n headDayEventsChildRef = ref({}),\n // intervalsHeadRef = ref(null),\n // intervalsRef = ref({}),\n direction = ref('next'),\n startDate = ref(props.modelValue || today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0),\n emittedValue = ref(props.modelValue),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n dragOverInterval = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n watch(() => props.view, () => {\n // reset maxDaysRendered\n maxDaysRendered.value = 0;\n });\n\n const parsedView = computed(() => {\n if (props.view === 'month') {\n return 'month-interval'\n }\n return props.view\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n isSticky\n } = useCellWidth(props);\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n parsedEnd,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n // methods\n dayStyleDefault,\n getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n parsedValue,\n times\n });\n\n const {\n rootRef,\n scrollWidth,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderDaily, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n intervals,\n intervalFormatter,\n ariaDateTimeFormatter,\n parsedCellWidth,\n // methods\n getIntervalClasses,\n showIntervalLabelDefault,\n styleDefault,\n getTimestampAtEventInterval,\n getTimestampAtEvent,\n getScopeForSlot,\n scrollToTime,\n heightToMinutes,\n timeDurationHeight,\n timeStartPos\n } = useInterval(props, {\n weekdaySkips,\n times,\n scrollArea,\n parsedStart,\n parsedEnd,\n maxDays: maxDaysRendered,\n size,\n headerColumnRef\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n const parsedColumnCount = computed(() => {\n if (parsedView.value === 'day' && parseInt(props.columnCount, 10) > 1) {\n return parseInt(props.columnCount, 10)\n }\n else if (parsedView.value === 'day' && props.maxDays && props.maxDays > 1) {\n return props.maxDays\n }\n return days.value.length\n });\n\n const intervalsWidth = computed(() => {\n if (rootRef.value) {\n return parseInt(getComputedStyle(rootRef.value).getPropertyValue('--calendar-intervals-width'), 10)\n }\n return 0\n });\n\n const computedWidth = computed(() => {\n if (rootRef.value) {\n const width = size.width || rootRef.value.getBoundingClientRect().width;\n if (width && intervalsWidth.value && parsedColumnCount.value) {\n return (\n (width - scrollWidth.value - intervalsWidth.value) / parsedColumnCount.value\n ) + 'px'\n }\n }\n return (100 / parsedColumnCount.value) + '%'\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume list of days is changing\n tryFocus();\n }\n });\n\n watch(() => props.maxDays, val => {\n maxDaysRendered.value = val;\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n headDayEventsParentRef.value = {};\n headDayEventsChildRef.value = {};\n // intervalsRef.value = {}\n });\n\n onMounted(() => {\n __initCalendar();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n // private functions\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n // function __isActiveInterval (day) {\n // return __isActiveDate(day)\n // && day.hasTime\n // && emittedValue.value.hasTime\n // && day.time === emittedValue.value.time\n // }\n\n // Render functions\n\n function __renderHead () {\n return h('div', {\n roll: 'presentation',\n class: {\n 'q-calendar-day__head': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style: {\n marginRight: scrollWidth.value + 'px'\n }\n }, [\n __renderHeadIntervals(),\n __renderHeadDaysColumn()\n ])\n }\n\n /*\n * Outputs the header that is above the intervals\n */\n function __renderHeadIntervals () {\n const slot = slots[ 'head-intervals' ];\n\n const scope = {\n timestamps: days.value,\n days: days.value, // deprecated\n date: props.modelValue\n };\n\n return h('div', {\n class: {\n 'q-calendar-day__head--intervals': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n ...getDefaultMouseEventHandlers('-head-intervals', event => {\n return { scope, event }\n })\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderHeadDaysColumn () {\n return h('div', {\n ref: headerColumnRef,\n class: {\n 'q-calendar-day__head--days__column': true\n }\n }, [\n __renderHeadDaysRow(),\n __renderHeadDaysEventsRow()\n ])\n }\n\n function __renderHeadDaysRow () {\n return h('div', {\n class: {\n 'q-calendar-day__head--days__weekdays': true\n }\n }, [\n ...__renderHeadDays()\n ])\n }\n\n function __renderHeadDaysEventsRow () {\n const slot = slots[ 'head-days-events' ];\n\n nextTick(() => {\n if (headDayEventsChildRef.value && parseInt(props.columnCount, 10) === 0 && window) {\n try {\n const styles = window.getComputedStyle(headDayEventsChildRef.value);\n headDayEventsParentRef.value.parentElement.style.height = styles.height;\n headDayEventsParentRef.value.style.height = styles.height;\n }\n catch (e) {}\n }\n });\n\n return h('div', {\n class: {\n 'q-calendar-day__head--days__event': true\n }\n }, [\n slot && h('div', {\n ref: headDayEventsParentRef,\n // TODO: this needs to be a class\n style: {\n position: 'absolute',\n left: 0,\n top: 0,\n right: 0,\n overflow: 'hidden',\n zIndex: 1\n }\n }, [\n slot({ scope: { days: days.value, ref: headDayEventsChildRef } })\n ]),\n ...__renderHeadDaysEvents()\n ])\n }\n\n function __renderHeadDays () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDay(days.value[ 0 ], columnIndex))\n }\n else {\n return days.value.map(day => __renderHeadDay(day))\n }\n }\n\n function __renderHeadDaysEvents () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDayEvent(days.value[ 0 ], columnIndex))\n }\n else {\n return days.value.map(day => __renderHeadDayEvent(day))\n }\n }\n\n function __renderHeadDay (day, columnIndex) {\n const headDaySlot = slots[ 'head-day' ];\n const headDateSlot = slots[ 'head-date' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = getScopeForSlot(day, columnIndex);\n scope.activeDate = activeDate;\n scope.droppable = dragOverHeadDayRef.value === day.date;\n scope.disabled = (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false);\n\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const styler = props.weekdayStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n ...styler({ scope })\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n const weekdayClass = typeof props.weekdayClass === 'function' ? props.weekdayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('weekday');\n const key = day.date + (columnIndex !== undefined ? '-' + columnIndex : '');\n\n const data = {\n key,\n ref: (el) => { datesRef.value[ key ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-day__head--day': true,\n ...weekdayClass,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = key;\n }\n },\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n }\n },\n ...getDefaultMouseEventHandlers('-head-day', event => {\n return { scope, event }\n }),\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n }\n };\n\n return h('div', data, [\n // head-day slot replaces everything below it\n headDaySlot !== undefined && headDaySlot({ scope }),\n headDaySlot === undefined && __renderColumnHeaderBefore(day, columnIndex),\n headDaySlot === undefined && __renderDateHeader(day),\n headDaySlot === undefined && headDateSlot && headDateSlot({ scope }),\n headDaySlot === undefined && __renderColumnHeaderAfter(day, columnIndex),\n useFocusHelper()\n ])\n }\n\n function __renderDateHeader (day) {\n if (props.dateHeader === 'stacked') {\n return [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ]\n }\n else if (props.dateHeader === 'inline') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n }\n else if (props.dateHeader === 'inverted') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n }\n }\n\n function __renderHeadDayEvent (day, columnIndex) {\n const headDayEventSlot = slots[ 'head-day-event' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = getScopeForSlot(day, columnIndex);\n scope.activeDate = activeDate;\n scope.disabled = (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false);\n\n const width = isSticky.value === true ? convertToUnit(parsedCellWidth.value) : computedWidth.value;\n const style = {\n width,\n maxWidth: width,\n minWidth: width\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n\n return h('div', {\n key: 'event-' + day.date + (columnIndex !== undefined ? '-' + columnIndex : ''),\n class: {\n 'q-calendar-day__head--day__event': true,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate\n },\n style\n }, [\n headDayEventSlot && headDayEventSlot({ scope })\n ])\n }\n\n function __renderHeadWeekday (day) {\n const slot = slots[ 'head-weekday-label' ];\n const shortWeekdayLabel = props.shortWeekdayLabel === true;\n\n const scope = getScopeForSlot(day);\n scope.shortWeekdayLabel = props.shortWeekdayLabel;\n scope.disabled = (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false);\n\n const data = {\n class: {\n 'q-calendar-day__head--weekday': true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n 'q-calendar__ellipsis': true\n }\n };\n\n return h('div', data, (slot && slot({ scope })) || __renderHeadWeekdayLabel(day, shortWeekdayLabel))\n }\n\n function __renderHeadWeekdayLabel (day, shortWeekdayLabel) {\n const weekdayLabel = weekdayFormatter.value(day, shortWeekdayLabel || (props.weekdayBreakpoints[ 0 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 0 ]));\n return h('span', {\n class: 'q-calendar-day__head--weekday-label q-calendar__ellipsis'\n }, props.weekdayBreakpoints[ 1 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 1 ] ? minCharWidth(weekdayLabel, props.minWeekdayLabel) : weekdayLabel)\n }\n\n function __renderHeadDayDate (day) {\n const data = {\n class: {\n 'q-calendar-day__head--date': true,\n [ 'q-calendar__' + props.dateAlign ]: true\n }\n };\n\n return h('div', data, __renderHeadDayBtn(day))\n }\n\n function __renderHeadDayBtn (day) {\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n const dayLabel = dayFormatter.value(day, false);\n const headDayLabelSlot = slots[ 'head-day-label' ];\n const headDayButtonSlot = slots[ 'head-day-button' ];\n\n const scope = {\n dayLabel,\n timestamp: day,\n activeDate,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const data = {\n class: {\n 'q-calendar-day__head--day__label': true,\n 'q-calendar__button': true,\n 'q-calendar__button--round': props.dateType === 'round',\n 'q-calendar__button--rounded': props.dateType === 'rounded',\n 'q-calendar__button--bordered': day.current === true,\n 'q-calendar__focusable': true\n },\n disabled: day.disabled,\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n if (emitListeners.value.onClickDate !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-date', { scope });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-date', (event, eventName) => {\n if (eventName === 'click-date' || eventName === 'contextmenu-date') {\n emittedValue.value = day.date;\n if (eventName === 'click-date') {\n event.preventDefault();\n }\n }\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return headDayButtonSlot\n ? headDayButtonSlot({ scope })\n : useButton(props, data, headDayLabelSlot ? headDayLabelSlot({ scope }) : dayLabel)\n }\n\n function __renderColumnHeaderBefore (day, columnIndex) {\n const slot = slots[ 'column-header-before' ];\n if (slot) {\n const scope = { timestamp: day, columnIndex };\n return h('div', {\n class: 'q-calendar-day__column-header--before'\n }, [\n slot({ scope })\n ])\n }\n }\n\n function __renderColumnHeaderAfter (day, columnIndex) {\n const slot = slots[ 'column-header-after' ];\n if (slot) {\n const scope = { timestamp: day, columnIndex };\n return h('div', {\n class: 'q-calendar-day__column-header--after'\n }, [\n slot({ scope })\n ])\n }\n }\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-day__body'\n }, [\n __renderScrollArea()\n ])\n }\n\n function __renderScrollArea () {\n if (isSticky.value === true) {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-day__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n isSticky.value !== true && __renderBodyIntervals(),\n __renderDayContainer()\n ])\n }\n else if (props.noScroll === true) {\n return __renderPane()\n }\n else {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-day__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderPane()\n ])\n }\n }\n\n function __renderPane () {\n return h('div', {\n ref: pane,\n class: 'q-calendar-day__pane'\n }, [\n __renderBodyIntervals(),\n __renderDayContainer()\n ])\n }\n\n function __renderDayContainer () {\n const slot = slots[ 'day-container' ];\n\n return h('div', {\n class: 'q-calendar-day__day-container'\n }, [\n isSticky.value === true && props.noHeader !== true && __renderHead(),\n h('div', {\n style: {\n display: 'flex',\n flexDirection: 'row'\n }\n }, [\n isSticky.value === true && __renderBodyIntervals(),\n ...__renderDays()\n ]),\n slot && slot({ scope: { days: days.value } })\n ])\n }\n\n function __renderDays () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(i => __renderDay(days.value[ 0 ], 0, i))\n }\n else {\n return days.value.map((day, index) => __renderDay(day, index))\n }\n }\n\n function __renderDay (day, dayIndex, columnIndex) {\n const slot = slots[ 'day-body' ];\n const scope = getScopeForSlot(day, columnIndex);\n const width = isSticky.value === true ? props.cellWidth : computedWidth.value;\n const style = {\n width,\n maxWidth: width,\n minWidth: width\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n\n return h('div', {\n key: day.date + (columnIndex !== undefined ? ':' + columnIndex : ''),\n class: {\n 'q-calendar-day__day': true,\n ...getRelativeClasses(day)\n },\n style\n }, [\n ...__renderDayIntervals(dayIndex, columnIndex),\n slot && slot({ scope })\n ])\n }\n\n function __renderDayIntervals (index, columnIndex) {\n return intervals.value[ index ].map((interval) => __renderDayInterval(interval, columnIndex))\n }\n\n function __renderDayInterval (interval, columnIndex) {\n // const activeInterval = __isActiveInterval(interval)\n const height = convertToUnit(props.intervalHeight);\n const styler = props.intervalStyle || styleDefault;\n const slotDayInterval = slots[ 'day-interval' ];\n\n const scope = getScopeForSlot(interval, columnIndex);\n scope.droppable = dragOverInterval.value === getDayTimeIdentifier(interval);\n\n const intervalClass = typeof props.intervalClass === 'function' ? props.intervalClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('interval');\n const dateTime = getDateTime(interval);\n\n const data = {\n key: dateTime,\n // ref: (el) => { intervalsRef.value[ dateTime ] = el },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-day__day-interval': interval.minute === 0,\n 'q-calendar-day__day-interval--section': interval.minute !== 0,\n ...intervalClass,\n ...getIntervalClasses(interval, props.selectedDates, props.selectedStartEndDates),\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style: {\n height,\n ...styler({ scope })\n },\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'interval', scope) === true\n ? dragOverInterval.value = getDayTimeIdentifier(interval)\n : dragOverInterval.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'interval', scope) === true\n ? dragOverInterval.value = getDayTimeIdentifier(interval)\n : dragOverInterval.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'interval', scope) === true\n ? dragOverInterval.value = getDayTimeIdentifier(interval)\n : dragOverInterval.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'interval', scope) === true\n ? dragOverInterval.value = getDayTimeIdentifier(interval)\n : dragOverInterval.value = '';\n }\n },\n onKeydown: (event) => {\n if (isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of date via Enter or Space keys\n if (isKeyCode(event, [ 13, 32 ])) {\n const scope = getScopeForSlot(interval, columnIndex);\n emittedValue.value = scope.timestamp.date;\n if (emitListeners.value.onClickTime !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-time', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-time', event => {\n const scope = getScopeForSlot(getTimestampAtEventInterval(event, interval, props.timeClicksClamped, times.now), columnIndex);\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateTimeFormatter.value(interval);\n }\n\n const children = slotDayInterval ? slotDayInterval({ scope }) : undefined;\n\n return h('div', data, [ children, useFocusHelper() ])\n }\n\n function __renderBodyIntervals () {\n const data = {\n ariaHidden: 'true',\n class: {\n 'q-calendar-day__intervals-column': true,\n 'q-calendar__ellipsis': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n ...getDefaultMouseEventHandlers('-interval', event => {\n const timestamp = getTimestampAtEvent(event, parsedStart.value, props.timeClicksClamped, times.now);\n return { scope: { timestamp }, event }\n })\n };\n\n return h('div', data, __renderIntervalLabels())\n }\n\n function __renderIntervalLabels () {\n return intervals.value[ 0 ].map((interval) => __renderIntervalLabel(interval))\n }\n\n function __renderIntervalLabel (interval) {\n const slotIntervalLabel = slots[ 'interval-label' ];\n const height = convertToUnit(props.intervalHeight);\n const short = props.shortIntervalLabel;\n const shower = props.showIntervalLabel || showIntervalLabelDefault;\n const show = shower(interval);\n const label = show ? intervalFormatter.value(interval, short) : undefined;\n\n return h('div', {\n key: interval.time,\n class: {\n 'q-calendar-day__interval': interval.minute === 0,\n 'q-calendar-day__interval--section': interval.minute !== 0\n },\n style: {\n height\n }\n }, [\n h('div', {\n class: 'q-calendar-day__interval--text q-calendar__overflow-wrap'\n }, [\n slotIntervalLabel ? slotIntervalLabel({ scope: { timestamp: interval, label } }) : label\n ])\n ])\n }\n\n function __renderDaily () {\n const { start, end, maxDays } = renderValues.value;\n if (startDate.value !== start.date || endDate.value !== end.date || maxDaysRendered.value !== maxDays) {\n startDate.value = start.date;\n endDate.value = end.date;\n maxDaysRendered.value = maxDays; \n }\n\n const hasWidth = size.width > 0;\n\n const daily = withDirectives(h('div', {\n key: startDate.value,\n class: 'q-calendar-day'\n }, [\n hasWidth === true && isSticky.value !== true && props.noHeader !== true && __renderHead(),\n hasWidth && __renderBody()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => daily)\n }\n\n return daily\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent,\n timeStartPos,\n timeDurationHeight,\n heightToMinutes,\n scrollToTime\n });\n\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent,\n // timeStartPos,\n // timeDurationHeight,\n // scrollToTime\n // })\n\n return () => __renderCalendar()\n }\n});\n\nconst useMonthProps = {\n dayHeight: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n dayMinHeight: {\n type: [ Number, String ],\n default: 0,\n validator: validateNumber\n },\n dayStyle: {\n type: Function,\n default: null\n },\n dayClass: {\n type: Function,\n default: null\n },\n weekdayStyle: {\n type: Function,\n default: null\n },\n weekdayClass: {\n type: Function,\n default: null\n },\n dayPadding: String,\n minWeeks: {\n type: [ Number, String ],\n validator: validateNumber,\n default: 1\n },\n shortMonthLabel: Boolean,\n showWorkWeeks: Boolean,\n showMonthLabel: {\n type: Boolean,\n default: true\n },\n showDayOfYearLabel: Boolean,\n enableOutsideDays: Boolean,\n noOutsideDays: Boolean,\n hover: Boolean,\n miniMode: {\n type: [ Boolean, String ],\n validator: v => [ true, false, 'auto' ].includes(v)\n },\n breakpoint: {\n type: [ Number, String ],\n default: 'md',\n validator: v => [ 'xs', 'sm', 'md', 'lg', 'xl' ].includes(v) || validateNumber(v)\n },\n monthLabelSize: {\n type: String,\n default: 'sm',\n validator: v => [ 'xxs', 'xs', 'sm', 'md', 'lg', 'xl', 'xxl' ].includes(v) || (!!v && v.length > 0)\n }\n};\n\nfunction useMonth (props, emit, {\n weekdaySkips,\n times,\n parsedStart,\n parsedEnd,\n size,\n headerColumnRef\n}) {\n const parsedMinWeeks = computed(() => parseInt(props.minWeeks, 10));\n const parsedMinDays = computed(() => parsedMinWeeks.value * props.weekdays.length);\n const parsedMonthStart = computed(() => __getStartOfWeek(__getStartOfMonth(parsedStart.value)));\n const parsedMonthEnd = computed(() => __getEndOfWeek(__getEndOfMonth(parsedEnd.value)));\n const parsedCellWidth = computed(() => {\n let width = 0;\n if (props.cellWidth) {\n width = props.cellWidth;\n }\n else if (size.width > 0 && headerColumnRef.value) {\n width = headerColumnRef.value.offsetWidth / props.weekdays.length;\n }\n return width\n });\n\n /**\n * Returns the days of the specified month\n */\n const days = computed(() => {\n return createDayList(\n parsedMonthStart.value,\n parsedMonthEnd.value,\n times.today,\n weekdaySkips.value,\n props.disabledBefore,\n props.disabledAfter,\n props.disabledWeekdays,\n props.disabledDays,\n Number.MAX_SAFE_INTEGER,\n parsedMinDays.value\n )\n });\n\n /**\n * Returns the first week of the month for calcaulating the weekday headers\n */\n const todayWeek = computed(() => {\n const day = times.today;\n const start = __getStartOfWeek(day);\n const end = __getEndOfWeek(day);\n\n return createDayList(\n start,\n end,\n day,\n weekdaySkips,\n props.disabledBefore,\n props.disabledAfter,\n props.disabledWeekdays,\n props.disabledDays,\n props.weekdays.length,\n props.weekdays.length\n )\n });\n\n /**\n * Returns a function that uses the locale property\n * The function takes a timestamp and a boolean (to indicate short format)\n * and returns a formatted month name from the browser\n */\n const monthFormatter = computed(() => {\n const longOptions = { timeZone: 'UTC', month: 'long' };\n const shortOptions = { timeZone: 'UTC', month: 'short' };\n\n return createNativeLocaleFormatter(\n props.locale,\n (_tms, short) => (short ? shortOptions : longOptions)\n )\n });\n\n const parsedBreakpoint = computed(() => {\n switch (props.breakpoint) {\n case 'xs': return 300\n case 'sm': return 350\n case 'md': return 400\n case 'lg': return 450\n case 'xl': return 500\n default: return parseInt(props.breakpoint, 10)\n }\n });\n\n const parsedMonthLabelSize = computed(() => {\n switch (props.monthLabelSize) {\n case 'xxs': return '.4em'\n case 'xs': return '.6em'\n case 'sm': return '.8em'\n case 'md': return '1.0em'\n case 'lg': return '1.2em'\n case 'xl': return '1.4em'\n case 'xxl': return '1.6em'\n default: return props.monthLabelSize\n }\n });\n\n let firstTime = true;\n const isMiniMode = computed(() => {\n const val = props.miniMode === true\n || (\n props.miniMode === 'auto'\n && props.breakpoint !== void 0\n && size.width < parsedBreakpoint.value\n );\n if (firstTime === true) {\n firstTime = false;\n emit('mini-mode', val);\n }\n return val\n });\n\n watch(isMiniMode, val => {\n emit('mini-mode', val);\n });\n\n /**\n * Returns a Timestamp of the start of the week\n * @param {Timestamp} day The day in which to find the start of the week\n */\n function __getStartOfWeek (day) {\n return getStartOfWeek(day, props.weekdays, times.today)\n }\n\n /**\n * Returns a Timestamp of the end of the week\n * @param {Timestamp} day The day in which to find the end of the week\n */\n function __getEndOfWeek (day) {\n return getEndOfWeek(day, props.weekdays, times.today)\n }\n\n /**\n * Returns a Timestamp of the start of the month\n * @param {Timestamp} day The day in which to find the start of the month\n */\n function __getStartOfMonth (day) {\n return getStartOfMonth(day)\n }\n\n /**\n * Returns a Timestamp of the end of the month\n * @param {Timestamp} day The day in which to find the end of the month\n */\n function __getEndOfMonth (day) {\n return getEndOfMonth(day)\n }\n\n /**\n * Returns boolean if the passed Timestamp is an outside day\n * @param {Timestamp} day The day to check if is deemed an outside day\n */\n function isOutside (day) {\n const dayIdentifier = getDayIdentifier(day);\n\n return dayIdentifier < getDayIdentifier(parsedStart.value)\n || dayIdentifier > getDayIdentifier(parsedEnd.value)\n }\n\n return {\n parsedCellWidth,\n parsedMinWeeks,\n parsedMinDays,\n parsedMonthStart,\n parsedMonthEnd,\n parsedBreakpoint,\n parsedMonthLabelSize,\n days,\n todayWeek,\n isMiniMode,\n monthFormatter,\n isOutside\n }\n}\n\nvar QCalendarMonth = defineComponent({\n name: 'QCalendarMonth',\n\n directives: [ResizeObserver$1],\n\n props: {\n ...useCommonProps,\n ...useMonthProps,\n ...useTimesProps,\n ...useCellWidthProps,\n ...useNavigationProps\n },\n\n emits: [\n 'update:model-value',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n 'mini-mode',\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-day'),\n ...getRawMouseEvents('-head-workweek'),\n ...getRawMouseEvents('-head-day'),\n ...getRawMouseEvents('-workweek')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n\n headerColumnRef = ref(null),\n focusRef = ref(null),\n focusValue = ref(null),\n datesRef = ref({}),\n weekEventRef = ref([]),\n weekRef = ref([]),\n\n direction = ref('next'),\n startDate = ref(props.modelValue || today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0), // always 0\n emittedValue = ref(props.modelValue),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n dragOverDayRef = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n const parsedView = computed(() => {\n return 'month'\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n // initialize emit listeners\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n isSticky\n } = useCellWidth(props);\n\n watch(isSticky, (val) => {\n // console.log('isSticky', isSticky.value)\n });\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n parsedEnd,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n // methods\n dayStyleDefault,\n getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n const computedStyles = computed(() => {\n const style = {};\n if (props.dayPadding !== undefined) {\n style.padding = props.dayPadding;\n }\n style.minWidth = computedWidth.value;\n style.maxWidth = computedWidth.value;\n style.width = computedWidth.value;\n return style\n });\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n times,\n parsedValue\n });\n\n const {\n rootRef,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderMonth, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n todayWeek,\n isMiniMode,\n parsedCellWidth,\n parsedMonthLabelSize,\n // methods\n isOutside,\n monthFormatter\n } = useMonth(props, emit, {\n weekdaySkips,\n times,\n parsedStart,\n parsedEnd,\n size,\n headerColumnRef\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n const workweekWidth = computed(() => {\n if (rootRef.value) {\n return props.showWorkWeeks === true ? parseInt(getComputedStyle(rootRef.value).getPropertyValue(isMiniMode.value === true ? '--calendar-mini-work-week-width' : '--calendar-work-week-width'), 10) : 0\n }\n return 0\n });\n\n const parsedColumnCount = computed(() => {\n return props.weekdays.length\n });\n\n const computedWidth = computed(() => {\n if (rootRef.value) {\n const width = size.width || rootRef.value.getBoundingClientRect().width;\n if (width && parsedColumnCount.value) {\n return ((width - workweekWidth.value) / parsedColumnCount.value) + 'px'\n }\n }\n return (100 / parsedColumnCount.value) + '%'\n });\n\n const isDayFocusable = computed(() => {\n return props.focusable === true && props.focusType.includes('day') && isMiniMode.value !== true\n });\n\n const isDateFocusable = computed(() => {\n return props.focusable === true && props.focusType.includes('date') && isDayFocusable.value !== true\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== val) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n if (emittedValue.value !== val) {\n emittedValue.value = val;\n }\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume month is changing\n tryFocus();\n }\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n weekEventRef.value = [];\n weekRef.value = [];\n nextTick(() => {\n __adjustForWeekEvents();\n });\n });\n\n onMounted(() => {\n __initCalendar();\n __adjustForWeekEvents();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n function isCurrentWeek (week) {\n for (let i = 0; i < week.length; ++i) {\n if (week[ i ].current === true) {\n return { timestamp: week[ i ] }\n }\n }\n return { timestamp: false }\n }\n\n function __adjustForWeekEvents () {\n if (isMiniMode.value === true) return\n if (props.dayHeight !== 0) return\n const slotWeek = slots.week;\n if (slotWeek === void 0) return\n\n if (window) {\n for (const row in weekEventRef.value) {\n const weekEvent = weekEventRef.value[ row ];\n if (weekEvent === void 0) continue\n const wrapper = weekRef.value[ row ];\n if (wrapper === void 0) continue\n // this sucks to have to do it this way\n const styles = window.getComputedStyle(weekEvent);\n const margin = parseFloat(styles.marginTop, 10) + parseFloat(styles.marginBottom, 10);\n if (weekEvent.clientHeight + margin > wrapper.clientHeight) {\n wrapper.style.height = weekEvent.clientHeight + margin + 'px';\n }\n }\n }\n }\n\n // Render functions\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-month__body'\n }, [\n ...__renderWeeks()\n ])\n }\n\n function __renderHead () {\n return h('div', {\n role: 'presentation',\n class: 'q-calendar-month__head'\n }, [\n props.showWorkWeeks === true && __renderWorkWeekHead(),\n h('div', {\n class: 'q-calendar-month__head--wrapper'\n }, [\n __renderHeadDaysRow()\n ])\n ])\n }\n\n function __renderHeadDaysRow () {\n return h('div', {\n ref: headerColumnRef,\n class: {\n 'q-calendar-month__head--weekdays': true\n }\n }, [\n ...__renderHeadDays()\n ])\n }\n\n function __renderWorkWeekHead () {\n const slot = slots[ 'head-workweek' ];\n const scope = {\n start: parsedStart.value,\n end: parsedEnd.value,\n miniMode: isMiniMode.value\n };\n\n return h('div', {\n class: 'q-calendar-month__head--workweek',\n ...getDefaultMouseEventHandlers('-head-workweek', event => {\n return { scope, event }\n })\n }, (slot ? slot({ scope }) : '#'))\n }\n\n function __renderHeadDays () {\n return todayWeek.value.map((day, index) => __renderHeadDay(day, index))\n }\n\n function __renderHeadDay (day, index) {\n const headDaySlot = slots[ 'head-day' ];\n\n const filteredDays = days.value.filter(day2 => day2.weekday === day.weekday);\n const weekday = filteredDays[ 0 ].weekday;\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n activeDate,\n weekday,\n timestamp: day,\n days: filteredDays,\n index,\n miniMode: isMiniMode.value,\n droppable: dragOverHeadDayRef.value === day.weekday,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const weekdayClass = typeof props.weekdayClass === 'function' ? props.weekdayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('weekday');\n\n const width = computedWidth.value;\n const styler = props.weekdayStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n ...styler({ scope })\n };\n\n const data = {\n key: day.date + (index !== undefined ? '-' + index : ''),\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-month__head--weekday': true,\n ...weekdayClass,\n 'q-disabled-day disabled': scope.disabled === true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n 'q-calendar__ellipsis': true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.weekday\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.weekday\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.weekday\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.weekday\n : dragOverHeadDayRef.value = '';\n }\n },\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = day.date;\n }\n },\n ...getDefaultMouseEventHandlers('-head-day', event => {\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = weekdayFormatter.value(day, false);\n }\n\n return h('div', data, [\n headDaySlot === undefined && __renderHeadWeekdayLabel(day, props.shortWeekdayLabel || isMiniMode.value),\n headDaySlot !== undefined && headDaySlot({ scope }),\n __renderHeadDayEvent(day, index),\n isFocusable === true && useFocusHelper()\n ])\n }\n\n function __renderHeadDayEvent (day, index) {\n const headDayEventSlot = slots[ 'head-day-event' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n const filteredDays = days.value.filter(day2 => day2.weekday === day.weekday);\n const weekday = filteredDays[ 0 ].weekday;\n\n const scope = {\n weekday,\n timestamp: day,\n days: filteredDays,\n index,\n miniMode: isMiniMode.value,\n activeDate,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const width = computedWidth.value;\n const styler = props.weekdayStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n ...styler({ scope })\n };\n\n return h('div', {\n key: 'event-' + day.date + (index !== undefined ? '-' + index : ''),\n class: {\n 'q-calendar-month__head--event': true\n },\n style\n }, [\n headDayEventSlot !== undefined && headDayEventSlot({ scope })\n ])\n }\n\n function __renderHeadWeekdayLabel (day, shortWeekdayLabel) {\n const weekdayLabel = weekdayFormatter.value(day, shortWeekdayLabel || (props.weekdayBreakpoints[ 0 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 0 ]));\n return h('span', {\n class: 'q-calendar__ellipsis'\n }, (isMiniMode.value === true && props.shortWeekdayLabel === true) || (props.weekdayBreakpoints[ 1 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 1 ]) ? minCharWidth(weekdayLabel, props.minWeekdayLabel) : weekdayLabel)\n }\n\n function __renderWeeks () {\n const weekDays = props.weekdays.length;\n const weeks = [];\n for (let i = 0; i < days.value.length; i += weekDays) {\n weeks.push(__renderWeek(days.value.slice(i, i + weekDays), i / weekDays));\n }\n\n return weeks\n }\n\n function __renderWeek (week, weekNum) {\n const slotWeek = slots.week;\n const weekdays = props.weekdays;\n const scope = { week, weekdays, miniMode: isMiniMode.value };\n const style = {};\n\n // this applies height properly, even if workweeks are displaying\n style.height = props.dayHeight > 0 && isMiniMode.value !== true ? convertToUnit(parseInt(props.dayHeight, 10)) : 'auto';\n if (props.dayMinHeight > 0 && isMiniMode.value !== true) {\n style.minHeight = convertToUnit(parseInt(props.dayMinHeight, 10));\n }\n const useAutoHeight = parseInt(props.dayHeight, 10) === 0 && parseInt(props.dayMinHeight, 10) === 0;\n\n return h('div', {\n key: week[ 0 ].date,\n ref: (el) => { weekRef.value[ weekNum ] = el; },\n class: {\n 'q-calendar-month__week--wrapper': true,\n 'q-calendar-month__week--auto-height': useAutoHeight\n },\n style\n }, [\n props.showWorkWeeks === true ? __renderWorkWeekGutter(week) : undefined,\n h('div', {\n class: 'q-calendar-month__week'\n }, [\n h('div', {\n class: 'q-calendar-month__week--days'\n }, week.map((day, index) => __renderDay(day))),\n isMiniMode.value !== true && slotWeek !== undefined\n ? h('div', {\n ref: (el) => { weekEventRef.value[ weekNum ] = el; },\n class: 'q-calendar-month__week--events'\n }, slotWeek({ scope }))\n : undefined\n ])\n ])\n }\n\n function __renderWorkWeekGutter (week) {\n const slot = slots.workweek;\n // adjust day to account for Sunday/Monday start of week calendars\n const day = week.length > 2 ? week[ 2 ] : week[ 0 ];\n const { timestamp } = isCurrentWeek(week);\n const workweekLabel = Number(day.workweek).toLocaleString(props.locale);\n const scope = { workweekLabel, week, miniMode: isMiniMode.value };\n\n return h('div', {\n key: day.workweek,\n class: {\n 'q-calendar-month__workweek': true,\n ...getRelativeClasses(timestamp !== false ? timestamp : day, false)\n },\n ...getDefaultMouseEventHandlers('-workweek', event => {\n return { scope, event }\n })\n }, slot ? slot({ scope }) : workweekLabel)\n }\n\n function __renderDay (day) {\n const slot = slots.day;\n const styler = props.dayStyle || dayStyleDefault;\n const outside = isOutside(day);\n const activeDate = props.noActiveDate !== true && parsedValue.value.date === day.date;\n const hasMonth = (outside === false && props.showMonthLabel === true && days.value.find(d => d.month === day.month).day === day.day);\n const scope = {\n outside,\n timestamp: day,\n miniMode: isMiniMode.value,\n activeDate,\n hasMonth,\n droppable: dragOverDayRef.value === day.date,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const style = Object.assign({ ...computedStyles.value }, styler({ scope }));\n const dayClass = typeof props.dayClass === 'function' ? props.dayClass({ scope }) : {};\n\n const data = {\n key: day.date,\n ref: (el) => {\n if (isDayFocusable.value === true) {\n datesRef.value[ day.date ] = el;\n }\n },\n tabindex: isDayFocusable.value === true ? 0 : -1,\n class: {\n 'q-calendar-month__day': true,\n ...dayClass,\n ...getRelativeClasses(day, outside, props.selectedDates, props.selectedStartEndDates, props.hover),\n 'q-active-date': activeDate === true,\n disabled: props.enableOutsideDays !== true && outside === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isDayFocusable.value === true\n },\n style,\n onFocus: (e) => {\n if (isDayFocusable.value === true) {\n focusRef.value = day.date;\n }\n },\n onKeydown: (e) => {\n if (outside !== true\n && day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of date via Enter or Space keys\n if (outside !== true\n && day.disabled !== true\n && isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n // emit only if there is a listener\n if (emitListeners.value.onClickDay !== undefined && isMiniMode.value !== true) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-day', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-day', event => {\n return { scope, event }\n })\n };\n\n const dragAndDrop = {\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'day', scope) === true\n ? dragOverDayRef.value = day.date\n : dragOverDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'day', scope) === true\n ? dragOverDayRef.value = day.date\n : dragOverDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'day', scope) === true\n ? dragOverDayRef.value = day.date\n : dragOverDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'day', scope) === true\n ? dragOverDayRef.value = day.date\n : dragOverDayRef.value = '';\n }\n }\n };\n\n if (outside !== true) {\n Object.assign(data, dragAndDrop);\n }\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return h('div', data, [\n __renderDayLabelContainer(day, outside, hasMonth),\n h('div', {\n class: {\n 'q-calendar-month__day--content': true\n }\n }, slot ? slot({ scope }) : undefined),\n isDayFocusable.value === true && useFocusHelper()\n ])\n }\n\n function __renderDayLabelContainer (day, outside, hasMonth) {\n let dayOfYearLabel, monthLabel;\n const children = [__renderDayLabel(day, outside)];\n\n if (isMiniMode.value !== true && hasMonth === true && size.width > 340) {\n monthLabel = __renderDayMonth(day, outside);\n }\n\n if (isMiniMode.value !== true && props.showDayOfYearLabel === true && monthLabel === undefined && size.width > 300) {\n dayOfYearLabel = __renderDayOfYearLabel(day, outside);\n }\n\n if (props.dateAlign === 'left') {\n dayOfYearLabel !== undefined && children.push(dayOfYearLabel);\n monthLabel !== undefined && children.push(monthLabel);\n }\n else if (props.dateAlign === 'right') {\n dayOfYearLabel !== undefined && children.unshift(dayOfYearLabel);\n monthLabel !== undefined && children.unshift(monthLabel);\n }\n else { // center\n // no day of year or month labels\n dayOfYearLabel = undefined;\n monthLabel = undefined;\n }\n\n // TODO: if miniMode just return children?\n\n const data = {\n class: {\n 'q-calendar-month__day--label__wrapper': true,\n 'q-calendar__ellipsis': true,\n [ 'q-calendar__' + props.dateAlign ]: (dayOfYearLabel === undefined && monthLabel === undefined),\n 'q-calendar__justify': (dayOfYearLabel !== undefined || monthLabel !== undefined)\n }\n };\n\n return h('div', data, children)\n }\n\n function __renderDayLabel (day, outside) {\n // return if outside days are hidden\n if (outside === true && props.noOutsideDays === true) {\n return\n }\n\n const dayLabel = dayFormatter.value(day, false);\n const dayLabelSlot = slots[ 'head-day-label' ];\n const dayBtnSlot = slots[ 'head-day-button' ];\n\n const selectedDate = (\n props.selectedDates\n && props.selectedDates.length > 0\n && props.selectedDates.includes(day.date)\n );\n\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n dayLabel,\n timestamp: day,\n outside,\n activeDate,\n selectedDate,\n miniMode: isMiniMode.value,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n // const size = isMiniMode.value ? 'sm' : props.monthLabelSize\n\n const data = {\n key: day.date,\n ref: (el) => {\n if (isDateFocusable.value === true) {\n datesRef.value[ day.date ] = el;\n }\n },\n tabindex: isDateFocusable.value === true ? 0 : -1,\n class: {\n 'q-calendar-month__day--label': true,\n 'q-calendar__button': true,\n 'q-calendar__button--round': props.dateType === 'round',\n 'q-calendar__button--rounded': props.dateType === 'rounded',\n 'q-calendar__button--bordered': day.current === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isDateFocusable.value === true\n },\n // style: {\n // lineHeight: isMiniMode.value ? 'unset' : '1.715em'\n // },\n disabled: day.disabled === true || (props.enableOutsideDays !== true && outside === true),\n onFocus: (e) => {\n if (isDateFocusable.value === true) {\n focusRef.value = day.date;\n }\n },\n onKeydown: (e) => {\n if (outside !== true\n && day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of date via Enter or Space keys\n if (isDateFocusable.value === true\n && outside !== true\n && day.disabled !== true\n && isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n emittedValue.value = day.date;\n if (emitListeners.value.onClickDate !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-date', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-date', (event, eventName) => {\n // don't allow date clicks to propagate to day mouse handlers\n event.stopPropagation();\n if (eventName === 'click-date' || eventName === 'contextmenu-date') {\n emittedValue.value = day.date;\n }\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return [\n dayBtnSlot\n ? dayBtnSlot({ scope })\n : useButton(props, data, dayLabelSlot ? dayLabelSlot({ scope }) : dayLabel),\n isDateFocusable.value === true && useFocusHelper()\n ]\n }\n\n function __renderDayOfYearLabel (day, outside) {\n // return if outside days are hidden\n if (outside === true && props.noOutsideDays === true) {\n return\n }\n\n const slot = slots[ 'day-of-year' ];\n const scope = { timestamp: day };\n\n return h('span', {\n class: {\n 'q-calendar-month__day--day-of-year': true,\n 'q-calendar__ellipsis': true\n }\n }, slot ? slot({ scope }) : day.doy)\n }\n\n function __renderDayMonth (day, outside) {\n // return if outside days are hidden\n if (outside === true && props.noOutsideDays === true) {\n return\n }\n\n const slot = slots[ 'month-label' ];\n const monthLabel = monthFormatter.value(day, props.shortMonthLabel || size.width < 500);\n const scope = { monthLabel, timestamp: day, miniMode: isMiniMode.value };\n\n const style = {};\n if (isMiniMode.value !== true && parsedMonthLabelSize.value !== undefined) {\n style.fontSize = parsedMonthLabelSize.value;\n }\n\n return h('span', {\n class: 'q-calendar-month__day--month q-calendar__ellipsis',\n style\n }, [\n slot ? slot({ scope }) : isMiniMode.value !== true ? monthLabel : undefined\n ])\n }\n\n function __renderMonth () {\n const { start, end } = renderValues.value;\n startDate.value = start.date;\n endDate.value = end.date;\n\n const hasWidth = size.width > 0;\n\n const weekly = withDirectives(h('div', {\n class: {\n 'q-calendar-mini': isMiniMode.value === true,\n 'q-calendar-month': true\n },\n key: startDate.value\n }, [\n hasWidth === true && props.noHeader !== true && __renderHead(),\n hasWidth === true && __renderBody()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => weekly)\n }\n\n return weekly\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent\n });\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent\n // })\n\n return () => __renderCalendar()\n }\n});\n\n// Vue\n\n// Icons\n// const mdiMenuRight = 'M10,17L15,12L10,7V17Z'\n// const mdiMenuUp = 'M7,15L12,10L17,15H7Z'\n\nvar QCalendarResource = defineComponent({\n name: 'QCalendarResource',\n\n props: {\n ...useCommonProps,\n ...useResourceProps,\n ...useIntervalProps,\n ...useColumnProps,\n ...useMaxDaysProps,\n ...useTimesProps,\n // ...useCellWidthProps,\n ...useNavigationProps\n },\n\n emits: [\n 'update:model-value',\n 'update:model-resources',\n 'resource-expanded',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-interval'),\n ...getRawMouseEvents('-head-day'),\n ...getRawMouseEvents('-time'),\n ...getRawMouseEvents('-head-resources'),\n ...getRawMouseEvents('-resource')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n headerRef = ref(null),\n headerColumnRef = ref(null),\n focusRef = ref(null),\n focusValue = ref(null),\n // resourceFocusRef = ref(null),\n // resourceFocusValue = ref(null),\n datesRef = ref({}),\n resourcesRef = ref({}),\n // headDayEventsParentRef = ref({}),\n // headDayEventsChildRef = ref({}),\n // resourcesHeadRef = ref(null),\n direction = ref('next'),\n startDate = ref(today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0),\n emittedValue = ref(props.modelValue),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n dragOverResource = ref(false),\n dragOverResourceInterval = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n watch(() => props.view, () => {\n // reset maxDaysRendered\n maxDaysRendered.value = 0;\n });\n \n const parsedView = computed(() => {\n if (props.view === 'month') {\n return 'month-interval'\n }\n return props.view\n });\n\n const parsedCellWidth = computed(() => {\n return parseInt(props.cellWidth, 10)\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n parsedEnd,\n // dayFormatter,\n // weekdayFormatter,\n // ariaDateFormatter,\n // methods\n dayStyleDefault\n // getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n times,\n parsedValue\n });\n\n const {\n rootRef,\n // scrollWidth,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderResource, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n intervals,\n // ariaDateTimeFormatter,\n // parsedCellWidth,\n // parsedIntervalStart,\n // parsedIntervalMinutes,\n // parsedIntervalCount,\n // parsedIntervalHeight,\n intervalFormatter,\n // parsedStartMinute,\n // bodyHeight,\n // bodyWidth,\n // methods\n styleDefault,\n scrollToTimeX,\n timeDurationWidth,\n timeStartPosX,\n widthToMinutes\n // getTimestampAtEventX\n // getTimestampAtEventIntervalX\n } = useInterval(props, {\n weekdaySkips,\n times,\n scrollArea,\n parsedStart,\n parsedEnd,\n maxDays: maxDaysRendered,\n size,\n headerColumnRef\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n const parsedResourceHeight = computed(() => {\n const height = parseInt(props.resourceHeight, 10);\n if (height === 0) {\n return 'auto'\n }\n return height\n });\n\n const parsedResourceMinHeight = computed(() => {\n return parseInt(props.resourceMinHeight, 10)\n });\n\n const parsedIntervalHeaderHeight = computed(() => {\n return parseInt(props.intervalHeaderHeight, 10)\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== val) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume month is changing\n tryFocus();\n }\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n resourcesRef.value = {};\n });\n\n onMounted(() => {\n __initCalendar();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n // private functions\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n // Render functions\n\n function __renderHead () {\n const style = {\n height: convertToUnit(parsedIntervalHeaderHeight.value)\n };\n\n return h('div', {\n ref: headerRef,\n roll: 'presentation',\n class: {\n 'q-calendar-resource__head': true,\n 'q-calendar__sticky': props.noSticky !== true\n },\n style\n }, [\n __renderHeadResource(),\n __renderHeadIntervals()\n ])\n }\n\n function __renderHeadResource () {\n const slot = slots[ 'head-resources' ];\n\n const height = convertToUnit(parsedIntervalHeaderHeight.value);\n\n const scope = {\n timestamps: intervals,\n date: props.modelValue,\n resources: props.modelResources\n };\n\n return h('div', {\n class: {\n 'q-calendar-resource__head--resources': true,\n 'q-calendar__sticky': props.noSticky !== true\n },\n style: {\n height\n },\n ...getDefaultMouseEventHandlers('-head-resources', event => {\n return { scope, event }\n })\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderHeadIntervals () {\n return h('div', {\n ref: headerColumnRef,\n class: {\n 'q-calendar-resource__head--intervals': true\n }\n }, [\n intervals.value.map(intervals => intervals.map((interval, index) => __renderHeadInterval(interval, index)))\n ])\n }\n\n function __renderHeadInterval (interval, index) {\n const slot = slots[ 'interval-label' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(interval);\n\n const width = convertToUnit(parsedCellWidth.value);\n const height = convertToUnit(parsedIntervalHeaderHeight.value);\n\n const short = props.shortIntervalLabel;\n const label = intervalFormatter.value(interval, short);\n\n const scope = {\n timestamp: interval,\n index,\n label\n };\n scope.droppable = dragOverHeadDayRef.value === label;\n\n const styler = props.intervalStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n height,\n ...styler({ scope })\n };\n\n const intervalClass = typeof props.intervalClass === 'function' ? props.intervalClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('interval');\n\n return h('div', {\n key: label,\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-resource__head--interval': true,\n ...intervalClass,\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'interval', scope) === true\n ? dragOverHeadDayRef.value = label\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'interval', scope) === true\n ? dragOverHeadDayRef.value = label\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'interval', scope) === true\n ? dragOverHeadDayRef.value = label\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'interval', scope) === true\n ? dragOverHeadDayRef.value = label\n : dragOverHeadDayRef.value = '';\n }\n },\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = label;\n }\n },\n ...getDefaultMouseEventHandlers('-interval', event => {\n return { scope, event }\n })\n }, [\n slot ? slot({ scope }) : label,\n useFocusHelper()\n ])\n }\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-resource__body'\n }, [\n __renderScrollArea()\n ])\n }\n\n function __renderScrollArea () {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-resource__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderDayContainer()\n ])\n }\n\n function __renderResourcesError () {\n return h('div', {}, 'No resources have been defined')\n }\n\n function __renderDayContainer () {\n return h('div', {\n class: 'q-calendar-resource__day--container'\n }, [\n __renderHead(),\n props.modelResources === undefined && __renderResourcesError(),\n props.modelResources !== undefined && __renderBodyResources()\n ])\n }\n\n function __renderBodyResources () {\n const data = {\n class: 'q-calendar-resource__resources--body'\n };\n\n return h('div', data, __renderResources())\n }\n\n function __renderResources (resources = undefined, indentLevel = 0, expanded = true) {\n if (resources === undefined) {\n resources = props.modelResources; // start\n }\n return resources.map((resource, resourceIndex) => {\n return __renderResourceRow(resource, resourceIndex, indentLevel, resource.children !== undefined ? resource.expanded : expanded)\n })\n }\n\n function __renderResourceRow (resource, resourceIndex, indentLevel = 0, expanded = true) {\n const style = {\n };\n style.height = parsedResourceHeight.value === 'auto'\n ? parsedResourceHeight.value\n : convertToUnit(parsedResourceHeight.value);\n if (parsedResourceMinHeight.value > 0) {\n style.minHeight = convertToUnit(parsedResourceMinHeight.value);\n }\n\n const resourceRow = h('div', {\n key: resource[ props.resourceKey ] + '-' + resourceIndex,\n class: {\n 'q-calendar-resource__resource--row': true\n },\n style\n }, [\n __renderResourceLabel(resource, resourceIndex, indentLevel, expanded),\n __renderResourceIntervals(resource, resourceIndex)\n ]);\n\n if (resource.children !== undefined) {\n return [\n resourceRow,\n h('div', {\n class: {\n 'q-calendar__child': true,\n 'q-calendar__child--expanded': expanded === true,\n 'q-calendar__child--collapsed': expanded !== true\n }\n }, [\n __renderResources(resource.children, indentLevel + 1, (expanded === false ? expanded : resource.expanded))\n ])\n ]\n }\n\n return [resourceRow]\n }\n\n function __renderResourceLabel (resource, resourceIndex, indentLevel = 0, expanded = true) {\n const slotResourceLabel = slots[ 'resource-label' ];\n\n const style = {\n };\n style.height = resource.height !== void 0\n ? convertToUnit(parseInt(resource.height, 10))\n : parsedResourceHeight.value\n ? convertToUnit(parsedResourceHeight.value)\n : 'auto';\n if (parsedResourceMinHeight.value > 0) {\n style.minHeight = convertToUnit(parsedResourceMinHeight.value);\n }\n const styler = props.resourceStyle || styleDefault;\n const label = resource[ props.resourceLabel ];\n\n const isFocusable = props.focusable === true && props.focusType.includes('resource') && expanded === true;\n const scope = {\n resource,\n timestamps: intervals,\n resourceIndex,\n indentLevel,\n label\n };\n const dragValue = resource[ props.resourceKey ];\n scope.droppable = dragOverResource.value === dragValue;\n const resourceClass = typeof props.resourceClass === 'function' ? props.resourceClass({ scope }) : {};\n\n return h('div', {\n key: resource[ props.resourceKey ] + '-' + resourceIndex,\n ref: (el) => { resourcesRef.value[ resource[ props.resourceKey ] ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-resource__resource': indentLevel === 0,\n 'q-calendar-resource__resource--section': indentLevel !== 0,\n ...resourceClass,\n 'q-calendar__sticky': props.noSticky !== true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style: {\n ...style,\n ...styler({ scope })\n },\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onKeydown: (event) => {\n if (isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of resource via Enter or Space keys\n if (isKeyCode(event, [ 13, 32 ])) {\n if (emitListeners.value.onClickResource !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-resource', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-resource', event => {\n return { scope, event }\n })\n // ---\n }, [\n [\n h('div', {\n class: {\n 'q-calendar__parent': resource.children !== undefined,\n 'q-calendar__parent--expanded': resource.children !== undefined && resource.expanded === true,\n 'q-calendar__parent--collapsed': resource.children !== undefined && resource.expanded !== true\n },\n onClick: (e) => {\n e.stopPropagation();\n resource.expanded = !resource.expanded;\n // emit('update:model-resources', props.modelResources)\n emit('resource-expanded', { expanded: resource.expanded, scope });\n }\n }),\n h('div', {\n class: {\n 'q-calendar-resource__resource--text': true,\n 'q-calendar__ellipsis': true\n },\n style: {\n paddingLeft: (10 * indentLevel + 2) + 'px'\n }\n }, [\n slotResourceLabel ? slotResourceLabel({ scope }) : label\n ]),\n useFocusHelper()\n ]\n ])\n }\n\n function __renderResourceIntervals (resource, resourceIndex) {\n const slot = slots[ 'resource-intervals' ];\n\n const scope = {\n resource,\n timestamps: intervals,\n resourceIndex,\n timeStartPosX,\n timeDurationWidth\n };\n\n return h('div', {\n class: 'q-calendar-resource__resource--intervals'\n }, [\n intervals.value.map(intervals => intervals.map(interval => __renderResourceInterval(resource, interval, resourceIndex))),\n slot && slot({ scope })\n ])\n }\n\n // interval related to resource\n function __renderResourceInterval (resource, interval, resourceIndex) {\n // called for each interval\n const slot = slots[ 'resource-interval' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(interval);\n\n const scope = {\n activeDate,\n resource,\n timestamp: interval,\n resourceIndex\n };\n const resourceKey = resource[ props.resourceKey ];\n const dragValue = (interval.time + '-' + resourceKey);\n scope.droppable = dragOverResourceInterval.value === dragValue;\n const isFocusable = props.focusable === true && props.focusType.includes('time');\n\n const styler = props.intervalStyle || dayStyleDefault;\n const width = convertToUnit(parsedCellWidth.value);\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n ...styler({ scope })\n };\n style.height = resource.height !== void 0\n ? convertToUnit(parseInt(resource.height, 10))\n : parsedResourceHeight.value > 0\n ? convertToUnit(parsedResourceHeight.value)\n : 'auto';\n if (parsedResourceMinHeight.value > 0) {\n style.minHeight = convertToUnit(parsedResourceMinHeight.value);\n }\n\n return h('div', {\n key: dragValue,\n ref: (el) => { datesRef.value[ resource[ props.resourceKey ] ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-resource__resource--interval': true,\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'time', scope) === true\n ? dragOverResourceInterval.value = dragValue\n : dragOverResourceInterval.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'time', scope) === true\n ? dragOverResourceInterval.value = dragValue\n : dragOverResourceInterval.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'time', scope) === true\n ? dragOverResourceInterval.value = dragValue\n : dragOverResourceInterval.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'time', scope) === true\n ? dragOverResourceInterval.value = dragValue\n : dragOverResourceInterval.value = '';\n }\n },\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = dragValue;\n }\n },\n ...getDefaultMouseEventHandlers('-time', event => {\n return { scope, event }\n })\n }, [\n slot && slot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderResource () {\n const { start, end, maxDays } = renderValues.value;\n if (startDate.value !== start.date || endDate.value !== end.date || maxDaysRendered.value !== maxDays) {\n startDate.value = start.date;\n endDate.value = end.date;\n maxDaysRendered.value = maxDays; \n }\n\n const hasWidth = size.width > 0;\n\n const resource = withDirectives(h('div', {\n class: 'q-calendar-resource',\n key: startDate.value\n }, [\n hasWidth === true && __renderBody()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => resource)\n }\n\n return resource\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent,\n timeStartPosX,\n timeDurationWidth,\n widthToMinutes,\n scrollToTimeX\n });\n\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent,\n // timeStartPosX,\n // timeDurationWidth,\n // scrollToTimeX\n // })\n\n return () => __renderCalendar()\n }\n});\n\n// Vue\n\nvar QCalendarScheduler = defineComponent({\n name: 'QCalendarScheduler',\n\n directives: [ResizeObserver$1],\n\n props: {\n ...useCommonProps,\n ...useSchedulerProps,\n ...useColumnProps,\n ...useMaxDaysProps,\n ...useTimesProps,\n ...useCellWidthProps,\n ...useNavigationProps\n },\n\n emits: [\n 'update:model-value',\n 'update:model-resources',\n 'resource-expanded',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-day-resource'),\n ...getRawMouseEvents('-head-resources'),\n ...getRawMouseEvents('-head-day'),\n ...getRawMouseEvents('-resource')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n headerColumnRef = ref(null),\n focusRef = ref(null),\n focusValue = ref(null),\n datesRef = ref({}),\n resourcesRef = ref({}),\n headDayEventsParentRef = ref({}),\n headDayEventsChildRef = ref({}),\n // resourceFocusRef = ref(null),\n // resourceFocusValue = ref(null),\n // resourcesHeadRef = ref(null),\n direction = ref('next'),\n startDate = ref(props.modelValue || today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0),\n emittedValue = ref(props.modelValue),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n dragOverResource = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n watch(() => props.view, () => {\n // reset maxDaysRendered\n maxDaysRendered.value = 0;\n });\n\n const parsedView = computed(() => {\n if (props.view === 'month') {\n return 'month-interval'\n }\n return props.view\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n isSticky\n } = useCellWidth(props);\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n parsedEnd,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n // methods\n dayStyleDefault,\n getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n parsedValue,\n times\n });\n\n const {\n rootRef,\n scrollWidth,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderScheduler, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n // intervals,\n // intervalFormatter,\n // ariaDateTimeFormatter,\n parsedCellWidth,\n // methods\n // getResourceClasses,\n // showResourceLabelDefault,\n styleDefault,\n // getTimestampAtEventInterval,\n // getTimestampAtEvent,\n // getScopeForSlot\n // scrollToTime,\n // timeDurationHeight,\n // timeStartPos\n } = useInterval(props, {\n weekdaySkips,\n times,\n scrollArea,\n parsedStart,\n parsedEnd,\n maxDays: maxDaysRendered,\n size,\n headerColumnRef\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n const parsedColumnCount = computed(() => {\n if (parsedView.value === 'day' && parseInt(props.columnCount, 10) > 1) {\n return parseInt(props.columnCount, 10)\n }\n else if (parsedView.value === 'day' && props.maxDays && props.maxDays > 1) {\n return props.maxDays\n }\n return days.value.length\n });\n\n const resourcesWidth = computed(() => {\n if (rootRef.value) {\n return parseInt(getComputedStyle(rootRef.value).getPropertyValue('--calendar-resources-width'), 10)\n }\n return 0\n });\n\n const parsedResourceHeight = computed(() => {\n const height = parseInt(props.resourceHeight, 10);\n if (height === 0) {\n return 'auto'\n }\n return height\n });\n\n const parsedResourceMinHeight = computed(() => {\n return parseInt(props.resourceMinHeight, 10)\n });\n\n const computedWidth = computed(() => {\n if (rootRef.value) {\n const width = size.width || rootRef.value.getBoundingClientRect().width;\n if (width && resourcesWidth.value && parsedColumnCount.value) {\n return (\n (width - scrollWidth.value - resourcesWidth.value) / parsedColumnCount.value\n ) + 'px'\n }\n }\n return (100 / parsedColumnCount.value) + '%'\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume list of days is changing\n tryFocus();\n }\n });\n\n watch(() => props.maxDays, val => {\n maxDaysRendered.value = val;\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n headDayEventsParentRef.value = {};\n headDayEventsChildRef.value = {};\n resourcesRef.value = {};\n });\n\n onMounted(() => {\n __initCalendar();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n // private functions\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n // function __isActiveResource (day) {\n // return __isActiveDate(day)\n // && day.hasTime\n // && emittedValue.value.hasTime\n // && day.time === emittedValue.value.time\n // }\n\n // Render functions\n\n function __renderHead () {\n return h('div', {\n roll: 'presentation',\n class: {\n 'q-calendar-scheduler__head': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style: {\n marginRight: scrollWidth.value + 'px'\n }\n }, [\n __renderHeadResources(),\n __renderHeadDaysColumn()\n ])\n }\n\n /*\n * Outputs the header that is above the resources\n */\n function __renderHeadResources () {\n const slot = slots[ 'head-resources' ];\n\n const scope = {\n days: days.value, // deprecated\n timestamps: days.value,\n date: props.modelValue,\n resources: props.modelResources\n };\n\n return h('div', {\n class: {\n 'q-calendar-scheduler__head--resources': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n ...getDefaultMouseEventHandlers('-head-resources', event => {\n return { scope, event }\n })\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderHeadDaysColumn () {\n return h('div', {\n ref: headerColumnRef,\n class: {\n 'q-calendar-scheduler__head--days__column': true\n }\n }, [\n __renderHeadDaysRow(),\n __renderHeadDaysEventsRow()\n ])\n }\n\n function __renderHeadDaysRow () {\n return h('div', {\n class: {\n 'q-calendar-scheduler__head--days__weekdays': true\n }\n }, [\n ...__renderHeadDays()\n ])\n }\n\n function __renderHeadDaysEventsRow () {\n const slot = slots[ 'head-days-events' ];\n\n nextTick(() => {\n if (headDayEventsChildRef.value && parseInt(props.columnCount, 10) === 0 && window) {\n try {\n const styles = window.getComputedStyle(headDayEventsChildRef.value);\n headDayEventsParentRef.value.parentElement.style.height = styles.height;\n headDayEventsParentRef.value.style.height = styles.height;\n }\n catch (e) {}\n }\n });\n\n return h('div', {\n class: {\n 'q-calendar-scheduler__head--days__event': true\n }\n }, [\n slot && h('div', {\n ref: headDayEventsParentRef,\n // TODO: this needs to be in a class\n style: {\n position: 'absolute',\n left: 0,\n top: 0,\n right: 0,\n overflow: 'hidden',\n zIndex: 1\n }\n }, [\n slot({ scope: {\n timestamps: days.value,\n days: days.value, // deprecated\n ref: headDayEventsChildRef\n } })\n ]),\n ...__renderHeadDaysEvents()\n ])\n }\n\n function __renderHeadDays () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDay(days.value[ 0 ], columnIndex))\n }\n else {\n return days.value.map(day => __renderHeadDay(day))\n }\n }\n\n function __renderHeadDaysEvents () {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderHeadDayEvent(days.value[ 0 ], columnIndex))\n }\n else {\n return days.value.map(day => __renderHeadDayEvent(day))\n }\n }\n\n function __renderHeadDay (day, columnIndex) {\n const headDaySlot = slots[ 'head-day' ];\n const headDateSlot = slots[ 'head-date' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n timestamp: day,\n activeDate,\n droppable: dragOverHeadDayRef.value === day.date,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n if (columnIndex !== undefined) {\n scope.columnIndex = columnIndex;\n }\n\n const width = isSticky.value === true ? convertToUnit(parsedCellWidth.value) : computedWidth.value;\n const styler = props.weekdayStyle || dayStyleDefault;\n const style = {\n width,\n maxWidth: width,\n minWidth: width,\n ...styler({ scope })\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n const weekdayClass = typeof props.weekdayClass === 'function' ? props.weekdayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('weekday');\n const key = day.date + (columnIndex !== undefined ? '-' + columnIndex : '');\n\n const data = {\n key,\n ref: (el) => { datesRef.value[ key ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-scheduler__head--day': true,\n ...weekdayClass,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onFocus: (e) => {\n if (isFocusable === true) {\n focusRef.value = key;\n }\n },\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n }\n },\n ...getDefaultMouseEventHandlers('-head-day', event => {\n return { scope, event }\n }),\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n }\n };\n\n return h('div', data, [\n // head-day slot replaces everything below it\n headDaySlot !== undefined && headDaySlot({ scope }),\n headDaySlot === undefined && __renderColumnHeaderBefore(day, columnIndex),\n headDaySlot === undefined && __renderDateHeader(day),\n headDaySlot === undefined && headDateSlot && headDateSlot({ scope }),\n headDaySlot === undefined && __renderColumnHeaderAfter(day, columnIndex),\n useFocusHelper()\n ])\n }\n\n function __renderDateHeader (day) {\n if (props.dateHeader === 'stacked') {\n return [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ]\n }\n else if (props.dateHeader === 'inline') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n }\n else if (props.dateHeader === 'inverted') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n }\n }\n\n function __renderHeadDayEvent (day, columnIndex) {\n const headDayEventSlot = slots[ 'head-day-event' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n timestamp: day,\n activeDate,\n droppable: dragOverHeadDayRef.value === day.date,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n if (columnIndex !== undefined) {\n scope.columnIndex = columnIndex;\n }\n\n const width = isSticky.value === true ? convertToUnit(parsedCellWidth.value) : computedWidth.value;\n const style = {\n width,\n maxWidth: width,\n minWidth: width\n };\n if (isSticky.value === true) {\n style.minWidth = width;\n }\n\n return h('div', {\n key: 'event-' + day.date + (columnIndex !== undefined ? '-' + columnIndex : ''),\n class: {\n 'q-calendar-scheduler__head--day__event': true,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate\n },\n style\n }, [\n headDayEventSlot && headDayEventSlot({ scope })\n ])\n }\n\n function __renderHeadWeekday (day) {\n const slot = slots[ 'head-weekday-label' ];\n const shortWeekdayLabel = props.shortWeekdayLabel === true;\n // const divisor = props.dateHeader === 'inline' || props.dateHeader === 'inverted' ? 0.5 : 1\n // const shortCellWidth = props.weekdayBreakpoints[ 1 ] > 0 && (parsedCellWidth.value * divisor) <= props.weekdayBreakpoints[ 1 ]\n const scope = { timestamp: day, shortWeekdayLabel };\n\n const data = {\n class: {\n 'q-calendar-scheduler__head--weekday': true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n 'q-calendar__ellipsis': true\n }\n };\n\n return h('div', data, (slot && slot({ scope })) || __renderHeadWeekdayLabel(day, shortWeekdayLabel))\n }\n\n function __renderHeadWeekdayLabel (day, shortWeekdayLabel) {\n const weekdayLabel = weekdayFormatter.value(day, shortWeekdayLabel || (props.weekdayBreakpoints[ 0 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 0 ]));\n return h('span', {\n class: 'q-calendar-scheduler__head--weekday-label q-calendar__ellipsis'\n }, props.weekdayBreakpoints[ 1 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 1 ] ? minCharWidth(weekdayLabel, props.minWeekdayLabel) : weekdayLabel)\n }\n\n function __renderHeadDayDate (day) {\n const data = {\n class: {\n 'q-calendar-scheduler__head--date': true,\n [ 'q-calendar__' + props.dateAlign ]: true\n }\n };\n\n return h('div', data, __renderHeadDayBtn(day))\n }\n\n function __renderHeadDayBtn (day) {\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n const dayLabel = dayFormatter.value(day, false);\n const headDayLabelSlot = slots[ 'head-day-label' ];\n const headDayButtonSlot = slots[ 'head-day-button' ];\n\n const scope = {\n dayLabel,\n timestamp: day,\n activeDate\n };\n\n const data = {\n class: {\n 'q-calendar-scheduler__head--day__label': true,\n 'q-calendar__button': true,\n 'q-calendar__button--round': props.dateType === 'round',\n 'q-calendar__button--rounded': props.dateType === 'rounded',\n 'q-calendar__button--bordered': day.current === true,\n 'q-calendar__focusable': true\n },\n disabled: day.disabled,\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n if (emitListeners.value.onClickDate !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-date', { scope });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-date', (event, eventName) => {\n if (eventName === 'click-date' || eventName === 'contextmenu-date') {\n emittedValue.value = day.date;\n if (eventName === 'click-date') {\n event.preventDefault();\n }\n }\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return headDayButtonSlot\n ? headDayButtonSlot({ scope })\n : useButton(props, data, headDayLabelSlot ? headDayLabelSlot({ scope }) : dayLabel)\n }\n\n function __renderColumnHeaderBefore (day, columnIndex) {\n const slot = slots[ 'column-header-before' ];\n if (slot) {\n const scope = { timestamp: day, columnIndex };\n return h('div', {\n class: 'q-calendar-scheduler__column-header--before'\n }, [\n slot({ scope })\n ])\n }\n }\n\n function __renderColumnHeaderAfter (day, columnIndex) {\n const slot = slots[ 'column-header-after' ];\n if (slot) {\n const scope = { timestamp: day, columnIndex };\n return h('div', {\n class: 'q-calendar-scheduler__column-header--after'\n }, [\n slot({ scope })\n ])\n }\n }\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-scheduler__body'\n }, [\n __renderScrollArea()\n ])\n }\n\n function __renderScrollArea () {\n if (isSticky.value === true) {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-scheduler__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n isSticky.value !== true && __renderDayResources(),\n __renderDayContainer()\n ])\n }\n else if (props.noScroll === true) {\n return __renderPane()\n }\n else {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-scheduler__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderPane()\n ])\n }\n }\n\n function __renderPane () {\n return h('div', {\n ref: pane,\n class: 'q-calendar-scheduler__pane'\n }, [\n __renderDayContainer()\n ])\n }\n\n function __renderDayContainer () {\n return h('div', {\n class: 'q-calendar-scheduler__day--container'\n }, [\n isSticky.value === true && props.noHeader !== true && __renderHead(),\n __renderResources()\n ])\n }\n\n function __renderResources (resources = undefined, indentLevel = 0, expanded = true) {\n if (resources === undefined) {\n resources = props.modelResources;\n }\n return resources.map((resource, resourceIndex) => {\n return __renderResourceRow(resource, resourceIndex, indentLevel, resource.children !== undefined ? resource.expanded : expanded)\n })\n }\n\n function __renderResourceRow (resource, resourceIndex, indentLevel = 0, expanded = true) {\n const style = {\n };\n style.height = resource.height !== void 0\n ? convertToUnit(parseInt(resource.height, 10))\n : parsedResourceHeight.value\n ? convertToUnit(parsedResourceHeight.value)\n : 'auto';\n if (parsedResourceMinHeight.value > 0) {\n style.minHeight = convertToUnit(parsedResourceMinHeight.value);\n }\n \n const resourceRow = h('div', {\n key: resource[ props.resourceKey ] + '-' + resourceIndex,\n class: {\n 'q-calendar-scheduler__resource--row': true\n },\n style\n }, [\n __renderResource(resource, resourceIndex, indentLevel, expanded),\n __renderDayResources(resource, resourceIndex, indentLevel, expanded)\n ]);\n\n if (resource.children !== undefined) {\n return [\n resourceRow,\n h('div', {\n class: {\n 'q-calendar__child': true,\n 'q-calendar__child--expanded': expanded === true,\n 'q-calendar__child--collapsed': expanded !== true\n }\n }, [\n __renderResources(resource.children, indentLevel + 1, (expanded === false ? expanded : resource.expanded))\n ])\n ]\n }\n\n return [resourceRow]\n }\n\n function __renderResource (resource, resourceIndex, indentLevel = 0, expanded = true) {\n const slotResourceLabel = slots[ 'resource-label' ];\n\n const style = {\n };\n style.height = resource.height !== void 0\n ? convertToUnit(parseInt(resource.height, 10))\n : parsedResourceHeight.value\n ? convertToUnit(parsedResourceHeight.value)\n : 'auto';\n if (parseInt(props.resourceMinHeight, 10) > 0) {\n style.minHeight = convertToUnit(parseInt(props.resourceMinHeight, 10));\n }\n const styler = props.resourceStyle || styleDefault;\n const label = resource[ props.resourceLabel ];\n\n const isFocusable = props.focusable === true && props.focusType.includes('resource') && expanded === true;\n const scope = {\n resource,\n timestamps: days.value,\n days: days.value, // deprecated\n resourceIndex,\n indentLevel,\n label\n };\n const dragValue = resource[ props.resourceKey ];\n scope.droppable = dragOverResource.value === dragValue;\n const resourceClass = typeof props.resourceClass === 'function' ? props.resourceClass({ scope }) : {};\n\n return h('div', {\n key: resource[ props.resourceKey ] + '-' + resourceIndex,\n ref: (el) => { resourcesRef.value[ resource[ props.resourceKey ] ] = el; },\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-scheduler__resource': indentLevel === 0,\n 'q-calendar-scheduler__resource--section': indentLevel !== 0,\n ...resourceClass,\n 'q-calendar__sticky': isSticky.value === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style: {\n ...style,\n ...styler({ scope })\n },\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'resource', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onKeydown: (event) => {\n if (isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of resource via Enter or Space keys\n if (isKeyCode(event, [ 13, 32 ])) {\n if (emitListeners.value.onClickResource !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-resource', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-resource', event => {\n return { scope, event }\n })\n }, [\n [\n h('div', {\n class: {\n 'q-calendar__parent': resource.children !== undefined,\n 'q-calendar__parent--expanded': resource.children !== undefined && resource.expanded === true,\n 'q-calendar__parent--collapsed': resource.children !== undefined && resource.expanded !== true\n },\n onClick: (e) => {\n e.stopPropagation();\n resource.expanded = !resource.expanded;\n // emit('update:model-resources', props.modelResources)\n emit('resource-expanded', { expanded: resource.expanded, scope });\n }\n }),\n h('div', {\n class: {\n 'q-calendar-scheduler__resource--text': true,\n 'q-calendar__ellipsis': true\n },\n style: {\n paddingLeft: (10 * indentLevel + 2) + 'px'\n }\n }, [\n slotResourceLabel ? slotResourceLabel({ scope }) : label\n ]),\n useFocusHelper()\n ]\n ])\n }\n\n function __renderDayResources (resource, resourceIndex, indentLevel = 0, expanded = true) {\n const slot = slots[ 'resource-days' ];\n\n const width = isSticky.value === true ? convertToUnit(parsedCellWidth.value) : computedWidth.value;\n\n const scope = {\n resource,\n resourceIndex,\n indentLevel,\n expanded,\n cellWidth: width,\n timestamps: days.value,\n days: days.value // deprecated\n };\n\n const style = {};\n style.height = parseInt(props.resourceHeight, 10) > 0 ? convertToUnit(parseInt(props.resourceHeight, 10)) : 'auto';\n if (parseInt(props.resourceMinHeight, 10) > 0) {\n style.minHeight = convertToUnit(parseInt(props.resourceMinHeight, 10));\n }\n\n const data = {\n class: 'q-calendar-scheduler__resource--days',\n style\n };\n\n return h('div', data,\n [\n ...__renderDays(resource, resourceIndex, indentLevel, expanded),\n slot && slot({ scope })\n ])\n }\n\n function __renderDays (resource, resourceIndex, indentLevel = 0, expanded = true) {\n if (days.value.length === 1 && parseInt(props.columnCount, 10) > 0) {\n return Array.apply(null, new Array(parseInt(props.columnCount, 10)))\n .map((_, i) => i + parseInt(props.columnIndexStart, 10))\n .map(columnIndex => __renderDay(days.value[ 0 ], columnIndex, resource, resourceIndex, indentLevel, expanded))\n }\n else {\n return days.value.map(day => __renderDay(day, undefined, resource, resourceIndex, indentLevel, expanded))\n }\n }\n\n function __renderDay (day, columnIndex, resource, resourceIndex, indentLevel = 0, expanded = true) {\n const slot = slots.day;\n\n const styler = props.dayStyle || dayStyleDefault;\n const activeDate = props.noActiveDate !== true && parsedValue.value.date === day.date;\n const dragValue = day.date + ':' + resource[ props.resourceKey ] + (columnIndex !== undefined ? ':' + columnIndex : '');\n const droppable = dragOverResource.value === dragValue;\n const scope = { timestamp: day, columnIndex, resource, resourceIndex, indentLevel, activeDate, droppable };\n\n const width = isSticky.value === true ? convertToUnit(parsedCellWidth.value) : computedWidth.value;\n const style = {\n width,\n maxWidth: width,\n ...styler({ scope })\n };\n style.height = parseInt(props.resourceHeight, 10) > 0 ? convertToUnit(parseInt(props.resourceHeight, 10)) : 'auto';\n if (parseInt(props.resourceMinHeight, 10) > 0) {\n style.minHeight = convertToUnit(parseInt(props.resourceMinHeight, 10));\n }\n const dayClass = typeof props.dayClass === 'function' ? props.dayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('day') && expanded === true;\n\n return h('div', {\n key: day.date + (columnIndex !== undefined ? ':' + columnIndex : ''),\n tabindex: isFocusable === true ? 0 : -1,\n class: {\n 'q-calendar-scheduler__day': indentLevel === 0,\n 'q-calendar-scheduler__day--section': indentLevel !== 0,\n ...dayClass,\n ...getRelativeClasses(day),\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style,\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onKeydown: (event) => {\n if (isKeyCode(event, [ 13, 32 ])) {\n event.stopPropagation();\n event.preventDefault();\n }\n },\n onKeyup: (event) => {\n // allow selection of date via Enter or Space keys\n if (isKeyCode(event, [ 13, 32 ])) {\n emittedValue.value = scope.timestamp.date;\n if (emitListeners.value.onClickResource !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-resource', { scope, event });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-day-resource', event => {\n return { scope, event }\n })\n\n }, [\n slot && slot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderResourcesError () {\n return h('div', {}, 'No resources have been defined')\n }\n\n function __renderScheduler () {\n const { start, end, maxDays } = renderValues.value;\n if (startDate.value !== start.date || endDate.value !== end.date || maxDaysRendered.value !== maxDays) {\n startDate.value = start.date;\n endDate.value = end.date;\n maxDaysRendered.value = maxDays; \n }\n\n const hasWidth = size.width > 0;\n const hasResources = props.modelResources && props.modelResources.length > 0;\n\n const scheduler = withDirectives(h('div', {\n key: startDate.value,\n class: 'q-calendar-scheduler'\n }, [\n hasWidth === true && hasResources === true && isSticky.value !== true && props.noHeader !== true && __renderHead(),\n hasWidth === true && hasResources === true && __renderBody(),\n hasResources === false && __renderResourcesError()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => scheduler)\n }\n\n return scheduler\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent\n });\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent\n // })\n\n return () => __renderCalendar()\n }\n});\n\nconst useTaskProps = {\n modelValue: { // v-model\n type: String,\n default: today(),\n validator: v => v === '' || validateTimestamp(v)\n },\n modelTasks: {\n type: Array,\n default: []\n },\n modelTitle: {\n type: Array,\n default: []\n },\n modelFooter: {\n type: Array,\n default: []\n },\n taskKey: {\n type: [ String, Number ],\n default: 'id'\n },\n weekdays: {\n type: Array,\n default: () => [ 0, 1, 2, 3, 4, 5, 6 ]\n },\n dateType: {\n type: String,\n default: 'round',\n validator: v => [ 'round', 'rounded', 'square' ].includes(v)\n },\n dateHeader: {\n type: String,\n default: 'stacked',\n validator: v => [ 'stacked', 'inline', 'inverted' ].includes(v)\n },\n weekdayAlign: {\n type: String,\n default: 'center',\n validator: v => [ 'left', 'center', 'right' ].includes(v)\n },\n dateAlign: {\n type: String,\n default: 'center',\n validator: v => [ 'left', 'center', 'right' ].includes(v)\n },\n view: {\n type: String,\n validator: v => [ 'day', 'week', 'month' ].includes(v)\n // default: 'month'\n },\n viewCount: {\n type: Number,\n default: 1,\n validator: v => validateNumber(v) && v > 0\n },\n bordered: Boolean,\n dark: Boolean,\n noAria: Boolean,\n noActiveDate: Boolean,\n shortWeekdayLabel: Boolean,\n noHeader: Boolean,\n noDefaultHeaderText: Boolean,\n noDefaultHeaderBtn: Boolean,\n cellWidth: [ Number, String ],\n // cellWidth: {\n // type: [ Number, String ],\n // default: 75\n // },\n minWeekdayLabel: {\n type: [ Number, String ],\n default: 2\n },\n weekdayBreakpoints: {\n type: Array,\n default: () => [ 75, 35 ],\n validator: v => v.length === 2\n },\n locale: {\n type: String,\n default: 'en-US'\n },\n animated: Boolean,\n transitionPrev: {\n type: String,\n default: 'slide-right'\n },\n transitionNext: {\n type: String,\n default: 'slide-left'\n },\n disabledDays: Array,\n disabledBefore: String,\n disabledAfter: String,\n disabledWeekdays: {\n type: Array,\n default: () => []\n },\n weekdayClass: Function,\n dayClass: Function,\n footerDayClass: Function,\n dragEnterFunc: {\n type: Function\n // event, timestamp\n },\n dragOverFunc: {\n type: Function\n // event, timestamp\n },\n dragLeaveFunc: {\n type: Function\n // event, timestamp\n },\n dropFunc: {\n type: Function\n // event, timestamp\n },\n hoverable: Boolean,\n focusable: Boolean,\n focusType: {\n type: Array,\n default: ['date'],\n validator: v => {\n let val = true;\n v.forEach(type => {\n if ([ 'day', 'date', 'weekday', 'interval', 'resource', 'task' ].includes(type) !== true) {\n val = false;\n }\n });\n return val\n }\n },\n taskWidth: {\n type: Number,\n default: 200,\n validator: v => validateNumber(v) && v > 0\n }\n};\n\nfunction useTask (props, emit, {\n weekdaySkips,\n times\n // parsedStart,\n // parsedEnd,\n // size,\n // headerColumnRef\n}) {\n const parsedStartDate = computed(() => {\n if (props.view === 'day') {\n return parseTimestamp(props.modelValue)\n }\n else if (props.view === 'week') {\n return getStartOfWeek(parseTimestamp(props.modelValue), props.weekdays, times.today)\n }\n else if (props.view === 'month') {\n return getStartOfMonth(parseTimestamp(props.modelValue), props.weekdays, times.today)\n }\n else {\n throw new Error(`QCalendarTask: unknown 'view' type (${ props.view })`)\n }\n });\n\n const parsedEndDate = computed(() => {\n if (props.view === 'day') {\n if (props.viewCount === 1) {\n return parsedStartDate.value\n }\n let end = copyTimestamp(parsedStartDate.value);\n end = addToDate(end, { day: props.viewCount - 1 });\n return end\n }\n else if (props.view === 'week') {\n if (props.viewCount === 1) {\n return getEndOfWeek(parseTimestamp(props.modelValue), props.weekdays, times.today)\n }\n else {\n let end = copyTimestamp(parsedStartDate.value);\n end = addToDate(end, { day: (props.viewCount - 1) * DAYS_IN_WEEK });\n return getEndOfWeek(end, props.weekdays, times.today)\n }\n }\n else if (props.view === 'month') {\n if (props.viewCount === 1) {\n return getEndOfMonth(parseTimestamp(props.modelValue), props.weekdays, times.today)\n }\n else {\n let end = copyTimestamp(parsedStartDate.value);\n end = addToDate(end, { month: props.viewCount });\n return getEndOfMonth(end, props.weekdays, times.today)\n }\n }\n else {\n throw new Error(`QCalendarTask: unknown 'view' type (${ props.view })`)\n }\n });\n\n const days = computed(() => {\n return createDayList(\n parsedStartDate.value,\n parsedEndDate.value,\n times.today,\n weekdaySkips.value,\n props.disabledBefore,\n props.disabledAfter,\n props.disabledWeekdays,\n props.disabledDays,\n Number.MAX_SAFE_INTEGER\n // parsedMinDays.value\n )\n });\n\n return {\n days,\n parsedStartDate,\n parsedEndDate\n }\n}\n\nvar QCalendarTask = defineComponent({\n name: 'QCalendarTask',\n\n directives: [ResizeObserver$1],\n\n props: {\n ...useTimesProps,\n ...useNavigationProps,\n ...useTaskProps // last for any overrides\n },\n\n emits: [\n 'update:model-value',\n 'update:model-tasks',\n 'update:model-title',\n 'update:model-footer',\n 'task-expanded',\n ...useCheckChangeEmits,\n ...useMoveEmits,\n ...getRawMouseEvents('-date'),\n ...getRawMouseEvents('-day'),\n ...getRawMouseEvents('-head-day')\n ],\n\n setup (props, { slots, emit, expose }) {\n const\n scrollArea = ref(null),\n pane = ref(null),\n direction = ref('next'),\n startDate = ref(props.modelValue || today()),\n endDate = ref('0000-00-00'),\n maxDaysRendered = ref(0), // always 0\n emittedValue = ref(props.modelValue),\n focusRef = ref(null),\n focusValue = ref(null),\n datesRef = ref({}),\n // taskRef = ref(null),\n // weekEventRef = ref([]),\n // weekRef = ref([]),\n // headerColumnRef = ref(null),\n size = reactive({ width: 0, height: 0 }),\n dragOverHeadDayRef = ref(false),\n // keep track of last seen start and end dates\n lastStart = ref(null),\n lastEnd = ref(null);\n\n watch(() => props.view, () => {\n // reset maxDaysRendered\n maxDaysRendered.value = 0;\n });\n \n const parsedView = computed(() => {\n if (props.view === 'month') {\n return 'month-interval'\n }\n return props.view\n });\n\n const vm = getCurrentInstance();\n if (vm === null) {\n throw new Error('current instance is null')\n }\n\n // initialize emit listeners\n const { emitListeners } = useEmitListeners(vm);\n\n const {\n times,\n setCurrent,\n updateCurrent\n } = useTimes(props);\n\n // update dates\n updateCurrent();\n setCurrent();\n\n const {\n // computed\n weekdaySkips,\n parsedStart,\n // parsedEnd,\n dayFormatter,\n weekdayFormatter,\n ariaDateFormatter,\n // methods\n dayStyleDefault,\n getRelativeClasses\n } = useCommon(props, { startDate, endDate, times });\n\n const parsedValue = computed(() => {\n return parseTimestamp(props.modelValue, times.now)\n || parsedStart.value\n || times.today\n });\n\n focusValue.value = parsedValue.value;\n focusRef.value = parsedValue.value.date;\n\n // const computedStyles = computed(() => {\n // const style = {}\n // style.minWidth = computedWidth.value\n // style.maxWidth = computedWidth.value\n // style.width = computedWidth.value\n // return style\n // })\n\n const { renderValues } = useRenderValues(props, {\n parsedView,\n times,\n parsedValue\n });\n\n const {\n rootRef,\n __initCalendar,\n __renderCalendar\n } = useCalendar(props, __renderTask, {\n scrollArea,\n pane\n });\n\n const {\n // computed\n days,\n parsedStartDate,\n parsedEndDate\n // methods\n } = useTask(props, emit, {\n weekdaySkips,\n times\n });\n\n const { move } = useMove(props, {\n parsedView,\n parsedValue,\n weekdaySkips,\n direction,\n maxDays: maxDaysRendered,\n times,\n emittedValue,\n emit\n });\n\n const {\n getDefaultMouseEventHandlers\n } = useMouse(emit, emitListeners);\n\n const {\n checkChange\n } = useCheckChange(emit, { days, lastStart, lastEnd });\n\n const {\n isKeyCode\n } = useEvents();\n\n const { tryFocus } = useKeyboard(props, {\n rootRef,\n focusRef,\n focusValue,\n datesRef,\n days,\n parsedView,\n parsedValue,\n emittedValue,\n weekdaySkips,\n direction,\n times\n });\n\n // const parsedColumnCount = computed(() => {\n // return days.value.length\n // })\n\n // const borderWidth = computed(() => {\n // if (rootRef.value) {\n // const calendarBorderWidth = getComputedStyle(rootRef.value).getPropertyValue('--calendar-border')\n // const parts = calendarBorderWidth.split(' ')\n // const part = parts.filter(part => part.indexOf('px') > -1)\n // return parseInt(part[ 0 ], 0)\n // }\n // return 0\n // })\n\n const isSticky = ref(true);\n const parsedCellWidth = computed(() => {\n if (props.cellWidth !== undefined) {\n return parseInt(props.cellWidth, 10)\n }\n return 150 // default when not specified\n });\n\n // const computedWidth = computed(() => {\n // if (rootRef.value) {\n // const width = size.width || rootRef.value.getBoundingClientRect().width\n // if (width && parsedColumnCount.value) {\n // return (width / parsedColumnCount.value) + 'px'\n // }\n // }\n // return (100 / parsedColumnCount.value) + '%'\n // })\n\n const isDayFocusable = computed(() => {\n return props.focusable === true && props.focusType.includes('day') && isMiniMode.value !== true\n });\n\n const isDateFocusable = computed(() => {\n return props.focusable === true && props.focusType.includes('date') && isDayFocusable.value !== true\n });\n\n const isWeekdayFocusable = computed(() => {\n return props.focusable === true && props.focusType.includes('weekday')\n });\n\n const parsedHeight = computed(() => {\n return parseInt(props.dayHeight, 10)\n });\n\n const parsedMinHeight = computed(() => {\n return parseInt(props.dayMinHeight, 10)\n });\n\n watch([days], checkChange, { deep: true, immediate: true });\n\n watch(() => props.modelValue, (val, oldVal) => {\n if (emittedValue.value !== val) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emittedValue.value = val;\n }\n focusRef.value = val;\n });\n\n watch(emittedValue, (val, oldVal) => {\n if (emittedValue.value !== props.modelValue) {\n if (props.animated === true) {\n const v1 = getDayIdentifier(parsed(val));\n const v2 = getDayIdentifier(parsed(oldVal));\n direction.value = v1 >= v2 ? 'next' : 'prev';\n }\n emit('update:model-value', val);\n }\n });\n\n watch(focusRef, val => {\n if (val) {\n focusValue.value = parseTimestamp(val);\n }\n });\n\n watch(focusValue, (val) => {\n if (datesRef.value[ focusRef.value ]) {\n datesRef.value[ focusRef.value ].focus();\n }\n else {\n // if focusRef is not in the list of current dates of dateRef,\n // then assume month is changing\n tryFocus();\n }\n });\n\n onBeforeUpdate(() => {\n datesRef.value = {};\n // weekEventRef.value = []\n // weekRef.value = []\n });\n\n onMounted(() => {\n __initCalendar();\n });\n\n // public functions\n\n function moveToToday () {\n emittedValue.value = today();\n }\n\n function next (amount = 1) {\n move(amount);\n }\n\n function prev (amount = 1) {\n move(-amount);\n }\n\n // private functions\n\n function __onResize ({ width, height }) {\n size.width = width;\n size.height = height;\n }\n\n function __isActiveDate (day) {\n return day.date === emittedValue.value\n }\n\n /**\n * Renders the given day with the associated task\n * @param {Timestamp} day Timestamp representing the day\n * @param {any} task The Task\n * @param {number} taskIndex The task index\n * @returns VNode\n */\n function __renderTaskDay (day, task, taskIndex) {\n const slot = slots.day;\n const styler = props.dayStyle || dayStyleDefault;\n const activeDate = props.noActiveDate !== true && parsedValue.value.date === day.date;\n\n const scope = {\n timestamp: day,\n task,\n taskIndex,\n activeDate\n };\n const width = convertToUnit(parsedCellWidth.value);\n const style = {\n width,\n minWidth: width,\n maxWidth: width,\n ...styler({ scope })\n };\n\n const dayClass = typeof props.dayClass === 'function' ? props.dayClass({ scope }) : {};\n // const key = day.date + '-' + task.id\n\n return h('div', {\n // key,\n // ref: (el) => {\n // if (isDayFocusable.value === true) {\n // datesRef.value[ key ] = el\n // }\n // },\n tabindex: isDayFocusable.value === true ? 0 : -1,\n class: {\n 'q-calendar-task__task--day': true,\n ...dayClass,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isDayFocusable.value === true\n },\n style,\n onFocus: (e) => {\n if (isDayFocusable.value === true) ;\n },\n ...getDefaultMouseEventHandlers('-day', event => {\n return { scope, event }\n }),\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'day', scope) === true\n ? dragOverResource.value = dragValue\n : dragOverResource.value = '';\n }\n }\n }, [\n slot && slot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderTaskDays (task, taskIndex) {\n return days.value.map(day => __renderTaskDay(day, task, taskIndex))\n }\n\n function __renderTaskDaysRow (task, taskIndex) {\n const slot = slots.days;\n const scope = {\n timestamps: days.value,\n days: days.value, // deprecated\n task,\n taskIndex,\n cellWidth: parsedCellWidth.value\n };\n\n return h('div', {\n class: 'q-calendar-task__task--days-row'\n }, [\n __renderTaskDays(task, taskIndex),\n slot && slot({ scope }),\n ])\n }\n\n function __renderTaskItem (task, taskIndex, indentLevel = 0, expanded = true) {\n const slot = slots.task;\n const scope = {\n start: parsedStartDate.value,\n end: parsedEndDate.value,\n task,\n taskIndex,\n expanded\n };\n const width = convertToUnit(props.taskWidth);\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n const isFocusable = props.focusable === true && props.focusType.includes('task');\n\n return h('div', {\n class: {\n 'q-calendar-task__task--item': true,\n 'q-calendar__sticky': isSticky.value === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style\n }, [\n h('div', {\n style: {\n flexDirection: 'column',\n justifyContent: 'center',\n alignItems: 'center',\n width: 10 + (10 * indentLevel) + 'px'\n }\n }, [\n h('div', {\n class: {\n 'q-calendar__parent': task.children !== undefined,\n 'q-calendar__parent--expanded': task.children !== undefined && task.expanded === true,\n 'q-calendar__parent--collapsed': task.children !== undefined && task.expanded !== true\n },\n onClick: (e) => {\n e.stopPropagation();\n task.expanded = !task.expanded;\n // emit('update:model-tasks', props.modelTasks)\n emit('task-expanded', { expanded: task.expanded, scope });\n }\n })\n ]),\n slot && slot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderTaskRow (task, taskIndex, indentLevel = 0, expanded = true) {\n const height = task.height !== void 0 ? convertToUnit(parseInt(task.height, 10)) : parsedHeight.value > 0 ? convertToUnit(parsedHeight.value) : 'auto';\n const minHeight = parsedMinHeight.value > 0 ? convertToUnit(parsedMinHeight.value) : void 0;\n \n const style = {\n height\n };\n if (minHeight !== void 0) {\n style.minHeight = minHeight;\n }\n\n const taskRow = h('div', {\n key: task[ props.taskKey ] + '-' + taskIndex,\n class: {\n 'q-calendar-task__task': indentLevel === 0,\n 'q-calendar-task__task--section': indentLevel !== 0,\n },\n style\n }, [\n __renderTaskItem(task, taskIndex, indentLevel, expanded),\n __renderTaskDaysRow(task, taskIndex)\n ]);\n\n if (task.children !== undefined) {\n return [\n taskRow,\n h('div', {\n class: {\n 'q-calendar__child': true,\n 'q-calendar__child--expanded': expanded === true,\n 'q-calendar__child--collapsed': expanded !== true\n }\n }, [\n __renderTasks(task.children, indentLevel + 1, (expanded === false ? expanded : task.expanded))\n ])\n ]\n }\n\n return [taskRow]\n\n }\n\n function __renderTasks (tasks = undefined, indentLevel = 0, expanded = true) {\n if (tasks === undefined) {\n tasks = props.modelTasks;\n }\n return tasks.map((task, taskIndex) => {\n return __renderTaskRow(task, taskIndex, indentLevel, task.children !== undefined ? task.expanded : expanded)\n })\n }\n\n function __renderTasksContainer () {\n return h('div', {\n class: {\n 'q-calendar-task__task--container': true,\n 'q-calendar__sticky': isSticky.value === true\n }\n }, [\n __renderTasks()\n ])\n }\n\n function __renderFooterTask (task, index) {\n const slot = slots[ 'footer-task' ];\n const scope = {\n start: parsedStartDate.value,\n end: parsedEndDate.value,\n footer: task,\n index\n };\n const width = convertToUnit(props.taskWidth);\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n return h('div', {\n class: {\n 'q-calendar-task__footer--task': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderFooterDay (day, task, index) {\n const slot = slots[ 'footer-day' ];\n const scope = {\n timestamp: day,\n footer: task,\n index\n };\n const width = convertToUnit(parsedCellWidth.value);\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n const footerDayClass = typeof props.footerDayClass === 'function' ? props.footerDayClass({ scope }) : {};\n\n return h('div', {\n class: {\n 'q-calendar-task__footer--day': true,\n ...footerDayClass,\n ...getRelativeClasses(day),\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isDayFocusable.value === true\n },\n style,\n // onFocus: (e) => {\n // if (isDayFocusable.value === true) {\n // focusRef.value = day.date\n // }\n // }\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderFooterDays (task, index) {\n return h('div', {\n class: 'q-calendar-task__footer--day-wrapper'\n }, [\n days.value.map(day => __renderFooterDay(day, task, index))\n ])\n }\n\n function __renderFooterRows () {\n const isFocusable = props.focusable === true && props.focusType.includes('task');\n\n return props.modelFooter.map((task, index) => {\n return h('div', {\n class: {\n 'q-calendar-task__footer--wrapper': true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n }\n }, {\n default: () => [\n __renderFooterTask(task, index),\n __renderFooterDays(task, index)\n ]\n })\n })\n }\n\n function __renderFooter () {\n return h('div', {\n class: {\n 'q-calendar-task__footer': true,\n 'q-calendar__sticky': isSticky.value === true\n }\n }, __renderFooterRows())\n }\n\n function __renderContainer () {\n return h('div', {\n class: {\n 'q-calendar-task__container': true\n }\n }, [\n props.noHeader !== true && __renderHead(),\n __renderTasksContainer(),\n __renderFooter()\n ])\n }\n\n function __renderHeadTask () {\n const slot = slots[ 'head-tasks' ];\n const scope = {\n start: parsedStartDate.value,\n end: parsedEndDate.value\n };\n const width = convertToUnit(parseInt(props.taskWidth, 10));\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n return h('div', {\n class: {\n 'q-calendar-task__head--tasks': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderTitleTask (title, index) {\n const slot = slots[ 'title-task' ];\n\n const width = convertToUnit(parseInt(props.taskWidth, 10));\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n const scope = {\n start: parsedStartDate.value,\n end: parsedEndDate.value,\n cellWidth: width,\n title,\n index\n };\n\n return h('div', {\n class: {\n 'q-calendar-task__title--task': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style\n }, [\n slot && slot({ scope })\n ])\n }\n\n function __renderHeadWeekday (day) {\n const slot = slots[ 'head-weekday-label' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n activeDate,\n timestamp: day,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const data = {\n class: {\n 'q-calendar-task__head--weekday': true,\n [ 'q-calendar__' + props.weekdayAlign ]: true,\n 'q-calendar__ellipsis': true\n }\n };\n\n return h('div', data, (slot && slot({ scope })) || __renderHeadWeekdayLabel(day, props.shortWeekdayLabel))\n }\n\n function __renderHeadWeekdayLabel (day, shortWeekdayLabel) {\n const weekdayLabel = weekdayFormatter.value(day, shortWeekdayLabel || (props.weekdayBreakpoints[ 0 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 0 ]));\n return h('span', {\n class: 'q-calendar__ellipsis'\n }, props.weekdayBreakpoints[ 1 ] > 0 && parsedCellWidth.value <= props.weekdayBreakpoints[ 1 ] ? minCharWidth(weekdayLabel, props.minWeekdayLabel) : weekdayLabel)\n }\n\n function __renderHeadDayDate (day) {\n const data = {\n class: {\n 'q-calendar-task__head--date': true,\n [ 'q-calendar__' + props.dateAlign ]: true\n }\n };\n\n return h('div', data, __renderHeadDayBtn(day))\n }\n\n function __renderHeadDayBtn (day) {\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n const dayLabel = dayFormatter.value(day, false);\n const headDayLabelSlot = slots[ 'head-day-label' ];\n const headDayButtonSlot = slots[ 'head-day-button' ];\n const scope = { dayLabel, timestamp: day, activeDate };\n\n const key = day.date;\n\n const data = {\n key,\n tabindex: isDateFocusable.value === true ? 0 : -1,\n class: {\n 'q-calendar-task__head--day__label': true,\n 'q-calendar__button': true,\n 'q-calendar__button--round': props.dateType === 'round',\n 'q-calendar__button--rounded': props.dateType === 'rounded',\n 'q-calendar__button--bordered': day.current === true,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isDateFocusable.value === true\n },\n disabled: day.disabled,\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n if (emitListeners.value.onClickDate !== undefined) {\n // eslint-disable-next-line vue/require-explicit-emits\n emit('click-date', { scope });\n }\n }\n },\n ...getDefaultMouseEventHandlers('-date', (event, eventName) => {\n if (eventName === 'click-date' || eventName === 'contextmenu-date') {\n emittedValue.value = day.date;\n if (eventName === 'click-date') {\n event.preventDefault();\n }\n }\n return { scope, event }\n })\n };\n\n if (props.noAria !== true) {\n data.ariaLabel = ariaDateFormatter.value(day);\n }\n\n return headDayButtonSlot\n ? headDayButtonSlot({ scope })\n : useButton(props, data, headDayLabelSlot ? headDayLabelSlot({ scope }) : dayLabel)\n }\n\n function __renderDateHeader (day) {\n if (props.dateHeader === 'stacked') {\n return [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ]\n }\n else if (props.dateHeader === 'inline') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day),\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day)\n ])\n }\n }\n else if (props.dateHeader === 'inverted') {\n if (props.weekdayAlign === 'left' && props.dateAlign === 'right') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else if (props.weekdayAlign === 'right' && props.dateAlign === 'left') {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n else {\n return h('div', {\n class: 'q-calendar__header--inline'\n }, [\n props.noDefaultHeaderBtn !== true && __renderHeadDayDate(day),\n props.noDefaultHeaderText !== true && __renderHeadWeekday(day)\n ])\n }\n }\n }\n\n /**\n * Renders the given day with the associated task\n * @param {Timestamp} day Timestamp representing the day\n * @param {sting} title The Title\n * @param {number} index The task index\n * @returns VNode\n */\n function __renderTitleDay (day, title, index) {\n const slot = slots[ 'title-day' ];\n\n const width = convertToUnit(parsedCellWidth.value);\n const style = {\n width,\n minWidth: width,\n maxWidth: width\n };\n\n const scope = {\n timestamp: day,\n title,\n index,\n cellWidth: parsedCellWidth.value\n };\n \n const dayClass = typeof props.dayClass === 'function' ? props.dayClass({ scope }) : {};\n const isFocusable = props.focusable === true && props.focusType.includes('day');\n \n return h('div', {\n class: {\n 'q-calendar-task__title--day': true,\n ...dayClass,\n ...getRelativeClasses(day),\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isFocusable === true\n },\n style\n }, [\n slot && slot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderHeadDay (day) {\n const headDaySlot = slots[ 'head-day' ];\n const headDateSlot = slots[ 'head-date' ];\n const activeDate = props.noActiveDate !== true && __isActiveDate(day);\n\n const scope = {\n timestamp: day,\n activeDate,\n droppable: dragOverHeadDayRef.value = day.date,\n disabled: (props.disabledWeekdays ? props.disabledWeekdays.includes(day.weekday) : false)\n };\n\n const styler = props.weekdayStyle || dayStyleDefault;\n const weekdayClass = typeof props.weekdayClass === 'function' ? props.weekdayClass({ scope }) : {};\n\n const width = convertToUnit(parsedCellWidth.value);\n const style = {\n width,\n minWidth: width,\n maxWidth: width,\n ...styler({ scope })\n };\n\n const key = day.date;\n\n const data = {\n key,\n ref: (el) => { datesRef.value[ key ] = el; },\n tabindex: isWeekdayFocusable.value === true ? 0 : -1,\n class: {\n 'q-calendar-task__head--day': true,\n ...weekdayClass,\n ...getRelativeClasses(day),\n 'q-active-date': activeDate,\n 'q-calendar__hoverable': props.hoverable === true,\n 'q-calendar__focusable': isWeekdayFocusable.value === true\n },\n style,\n onFocus: (e) => {\n if (isWeekdayFocusable.value === true) {\n focusRef.value = key;\n }\n },\n onKeydown: (e) => {\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n e.stopPropagation();\n e.preventDefault();\n }\n },\n onKeyup: (e) => {\n // allow selection of date via Enter or Space keys\n if (day.disabled !== true\n && isKeyCode(e, [ 13, 32 ])) {\n emittedValue.value = day.date;\n }\n },\n ...getDefaultMouseEventHandlers('-head-day', event => {\n return { scope, event }\n }),\n onDragenter: (e) => {\n if (props.dragEnterFunc !== undefined && typeof props.dragEnterFunc === 'function') {\n props.dragEnterFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragover: (e) => {\n if (props.dragOverFunc !== undefined && typeof props.dragOverFunc === 'function') {\n props.dragOverFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDragleave: (e) => {\n if (props.dragLeaveFunc !== undefined && typeof props.dragLeaveFunc === 'function') {\n props.dragLeaveFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n },\n onDrop: (e) => {\n if (props.dropFunc !== undefined && typeof props.dropFunc === 'function') {\n props.dropFunc(e, 'head-day', scope) === true\n ? dragOverHeadDayRef.value = day.date\n : dragOverHeadDayRef.value = '';\n }\n }\n };\n\n return h('div', data, [\n // head-day slot replaces everything below it\n headDaySlot !== undefined && headDaySlot({ scope }),\n headDaySlot === undefined && __renderDateHeader(day),\n headDaySlot === undefined && headDateSlot && headDateSlot({ scope }),\n useFocusHelper()\n ])\n }\n\n function __renderHeadDays () {\n return days.value.map(day => __renderHeadDay(day))\n }\n\n function __renderTitleDays (title, index) {\n return days.value.map(day => __renderTitleDay(day, title, index))\n }\n\n function __renderHeadDaysRow () {\n return h('div', {\n class: {\n 'q-calendar-task__head--days': true\n }\n }, [\n ...__renderHeadDays()\n ])\n }\n\n function __renderTitleDaysRow (title, index) {\n return h('div', {\n class: {\n 'q-calendar-task__title--days': true\n }\n }, [\n ...__renderTitleDays(title, index)\n ])\n }\n\n // ----\n\n function __renderHead () {\n return h('div', {\n roll: 'presentation',\n class: {\n 'q-calendar-task__head': true,\n 'q-calendar__sticky': isSticky.value === true\n },\n style: {\n }\n }, [\n h('div', {\n style: {\n position: 'relative',\n display: 'flex'\n }\n }, [\n __renderHeadTask(),\n __renderHeadDaysRow()\n ]),\n props.modelTitle.map((title, index) => h('div', {\n class: 'q-calendar-task__title',\n style: {\n position: 'relative',\n display: 'flex'\n }\n }, [\n __renderTitleTask(title, index),\n __renderTitleDaysRow(title, index)\n ]))\n ])\n }\n\n function __renderBody () {\n return h('div', {\n class: 'q-calendar-task__body'\n }, [\n __renderScrollArea()\n ])\n }\n\n function __renderScrollArea () {\n return h('div', {\n ref: scrollArea,\n class: {\n 'q-calendar-task__scroll-area': true,\n 'q-calendar__scroll': true\n }\n }, [\n __renderContainer()\n ])\n }\n\n function __renderTask () {\n const { start, end } = renderValues.value;\n startDate.value = start.date;\n endDate.value = end.date;\n\n const hasWidth = size.width > 0;\n\n const weekly = withDirectives(h('div', {\n key: startDate.value,\n class: 'q-calendar-task'\n }, [\n hasWidth === true && __renderBody()\n ]), [[\n ResizeObserver$1,\n __onResize\n ]]);\n\n if (props.animated === true) {\n const transition = 'q-calendar--' + (direction.value === 'prev' ? props.transitionPrev : props.transitionNext);\n return h(Transition, {\n name: transition,\n appear: true\n }, () => weekly)\n }\n\n return weekly\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent\n });\n // Object.assign(vm.proxy, {\n // prev,\n // next,\n // move,\n // moveToToday,\n // updateCurrent\n // })\n\n return () => __renderCalendar()\n }\n\n});\n\nvar QCalendar = defineComponent({\n name: 'QCalendar',\n props: {\n mode: {\n type: String,\n validator: v=> [ 'day', 'month', 'agenda', 'resource', 'scheduler', 'task' ].includes(v),\n default: 'day'\n },\n ...useCommonProps,\n ...useMonthProps,\n ...useTimesProps,\n ...useCellWidthProps,\n ...useNavigationProps,\n ...useIntervalProps,\n ...useSchedulerProps,\n ...useResourceProps,\n ...useMaxDaysProps,\n ...useTaskProps\n },\n setup (props, { attrs, slots, expose }) {\n const calendar = ref(null);\n\n const component = computed(() => {\n switch (props.mode) {\n case 'agenda': return QCalendarAgenda\n case 'resource':return QCalendarResource\n case 'scheduler': return QCalendarScheduler\n case 'month': return QCalendarMonth\n case 'day': return QCalendarDay\n case 'task': return QCalendarTask\n case 'day':\n default:\n return QCalendarDay\n }\n });\n\n function moveToToday () {\n calendar.value.moveToToday();\n }\n\n function move(amount = -1) {\n calendar.value.move(amount);\n }\n\n function next (amount = 1) {\n calendar.value.next(amount);\n }\n\n function prev (amount = 1) {\n calendar.value.prev(amount);\n }\n\n function updateCurrent () {\n calendar.value.updateCurrent();\n }\n\n function timeStartPos (time, clamp = true) {\n return calendar.value.timeStartPos(time, clamp)\n }\n\n function timeStartPosX (time, clamp = true) {\n return calendar.value.timeStartPosX(time, clamp)\n }\n\n function timeDurationWidth (minutes) {\n return calendar.value.timeDurationWidth(minutes)\n }\n\n function timeDurationHeight (minutes) {\n return calendar.value.timeDurationHeight(minutes)\n }\n\n function heightToMinutes (height) {\n return calendar.value.heightToMinutes(height)\n }\n \n function widthToMinutes (width) {\n return calendar.value.widthToMinutes(minutes)\n }\n\n function scrollToTime (time) {\n return calendar.value.scrollToTime(time)\n }\n\n function scrollToTimeX (time) {\n return calendar.value.scrollToTimeX(time)\n }\n\n // expose public methods\n expose({\n prev,\n next,\n move,\n moveToToday,\n updateCurrent,\n timeStartPos,\n timeStartPosX,\n timeDurationWidth,\n timeDurationHeight,\n heightToMinutes,\n widthToMinutes,\n scrollToTime,\n scrollToTimeX\n });\n\n return () => h(component.value, { ref: calendar, ...props, ...attrs }, slots)\n }\n});\n\nconst version = '4.0.0-beta.16';\n\nvar Plugin = {\n version,\n QCalendar,\n QCalendarAgenda,\n QCalendarDay,\n QCalendarMonth,\n QCalendarResource,\n QCalendarScheduler,\n QCalendarTask,\n\n // timestamp\n PARSE_REGEX,\n PARSE_DATE,\n PARSE_TIME,\n DAYS_IN_MONTH,\n DAYS_IN_MONTH_LEAP,\n DAYS_IN_MONTH_MIN,\n DAYS_IN_MONTH_MAX,\n MONTH_MAX,\n MONTH_MIN,\n DAY_MIN,\n DAYS_IN_WEEK,\n MINUTES_IN_HOUR,\n HOURS_IN_DAY,\n FIRST_HOUR,\n MILLISECONDS_IN_MINUTE,\n MILLISECONDS_IN_HOUR,\n MILLISECONDS_IN_DAY,\n MILLISECONDS_IN_WEEK,\n Timestamp,\n TimeObject,\n today,\n getStartOfWeek,\n getEndOfWeek,\n getStartOfMonth,\n getEndOfMonth,\n parseTime,\n validateTimestamp,\n parsed,\n parseTimestamp,\n parseDate,\n getDayIdentifier,\n getTimeIdentifier,\n getDayTimeIdentifier,\n diffTimestamp,\n updateRelative,\n updateMinutes,\n updateWeekday,\n updateDayOfYear,\n updateWorkWeek,\n updateDisabled,\n updateFormatted,\n getDayOfYear,\n getWorkWeek,\n getWeekday,\n isLeapYear,\n daysInMonth,\n copyTimestamp,\n padNumber,\n getDate,\n getTime,\n getDateTime,\n nextDay,\n prevDay,\n moveRelativeDays,\n relativeDays,\n findWeekday,\n getWeekdaySkips,\n createDayList,\n createIntervalList,\n createNativeLocaleFormatter,\n makeDate,\n makeDateTime,\n validateNumber,\n maxTimestamp,\n minTimestamp,\n isBetweenDates,\n isOverlappingDates,\n daysBetween,\n weeksBetween,\n addToDate,\n compareTimestamps,\n compareDate,\n compareTime,\n compareDateTime,\n getWeekdayFormatter,\n getWeekdayNames,\n getMonthFormatter,\n getMonthNames,\n // helpers\n convertToUnit,\n indexOf,\n\n // Vue plugin\n install (app, options) {\n app.component(QCalendar.name, QCalendar);\n app.component(QCalendarAgenda.name, QCalendarAgenda);\n app.component(QCalendarDay.name, QCalendarDay);\n app.component(QCalendarMonth.name, QCalendarMonth);\n app.component(QCalendarResource.name, QCalendarResource);\n app.component(QCalendarScheduler.name, QCalendarScheduler);\n app.component(QCalendarTask.name, QCalendarTask);\n }\n};\n\nexport { DAYS_IN_MONTH, DAYS_IN_MONTH_LEAP, DAYS_IN_MONTH_MAX, DAYS_IN_MONTH_MIN, DAYS_IN_WEEK, DAY_MIN, FIRST_HOUR, HOURS_IN_DAY, MILLISECONDS_IN_DAY, MILLISECONDS_IN_HOUR, MILLISECONDS_IN_MINUTE, MILLISECONDS_IN_WEEK, MINUTES_IN_HOUR, MONTH_MAX, MONTH_MIN, PARSE_DATE, PARSE_REGEX, PARSE_TIME, QCalendar, QCalendarAgenda, QCalendarDay, QCalendarMonth, QCalendarResource, QCalendarScheduler, QCalendarTask, TimeObject, Timestamp, addToDate, compareDate, compareDateTime, compareTime, compareTimestamps, convertToUnit, copyTimestamp, createDayList, createIntervalList, createNativeLocaleFormatter, daysBetween, daysInMonth, Plugin as default, diffTimestamp, findWeekday, getDate, getDateTime, getDayIdentifier, getDayOfYear, getDayTimeIdentifier, getEndOfMonth, getEndOfWeek, getMonthFormatter, getMonthNames, getStartOfMonth, getStartOfWeek, getTime, getTimeIdentifier, getWeekday, getWeekdayFormatter, getWeekdayNames, getWeekdaySkips, getWorkWeek, indexOf, isBetweenDates, isLeapYear, isOverlappingDates, makeDate, makeDateTime, maxTimestamp, minTimestamp, moveRelativeDays, nextDay, padNumber, parseDate, parseTime, parseTimestamp, parsed, prevDay, relativeDays, today, updateDayOfYear, updateDisabled, updateFormatted, updateMinutes, updateRelative, updateWeekday, updateWorkWeek, validateNumber, validateTimestamp, version, weeksBetween };\n","import { boot } from 'quasar/wrappers'\nimport VuePlugin from '@quasar/quasar-ui-qcalendar'\n\nexport default boot(({ app }) => {\n app.use(VuePlugin)\n})\n"],"names":["PARSE_REGEX","PARSE_DATE","PARSE_TIME","DAYS_IN_MONTH","DAYS_IN_MONTH_LEAP","DAYS_IN_MONTH_MIN","DAYS_IN_MONTH_MAX","MONTH_MAX","MONTH_MIN","DAY_MIN","DAYS_IN_WEEK","MINUTES_IN_HOUR","HOURS_IN_DAY","FIRST_HOUR","MILLISECONDS_IN_MINUTE","MILLISECONDS_IN_HOUR","MILLISECONDS_IN_DAY","MILLISECONDS_IN_WEEK","Timestamp","TimeObject","today","d","month","day","padNumber","getStartOfWeek","timestamp","weekdays","start","copyTimestamp","nextDay","findWeekday","prevDay","updateFormatted","updateRelative","getEndOfWeek","end","daysInMonth","getStartOfMonth","getEndOfMonth","parseTime","input","parts","validateTimestamp","compareTimestamps","ts1","ts2","compareDate","getDate","compareTime","getTime","compareDateTime","getDateTime","parsed","parseTimestamp","now","parseDate","date","utc","UTC","getDayIdentifier","getTimeIdentifier","getDayTimeIdentifier","diffTimestamp","strict","utc1","utc2","time","a","b","current","updateMinutes","minutes","updateWeekday","getWeekday","updateDayOfYear","getDayOfYear","updateWorkWeek","getWorkWeek","updateDisabled","disabledBefore","disabledAfter","disabledWeekdays","disabledDays","t","before","after","weekday","isBetweenDates","makeDate","firstThursday","ds","weekDiff","floor","century","year","isLeapYear","x","length","padded","str","moveRelativeDays","mover","days","allowedWeekdays","relativeDays","maxDays","getWeekdaySkips","skips","filled","i","k","skip","j","next","createDayList","weekdaySkips","max","min","stop","currentIdentifier","stopped","createIntervalList","first","count","intervals","mins","ts","createNativeLocaleFormatter","locale","cb","emptyFormatter","_t","_s","short","makeDateTime","e","validateNumber","maxTimestamp","timestamps","useTime","func","prev","cur","minTimestamp","startTimestamp","endTimestamp","cd","sd","ed","isOverlappingDates","firstTimestamp","lastTimestamp","last","addToDate","options","minType","__forEachObject","value","key","indexType","NORMALIZE_TYPES","__normalize","obj","__normalizeMinute","hours","__normalizeHour","__normalizeDay","__normalizeMonth","dim","years","type","daysBetween","diff","weeksBetween","t1","t2","weekdayDateMap","getWeekdayFormatter","_d","weekdayFormatter","getWeekdayNames","shortWeekdays","getMonthFormatter","_m","monthFormatter","intlFormatter","getMonthNames","convertToUnit","unit","indexOf","array","minCharWidth","ResizeObserver$1","el","modifiers","opts","entries","rect","observer","useCalendar","props","renderFunc","scrollArea","pane","msg","size","reactive","rootRef","ref","__onResize","width","height","scrollWidth","computed","__initCalendar","__renderCalendar","data","withDirectives","h","useCommonProps","v","val","useCommon","startDate","endDate","times","parsedStart","parsedEnd","endOfWeek","dayFormatter","_tms","_short","longOptions","shortOptions","ariaDateFormatter","arrayHasDate","arr","checkDays","getRelativeClasses","outside","selectedDays","startEndDays","hover","isSelected","firstDay","lastDay","betweenDays","startOfWeek","dayStyleDefault","scrollTo","scrollTarget","offset","scrollToHorizontal","getVerticalScrollPosition","getHorizontalScrollPosition","animVerticalScrollTo","to","duration","prevTime","pos","nowTime","frameTime","newPos","animHorizontalScrollTo","useIntervalProps","useSchedulerProps","useAgendaProps","useResourceProps","useInterval","headerColumnRef","parsedIntervalStart","parsedIntervalMinutes","parsedIntervalCount","parsedIntervalHeight","parsedCellWidth","parsedStartMinute","bodyHeight","bodyWidth","parsedWeekStart","parsedWeekEnd","arrayHasDateTime","checkIntervals","getIntervalClasses","interval","getResourceClasses","intervalFormatter","shortHourOptions","tms","ariaDateTimeFormatter","showIntervalLabelDefault","showResourceLabelDefault","resource","styleDefault","getTimestampAtEventInterval","clamp","bounds","touchEvent","mouseEvent","touches","addIntervals","addMinutes","getTimestampAtEvent","getTimestampAtEventX","getScopeForSlot","columnIndex","scope","timeStartPos","timeDurationHeight","getScopeForSlotX","index","timeStartPosX","timeDurationWidth","scrollToTime","y","scrollToTimeX","heightToMinutes","widthToMinutes","gap","useColumnProps","useMaxDaysProps","useTimesProps","useTimes","parsedNow","getNow","watch","updateCurrent","setCurrent","updateDay","updateTime","target","useRenderValues","parsedView","parsedValue","around","toCamelCase","m","$listeners","$emit","getMouseEventHandlers","events","getEvent","on","eventName","eventOptions","eventKey","handler","event","getDefaultMouseEventHandlers","suffix","getMouseEventName","getRawMouseEvents","useMouse","emit","listeners","useMoveEmits","useMove","direction","emittedValue","move","amount","moved","forward","limit","dayCount","listenerRE","useEmitListeners","vm","getCurrentInstance","acc","useFocusHelper","useButton","slotData","isFocusable","useCellWidthProps","useCellWidth","useCheckChangeEmits","useCheckChange","lastStart","lastEnd","checkChange","useEvents","createEvent","name","bubbles","cancelable","evt","isKeyCode","keyCodes","useNavigationProps","useKeyboard","focusRef","focusValue","datesRef","initialized","onBeforeUnmount","endNavigation","startNavigation","onKeyUp","onKeyDown","canNavigate","tryFocus","onPgUp","onPgDown","onEnd","onHome","onLeftArrow","onUpArrow","onRightArrow","onDownArrow","tm","QCalendarAgenda","defineComponent","slots","expose","headDayEventsParentRef","headDayEventsChildRef","maxDaysRendered","dragOverHeadDayRef","emitListeners","isSticky","renderValues","__renderAgenda","parsedColumnCount","isLeftColumnOptionsValid","isRightColumnOptionsValid","computedWidth","oldVal","v1","v2","onBeforeUpdate","onMounted","moveToToday","__isActiveDate","__renderHeadColumn","column","slot","id","style","__renderHeadColumnLabel","label","vNode","__renderHead","__renderHeadDaysColumn","__renderHeadDaysRow","__renderHeadDaysEventsRow","__renderHeadDays","nextTick","styles","__renderHeadDaysEvents","_","__renderHeadDay","__renderHeadDayEvent","headDaySlot","headDateSlot","activeDate","styler","weekdayClass","__renderDateHeader","__renderHeadWeekday","__renderHeadDayDate","headDayEventSlot","__renderHeadWeekdayLabel","shortWeekdayLabel","weekdayLabel","__renderHeadDayBtn","dayLabel","headDayLabelSlot","headDayButtonSlot","__renderBody","__renderScrollArea","__renderDayContainer","__renderPane","__renderDays","__renderColumn","__renderDay","dayIndex","hasWidth","agenda","transition","Transition","QCalendarDay","dragOverInterval","__renderDaily","intervalsWidth","__renderHeadIntervals","__renderColumnHeaderBefore","__renderColumnHeaderAfter","__renderBodyIntervals","__renderDayIntervals","__renderDayInterval","slotDayInterval","intervalClass","children","__renderIntervalLabels","__renderIntervalLabel","slotIntervalLabel","daily","useMonthProps","useMonth","parsedMinWeeks","parsedMinDays","parsedMonthStart","__getStartOfWeek","__getStartOfMonth","parsedMonthEnd","__getEndOfWeek","__getEndOfMonth","todayWeek","parsedBreakpoint","parsedMonthLabelSize","firstTime","isMiniMode","isOutside","dayIdentifier","QCalendarMonth","weekEventRef","weekRef","dragOverDayRef","computedStyles","__renderMonth","workweekWidth","isDayFocusable","isDateFocusable","__adjustForWeekEvents","isCurrentWeek","week","row","weekEvent","wrapper","margin","__renderWeeks","__renderWorkWeekHead","filteredDays","day2","weekDays","weeks","__renderWeek","weekNum","slotWeek","useAutoHeight","__renderWorkWeekGutter","workweekLabel","hasMonth","dayClass","__renderDayLabelContainer","dayOfYearLabel","monthLabel","__renderDayLabel","__renderDayMonth","__renderDayOfYearLabel","dayLabelSlot","dayBtnSlot","selectedDate","weekly","QCalendarResource","headerRef","resourcesRef","dragOverResource","dragOverResourceInterval","__renderResource","parsedResourceHeight","parsedResourceMinHeight","parsedIntervalHeaderHeight","__renderHeadResource","__renderHeadInterval","__renderResourcesError","__renderBodyResources","__renderResources","resources","indentLevel","expanded","resourceIndex","__renderResourceRow","resourceRow","__renderResourceLabel","__renderResourceIntervals","slotResourceLabel","dragValue","resourceClass","__renderResourceInterval","resourceKey","QCalendarScheduler","__renderScheduler","resourcesWidth","__renderHeadResources","__renderDayResources","droppable","hasResources","scheduler","useTaskProps","useTask","parsedStartDate","parsedEndDate","QCalendarTask","__renderTask","isWeekdayFocusable","parsedHeight","parsedMinHeight","__renderTaskDay","task","taskIndex","__renderTaskDays","__renderTaskDaysRow","__renderTaskItem","__renderTaskRow","minHeight","taskRow","__renderTasks","tasks","__renderTasksContainer","__renderFooterTask","__renderFooterDay","footerDayClass","__renderFooterDays","__renderFooterRows","__renderFooter","__renderContainer","__renderHeadTask","__renderTitleTask","title","__renderTitleDay","__renderTitleDays","__renderTitleDaysRow","QCalendar","attrs","calendar","component","version","Plugin","app","register","boot","VuePlugin"],"mappings":"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","debug_id":"ebf9473b-b9d2-5caf-9c6c-2bae7b00f36b"}